You are not logged in.

#1 2006-11-05 22:34:51

efossvold
Member
From: Kamloops, Canada
Registered: 2006-07-23
Posts: 59

KNetworkManager doesn't find any devices

I just installed KNetworkManager, but it says no devices found. I reboot to make sure all service were restarted, but still nothing..

networkmanager and networkmanager-dispatcher are running. Anything else I need to do to get this working?

Offline

#2 2006-11-05 23:00:00

Pierre
Developer
From: Bonn
Registered: 2004-07-05
Posts: 1,964
Website

Re: KNetworkManager doesn't find any devices

Offline

#3 2006-11-05 23:29:25

efossvold
Member
From: Kamloops, Canada
Registered: 2006-07-23
Posts: 59

Re: KNetworkManager doesn't find any devices

Yah, I did. My rc.conf looks like this:

lo="lo 127.0.0.1"
eth0="dhcp"
eth1="dhcp"
INTERFACES=(lo !eth0 !eth1)
#
# Routes to start at boot-up (in this order)
# Declare each route then list in ROUTES
#   - prefix an entry in ROUTES with a ! to disable it
#
gateway="default gw 192.168.0.1"
ROUTES=(!gateway)
#
# Enable these network profiles at boot-up.  These are only useful
# if you happen to need multiple network configurations (ie, laptop users)
#   - set to 'menu' to present a menu during boot-up (dialog package required)
#   - prefix an entry with a ! to disable it
#
# Network profiles are found in /etc/network-profiles
#
NET_PROFILES=()

#
# -----------------------------------------------------------------------
# DAEMONS
# -----------------------------------------------------------------------
#
# Daemons to start at boot-up (in this order)
#   - prefix a daemon with a ! to disable it
#   - prefix a daemon with a @ to start it up in the background
#
DAEMONS=(syslog-ng cpufreq powersaved laptop-mode ifplugd network dhcdbd networkmanager netfs crond cups alsa fam kdm)

Offline

#4 2006-11-05 23:35:57

Pierre
Developer
From: Bonn
Registered: 2004-07-05
Posts: 1,964
Website

Re: KNetworkManager doesn't find any devices

Using ifplugd in parallel could not be such a good idea. And you should put "dbus hal" before "dhcdbd networkmanager".

If that still does not work, make sure that your modules for your network-devices get loaded.

Offline

#5 2006-11-06 00:07:03

efossvold
Member
From: Kamloops, Canada
Registered: 2006-07-23
Posts: 59

Re: KNetworkManager doesn't find any devices

I removed ifplugd, working well now, thanks a bunch. Didn't have to add dbus and hal, they start by themselves, I think powersaved loads them.

Offline

#6 2006-12-15 15:41:05

thecrazylol
Member
Registered: 2006-10-05
Posts: 27

Re: KNetworkManager doesn't find any devices

mh i have same problem, like efossvold
but the tips doesn't help

[thecrazylol@LinuXanT ~]$ uname -r
2.6.19-ARCH
[thecrazylol@LinuXanT ~]$ lsmod | grep ipw
ipw2200               141640  0
ieee80211              29896  1 ipw2200
[thecrazylol@LinuXanT ~]$ lspci | grep 2200
02:02.0 Network controller: Intel Corporation PRO/Wireless 2200BG Network Connection (rev 05)
[thecrazylol@LinuXanT ~]$

#
# /etc/rc.conf - Main Configuration for Arch Linux
#

#
# -----------------------------------------------------------------------
# LOCALIZATION
# -----------------------------------------------------------------------
#
# LOCALE: available languages can be listed with the 'locale -a' command
# HARDWARECLOCK: set to "UTC" or "localtime"
# TIMEZONE: timezones are found in /usr/share/zoneinfo
# KEYMAP: keymaps are found in /usr/share/kbd/keymaps
# CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
# CONSOLEMAP: found in /usr/share/kbd/consoletrans
# USECOLOR: use ANSI color sequences in startup messages
#
LOCALE="de_DE.ISO-8859-15@euro"
HARDWARECLOCK="UTC"
#HARDWARECLOCK="localtime"
TIMEZONE="Europe/Berlin"
KEYMAP="de"
CONSOLEFONT=
CONSOLEMAP=
USECOLOR="yes"

