• Willkommen im Linux Club - dem deutschsprachigen Supportforum für GNU/Linux. Registriere dich kostenlos, um alle Inhalte zu sehen und Fragen zu stellen.

dvd, cd werden nicht erkannt. kein automount

hallo, ich benutze suse 10.1 und hab ein problem mit dem
automount/mounten von wechseldatenträgern speziell cds und
dvds.

wenn ich eine cd ins laufwerk einlege tut sich garnichts. das selbe passiert
auch bei einer dvd. die option CD-Laufwerk unter yast/hardware ist nicht vorhanden.
in meiner fstab ist kein eintrag über die dvd laufwerke vorhanden also hab ich mal selber etwas eingetragen. es hat leider nicht funktioniert deshalb hab ich den eintrag
wieder rausgelöscht.

Code:
/dev/sda1            /                    reiserfs   acl,user_xattr        1 1
/dev/sda3            /home                reiserfs   acl,user_xattr        1 2
/dev/sda2            swap                 swap       defaults              0 0
proc                 /proc                proc       defaults              0 0
sysfs                /sys                 sysfs      noauto                0 0
debugfs              /sys/kernel/debug    debugfs    noauto                0 0
usbfs                /proc/bus/usb        usbfs      noauto                0 0
devpts               /dev/pts             devpts     mode=0620,gid=5       0 0
/dev/fd0             /media/floppy        auto       noauto,user,sync      0 0

vorgestern bin ich auf ivman gestoßen. dann hat die ganze sache auch funktioniert.
einen tag später funktionert es leider nicht mehr. also hab ich ivman wieder runtergeschmissen...

ich bin am verzweilfen. kann mir jemand bitte helfen!!
 
A

Anonymous

Gast
hey ich habe auch keinen Eintrag drin in der fstab
wenn ich ne dvd einlege wird diese automatisch gemountet
anzeige im browser ist dann: system:/media/hdb
ich muss auch erst noch nen bisschen lesen sorry

aber ich komm zurück

theoretisch muss du aber als root Veränderungen vorgenommen haben, da es nicht sein kann, das du mit dem Laufwerk installierst und später ohne Grund werden deine Laufwerke
nicht mehr erkannt!
Kannst du dich an irgendwas erinnern?
 
ich kann mich ehrlich gesagt an nichts erinnern.
es war von anfang so, dass cd bbzw dvd nur manchmal
erkannt wurden. wenn ich allerdings die cd bzw dvd während
des bootvorgangs im lw lasse wird die cd erkannt.

vielleicht hab ich jetzt aber auch viel durch meine rumprobierei
verstellt.
ich versteh aber auch nicht, dass ich den eintrag unter yast nicht habe...
 
A

Anonymous

Gast
nur manchmal
das ist sehr schwierig

also wenn ich Probleme habe mit Hardware die nur manchmal läuft
tut mir leid aber dann tausch ich die aus!

Vielleicht haben wir ja Glück und einer hat das schon mal gelöst
Ich glaube du wirst mir verzeihen aber hier muss ich passen
 
die hardware ist in ordnung. dafür würde ich meine hand
ins feuer legen...
das ist meiner meinung nach nur ein konfigurationsfehler...
 
A

Anonymous

Gast
ich lass dich nich allein
aber wie gesagt
im moment weiss ich nicht aufgrund des manchmal ja manchmal nein
ich hatte schon laufwerke weisst du die haben eine CD mal erkannt manchmal nicht
das ist dann halt ein älteres Laufwerk wo man den Lesekopf justieren müsste

da kannste noch so oft Dateien editieren
 
Versuch doch mal als root:
mount -t iso9660 -o ro /dev/sr0 /mnt
/dev/sr0 musst du durch den Namen der Gerätedatei deines Laufwerkes austauschen (kann auch der gleiche sein). Die Gerätedatei deines Laufwerkes kriegst du durch einen Aufruf von lsscsi heraus.

Lies dir auch mal diesen Thread durch: http://www.linux-club.de/viewtopic.php?p=428648 - Hat mir persönlich sehr geholfen!

EDIT: Gerade eingefallen. /dev/dvd oder /dev/cdrom sollten eigentlich auf das Laufwerk linken.

mount -t iso9660 -o ro /dev/dvd /mnt

