You are not logged in.
iwconfig ifconfig
check dmesg for network
errr lspci ...
all I can think of atm
Mr Green
Offline
The internet works fine, but when i login i just run a script to connect me to the network....
Is there anyway to make this script run at boot?
Arch Linux since 2006
Python Web Developer + Sys Admin (Gentoo/BSD)
Offline
take a look in /etc/rc.d .... you could add a small script there to run from rc.conf
or rc.local ...
OT me T21 turned up first job clean it up then rebuild it [no wireless ;-(]
HTH
Mr Green
Offline
How would i link a script to the end of rc.conf ?
Arch Linux since 2006
Python Web Developer + Sys Admin (Gentoo/BSD)
Offline
As a daemon
If you look in /etc/rc.d there are scripts for running services at boot, I'm sure there is way to do it ....
Surprised there is nothing in Network [in wiki!]
I do not use wireless on my system [even thought I have it!]
Was going to say is wireless working for you now ?
Mr Green
Offline
Yes, bu i manually run the following script, once logged in:
iwconfig eth1 essid crooks
iwconfig eth1 key 99B7289E4E
dhcpcd eth1All i would like is that to be run at the very end of rc.conf
Arch Linux since 2006
Python Web Developer + Sys Admin (Gentoo/BSD)
Offline
This is the slim file from rc.d
#!/bin/bash
. /etc/rc.conf
. /etc/rc.d/functions
lockfile=$(grep lockfile /etc/slim.conf |tr -s " " | cut -d" " -f2)
pid=$(pidof -o %PPID /usr/bin/slim)
case "$1" in
start)
stat_busy "Starting Simple Login Manager"
[ -z "$pid" ] && /usr/bin/slim -d >/dev/null 2>&1
if [ $? -gt 0 ]; then
stat_fail
else
add_daemon slim
stat_done
fi
;;
stop)
stat_busy "Stopping Simple Login Manager"
rm -f $lockfile
[ ! -z "$pid" ] && kill $pid >/dev/null 2>&1
if [ $? -gt 0 ]; then
stat_fail
else
rm_daemon slim
stat_done
fi
;;
restart)
$0 stop
sleep 3
$0 start
;;
*)
echo "usage: $0 {start|stop|restart}"
esac
exit 0modify it change name [of course to wireless] chmod +x wireless
put it in /etc/r.cd
then add it to daemons in rc.conf
when system boots it [should!] start you network
HTH
Mr Green
Offline
Ownage, thanks everyone for all this help
--
All i cant get working now is my battery meter, according to the wiki the acpi should just work, i try to add the battery meter to the panel, and:
Can't access ACPI events in /var/run/acpid.socket! Make sure the ACPI subsystem is working and the acpid daemon is running.I installed it via pacman, still the same.
Arch Linux since 2006
Python Web Developer + Sys Admin (Gentoo/BSD)
Offline