[root@goose64 michael]# cat gdm_errors.txt 
(II) config/udev: Adding input device Logitech USB Receiver
(/dev/input/mouse0)
(II) No input driver specified, ignoring this device.
(II) This device may have been added with another device file.
(II) config/udev: Adding input device HDA ATI SB Line
(/dev/input/event1)
(II) No input driver specified, ignoring this device.
(II) This device may have been added with another device file.
(II) config/udev: Adding input device HDA ATI SB Rear Mic
(/dev/input/event2)
(II) No input driver specified, ignoring this device.
(II) This device may have been added with another device file.
(II) config/udev: Adding input device HDA ATI SB Front Mic
(/dev/input/event3)
(II) No input driver specified, ignoring this device.
(II) This device may have been added with another device file.
(II) config/udev: Adding input device HDA ATI SB Front Headphone
(/dev/input/event4)
(II) No input driver specified, ignoring this device.
(II) This device may have been added with another device file.
(II) config/udev: Adding input device HDA ATI SB Line Out Side
(/dev/input/event5)
(II) No input driver specified, ignoring this device.
(II) This device may have been added with another device file.
(II) config/udev: Adding input device HDA ATI SB Line Out CLFE
(/dev/input/event6)
(II) No input driver specified, ignoring this device.
(II) This device may have been added with another device file.
(II) config/udev: Adding input device HDA ATI SB Line Out Surround
(/dev/input/event7)
(II) No input driver specified, ignoring this device.
(II) This device may have been added with another device file.
(II) config/udev: Adding input device HDA ATI SB Line Out Front
(/dev/input/event8)
(II) No input driver specified, ignoring this device.
(II) This device may have been added with another device file.
(II) config/udev: Adding input device PC Speaker (/dev/input/event0)
(II) No input driver specified, ignoring this device.
(II) This device may have been added with another device file.
[root@goose64 michael]# 

The above shows up consistently over and over again...  I have a
Logitech MK700 wireless keyboard.  I think it uses 2.4 ghz microwave,
but it could be bluetooth which I didn't install.

Here are the links for runlevel 5, they may differ because I'm
running NFS root:

[root@goose64 rc5.d]# ls -l
total 0
lrwxrwxrwx 1 root root 21 Feb  3 16:30 S01mountvirtfs
-> ../init.d/mountvirtfs
lrwxrwxrwx 1 root root 14 Feb  3 16:30 S02udev -> ../init.d/udev
lrwxrwxrwx 1 root root 17 Feb  3 16:31 S09mountfs -> ../init.d/mountfs
lrwxrwxrwx 1 root root 18 Aug 25 23:37 S10sysklogd -> ../init.d/sysklogd
lrwxrwxrwx 1 root root 18 Aug 28 02:31 S19iptables -> ../init.d/iptables
lrwxrwxrwx 1 root root 17 Aug 25 23:37 S22rpcbind -> ../init.d/rpcbind
lrwxrwxrwx 1 root root 20 Aug 25 23:37 S24nfs-client
-> ../init.d/nfs-client
lrwxrwxrwx 1 root root 14 Sep 27 21:38 S25cups -> ../init.d/cups
lrwxrwxrwx 1 root root 16 Feb  3 16:56 S27radom -> ../init.d/random
lrwxrwxrwx 1 root root 15 Aug 25 23:38 S28netfs -> ../init.d/netfs
lrwxrwxrwx 1 root root 14 Jan 19 21:54 S29dbus -> ../init.d/dbus
lrwxrwxrwx 1 root root 14 Aug 26 18:52 S30sshd -> ../init.d/sshd
lrwxrwxrwx 1 root root 24 Feb  3 18:31 S33networkmanager
-> ../init.d/networkmanager
lrwxrwxrwx 1 root root 15 Aug 26 17:52 S40fcron -> ../init.d/fcron
lrwxrwxrwx 1 root root 20 Aug 26 18:47 S50ez-ntpc.sh
-> ../init.d/ez-ntpc.sh
lrwxrwxrwx 1 root root 13 Aug 28 22:47 S70gpm -> ../init.d/gpm
lrwxrwxrwx 1 root root 13 Feb  3 16:13 S95gdm -> ../init.d/gdm
[root@goose64 rc5.d]# 

Note the modification in the gdm script below, the commented out
section.

#!/bin/sh
########################################################################
# Begin gdm
#
# Description : GDM Boot Script
#
# Authors     : Armin K. <[email protected]>
#
# Version     : BLFS SVN
#
########################################################################

### BEGIN INIT INFO
# Provides:            gdm
# Required-Start:      $local_fs $remote_fs
# Required-Stop:       $local_fs $remote_fs
# Default-Start:       2 3 4 5
# Default-Stop:        0 1 6
# Short-Description:   GNOME Display Manager
# X-LFS-Provided-By:   BLFS
### END INIT INFO

. /lib/lsb/init-functions

GDM_BINARY=/usr/sbin/gdm

#if [ -f /etc/profile.d/gnome.sh ]; then
#   . /etc/profile.d/gnome.sh
#   GDM_BINARY=${GNOME_PREFIX}/sbin/gdm
#fi

case "${1}" in
   start)
      log_info_msg "Starting GNOME Display Manager GDM"
      start_daemon ${GDM_BINARY}
      ;;

   stop)
      log_info_msg "Stopping GNOME Display Manager GDM"
      killproc ${GDM_BINARY}
      ;;

   restart)
      ${0} stop
      sleep 1
      ${0} start
      ;;

   status)
      statusproc ${GDM_BINARY}
      ;;

   *)
      echo "Usage: ${0} {start|stop|restart|status}"
      exit 1
      ;;
esac

exit 0

# End gdm

I broke the system by installing the network manager boot script.
I can go in manually and remove it server side, but the same 
errors will remain.  Looks like there is an issue with the Logitech
receiver.  Theoretically, I can plug in a wired keyboard and mouse
and should be able to start gnome up.

-- 
http://linuxfromscratch.org/mailman/listinfo/blfs-support
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Reply via email to