#
# -----------------------------------------------------------------------
# HARDWARE
# -----------------------------------------------------------------------
#
# Scan hardware and load required modules at bootup
MOD_AUTOLOAD="yes"
#MOD_AUTOLOAD="yes"
# Module Blacklist - modules in this list will never be loaded by udev
MOD_BLACKLIST=()
#
# Modules to load at boot-up (in this order)
#   - prefix a module with a ! to blacklist it
#
MODULES=(e100 ipw2200)
# Scan for LVM volume groups at startup, required if you use LVM
USELVM="no"

#
# -----------------------------------------------------------------------
# NETWORKING
# -----------------------------------------------------------------------
#
HOSTNAME="LinuXanT"
#
# Interfaces to start at boot-up (in this order)
# Declare each interface then list in INTERFACES
#   - prefix an entry in INTERFACES with a ! to disable it
#   - no hyphens in your interface names - Bash doesn't like it
#
# Note: to use DHCP, set your interface to be "dhcp" (eth0="dhcp")
#
lo="lo 127.0.0.1"
INTERFACES=(lo !myeth0 !mywlan0)
myeth0="dhcp"
mywlan0="dhcp"
#
# Routes to start at boot-up (in this order)
# Declare each route then list in ROUTES
#   - prefix an entry in ROUTES with a ! to disable it
#
gateway="default gw 192.168.0.1"
ROUTES=(!gateway)
#
# Enable these network profiles at boot-up.  These are only useful
# if you happen to need multiple network configurations (ie, laptop users)
#   - set to 'menu' to present a menu during boot-up (dialog package required)
#   - prefix an entry with a ! to disable it
#
# Network profiles are found in /etc/network-profiles
#
#NET_PROFILES=(main)
NET_PROFILES=()


#
# -----------------------------------------------------------------------
# DAEMONS
# -----------------------------------------------------------------------
#
# Daemons to start at boot-up (in this order)
#   - prefix a daemon with a ! to disable it
#   - prefix a daemon with a @ to start it up in the background
#
DAEMONS=(syslog-ng dbus hal @network netfs cron sdpd dhcdbd networkmanager)

# End of file

Offline

#7 2006-12-15 16:03:43

Snarkout
Member
Registered: 2005-11-13
Posts: 542

Re: KNetworkManager doesn't find any devices

This may be way off base, but I'm pretty sure that I needed to comment out network in my daemons array to get networkmanager to work correctly.


Unthinking respect for authority is the greatest enemy of truth.
-Albert Einstein

Offline

#8 2006-12-15 16:45:03

thecrazylol
Member
Registered: 2006-10-05
Posts: 27

Re: KNetworkManager doesn't find any devices

jeaaaa smile big thaaanx smile it is running nearly perfect, but i have renamed my ethernet device to myeth0 and wlan to mywlan0, now (because of the outcommenting network) my devices are called eth0 and eth1 :-/
1. i hate that
2. i have had problems at least with the network daemon, sometime both one would be called eth0 :-/ and nothing network connection could be established, so i want to get the aliases back
how i can do that with the networkmanager?

but i am happy that my wlan is running with wpa psk now smile *jumping*

Offline

#9 2006-12-15 18:52:52

Snarkout
Member
Registered: 2005-11-13
Posts: 542

Re: KNetworkManager doesn't find any devices

You can use udev rules or /etc/iftab to name your interfaces persistently.  Look at the wiki for udev info, and do a man iftab for info on it.


Unthinking respect for authority is the greatest enemy of truth.
-Albert Einstein

Offline

Board footer

Powered by FluxBB