LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Hardware (https://www.linuxquestions.org/questions/linux-hardware-18/)
-   -   quick check (https://www.linuxquestions.org/questions/linux-hardware-18/quick-check-585601/)

Bjorne 09-18-2007 12:49 PM

quick check
 
Hello!

I want to automount my NTFS partition in Fedora, read-write, so I can share it with Windows.

Mouting it using mount /dev/?? /mnt/?? works like a charm.

So I've come up with this line for fstab:

Quote:

/dev/disk/by-label/Delat /mnt/delat fuseblk rw,nosuid,nodev,noatime,allow_other,blksize=4096 0 0
Ive come up with this from this line I got from mount -i:
Quote:

/dev/disk/by-label/Delat on /mnt/delat type fuseblk (rw,nosuid,nodev,noatime,allow_other,blksize=4096)
Does that line look OK? I dont want to destroy anything :P

Thanks!

Lenard 09-18-2007 02:29 PM

I use for example;

fstab entry;
Code:

/dev/sda1                /media/Windows                ntfs-3g auto,users,uid=0,gid=500,umask=000,rw        0 0
Mounts the partition at boot time with users having read/write access with no problems.

Bjorne 09-18-2007 03:06 PM

Quote:

Originally Posted by Lenard (Post 2896063)
I use for example;

fstab entry;
Code:

/dev/sda1                /media/Windows                ntfs-3g auto,users,uid=0,gid=500,umask=000,rw        0 0
Mounts the partition at boot time with users having read/write access with no problems.

But doesnt the "fuseblk" part mean I use another driver?

Lenard 09-19-2007 05:39 AM

Yes, but that should not be an issue. have a look at the fourth section for comparison;

auto,users,uid=0,gid=500,umask=000,rw


All times are GMT -5. The time now is 11:23 AM.