I want to mount a USB drive, two of them and I need two different mount points. Unfortunately, the Linux kernel underwent a name change and I can't figure out which /dev location is the right one. Is there a way to look through dmesg or /proc or somewhere else to find out which device node is a USB drive.

(I'm using ArchLinux if that helps any.../dev/sda is the first hard drive, /dev/sr0 is a dvd drive, etc.)

edit: The USB drive is connected to a USB hub. I looked through dmesg and it says the hub was connected and it scanned for the 3 devices connected to it. Still can't see where my USB drive is though.

share|improve this question

migrated from stackoverflow.com Nov 27 '11 at 10:56

This question came from our site for professional and enthusiast programmers.

1  
Can't see it? Maybe wait for a bit. Or try another USB port. See what differences there is in 'lsusb' – Nick Devereaux Mar 10 '09 at 23:02
    
Might want to rephrase the question somewhat - not all usb devices are disks, after all. – Arafangion Mar 10 '09 at 23:23
3  
The df command shows you where it was mounted – Will Sheppard Aug 28 '13 at 14:09

13 Answers 13

up vote 69 down vote accepted

Easiest way: Look at the output of dmesg after connecting the USB device. It should show you what /dev node was assigned to it.

share|improve this answer
1  
dmesg works great, but I have a case where dmesg does not show the /dev node: [421963.864281] usb 3-6: new high-speed USB device number 32 using xhci_hcd What does this mean? How can I mount this device? The device shows up on lsusb... – Lucas Apr 25 '16 at 5:58
1  
Actually, I figured it out. There was a kernel update since my last reboot that was causing this problem. After a reboot, my usb mounts just fine. Hopefully this helps someone! – Lucas Apr 25 '16 at 6:39

As long as you are running udev, you can do this easily by referencing /dev/disk/by-id/usb-manufacturername_serialnumber. These appear as symbolic links which you can either directly reference within your fstab, or which you can dereference using readlink -e to determine the associated block device.

Here's a real world example. On my machine, I have 3 USB hard drives connected. These each show up in /dev/disk/by-id with unique serial numbers (although they share a common manufacturer string). I have created symbolic links to each of these three unique entries, and can now quickly determine which drive is which (and which device is associated with each drive) by running readlink -e linkname. For example, running readlink -e /root/disk2 on my machine currently displays "/dev/sde", while readlink -e /root/disk3 produces no output whatsoever.

share|improve this answer
8  
Short and simply: for devlink in /dev/disk/by-id/usb*; do readlink -f ${devlink}; done – Felipe Alcacibar Nov 25 '15 at 14:02

All of these are good suggestions, but the quickest and least verbose method is to just type the following in the terminal:

mount

which will give a list of all the mounted devices (this assumes the USB drive is mounted, which is usually the case with modern Linux distros).

share|improve this answer
3  
No, it doesn't magically mount your device. You have to specify it with mount /dev/id /mount/point, so that doesn't work. – polym Jul 22 '14 at 14:02
6  
My answer addresses the user's question 'Is there a way to look through dmesg or /proc or somewhere else to find out which device node is a USB drive.', and is not intended to provide guidance on the practicality of mounting a drive under Linux. – AnotherLongUsername Jul 23 '14 at 14:43
    
This answer solved an almost identical question for me. – Matthew Brown aka Lord Matt Oct 10 '14 at 11:04
    
I think automount behavior depends alot on the distro type. – jiggunjer Feb 2 '16 at 2:08
1  
df too, i suppose. – Alexey May 26 '16 at 16:11

Try the command udevinfo -q all -n /dev/sda, where /dev/sda is the path to your disk. This gives you a boatload of info about the disk you're looking at - there's an entry that tells you about the bus it's connected to.

This of course saves you from having to grep through dmesg and/or logs.

Update

udevadm info --query=all -n /dev/sda 

From at least Jul 2010 [1] udevinfo was substituted in Debian (and derived) by udevadm info with a little transient with which there were symlinks soon deprecated and removed (you can still found them in old not updated machine). Always from [1] we can read:

In udev 117, udevadm was introduced and udevinfo and other programs turned into compatibility symlinks. The symlinks were deprecated in udev 128 and removed for good in udev 147.

share|improve this answer
8  
In Debian, udevinfo is renamed udevadm. – Steve Pomeroy Aug 23 '11 at 14:44
8  
On Ubuntu, the command seems to be "udevadm info --query=all -n /dev/sda" – machineghost Dec 13 '11 at 6:06
    
I suppose they renamed the command at some point - when I wrote the answer (ages ago) the command worked on the ubuntu system that I posted it from ;) – Eltariel Dec 15 '11 at 5:08
    
