i think you've just read the title and haven't read the question.
Main Topics
Browse All TopicsI have both XP and Ubuntu (easypeasy distro) installed on my laptop. The hard disk is partitioned as follow:
[20GB,NTFS:XP][40GB,FAT32:
so, the middle partition i created, was aimed to be shared between the two OS's. But I faced a problem with ubuntu OS; I had to mount the FAT32 partition every time I start ubuntu. however, I followed some online tutorials and have made changes on 'fstab' so it auto mount the FAT32 partition at startup.
The question: is that (auto mount on startup) the best way of sharing a partition in my case?
the other thing:
there's 'unmount volume' option for the FAT32 partition (since it auto mounted at startup).
the qestions:
is it possible to disallow or hide the 'unmount volume' option on FAT32 partition and how?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
not sure if these help with the umount option but worth a look
https://help.ubuntu.com/co
http://manpages.ubuntu.com
if i read this right u want to restrict access to umount to admin only, so u would set permission on the data pata partition to read-write, but no execute, causing u to need to sudo every time u wanted to execute a file
another approach would be to change permissions on just the umount files so only admin could execute them
more or less the opposite of what is done here
http://www.linuxforums.org
damn now i want to boot linux again, hehe
non of the answers was accurate, however this one was a keyword that helped me finding what I was looking for.
It was all about permissions or options I put in FSTAB. This thread http://ubuntuforums.org/sh
Business Accounts
Answer for Membership
by: ErburethPosted on 2009-07-28 at 19:31:07ID: 24966797
You have to add appropriate record to /etc/fstab for the kernel to automatically mount it at startup
syntax is:
device mount_point filesystem options dump pass
device - appropriate file in /dev, use
$ sudo fdisk -l
for more info, which device to use
mount_point - desired mount point, make sure, the directory exists
filestystem - driver to use, you will use
vfat
options - specific options, use
umask=000
to ensure your read/write privileges
dump, pass - just use 0 for all of them
Hope that helps,
Erbureth