Jense Arntz

Results 4 comments of Jense Arntz

Hi @m I also want to remove all wifi connection programmatically in the container. I was able to delete the specific connection with the following commands. >nmcli connection down id...

Thanks for your reply! @avandermeer I know that **labels** option is only needed if I use Ballena OS. Right? I installed raspbian OS on my raspberry pi4. And the base...

> Similar approach: > > `nmcli --pretty --fields UUID,TYPE con show | grep wifi | awk "{print $1}" | while read line; do nmcli con delete uuid $line; done` >...

> To remove all existing wifi-connections I call: > > ```shell > nmcli con show | grep wifi | awk '{print $2}' | while read line; do nmcli con down...