MfG Jay
 
Seit den 10er Versionen von SuSE wird die Medienerkennung nicht mehr über die fstab gemacht sondern über dbus/hal. Dazu hatten wir aber schon einige Posts, aber leider keine wirkliche Erklärung. Du kannst schauen ob Du evtl. Einträge in der fstab hast die sich auf deine Laufwerke (CD/DVD) beziehen und diese auskommentieren. Ansonsten findest Du in der sdb von opensuse einen Artikel wie Du wieder klassisch mounten kannst. "ps aux | grep autofs" könnte auch aufschluß geben ob bei dir die Autoerkennung als Dienst wirklich läuft. Das Gleiche nur jeweils auf hal und dbus würde auch erkennen lassen ob die beiden Dienste wirklich laufen.
 
so, ich hab mal ps aux | grep autofs gemacht. autofs läuft nicht.
ich hab dann versucht autofs über die konsole mit /etc/init.d/autofs start
manuell zustarten.
Das funktioniert nicht, weil in der /etc/auto.master nichts angegeben ist.
ein /etc/init.d/autofs status bringt leere tabellen.
ich müßte jetzt doch die auto.master konfigurieren, oder nicht?
ich hab ein paar probleme damit. vielleicht könnt ihr mir weiterhelfen.
 
A

Anonymous

Gast
hier haste meine Infos über deine Befehlseingaben eingegeben als user:

1000 4407 0.0 0.1 2852 704 pts/1 R+ 18:01 0:00 grep autofs
latinoxxx@hurricane:~> cat /etc/auto.master
#
# $Id: auto.master,v 1.4 2005/01/04 14:36:54 raven Exp $
#
# Sample auto.master file
# This is an automounter map and it has the following format
# key [ -mount-options-separated-by-comma ] location
# For details of the format look at autofs(5).
#/misc /etc/auto.misc --timeout=60
#/smb /etc/auto.smb
#/misc /etc/auto.misc
#/net /etc/auto.net
latinoxxx@hurricane:~> cat /etc/init.d/autofs
#!/bin/bash
#
# rc file for automount using a Sun-style "master map".
# We first look for a local /etc/auto.master, then a YP
# map with that name
#

### BEGIN INIT INFO
# Provides: autofs
# Required-Start: $network $syslog $remote_fs
# X-UnitedLinux-Should-Start: ypbind keyserv ldap
# Required-Stop:
# X-UnitedLinux-Should-Stop:
# Default-Start: 3 5
# Default-Stop:
# Description: Start the autofs daemon for automatic mounting of filesystems.
### END INIT INFO

#
# Location of the automount daemon and the init directory
#
DAEMON=/usr/sbin/automount

. /etc/rc.status
. /etc/sysconfig/autofs

# check if program is installed
test -x $DAEMON || exit 5

PATH=/sbin:/usr/sbin:/bin:/usr/bin
LDAPCONF=/etc/ldap.conf
export PATH LDAPCONF

#
# We can add local options here
# e.g. localoptions='rsize=8192,wsize=8192'
#
localoptions=''

#
# Daemon options
# e.g. --timeout 60
#
daemonoptions=$AUTOFS_OPTIONS

# normal behavior of ps, please.
unset PS_PERSONALITY
unset CMD_ENV


