|
Author |
Message |
|
|
Posted Jan 13, 2009 at 7:37:03 AM
Subject: How to mount permanently
ok - ive posted this issue on a few forums, to no avail
http://www.linuxforums.org/forum/redhat-fedora-linux-help/137963-how-mount-permanently.html
[url=http://www.sieuthi77.com/main/nhakhoa.html]nha khoa[/url].com/showthread.php?t=34569
[url=http://www.vantrung.com/vantrung.htm]nhựa[/url].com/showthread.php?t=33
[url=http://www.vantrung.com/vantrung.htm]đúc nhôm[/url].com /index.php?showtopic=46512
[url=http://www.tienphatjsc.vn/tienphat.htm]cacao[/url].com/showthread.php?t=271
[url=http://www.tienphatjsc.vn/tienphat.htm]trà[/url].com/showthread.php?t=15
[url=http://www.vantrung.com/vantrung.htm]khuôn mẫu[/url].com/showthread.php?t=156933
[url=http://www.tienphatjsc.vn/tienphat.htm]gừng[/url].com/showthread.php?t=32
[url=http://www.sieuthi77.com/thietkeweb/]thiết kế web[/url].com/showthread.php?t=345
[url=http://www.sieuthi77.com/main/quangbaweb.html]quảng bá website[/url].com/showthread.php?t=3453
[url=http://www.sieuthi77.com/main/quangbaweb.html]quảng cáo trực tuyến[/url].com/showthread.php?t=123
[url=http://www.sieuthi77.com/main/quangbaweb.html]quảng cáo web[/url].com/showthread.php?t=234
[url=http://www.vantrung.com/vantrung.htm]phay CNC[/url].com/showthread.php?t=456933
[url=http://www.vantrung.com/vantrung.htm]khuôn nhựa[/url].com/showthread.php?t=33
i have USB,it is detected as /dev/sdb1 which is mount to /mnt/usb
How can i do this task automatically without needing to use the "mount" command
again and again?
Another question:
I am using vmware on windowsXP and my guest OS is Fedora 9,i am unable to see my Windows partitions through #fdisk -l command.
Also i cannot copy files from Xp to Fedora through Vmware interface.Always shuffling my USB between these OS's for file transfer.
Please answer these questions.
|
tophandcwby
Joined Apr 10, 2008 Posts: 81
Other Topics
|
Posted:
Jan 13, 2009 12:11:14 PM
Subject: How to mount permanently
You need to add the device to your /etc/fstab. To do this as root edit the fstab and add the line:
/dev/sdb1 /mnt/usb auto rw 0 0
An USB device does not always enumerate to the same drive number. In other words if you ad another USB drive, the one you are using could start showing up as /dev/sdc1.
A solution to this is to find the block id (UUID) of the drive and use that in the fstab file to identify the drive to mount.
To find the UUID
# blkid /dev/sdb1
/dev/sdb1: UUID="32817230-8866-4ef1-be25-294cec9c6067" SEC_TYPE="ext2" TYPE="ext3"
Then add it to your fstab:
/dev/disk/by-uuid/32817230-8866-4ef1-be25-294cec9c6067 /mnt/usb auto rw 0 0
|
Rubberman
Joined Jul 30, 2007 Posts: 944
Location:40 miles west of Chicago
Other Topics
|
Posted:
Jan 13, 2009 2:47:50 PM
Subject: How to mount permanently
What is the file system type on the usb drive? fat, fat3, ntfs, ext2, ext3...? Depending upon the type, most current linux distributions will automatically mount them, unless it is an ntfs partition.
Sometimes real fast is almost as good as real time.
Remember, Google is your friend!
|
pp1212
Joined Mar 15, 2009 Posts: 36
Other Topics
|
Posted:
May 10, 2009 3:22:47 PM
Subject: How to mount permanently
|