Command works still in ubuntu, udevadm info --query=all -n /dev/ttyUSB1 – Siddharth Jun 4 '13 at 8:43
1  
udevadm info --query=all -n /dev/ttyUSB in Fedora too. – slm Oct 26 '13 at 14:50

the simplest method to see what's going on is just typing (as root of course):

blkid -c /dev/null

this gives you a complete overview about all block devices even if not mounted

share|improve this answer
    
Not all distro have this. Which were you using? – New Alexandria Sep 19 '15 at 17:26
    
This outputs nothing on my Raspbian distro. – Igor G. Aug 8 '16 at 6:17
    
Command not found: blkid – Igor G. Sep 28 '16 at 17:13
    
No output from this command on Ubuntu 14.04 64-bit. – gbmhunter Apr 17 at 18:15

/dev/disk/by-* is the easiest way in this case, if for some reason you want to make life more interesting you can use HAL.

To list all devices you use:

hal-device

To get a specific property you use (this will return /dev/sd* on a USB storage device):

hal-get-property --udi $UDI --key block.device

There is also:

hal-find-by-capability
hal-find-by-property

If you want to make it even more complicated you can relatively easy write yourself a HAL based auto mounter, which can be quite handy if you want to automate things completly.

And just for completeness there are also:

lsusb -v
lshw

Which provides some general information about USB and your hardware in general.

share|improve this answer
2  
/dev/disk/by-id/*usb* is very helpful. – Rob Dec 12 '11 at 18:56
    
/dev/disk/by-label ftw. Thanks :) – Triptych Jun 17 '13 at 13:25
sudo fdisk -l

And just analyse the result.

share|improve this answer
1  
fdisk man page "If no devices are given, those mentioned in /proc/partitions (if that exists) are used." Running fdisk may not be an option... Based on one Debian system that I know doesn't have it installed, my guess is that some GPT systems might not install the unneeded software. Still, checking /proc/partitions ought to be an option. – TOOGAM Nov 10 '15 at 7:33
    
This was the only option that worked fine for me. I am sorry if it didn't work for you! – Felipe Micaroni Lalli Nov 10 '15 at 21:52

Use

ls -l /dev/disk/by-id/usb*

Under the default udev rules, that will show you most usb devices and it will show you the symlink to their block-device name on the system.

If that doesn't work, look at /dev/disk/by-id/ directly.

share|improve this answer

For USB devices you can simply do

REMOVABLE_DRIVES=""
for _device in /sys/block/*/device; do
    if echo $(readlink -f "$_device")|egrep -q "usb"; then
        _disk=$(echo "$_device" | cut -f4 -d/)
        REMOVABLE_DRIVES="$REMOVABLE_DRIVES $_disk"
    fi
done
echo Removable drives found: "$REMOVABLE_DRIVES"
share|improve this answer
1  
+1. Simple and concise script to do the task automatically. – leesei Nov 18 '15 at 14:28
    
Thanks for sharing! This code is really stable! – tftd Feb 19 '16 at 2:21

/var/log/message if dmesg no longer has the information.

share|improve this answer

Take a look at the tree under /dev/disk. It lists disks and their partitions (file systems) by various schemes.

share|improve this answer

If you unplug the USB drive and plug it back in, you should see it initialize from the kernel (dmesg)

share|improve this answer

Here is my updated answer for Ubuntu 10.04 LTS.
This will detect the external USB drives on boot every time.

# Become root
su

# Find USB devices.
# Search for sd
# :/sd
dmesg | less

# Find out what partitions are currently mounted
df -h | less

