Which Linux command will successfully mounts a USB drive?

Options
- mount /dev/uda1 /mnt/usb
- mount /dev/sda1 /mnt/usb
- mount -t usbfs /dev/usb001 /mnt/usb
- mount /dev/hde1 /mnt/usb


CORRECT ANSWER : mount /dev/sda1 /mnt/usb

Discussion Board
Explanation-

mount a USB hard disk drive (ie; external storage) on a Linux server, through the command line.

The external storage can be found in /dev/sde1, as shown in the message-log (the last lines).Make a new directory, and mount the device to that point.

# mkdir /mnt/usb-storage
# mount /dev/sde1 /mnt/usb-storage

Sapna 03-6-2017 07:39 AM

Linux

if the USB name is hde1, then we can use the below option
mount /dev/hde1 /mnt/usb

I used to mount cd-rom using the below option,
mount /dev/cd-rom /mnt

Hello 09-28-2016 02:25 PM

USB mounting

i guess before ounting we have to check the USB is located on which name , then only we can able to mount.

Ramesh 09-13-2016 07:09 AM

Incorrect.

/dev/sda1 is NOT a USB device.

Tom Cooper 09-7-2016 07:29 AM

========

can anyone explain mount /dev/sda1 /mnt/usb


reddy 07-4-2014 11:07 PM

Write your comments


Enter the code shown above:

(Note: If you cannot read the numbers in the above image, reload the page to generate a new one.)


Advertisement