I did both suggestions above, using both (2) USB devices:
1. tail -f /var/log/messages
- only displays a message for one of the devices (the one that was connected during the crash and may be faulty):
"usb 4-2: new high speed USB device using address 6
usb 4-2: device not accepting address 6, error -71"
- the second USB drive did not display any message
2. ls -l /dev/sd*
- unfortunately the list is bigger than the console cache and all of the dates are from November, 2005, so I cannot see any new additions after plugging in the USB device.
Question#1: Is it possible to sort the list by date?
Question#2: Is it possible to "clean up" the list, removing entries that are no longer being used?
Main Topics
Browse All Topics





by: oklitPosted on 2009-01-09 at 02:30:13ID: 23334218
First, run command:
tail -f /var/log/messages
(probably as root, as this file can be set to have read permissions for root only).
Then, plug in your USB disk.
After few seconds, you should see some new lines in this logfile, concerning your USB disk. There should be info about device used. Probably it will be something different that sda/sda1 - maybe sdb/sdb1 or sdc/sdc1.
Then, you should change your /etc/fstab to contain this new device instead of /dev/sda1.
If you don't want to look into your messages file, you can just check for new devices created after connecting your USB disk. Run: "ls -l /dev/sd*", then plug your USB disk in, wait few seconds (half a minute should be sufficient for most cases), than again do: "ls -l /dev/sd*". Any new device on this listing will be your USB disk. After that, change /dev/sda1 in your /etc/fstab.
After that, you can mount your disk with mount /your/mount_point or mount /dev/sdXY (where sdXY is your USB device).
It this doesn't work, post part of your messages file (after connecting your USB disk).