You are not logged in.
Pages: 1
Hello, I have had a problem that was the following:
1- I start KDE.
2- I connect to wireless using dhcpcd.
3- I logout and come in KDE again and KDE doesn't work.
The solution for this problem was adding "ifconfig lo up" to rc.local, but I can't understand why dhcpcd makes KDE stop working.
Can anyone explain me the reasons?
If you need more information, please tell it to me and I will post it.
Greetings.
Only deaths can see the end of battles.
Blog: http://djmartinez.co.cc -> The life of a Computer Engineer
Offline
While i don't know why that happens, lo is normally brought up by rc.conf .
That you have to to bring lo up manually/rc.local, suggests your network setup is incorrect.
Please post the networking and daemons sections of /etc/rc.conf .
Disliking systemd intensely, but not satisfied with alternatives so focusing on taming systemd.
clean chroot building not flexible enough ?
Try clean chroot manager by graysky
Offline
Network section:
lo="lo 127.0.0.1"
eth0="dhcp"
eth1="dhcp"
INTERFACES=(lo eth0 eth1)
gateway="default gw 192.168.0.1"
ROUTES=(!gateway)
Daemon Section:
DAEMONS=(syslog-ng !network hal hwd @alsa ipw3945d !dhcdbd !networkmanager !fam autowifi !autofs @laptop-mode kdm !gdm !entranced !netfs !crond)
Greetings
Only deaths can see the end of battles.
Blog: http://djmartinez.co.cc -> The life of a Computer Engineer
Offline
the network daemon is the one in charge of bringing up the lo interface, if you don't want to wait for dhcp on the other interface you could do something like
INTERFACES=(lo !eth0 !eth1)
Offline
Pages: 1