Re: mounting filesystems in Gnome

2009-03-30 Thread Matus UHLAR - fantomas
On 27.03.09 21:09, Nima Azarbayjany wrote: > I have a vfat partition on /dev/sda7. I would like to use the option in > Gnome to mount the file system automatically using the Properties dialog. I Why not to have it mounted all the time? I have this in /etc/fstab: /dev/sda4 /mount/fat vfat qui

Re: mounting filesystems in Gnome

2009-03-27 Thread Paul E Condon
On 2009-03-27_21:09:19, Nima Azarbayjany wrote: > Hi, > > I have a vfat partition on /dev/sda7. I would like to use the option in > Gnome to mount the file system automatically using the Properties dialog. I > open the Properties dialog, go to the Volume tab, and set the following: > > Mount Po

mounting filesystems in Gnome

2009-03-27 Thread Nima Azarbayjany
Hi, I have a vfat partition on /dev/sda7. I would like to use the option in Gnome to mount the file system automatically using the Properties dialog. I open the Properties dialog, go to the Volume tab, and set the following: Mount Point: /media/f/ File System: vfat Mount Options: rw nosuid I t

Re: Mounting filesystems

2003-06-23 Thread Arthur H. Johnson II
Sorry, forgot something, to add it to fstab use a line similar to the following: /dev/hda1 /dos vfat defaults 0 0 -- Arthur H. Johnson II, [EMAIL PROTECTED] AIM: bytor4232 YIM: arthurjohnson IRC: [EMAIL PROTECTED] On Mon, 23 Jun 2003, james leclair wrote: > Hello. Can anyone tell me the

Re: Mounting filesystems

2003-06-23 Thread Arthur H. Johnson II
Assuming your win32 fs is on hda1, try: mount /dev/hda1 /mnt And see if the kernel automatically picks up on the fs. If that doesn't work, try: mount -t vfat /dev/hda1 /mnt -- Arthur H. Johnson II, [EMAIL PROTECTED] AIM: bytor4232 YIM: arthurjohnson IRC: [EMAIL PROTECTED] On Mon, 23 Ju

Re: Mounting filesystems

2003-06-23 Thread Alexander Schmehl
* james leclair <[EMAIL PROTECTED]> [030623 18:27]: > Hello. Can anyone tell me the command to mount a local fat32 file system? man mount > Also, can I add this to my fstab? Thanks! Yes. Sincerely Alexander pgp0.pgp Description: PGP signature

Re: Mounting filesystems

2003-06-23 Thread Vineet Kumar
* james leclair ([EMAIL PROTECTED]) [030623 09:46]: > > > > Hello. Can anyone tell me the command to mount a local fat32 file system? mount -t vfat /dev/hda2 /mnt/c Where hda2 is really the partition which contains the filesystem you're trying to mount and /mnt/c is any directory. I recommen

Mounting filesystems

2003-06-23 Thread james leclair
Hello. Can anyone tell me the command to mount a local fat32 file system? Also, can I add this to my fstab? Thanks! -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Re: mounting filesystems

2003-02-05 Thread alex
You can also access XP from Linux in the same way. # cd /mnt; mkdir xp follow the alias pattern for Windows98--use the appropriate partition in /dev/hdx and the proper filesystem for XP if it isn't vfatuse /mnt/xp. I'd name the aliases xp+ and xp- alex wrote: If I correctly understand wh

Re: mounting filesystems

2003-02-05 Thread alex
If I correctly understand what you want, you may like the way this works. # cd /mnt; mkdir da1 # alias win+='mount -t vfat /dev/hda1 /mnt/da1; cd /mnt/da1; ls -aF --color=auto' # alias win-='cd; umount /mnt/da1' - # win+ (this should show all you

RE: mounting filesystems

2003-02-05 Thread David Turetsky
On 05 Feb 2003, 11:32:22, David Turetsky wrote: > I am trying to read the Windows filesystems on my linux/W98/XP system. > When I manually try to mount them, for example, 'mount -a', I get mount > point /c does not exist and same for /d and /e You need to create the mount-points (empty directo

RE: mounting filesystems

2003-02-05 Thread David Turetsky
On Wed, Feb 05, 2003 at 11:32:22AM -0500, David Turetsky wrote: > When I manually try to mount them, for example, 'mount -a', I get mount > point /c does not exist and same for /d and /e does the directory /c exist? test -d /c || mkdir /c Hugh da Man! Mkdir /c and so on resolved the proble

Re: mounting filesystems

2003-02-05 Thread Doug MacFarlane
On 05 Feb 2003, 11:32:22, David Turetsky wrote: > I am trying to read the Windows filesystems on my linux/W98/XP system. > When I manually try to mount them, for example, 'mount -a', I get mount > point /c does not exist and same for /d and /e You need to create the mount-points (empty directorie

Re: mounting filesystems

2003-02-05 Thread Hugh Saunders
On Wed, Feb 05, 2003 at 11:32:22AM -0500, David Turetsky wrote: > When I manually try to mount them, for example, 'mount -a', I get mount > point /c does not exist and same for /d and /e does the directory /c exist? test -d /c || mkdir /c hugh -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] wit

mounting filesystems

2003-02-05 Thread David Turetsky
I am trying to read the Windows filesystems on my linux/W98/XP system. Despite reusing the same entries I had in Potato in addition to those generated by Woody, and checking google re ntfs entries, I am unable to see those Windows filesystems, even the W98 filesystems I read on the same dri