Find the answer to your Linux question:
Results 1 to 7 of 7
I'm trying to mount my flash drive but I don't have a /dev/sda* at all! Code: tail -f /var/log/messages Returns that the USB-Storage is recongnized but I don't know where ...
  1. #1
    Just Joined!
    Join Date
    Jan 2005
    Location
    Maryland
    Posts
    67

    Mount a Flash Drive

    I'm trying to mount my flash drive but I don't have a /dev/sda* at all!
    Code:
    tail -f /var/log/messages
    Returns that the USB-Storage is recongnized but I don't know where it's going to? I could probably mount it if I knew what to mount.

  2. #2
    Just Joined!
    Join Date
    Aug 2005
    Location
    Australia
    Posts
    39

    Hmmmm.....

    Try typing something like this into a terminal:
    Code:
    ls /dev | grep sda
    The output should be all of the external data storing devices connected to your computer.

    (grep sorts the list of all your devices so that only those with "sda" in them are output to your terminal session)

    Hopefully then you can find the device you are looking for.

  3. #3
    Just Joined!
    Join Date
    Jan 2005
    Location
    Maryland
    Posts
    67
    Oy, now usb is timing out.
    Code:
    Oct 14 19:10:20 localhost kernel: usb 1-1: new full speed USB device using addre ss 4
    Oct 14 19:10:25 localhost kernel: usb 1-1: control timeout on ep0out
    And
    Code:
    ls /dev |grep sda
    returns nothing, which now that I think about it should be expected since it timed out. Correct?

  4. #4
    Just Joined!
    Join Date
    Aug 2005
    Location
    Australia
    Posts
    39

    ???

    I guess, I've never experienced a problem like that before. Has your usb disk worked on other linux distros before?

  5. #5
    Just Joined!
    Join Date
    Jan 2005
    Location
    Maryland
    Posts
    67
    Yea, I've always just done
    Code:
    mount -t usbfs /dev/sda1 /mnt/usb
    I don't get why I'm missing /dev/sda* and /dev/sdb*.

  6. #6
    Just Joined!
    Join Date
    Jan 2005
    Location
    Maryland
    Posts
    67
    I figured out why I was getting the second error. It was caused by the line I added to my /etc/udev/rules.d/local.rules. Apparently it didn't work for my setup and I'm not sure really how to use it. Removing it left me with just an unmounted flash drive but without the timeout error.

  7. #7
    Just Joined!
    Join Date
    Jan 2005
    Location
    Maryland
    Posts
    67

    Solved

    Had some power issues last night and had to do some fscking this morning. Now it automounts according to my /etc/fstab and I have /dev/sda and /dev/sda1.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •