You are not logged in.
Hi there,
I was wondering how to access external storage devices (namely a USB flash drive) from the terminal. I am not very familiar with ext3 and do not know what the device would be named as. Would us -ls in /dev find me it by any chance? Input is appreciated and any tips or tricks for doing this as well!
Thanks
Offline
Hi,
when you plug in some external usb device like USB Flash Drive, you can use "dmesg" command and if the device if recognized correctly you'll see whether the device is assigned sdXY or hdXY.
By the way, ext3 got nothing to do with it, udev manages\assigns nodes of the devices.
knowledge is p0wer..
Offline
after you know what is the name of the device assigned (probably sdb1 if you have 1 hard drive) you need to mount it.. use the command mount /dev/sdXY /dir/that/exists... there you had acces a storage device from the console (:
Offline
Thanks!
Offline
If you want to be able of do that from user pmount may also help.
Offline
As in, without su/not logged in as root?
Offline
$ pacman -Ss pmount
extra/pmount 0.9.13-4
mount removable devices as normal user
if not in fstab (it should not anymore anyway), the mount will end up in /media/${label}||${devicenode}
Last edited by lloeki (2007-07-02 22:58:57)
To know recursion, you must first know recursion.
Offline