# Find out where the different(i.e. Windows,NTFS,ext3) volumes are in the partition table
fdisk -l | less
#  
#  Disk /dev/sda: 160.0 GB, 160041885696 bytes
#  255 heads, 63 sectors/track, 19457 cylinders
#  Units = cylinders of 16065 * 512 = 8225280 bytes
#  Sector size (logical/physical): 512 bytes / 512 bytes
#  I/O size (minimum/optimal): 512 bytes / 512 bytes
#  Disk identifier: 0x00062bd5
#  
#     Device Boot      Start         End      Blocks   Id  System
#  /dev/sda1   *           1       19269   154778211   83  Linux
#  /dev/sda2           19270       19457     1510110    5  Extended
#  /dev/sda5           19270       19457     1510078+  82  Linux swap / Solaris
#  
#  Disk /dev/sdb: 500.1 GB, 500107862016 bytes
#  255 heads, 63 sectors/track, 60801 cylinders
#  Units = cylinders of 16065 * 512 = 8225280 bytes
#  Sector size (logical/physical): 512 bytes / 512 bytes
#  I/O size (minimum/optimal): 512 bytes / 512 bytes
#  Disk identifier: 0x00000000
#  
#     Device Boot      Start         End      Blocks   Id  System
#  /dev/sdb1               1       60801   488384001   83  Linux
#  
#  Disk /dev/sdc: 500.1 GB, 500107862016 bytes
#  255 heads, 63 sectors/track, 60801 cylinders
#  Units = cylinders of 16065 * 512 = 8225280 bytes
#  Sector size (logical/physical): 512 bytes / 512 bytes
#  I/O size (minimum/optimal): 512 bytes / 512 bytes
#  Disk identifier: 0xde504d75
#  
#     Device Boot      Start         End      Blocks   Id  System
#  /dev/sdc1               1       60801   488384001   83  Linux

# See properties of sd. devices
udevadm info --attribute-walk --name /dev/sdb1
udevadm info --attribute-walk --name /dev/sdd1

udevadm info -a -p `udevadm info -q path -n /dev/sdb1` | grep -e "SUBSYSTEM==" -e "KERNEL==" -e "ATTR{partition}==" -e "ATTR{size}==" -e "ATTRS{serial}==" 
#   KERNEL=="sdb1"
#   SUBSYSTEM=="block"
#   ATTR{partition}=="1"
#   ATTR{size}=="976768002"
#   ATTRS{serial}=="2HA4DF8P    "
#   ATTRS{serial}=="0000:02:0a.2"
udevadm info -a -p `udevadm info -q path -n /dev/sdc1` | grep -e "SUBSYSTEM==" -e "KERNEL==" -e "ATTR{partition}==" -e "ATTR{size}==" -e "ATTRS{serial}==" 
#   KERNEL=="sdc1"
#   SUBSYSTEM=="block"
#   ATTR{partition}=="1"
#   ATTR{size}=="976768002"
#   ATTRS{serial}=="2HA16NDX    "
#   ATTRS{serial}=="0000:02:0a.2"

# External hard drives
# d - delete all existing partitions
# n - add a new partition
#     p  - primary partition 
#     1  - partition number 1
#     83 - partition type: 83 Linux
# w - write table to disk and exit  
fdisk /dev/sdb
fdisk /dev/sdc

# Create ext2 filesystems on USB drives and format them
# I create ext2 not ext3 because for a while there was
# only ext2 filesystem support on Windows.
# I wanted to be able to read the filesystem from a
# Windows machine.
# Your needs may be different.
mkfs.ext2 /dev/sdb1
mkfs.ext2 /dev/sdc1

# Determine kernel version (see below)
uname -r

# Instruct udev to make symlinks for the drives based on the manufactor,
# size, or any number of properties about the device. That symlink will
# always point to that device regardless of what device node
# (ie /dev/sda, /dev/sdb) it ends up getting assigned. Then you can modify
# your fstab to use the symlink vs the device node, which in turn allows
# you to always address the device the same way.
# Put a hard return at the end so it would print
cat > /etc/udev/rules.d/85-usb-hd-fix.rules <<'EOF'
# Udevadm info starts with the device specified by the devpath and then
# walks up the chain of parent devices. It prints for every device
# found, all possible attributes in the udev rules key format.
#
# A rule to match, can be composed by the attributes of the device 
# (first paragraph or block of rules)
# and the attributes from one single parent device.
# (any paragraph or block of rules following the first paragraph or block of rules)
#
# For example, below we see some of the attributes of the device listed first
#   SUBSYSTEM
#   KERNEL
#   ATTR{partition}
#   ATTR{size}
# and the attribute from one single parent device listed last
#   ATTRS{serial}

