I'm trying to simulate a Model A RPi on a B and want to turn off the ethernet and dhcpd
currently I'm doing this:
ifconfig eth0 down
but there should be a better way
removing network support
8 posts
systemctl stop netcfg
That will stop I
systemctl disable netcfg
Stops it on boot
That will stop I
systemctl disable netcfg
Stops it on boot
- Posts: 786
- Joined: Fri Oct 07, 2011 9:55 am
thanks
systemctl disable netcfg
is giving me
"failed to issue method call: no such file or directory"
any ideas?
systemctl disable netcfg
is giving me
"failed to issue method call: no such file or directory"
any ideas?
Sorry, that's the new image
Easy way, unplug cable.
Other way
systemd disable dhcpcd@eth0
Easy way, unplug cable.
Other way
systemd disable dhcpcd@eth0
- Posts: 786
- Joined: Fri Oct 07, 2011 9:55 am
systemd disable dhcpd@eth0
is giving me
"excess arguments"
after a little Google
I tried
systemd disable dhcpd@eth0.service
also returned "excess arguments"
is giving me
"excess arguments"
after a little Google
I tried
systemd disable dhcpd@eth0.service
also returned "excess arguments"
..found this googling http://www.linuxquestions.org/questions ... ime-65768/
I will always assume you are running Raspbian for desktop and Raspbmc for XMBC !
- Posts: 525
- Joined: Sat Jan 19, 2013 12:47 pm
after a little more hacking, this worked:
systemctl disable dhcpcd@eth0
I was leaving out the second "c" in dhcpcd
systemctl disable dhcpcd@eth0
I was leaving out the second "c" in dhcpcd
Sorry, love of systemd caused Freudian slip
- Posts: 786
- Joined: Fri Oct 07, 2011 9:55 am