Announcement

Collapse
No announcement yet.

Problems Mounting USB Drives

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Problems Mounting USB Drives

    I am having problems mounting any type of USB drive, be that external hard drive or thumb stick, with my USB2 PCI card. USB1 seems to be working relatively well.

    There are no sd* devices in /dev after plugging in the devices. However, running dmesg, we see thiis for the external harddrive:
    Code:
    [18127019.472000] usb 5-2: new high speed USB device using ehci_hcd and address 2
    and this for the thumbstick:

    Code:
    [18127552.452000] usb 5-2: new high speed USB device using ehci_hcd and address 4
    [18127553.048000] SCSI subsystem initialized
    [18127553.128000] Initializing USB Mass Storage driver...
    [18127553.128000] scsi0 : SCSI emulation for USB Mass Storage devices
    [18127553.128000] usb-storage: device found at 4
    [18127553.128000] usb-storage: waiting for device to settle before scanning
    [18127553.128000] usbcore: registered new driver usb-storage
    [18127553.128000] USB Mass Storage support registered.
    After having the thumbstick plugged in we are seeing some "resets" of the USB device in dmesg, but still no sd* devices in /dev

    Code:
    [18127600.720000] usb 5-2: reset high speed USB device using ehci_hcd and address 4
    [18127600.852000] 0:0:0:0: scsi: Device offlined - not ready after error recovery
    [18127600.852000] usb-storage: device scan complete
    Both of these devices work on other machines (OSX and WinXP Pro) and on this USB2 card in this machine when it had WinXP on it a couple of weeks ago.

    Any ideas of what I can do to get USB2 working? USB1 is unacceptably slow for use with external harddrives.

    Code:
    clinton@mediaboxi:/mnt$ lspci
    0000:00:00.0 Host bridge: Intel Corporation 82850 850 (Tehama) Chipset Host Bridge (MCH) (rev 04)
    0000:00:01.0 PCI bridge: Intel Corporation 82850 850 (Tehama) Chipset AGP Bridge (rev 04)
    0000:00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev 04)
    0000:00:1f.0 ISA bridge: Intel Corporation 82801BA ISA Bridge (LPC) (rev 04)
    0000:00:1f.1 IDE interface: Intel Corporation 82801BA IDE U100 (rev 04)
    0000:00:1f.2 USB Controller: Intel Corporation 82801BA/BAM USB (Hub #1) (rev 04)
    0000:00:1f.3 SMBus: Intel Corporation 82801BA/BAM SMBus (rev 04)
    0000:00:1f.4 USB Controller: Intel Corporation 82801BA/BAM USB (Hub #2) (rev 04)
    0000:01:00.0 VGA compatible controller: nVidia Corporation NV17 [GeForce4 MX 420] (rev a3)
    0000:02:07.0 Multimedia audio controller: Creative Labs SB Live! EMU10k1 (rev 0a)
    0000:02:07.1 Input device controller: Creative Labs SB Live! MIDI/Game Port (rev 0a)
    0000:02:08.0 Ethernet controller: Davicom Semiconductor, Inc. 21x4x DEC-Tulip compatible 10/100 Ethernet (rev 31)
    0000:02:0a.0 USB Controller: NEC Corporation USB (rev 41)
    0000:02:0a.1 USB Controller: NEC Corporation USB (rev 41)
    0000:02:0a.2 USB Controller: NEC Corporation USB 2.0 (rev 02)

    #2
    Re: Problems Mounting USB Drives

    After you plug in the device, do you see an entry fo it in /dev/disk/by-id?

    Comment


      #3
      Re: Problems Mounting USB Drives

      This is what is in mine. I can't mount mine either. I have just upgraded to KDE 3.5.5.

      /dev/disk/by-id$ ls -la
      total 0
      drwxr-xr-x 2 root root 160 2006-10-11 18:48 .
      drwxr-xr-x 6 root root 120 2006-10-11 18:48 ..
      lrwxrwxrwx 1 root root 9 2006-10-11 18:45 ata-ST340810A_6FB16X1F -> ../../hda
      lrwxrwxrwx 1 root root 10 2006-10-11 18:45 ata-ST340810A_6FB16X1F-part1 -> ../../hda1
      lrwxrwxrwx 1 root root 10 2006-10-11 18:45 ata-ST340810A_6FB16X1F-part2 -> ../../hda2
      lrwxrwxrwx 1 root root 10 2006-10-11 18:45 ata-ST340810A_6FB16X1F-part5 -> ../../hda5
      lrwxrwxrwx 1 root root 9 2006-10-11 18:48 usb-Seagate_External_Drive_SG060800320 -> ../../sda
      lrwxrwxrwx 1 root root 10 2006-10-11 18:48 usb-Seagate_External_Drive_SG060800320-part1 -> ../../sda1

      Comment


        #4
        Re: Problems Mounting USB Drives

        Edit your /etc/fstab file as root, for example, start a konsole, and enter "sudo nano /etc/fstab". Enter your password when asked. Nano is a console editor so you navigate with the arrow keys not with the mouse (gets me every time). Enter the following lline:
        Code:
        /dev/disk/by-id/usb-Seagate_External_Drive_SG060800320-part1<tab>/media/seagate<tab>vfat<tab>rw,user,noauto<tab>0<tab>0
        where <tab> means press the tab key. I have made the assumption that your removable is formatted with a vfat (also known as Fat32) file system. If this is not the case, you will have to enter the correct file system. Press Alt-B, so the old file will be backed up, then Ctl-O to save the new /etc/fstab file, and Ctl-X to exit nano.

        Now navigate to the media directory in Konqueror. Create a new folder under media called "seagate". With the Seagate attached, reboot, so that the new fstab file is read. This is not strictly necessary, but it's easy to do. Then from a konsole, enter the command "mount /media/seagate". And there you have it.

        Comment

        Working...
        X