#
# Get list of local mounts.
#
function getmounts_files()
{
if [ -f /etc/auto.master ] ; then
# We remove not only comments, but also "/-" since it stands for
# direct mounts which autofs doesn't support yet.
sed -e '/^#/d' -e '/^$/d' -e '/^\/-[ \t]/d' /etc/auto.master |
while read dir map options ; do
if [ ! -z "$dir" -a ! -z "$map" -a x$(echo "$map" | cut -c1) != 'x-' ] ; then
map=$(echo "/etc/$map" | sed -e 's:^/etc//:/:')
options=$(echo "$options" | sed -e 's/\(^\|[ \t]\)-/\1/g')
if echo $options | grep -- '-t' >/dev/null 2>&1 ; then
mountoptions="--timeout $(echo $options | \
sed 's/^.*-t\(imeout\)*[= \t]*\([0-9][0-9]*\).*$/\2/g')"
else
mountoptions=""
fi
options=$(echo "$options" | sed -e '
s/--*t\(imeout\)*[= \t]*[0-9][0-9]*//g
s/\(^\|[ \t]\)-/\1/g')
if [ -x $map ]; then
echo "$DAEMON $daemonoptions $mountoptions $dir program $map $options $localoptions"
elif [ -f $map ]; then
echo "$DAEMON $daemonoptions $mountoptions $dir file $map $options $localoptions"
else
echo "$DAEMON $daemonoptions $mountoptions $dir `basename $map` $options $localoptions"
fi
fi
done |
sed 's/ \+/ /g'
fi
}


#
# Get list of nis mounts.
#
function getmounts_nis()
{
if [ -x /usr/bin/ypcat ] && [ $(ypcat -k $NISMASTERMAP 2>/dev/null | wc -l) -gt 0 ] ; then
# remove "/-" line used by direct mounts, which we don't yet understand
ypcat -k $NISMASTERMAP | sed -e '/^\/-[ \t]/d' |
while read dir map options ; do
if [ ! -z "$dir" -a ! -z "$map" -a x$(echo "$map" | cut -c1) != 'x-' ] ; then
[ "$UNDERSCORETODOT" = "yes" ] && map=$(echo "$map" | sed -e 's/^auto_/auto./')
if echo $options | grep -- '-t' >/dev/null 2>&1 ; then
mountoptions="--timeout $(echo $options | \
sed 's/^.*-t\(imeout\)*[= \t]*\([0-9][0-9]*\).*$/\2/g')"
fi
options=$(echo "$options" | sed -e '
s/--*t\(imeout\)*[= \t]*[0-9][0-9]*//g
s/\(^\|[ \t]\)-/\1/g')
if [ -x $map ]; then
echo "$DAEMON $daemonoptions $mountoptions $dir program $map $options $localoptions"
elif [ -f $map ]; then
echo "$DAEMON $daemonoptions $mountoptions $dir file $map $options $localoptions"
else
echo "$DAEMON $daemonoptions $mountoptions $dir yp $map $options $localoptions"
fi
fi
done |
sed 's/ \+/ /g'
fi
}


#
# Get list of nisplus mounts.
#
function getmounts_nisplus()
{
if [ -x /usr/bin/niscat ] && [ $(niscat auto_master.org_dir 2>/dev/null | wc -l) -gt 0 ] ; then
# remove "/-" line used by direct mounts, which we don't yet understand
niscat auto_master.org_dir | sed -e '/^\/-[ \t]/d' |
while read dir map options ; do
if [ ! -z "$dir" -a ! -z "$map" -a x$(echo "$map" | cut -c1) != 'x-' ] ; then
if echo $options | grep -- '-t' >/dev/null 2>&1 ; then
mountoptions="--timeout $(echo $options | \
sed 's/^.*-t\(imeout\)*[= \t]*\([0-9][0-9]*\).*$/\2/g')"
fi
options=$(echo "$options" | sed -e '
s/--*t\(imeout\)*[= \t]*[0-9][0-9]*//g
s/\(^\|[ \t]\)-/\1/g')
if [ -x $map ]; then
echo "$DAEMON $daemonoptions $mountoptions $dir program $map $options $localoptions"
elif [ -f $map ]; then
echo "$DAEMON $daemonoptions $mountoptions $dir file $map $options $localoptions"
else
echo "$DAEMON $daemonoptions $mountoptions $dir nisplus $map $options $localoptions"
fi
fi
done |
sed 's/ \+/ /g'
fi
}


#
# Get list of ldap mounts.
#
function getmounts_ldap()
{
/usr/lib/autofs/autofs-ldap-auto-master |
while read dir maptype map; do
# new style ldap maps look this ldap://<host>/basedn
# instead of ldap host:basedn
if [ -z $map ] ; then
map=$maptype
maptype=$(echo $map | cut -f1 -d:)
map=$(echo $map | sed -e 's/^.*://')
fi
echo "$DAEMON $daemonoptions $dir $maptype \"$map\""
done
}


#
# Check for all maps that are to be loaded.
#
function getschemes()
{
grep ^automount: /etc/nsswitch.conf | sed -e 's/^.*:[ \t]*//'
}


#
# This function will build a list of automount commands to execute in
# order to activate all the mount points. It is used to figure out
# the difference of automount points in case of a reload.
#
function getmounts()
{
for scheme in $(getschemes) ; do
case "$scheme" in
files)
getmounts_files
;;
nis)
getmounts_nis
;;
nisplus)
getmounts_nisplus
;;
ldap)
getmounts_ldap
;;
esac
done
}