# backup500
SUBSYSTEM=="block", KERNEL=="sd?1", ATTR{partition}=="1", ATTR{size}=="976768002" , ATTRS{serial}=="2HA4DF8P    ", SYMLINK+="backup500", GROUP="disk", MODE="0660"
# backup501
SUBSYSTEM=="block", KERNEL=="sd?1", ATTR{partition}=="1", ATTR{size}=="976768002" , ATTRS{serial}=="2HA16NDX    ", SYMLINK+="backup501", GROUP="disk", MODE="0660"

EOF

# Change the attributes of the udev rules file
chmod 644 /etc/udev/rules.d/85-usb-hd-fix.rules

# Test udev
udevadm test /sys/block/sdb block
udevadm test /sys/block/sdc block

# Test udev
restart udev

# Install kernel for PentiumPro
sudo apt-get install linux-686

# Create the mount points
mkdir -p /mnt/backup500
mkdir -p /mnt/backup501

# Make sure that the external USB drives (identified by the udev system) 
# are not referenced in /etc/fstab
# 
# The current /etc/fstab file looks like:
cat /etc/fstab
# Should look like
# # /etc/fstab: static file system information.
# #
# # <file system> <mount point>   <type>  <options>       <dump>  <pass>
# proc            /proc           proc    defaults        0       0
# # /dev/sda1
# UUID=fb518094-0d3b-42f4-a1cc-a3fa659fcd8a /               ext3    relatime,errors=remount-ro 0       1
# # /dev/sda5
# UUID=b04dba06-114e-0fa5-f823-75a116ae2fc0 none            swap    sw              0       0
# /dev/scd0        /media/cdrom0    udf,iso9660 user,noauto,exec,utf8 0       0
# /dev/fd0         /media/floppy0   auto    rw,user,noauto,exec,utf8 0       0

# Install sdparm
apt-get update
apt-get install sdparm

# See the current state of the STANDBY drive flag
sdparm -al /dev/backup500
# This should be 1 (on/true/enabled)

# Set STANDBY to 0 (off/false/disabled)
sdparm --clear STANDBY -6 /dev/backup500

# See the current state of the STANDBY drive flag
# This should be 0 (off/false/disabled)
sdparm -al /dev/backup500

# Modify script /etc/rc.local to mount all filesystems in /etc/fstab
cat > /etc/rc.local <<'EOF'
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.

# Set STANDBY to 0 (off/false/disabled) only on the Maxtor OneTouch enclosures
sdparm --clear STANDBY -6 /dev/backup500
sdparm --clear STANDBY -6 /dev/backup501

# Mount USB drives
mount -t ext2 -o rw,auto,user /dev/backup500 /mnt/backup500
mount -t ext2 -o rw,auto,user /dev/backup501 /mnt/backup501
exit 0

EOF

# Change the attributes of the udev rules file
chmod 755 /etc/rc.local

# Reboot
shutdown -r now

# The following should already be mounted automatically after the reboot
# If not mounted, mount manually
# mount /mnt/backup500
# mount /mnt/backup501

# Create or rename directories
# mkdir -p /mnt/backup501/backup501/files
# mkdir -p /mnt/backup500/backup500/files

# Create symbolic links
# /home/backup500  -> /mnt/backup500/backup500
# /home/backup501  -> /mnt/backup501/backup501
ln -s /mnt/backup500/backup500 /home
ln -s /mnt/backup501/backup501 /home
# To remove the links
# unlink /home/backup500
# unlink /home/backup501
share|improve this answer

protected by nhinkle Jan 2 '13 at 5:58

Thank you for your interest in this question. Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).

Would you like to answer one of these unanswered questions instead?

Not the answer you're looking for? Browse other questions tagged or ask your own question.