eth0 only - Raspberry Pi Forums


hello

how can disable wifi on rasp pi 3 ?

want eth0 wired ethernet

andrew

from pi menu, click run... , enter following command:

code: select all

sudo ifdown wlan0
note however, wlan0 enabled again next time reboot pi. if want disable wireless interface everytime, can set in /etc/rc.local.* again, pi menu, click run... , enter following command:

code: select all

sudo leafpad /etc/rc.local
insert following text on blank line above "exit 0"

code: select all

ifdown wlan0
save file , close text editor. next time reboot pi, wlan0 disabled.

*there other ways this. afaic, procedure pretty straightforward , non-convoluted.


raspberrypi



Comments