#
# Status lister.
#
function status()
{
echo "Configured Mount Points:"
echo "------------------------"
getmounts
echo ""
echo "Active Mount Points:"
echo "--------------------"
ps -w -C automount -o command= | grep "^$DAEMON "
}


#
# Return true if at least one pid is alive.
#
function alive()
{
for i in "$@"; do
if kill -0 $i 2> /dev/null; then
return 0
fi
done

return 1
}


#
# Kill all processes using automounted paths.
#
function kill_all_using_me()
{
for SIG in -TERM -KILL ; do
while read mount_type path foobar ; do
case "$mount_type" in
automount*)
{
kill $SIG $(fuser -m $path/* | cut -d : -f 2- | sed 's#[^0-9 ]##g')
} > /dev/null 2>&1
;;
esac
done < /proc/mounts
if [ $SIG = -TERM ] ; then
sleep 2
fi
done
}


#
# See how we were called.
#

return=0

case "$1" in
start)
# Check if the automounter is already running?
echo -n "Starting service automounter"
pids=$(/sbin/pidof $DAEMON)
if [ ! -f /var/lock/subsys/autofs -o -z "$pids" ]; then
rm -f /var/lock/subsys/autofs
if [ -z "$(getmounts)" ]; then
schemes=$(getschemes)
if [ "$schemes" ]; then
echo -n " (\"$schemes\" does not provide any mounts)"
else
echo -n " (no mounts configured)"
fi
rc_status -s
# service is not configured
rc_failed 6
rc_exit
else
getmounts | sh || return=1
touch /var/lock/subsys/autofs
fi
else
echo -n " (already running)"
fi
rc_status -v
;;
stop)
echo -n "Shutting down service automount"
if checkproc $DAEMON ; then
# kill all automounts in runlevel 0 and 6 to prevent busy
case $RUNLEVEL in
0|6|s|S)
kill_all_using_me
;;
esac
# now kill daemons
pids=$(/sbin/pidof $DAEMON)
killproc -TERM $DAEMON || return=1
if [ $return = 0 ] ; then
echo -e "$rc_done"
else
echo -e "$rc_failed"
fi
count=1
while alive $pids; do
sleep 5
count=$(expr $count + 1)
if [ $count -gt 5 ]; then
echo "Giving up on automounter"
break;
fi
echo "Automounter not stopped yet: retrying... (attempt $count)"
done
if [ $count -gt 1 -a $count -le 10 ]; then
echo "Automounter stopped"
fi
else
return=0
echo -e "$rc_done"
fi
rm -f /var/lock/subsys/autofs
;;
restart|force-reload)
$0 stop
$0 start
return=$?
;;
reload)
if [ ! -f /var/lock/subsys/autofs ]; then
echo "Automounter not running"
exit 1
fi
echo "Checking for changes to /etc/auto.master ..."
TMP1=$(mktemp /tmp/autofs.XXXXXX) || { echo "could not make temp file" >& 2; exit 1; }
TMP2=$(mktemp /tmp/autofs.XXXXXX) || { echo "could not make temp file" >& 2; exit 1; }
getmounts >$TMP1
ps -w -C automount -o pid=,command= | grep " $DAEMON " |
while read pid command; do
echo "$command" >>$TMP2
if ! grep -q "^$command" $TMP1; then
while kill -USR2 $pid; do
sleep 3
done > /dev/null 2>&1
echo "Stop $command"
fi
done
while read x; do
if ! grep -q "^$x" $TMP2; then
$x
echo "Start $x"
fi
done < $TMP1
rm -f $TMP1 $TMP2
;;
status)
echo -n "Checking for service autofs: "
checkproc $DAEMON && return=0 || return=3
if [ $return = 0 ] ; then
echo -e "$rc_running"
else
echo -e "$rc_unused"
fi
status
;;
expire)
echo -n "Trigger expire for autofs: "
if checkproc $DAEMON ; then
# send USR1 to daemons
killproc -USR1 $DAEMON || return=1
fi
if [ $return = 0 ] ; then
echo -e "$rc_done"
else
echo -e "$rc_failed"
fi
;;
*)
echo "Usage: $initdir/autofs {start|stop|restart|reload|force-reload|status|expire}"
exit 3
esac

exit $return

latinoxxx@hurricane:~>
 
ich glaub es liegt nicht an submount oder autofs....
seit kurzem bleibt mein rechner beim ersten mal hochfahren, allerdings auf dem gnome-desktop stehen. in der /var/log/messages steht dann so zeugs wie:

Code:
Jan  6 11:39:26 linux-55g7 kernel: ide: failed opcode was: unknown
Jan  6 11:39:26 linux-55g7 kernel: hdb: drive not ready for command
Jan  6 11:39:26 linux-55g7 kernel: hdb: status error: status=0x58 { DriveReady SeekComplete DataRequest }
Jan  6 11:39:26 linux-55g7 kernel: ide: failed opcode was: unknown
Jan  6 11:39:26 linux-55g7 kernel: hdb: drive not ready for command
Jan  6 11:39:26 linux-55g7 kernel: hdb: status error: status=0x58 { DriveReady SeekComplete DataRequest }
Jan  6 11:39:26 linux-55g7 kernel: ide: failed opcode was: unknown
Jan  6 11:39:26 linux-55g7 kernel: hdb: drive not ready for command
Jan  6 11:39:26 linux-55g7 kernel: hdb: status error: status=0x58 { DriveReady SeekComplete DataRequest }
Jan  6 11:39:26 linux-55g7 kernel: ide: failed opcode was: unknown
Jan  6 11:39:26 linux-55g7 kernel: hdb: drive not ready for command
Jan  6 11:39:26 linux-55g7 kernel: hdb: status error: status=0x58 { DriveReady SeekComplete DataRequest }
Jan  6 11:39:26 linux-55g7 kernel: ide: failed opcode was: unknown
Jan  6 11:39:26 linux-55g7 kernel: hdb: drive not ready for command
Jan  6 11:39:26 linux-55g7 kernel: hdb: status error: status=0x58 { DriveReady SeekComplete DataRequest }
Jan  6 11:39:26 linux-55g7 kernel: ide: failed opcode was: unknown
Jan  6 11:39:26 linux-55g7 kernel: hdb: drive not ready for command
Jan  6 11:39:26 linux-55g7 kernel: hdb: status error: status=0x58 { DriveReady SeekComplete DataRequest }
Jan  6 11:39:26 linux-55g7 kernel: ide: failed opcode was: unknown
Jan  6 11:39:26 linux-55g7 kernel: hdb: drive not ready for command
Jan  6 11:39:26 linux-55g7 kernel: hdb: status error: status=0x58 { DriveReady SeekComplete DataRequest }
Jan  6 11:39:26 linux-55g7 kernel: ide: failed opcode was: unknown
Jan  6 11:39:26 linux-55g7 kernel: hdb: drive not ready for command
Jan  6 11:39:26 linux-55g7 kernel: hdb: status error: status=0x58 { DriveReady SeekComplete DataRequest }
Jan  6 11:39:26 linux-55g7 kernel: ide: failed opcode was: unknown
Jan  6 11:39:27 linux-55g7 kernel: hdb: drive not ready for command
Jan  6 11:39:27 linux-55g7 kernel: hdb: status error: status=0x58 { DriveReady SeekComplete DataRequest }
Jan  6 11:39:27 linux-55g7 kernel: ide: failed opcode was: unknown
Jan  6 11:39:27 linux-55g7 kernel: hdb: drive not ready for command
Jan  6 11:39:27 linux-55g7 kernel: hdb: status error: status=0x58 { DriveReady SeekComplete DataRequest }
Jan  6 11:39:27 linux-55g7 kernel: ide: failed opcode was: unknown
Jan  6 11:39:27 linux-55g7 kernel: hdb: drive not ready for command
Jan  6 11:39:27 linux-55g7 kernel: hdb: status error: status=0x58 { DriveReady SeekComplete DataRequest }
Jan  6 11:39:27 linux-55g7 kernel: ide: failed opcode was: unknown
Jan  6 11:39:27 linux-55g7 kernel: hdb: drive not ready for command
Jan  6 11:39:27 linux-55g7 kernel: hdb: status error: status=0x58 { DriveReady SeekComplete DataRequest }
Jan  6 11:39:27 linux-55g7 kernel: ide: failed opcode was: unknown
Jan  6 11:39:27 linux-55g7 kernel: hdb: drive not ready for command
Jan  6 11:39:27 linux-55g7 kernel: hdb: status error: status=0x58 { DriveReady SeekComplete DataRequest }
Jan  6 11:39:27 linux-55g7 kernel: ide: failed opcode was: unknown
Jan  6 11:39:27 linux-55g7 kernel: hdb: drive not ready for command
Jan  6 11:39:27 linux-55g7 kernel: hdb: status error: status=0x58 { DriveReady SeekComplete DataRequest }
Jan  6 11:39:27 linux-55g7 kernel: ide: failed opcode was: unknown
Jan  6 11:39:27 linux-55g7 kernel: hdb: drive not ready for command
Jan  6 11:39:27 linux-55g7 kernel: hdb: status error: status=0x58 { DriveReady SeekComplete DataRequest }
Jan  6 11:39:27 linux-55g7 kernel: ide: failed opcode was: unknown
Jan  6 11:39:27 linux-55g7 kernel: hdb: drive not ready for command
Jan  6 11:39:27 linux-55g7 kernel: hdb: status error: status=0x58 { DriveReady SeekComplete DataRequest }
Jan  6 11:39:27 linux-55g7 kernel: ide: failed opcode was: unknown
Jan  6 11:39:27 linux-55g7 kernel: hdb: drive not ready for command
Jan  6 11:39:27 linux-55g7 kernel: hdb: status error: status=0x58 { DriveReady SeekComplete DataRequest }
Jan  6 11:39:27 linux-55g7 kernel: ide: failed opcode was: unknown
Jan  6 11:39:27 linux-55g7 kernel: hdb: drive not ready for command
Jan  6 11:39:27 linux-55g7 kernel: hdb: status error: status=0x58 { DriveReady SeekComplete DataRequest }
Jan  6 11:39:27 linux-55g7 kernel: ide: failed opcode was: unknown
Jan  6 11:39:27 linux-55g7 kernel: hdb: drive not ready for command
Jan  6 11:39:27 linux-55g7 kernel: hdb: status error: status=0x58 { DriveReady SeekComplete DataRequest }
Jan  6 11:39:27 linux-55g7 kernel: ide: failed opcode was: unknown
Jan  6 11:39:27 linux-55g7 kernel: hdb: drive not ready for command
Jan  6 11:39:27 linux-55g7 kernel: hdb: status error: status=0x58 { DriveReady SeekComplete DataRequest }
Jan  6 11:39:27 linux-55g7 kernel: ide: failed opcode was: unknown
Jan  6 11:39:27 linux-55g7 kernel: hdb: drive not ready for command
Jan  6 11:39:27 linux-55g7 kernel: hdb: status error: status=0x58 { DriveReady SeekComplete DataRequest }
...
Jan  6 11:39:30 linux-55g7 kernel: ide: failed opcode was: unknown
Jan  6 11:39:30 linux-55g7 kernel: hda: drive not ready for command
Jan  6 11:42:21 linux-55g7 kernel: hda: status error: status=0x00 { }
Jan  6 11:42:21 linux-55g7 kernel: ide: failed opcode was: unknown
Jan  6 11:42:21 linux-55g7 kernel: hda: status error: status=0x00 { }
Jan  6 11:42:21 linux-55g7 kernel: ide: failed opcode was: unknown
Jan  6 11:42:21 linux-55g7 kernel: hda: status error: status=0x00 { }
Jan  6 11:42:21 linux-55g7 kernel: ide: failed opcode was: unknown
Jan  6 11:42:21 linux-55g7 kernel: hda: status error: status=0x00 { }
Jan  6 11:42:21 linux-55g7 kernel: ide: failed opcode was: unknown
Jan  6 11:42:21 linux-55g7 kernel: hda: ATAPI reset complete

wenn ich den pc danach hochfahre funktioniert automount nicht. dann neustarte ich den pc und siehe da: cds, dvds werden automatisch erkannt.
ich glaube da ist irgendwo der wurm drin allerdings kann ich mir selbst nicht weiterhelfen.
 
der aktuellste eintrag:

Code:
Jan  6 12:02:35 linux-55g7 kernel: hdb: status error: error=0x51 { IllegalLengthIndication LastFailedSense=0x05 }
Jan  6 12:02:35 linux-55g7 kernel: ide: failed opcode was: unknown
Jan  6 12:02:35 linux-55g7 kernel: hdb: status error: status=0x51 { DriveReady SeekComplete Error }
Jan  6 12:02:35 linux-55g7 kernel: hdb: status error: error=0x51 { IllegalLengthIndication LastFailedSense=0x05 }
Jan  6 12:02:35 linux-55g7 kernel: ide: failed opcode was: unknown
Jan  6 12:02:49 linux-55g7 kernel: cdrom_pc_intr, write: dev hdb: flags = REQ_SOFTBARRIER REQ_STARTED REQ_PC REQ_QUIET
Jan  6 12:02:49 linux-55g7 kernel: sector 0, nr/cnr 0/0
Jan  6 12:02:49 linux-55g7 kernel: bio 00000000, biotail 00000000, buffer 00000000, data 00000000, len 0
Jan  6 12:02:49 linux-55g7 kernel: cdb: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Jan  6 12:02:49 linux-55g7 kernel: hdb: cdrom_pc_intr: The drive appears confused (ireason = 0x58). Trying to recover by ending request.
Jan  6 12:02:49 linux-55g7 kernel: hdb: cdrom_pc_intr: The drive appears confused (ireason = 0x03). Trying to recover by ending request.
Jan  6 12:03:56 linux-55g7 kernel: hda: lost interrupt
Jan  6 12:03:57 linux-55g7 kernel: hda: cdrom_pc_intr: The drive appears confused (ireason = 0x03). Trying to recover by ending request.
 
"""Code:

/dev/sda1 / reiserfs acl,user_xattr 1 1
/dev/sda3 /home reiserfs acl,user_xattr 1 2
/dev/sda2 swap swap defaults 0 0
proc /proc proc defaults 0 0
sysfs /sys sysfs noauto 0 0
debugfs /sys/kernel/debug debugfs noauto 0 0
usbfs /proc/bus/usb usbfs noauto 0 0
devpts /dev/pts devpts mode=0620,gid=5 0 0
/dev/fd0 /media/floppy auto noauto,user,sync 0 0
""

das is schon richtig so, ich hatte nämlich meine laufwerk da drin und hab dies rausgenomen als ich den hinweis bekam.
jetzt gehts es aber nur bedingt, das dvd muß ich einbinden, das cd geht gar net, ich glaub sowie ich das mit kriege, ein auto mount hilft, das muß ich noch finden !

es is ja noch die /etc/fstab.swap ja da die sollte gelöscht werden, weil sowie ich das sehe wird ja da drauf zugeriffen beim boot. ich hatte probs mit der etc/fsatb die sachen raus zu nhemen, somit hatte ich mehere etc/fstab unter dem Midnight editor als root konn tich da schon was machen, jetzt gehts nur noch um diese automount!
 
Hallo,

ich habe das gleiche Problem. Um die CD und DVD Laufwerke habe, ich das System 10.2 wieder komplett neu installiert jedoch bleiben unter Yast2 der Eintrag CD/DVD Laufwerke verschwunden. Auch werden diese Laufwerke nicht unter dem Konqueror erkannt und es kann nicht darauf zugegriffen. Bei der Nachinstallation von Sofware, wird die DVD im Laufwerk gefordert und auch korrekt erkannt.

Die fstab kann ich nicht finden.

Wer kann helfen.

Vielen Dank

Thalli
 
nimm eine Konsole
loge dich ein
gib ein: cat /etc/fstab

wenn du das editieren willst, wobei die Laufwerke nich in der fstab stehen sollten.

mit dem Neuinstallierren , hilft ja nicht, da die einträge in der Fstab/swap sind. die sollte gelöscht werden, sobald deine fstab okay is.

unter dem Midnighteditor kannst du alles sehen finden und leicht bearbeiten!
 
Oben