You are not logged in.

#1 2010-01-08 04:08:48

willxtreme
Member
Registered: 2010-01-07
Posts: 150
Website

How do I make Network-Manager remember password

It's my only issue left!
SO FAR I LOVE ARCH LINUX IT ROCKSSSSSSSSSSS BEST DISTRO EVER but implies many hours of work BUT IT IS SOOOOOOOO WORTH IT

Now, everytime I login I got to type my password to connect to my wifi. How can I avoid that smile

I use Openbox

Last edited by willxtreme (2010-01-08 04:09:53)

Offline

#2 2010-01-08 04:34:45

guzz46
Member
From: New Zealand
Registered: 2009-06-18
Posts: 190

Re: How do I make Network-Manager remember password

Have you thought about using wicd, much easier than networkmanager

Offline

#3 2010-01-08 06:17:10

willxtreme
Member
Registered: 2010-01-07
Posts: 150
Website

Re: How do I make Network-Manager remember password

Could not connect to wicd's D-Bus interface. Check the wicd log for error messages is the error I get.
In the wiki @ http://wiki.archlinux.org/index.php/Wic … or_message
It says to try
pacman -R wicd
rm -rf /etc/wicd /var/log/wicd /etc/dbus-1/system.d/wicd*
pacman -S wicd

but it didn't solved the problem & my .xinitrc is properly configured:exec ck-launch-session openbox-session

Last edited by willxtreme (2010-01-08 06:17:55)

Offline

#4 2010-01-08 06:52:17

guzz46
Member
From: New Zealand
Registered: 2009-06-18
Posts: 190

Re: How do I make Network-Manager remember password

I assume D-bus is installed, or you could try netcfg

Offline

#5 2010-01-08 07:29:41

hw-tph
Member
Registered: 2006-11-01
Posts: 149

Re: How do I make Network-Manager remember password

dbus must not only be installed, it must also be running. In contrast to, for example, the hal rc.d script, the wicd startup script does not automatically start dbus.

So add dbus and after that wicd to your DAEMONS array in rc.conf so dbus is running when wicd attempts to start.

Or you could update the start case in the wicd start script to look something like this:

case "$1" in
  start)
    stat_busy "Starting wicd Daemon"
    ck_daemon dbus && /etc/rc.d/dbus start  # Start dbus if not already running
    pkill -f wicd-daemon.py &> /dev/null
    /usr/sbin/wicd &> /dev/null
    add_daemon wicd
    stat_done
    ;;

Offline

Board footer

Powered by FluxBB