rescan-scsi-bus
tool from the scsitools
package. Running (as root, of course)~ rescan-scsi-bus -w -l(sometimes two or three times) is enough to get the device back up, with the
/dev/dvd
udev symlink.Hope this'll help !
A blog from a scientist and former Debian developer (and occasional book writer)... Tricks for data handling, programming, debian administration and development, command-line and many other joyful things in the same spirit. Oh, and sometimes completely unrelated things !
rescan-scsi-bus
tool from the scsitools
package. Running (as root, of course)~ rescan-scsi-bus -w -l(sometimes two or three times) is enough to get the device back up, with the
/dev/dvd
udev symlink.Hope this'll help !
1 comment:
You can also just write "- - -" to /sys/class/scsi_host/host[nr]/scan, e.g.
echo '- - -' > /sys/class/scsi_host/host2/scan
or fancier,
for i in /sys/class/scsi_host/host*/scan; do
echo '- - -' > $i
done
Post a Comment