Unmount USB disk


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Unmount USB disk
# 1  
Old 05-08-2010
Unmount USB disk

Hi, How can I unmount an usb disk using the command umount?
# 2  
Old 05-08-2010
Code:
# umount /mount/point

e.g.
Code:
# umount /mnt/usbstick

If you've mounted it like this or the like:
Code:
# mount_msdosfs /dev/da0s1 /mnt/stick

then you can unmount it like this:
Code:
# umount /mnt/stick

If you need further assistance, output of
Code:
# df

would be very helpful.
This User Gave Thanks to pseudocoder For This Post:
# 3  
Old 05-08-2010
MySQL

wooooooooooooow....you have been so exhaustive....thanks !!! SmilieSmilieSmilie

Last edited by Guccio; 05-08-2010 at 02:31 PM..
# 4  
Old 05-08-2010
Tools

You're welcome! I'm glad I could help you Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

backup the whole system to a usb disk.

Hi dears, i´m working with a sun sparc server(M4000) , solaris 10 installed. I need a little help, because i wanna know if is it possible to backup the whole system in a usb disk. I´m gonna explain you a little more why i want to do it. Currently i have installed a Solaris 10 working with... (5 Replies)
Discussion started by: botella
5 Replies

2. UNIX for Dummies Questions & Answers

How to unmount a folder and do check disk only in that path

I need to check if a folder has some kind of logic disk problems. I have a FreeBSD machine where the (root)\tmp\TEST folder has some file created by a script that i cannot delete. If i rename the tmp\TEST folder then i can delete them (apparently) but if i recreate a folder in tmp directory... (2 Replies)
Discussion started by: mirrorx
2 Replies

3. Shell Programming and Scripting

if (disk is mounted) unmount if (disk is unmounted) mount

Hey there, sorry if this is a bit too much of a noob question, trying to get to grips with a simple bash script - but i have done ZERO bash scripting. basically having worked out how to mount and unmount disks using: disktool -m *device* & disktool -e *device* - and looking at the result of... (2 Replies)
Discussion started by: hollister
2 Replies

4. OS X (Apple)

When a disk won't 'Unmount"

hdiutil detach -Force disk&number (ex:hdiutil detach -Force disk1) (3 Replies)
Discussion started by: unimachead
3 Replies

5. OS X (Apple)

Can't Mount Disk / Image after bad unmount

I have had a little issue with one of my disks, the usb cacble was pulled out and one of the external drives on it would no longer mount. I used First Aid and it verified and repaired both OK / nothing to do). After lots of messing around and not being able to mount I used Drive Genius 2 and that... (1 Reply)
Discussion started by: Cranie
1 Replies

6. SuSE

External USB disk cannot be mounted

Hi, I am running Suse on a fujitsu server. The problem is that it will no fully load the usb external disk. When plugged in, dmesg shows that indeed a usb disk has been plugged in ,but gives no devpath e.g sda,sdb. lsusb shows the disk vendor (western digital) but nothing else.Whats goin on... (2 Replies)
Discussion started by: ulemsee
2 Replies

7. HP-UX

/usr out of disk space need to unmount/ expand volume /mount

Greetings, I am running HP-UX 10.2 and /usr is out of disk space already. I installed IE 5.0 for UNIX on my machine under /usr and browsed the Internet for a while and presto no more disk space. I have plenty of hard disk space on my computer so would like to expand the size of the volume. The... (5 Replies)
Discussion started by: Dirk_
5 Replies

8. HP-UX

Unmount and remove all Logical vol.Volume group and physical disk

Hi, Someone please help me with how i can unmount and remove all the files systems from a cluster. This is being shared by two servers that are active_standby. (3 Replies)
Discussion started by: joeli
3 Replies

9. Debian

automount specific USB-disk to specified path

I was just talking to a friend of mine about a problem I have, and he suggested that udev could probably help me. Allthough he couldn't give me any hints on how to accomplish what i want to. I have read the manual and searched google, but without any good info... here's the thing... I am... (2 Replies)
Discussion started by: noratx
2 Replies

10. SCO

an usb falsh disk under sco?

is it possible to access an usb flash disk under sco unixware 7.11? and how to do? any help is apreciated (0 Replies)
Discussion started by: nabil_boussetta
0 Replies
Login or Register to Ask a Question