PDA

View Full Version : Audigy and Eth0 device not found Fedora 9


joebrueske
26th July 2008, 11:10 AM
After installation of Fedora 9, eth0 and sound card are not found. Going under System > Administration > Network, select eth0, click "Enable", and received the massage that eth0 does not exist.

I received the same message when I noticed the X over the volume control applet and clicked it.

How do I fix both of these problems? I may just reinstall.

mnisay
26th July 2008, 11:35 AM
have you tried

# dmesg | grep eth

or

# lspci

what are the results?

joebrueske
26th July 2008, 12:10 PM

have you tried

# dmesg | grep eth

or

# lspci

what are the results?

Well, um... So, I installed XP again, and booted through Lilo into F9 and ... it all works... :confused:

I got a message at login that the GNOME power manager was installed incorrectly. I never did check the install media. However, here is the output for both commands
Driver 'sd' needs updating - please use bus_type methods
Driver 'sr' needs updating - please use bus_type methods
eth0: (PCI Express:2.5GB/s:Width x1) 00:16:76:2e:d4:c8
eth0: Intel(R) PRO/1000 Network Connection
eth0: MAC: 2, PHY: 2, PBA No: ffffff-0ff
ADDRCONF(NETDEV_UP): eth0: link is not ready
eth0: Link is Up 100 Mbps Full Duplex, Flow Control: RX/TX
eth0: 10/100 speed: disabling TSO
ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
eth0: changing MTU from 1500 to 1492
eth0: Link is Up 100 Mbps Full Duplex, Flow Control: RX/TX
eth0: 10/100 speed: disabling TSO
eth0: no IPv6 routers present
bash: lspci: command not found

On another thread I mentioned that I need sleep to figure out what's wrong with this and all that, but um... yeah. It works and if it keeps working, I'm backing up fstab! lol I do like that NetworkManager was added to F9. That was a big time saver with Ubuntu on my laptop. However, I'd rather use the original Network Configure for hard lines.

brebs
26th July 2008, 01:08 PM
Use "su -" to add /sbin to root's path, as done by /etc/profile

Yes, that's a dash at the end.

joebrueske
26th July 2008, 08:32 PM
Use "su -" to add /sbin to root's path, as done by /etc/profile

Yes, that's a dash at the end.

Okay, I'm not 100% sure where in the profile file to add /sbin. Below is the full file and it looks like /sbin is there. Even though I have sound, it is only the system sounds that play.

# /etc/profile

# System wide environment and startup programs, for login setup
# Functions and aliases go in /etc/bashrc

pathmunge () {
if ! echo $PATH | /bin/egrep -q "(^|:)$1($|:)" ; then
if [ "$2" = "after" ] ; then
PATH=$PATH:$1
else
PATH=$1:$PATH
fi
fi
}

# ksh workaround
if [ -z "$EUID" -a -x /usr/bin/id ]; then
EUID=`id -u`
UID=`id -ru`
fi

# Path manipulation
if [ "$EUID" = "0" ]; then
pathmunge /sbin
pathmunge /usr/sbin
pathmunge /usr/local/sbin
fi

# No core files by default
ulimit -S -c 0 > /dev/null 2>&1

if [ -x /usr/bin/id ]; then
USER="`id -un`"
LOGNAME=$USER
MAIL="/var/spool/mail/$USER"
fi

HOSTNAME=`/bin/hostname`
HISTSIZE=1000

if [ -z "$INPUTRC" -a ! -f "$HOME/.inputrc" ]; then
INPUTRC=/etc/inputrc
fi

export PATH USER LOGNAME MAIL HOSTNAME HISTSIZE INPUTRC

for i in /etc/profile.d/*.sh ; do
if [ -r "$i" ]; then
. $i
fi
done

unset i
unset pathmunge

joebrueske
26th July 2008, 08:41 PM
aaaand... now I'm getting sound, from other sources. But now the system sounds are gone and when I go to Applications > Sound and Video >PulseAudio Control I get the error message "Connection Failed: Connection Refused." I was installing VLC at the same time that this happened.