Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

[help] How to mount mobile hard disk (usb device) on linux

Status
Not open for further replies.
Re: [help] How to mount mobile hard disk (usb device) on lin

What is this? Did you be able to mount it or you just send a thank you message??!?!?!?!
 

if i am getting you right you want to use external hard drive with usb interface.
you can mount the external drive same as you mount your internal drive instead of using 'hda' you must use 'sda' in your mount command eg:

to mount internal drive

mount /dev/hda1 /mnt/cdrive

to mount external drive

mount /dev/sdaX <mount point>

where X is partition number you might use in case of internal drive

hope it helps

ajit
 

Re: [help] How to mount mobile hard disk (usb device) on lin

1,<fdisk -l> to show the devices recognized by the linux .
2,then choose the exact one to be mounted :
<mount /dev/(to be mounted driver) /mnt/(mount point)>

hope it helps,
 

Re: [help] How to mount mobile hard disk (usb device) on lin

if u mean usb stick
try

become root
mkdir /mnt/usb-disk
mount -t vfat /dev/sda1 /mnt/usb-disk
 

Re: [help] How to mount mobile hard disk (usb device) on lin

The new Linux release should mount USB memory automatically, purely plug-play, same as Windows.
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top