On Tue, 20 Aug 2002 10:34:47 +0530 (IST) Philip S Tellis wrote:
Hi,
The following cookbook style guide should help you to mount windows partitions on linux
1> first check out the list of partition you have such as hda1,hdb1, hdd3 etc .. whatever depending on whether yor IDE drive is configured to work as Primary/Secondary Master/Slave
2> There are two ways of mounting Windows Partitions 1> mounting them using the mount command as follows
create a directory under /mnt such as windows mkdir -p /mnt/windows
mount the windows partiton as follows (replacing hda1 with the proper device mount -t vfat /dev/hda1 /mnt/windows
2> mount the partition at bootime by adding entries to /etc/fstab append the following line to /etc/fstab /dev/hda1 /mnt/windows vfat defaults 0 0
:) hope this helps
Vinayak Hegde
---------- Forwarded message ---------- Date: 19 Aug 2002 13:17:49 UT From: n-ricco@bossmail.de Subject: mountig fat32 on linux_suse_7.3
Hi, i have a little question..... how can i mount a win98se partition on a linux_suse_7.3 ?? for your information, i'm a beginner of linux. thats something new for me :o) i have a HDD 40GB IDE => 8GB for windows, 8GB for linux and the rest is a file partition. i wil be very thanks full for your help...... ciao..........
__________________________________________________________________________ http://dating.zeenext.com Log on to nextDATE. It's the next best thing to doing it.
Dear All,
As we are threading to this mail, I have some queries about this
From: lilo@zeenext.com on Wednesday, August 21, 2002 12:37 PM
On Tue, 20 Aug 2002 10:34:47 +0530 (IST) Philip S Tellis wrote: The following cookbook style guide should help you to mount windows partitions on linux
[ snip ]
2> mount the partition at bootime by adding entries to /etc/fstab append the following line to /etc/fstab
/dev/hda1 /mnt/windows vfat defaults 0 0
I have the similar entries in my /etc/fstab file which says,
/dev/hda1 /mnt/dosC vfat defaults 0 0
But the problem is, I can write on this disk only if I'm root. For other users I don't have the write permission. I have read & exe permission although. How can I get write permission also?
I tried chmod with 777 option, but I was unable to change the permission
One thing I found that with chmod command, I can't change the permission of a directory, although I can change the permission of a file. How can I change the permissions of the directory ? I read the man page for chmod which says that we can change the permission of both file & directory, but I'm unable to do that.
Well..... the command I used for this is,
# chmod 777 filename - this works # chmod 777 dirname - this don't work ( why is it so )
Where I'm going wrong?
Thanks & Regards, SAMEER :)) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ My Messenger IDs : MSN : s2sameer Yahoo! : s9sameer RediffBol : s2sameer Indiatimes : s2sameer Visit my web-site @ : www.geocities.com/s9sameer/ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
On Sat, 2002-08-24 at 16:36, Sameer Shinde wrote:
[snip]
I have the similar entries in my /etc/fstab file which says,
/dev/hda1 /mnt/dosC vfat defaults 0 0
But the problem is, I can write on this disk only if I'm root. For other users I don't have the write permission. I have read & exe permission although. How can I get write permission also?
/dev/hda1 /mnt/dosC vfat rw,nosuid,nodev,uid=<your user id>,gid=<your group id> 0 0
All of above in one single line, do man mount for more options and explanation.
I tried chmod with 777 option, but I was unable to change the permission
One thing I found that with chmod command, I can't change the permission of a directory, although I can change the permission of a file. How can I change the permissions of the directory ? I read the man page for chmod which says that we can change the permission of both file & directory, but I'm unable to do that.
Well..... the command I used for this is,
# chmod 777 filename - this works # chmod 777 dirname - this don't work ( why is it so )
Where I'm going wrong?
Perhaps the directory is not owned by you ?
HTH,
Rajesh
On 25 Aug 2002, Rajesh Deo wrote:
/dev/hda1 /mnt/dosC vfat rw,nosuid,nodev,uid=<your user id>,gid=<your group id> 0 0
better would be users,owner instead of uid=, gid= that will allow any user to mount, and only the mounted user to unmount.