[Bug 186117] Re: Cannot remount ntfs

2012-03-13 Thread yogg
I have tested this on ubuntu 10.04.4 LTS and Ubuntu 10.10. Mount the device as "ro". mount | grep DEVICE /dev/DEVICE on /MOUNTPOINT type fuseblk (ro,nosuid,nodev,allow_other,blksize=4096) With "-t" mount gives back a good error why this does not work. mount -t ntfs-3g -o remount,rw /dev/disk/by-

[Bug 186117] Re: Cannot remount ntfs

2008-03-31 Thread Szabolcs Szakacsits
Unfortunately neither fuse nor ntfs-3g support remount at the moment. The "working" rw->ro case is by pure accident and could lead to data loss. -- Cannot remount ntfs https://bugs.launchpad.net/bugs/186117 You received this bug notification because you are a member of Ubuntu Bugs, which is subs

[Bug 186117] Re: Cannot remount ntfs

2008-03-30 Thread Florent Mertens
Szaka, could you take a look at it ? Thanks. -- Cannot remount ntfs https://bugs.launchpad.net/bugs/186117 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.co

[Bug 186117] Re: Cannot remount ntfs

2008-03-30 Thread Florent Mertens
Ok, I see the problem now. Touching an existant file don't fail but creating a new file fail. Same issue with latest ntfs-3g+fuse-lite ** Changed in: ntfs-3g (Ubuntu) Status: Fix Released => Confirmed -- Cannot remount ntfs https://bugs.launchpad.net/bugs/186117 You received this bug not

[Bug 186117] Re: Cannot remount ntfs

2008-03-30 Thread Agostino Russo
hmm strange: [EMAIL PROTECTED]/#mount -o ro /dev/sda2 /mnt [EMAIL PROTECTED]/#mount -o remount,rw /dev/sda2 /mnt [EMAIL PROTECTED]/#touch /mnt/test.trash touch: cannot touch `/mnt/test.trash': No such file or directory -- Cannot remount ntfs https://bugs.launchpad.net/bugs/1

[Bug 186117] Re: Cannot remount ntfs

2008-03-30 Thread Florent Mertens
Still see no issues with your 2nd use case. [EMAIL PROTECTED]:~# umount /dev/sda6 [EMAIL PROTECTED]:~# mount -o ro /dev/sda6 /mnt/test/ [EMAIL PROTECTED]:~# touch /mnt/test/test touch: cannot touch `/mnt/test/test': Read-only file system [EMAIL PROTECTED]:~# mount -o remount,rw /dev/sda6 /mnt/tes

[Bug 186117] Re: Cannot remount ntfs

2008-03-30 Thread Agostino Russo
Florent, Please try to mount ro to begin with and then remount rw. Mounting rw + remounting ro + remounting rw works Mounting ro + remounting rw does not work That is with 1.2216 Second case is relevant since it is what happens in the initrd/init. -- Cannot remount ntfs https://bugs.launchpad

[Bug 186117] Re: Cannot remount ntfs

2008-03-30 Thread Florent Mertens
Don't have that problem with 1.2216 : [EMAIL PROTECTED]:~# udevinfo -q all --name=/dev/sda6 | grep FS_TYPE E: ID_FS_TYPE=ntfs [EMAIL PROTECTED]:~# mount /dev/sda6 /mnt/test [EMAIL PROTECTED]:~# touch /mnt/test/test [EMAIL PROTECTED]:~# sudo mount -o remount,ro /mnt/test [EMAIL PROTECTED]:~# touch

[Bug 186117] Re: Cannot remount ntfs

2008-03-16 Thread Agostino Russo
With ntfs-3g 1.2216 I get the following. [EMAIL PROTECTED]:~# mount -o ro /dev/sdb1 /mnt [EMAIL PROTECTED]:~# mount -o remount,rw /mnt [EMAIL PROTECTED]:~# cat /proc/mounts|grep /mnt /dev/sdb1 /mnt fuseblk rw,nosuid,nodev,noatime,relatime,user_id=0,group_id=0,allow_other 0 0 [EMAIL PROTECTED]:~#

[Bug 186117] Re: Cannot remount ntfs

2008-03-16 Thread Agostino Russo
remounting ro -> rw does not work remounting rw -> ro works [EMAIL PROTECTED]:~# mount -o rw /dev/sdb1 /mnt [EMAIL PROTECTED]:~# touch /mnt/trasg [EMAIL PROTECTED]:~# mount -o remount,ro /mnt [EMAIL PROTECTED]:~# touch /mnt/trasgs touch: cannot touch `/mnt/trasgs': Read-only file system -- Canno

[Bug 186117] Re: Cannot remount ntfs

2008-02-28 Thread Agostino Russo
Confirmed in Hardy build 28-Feb-2008: [EMAIL PROTECTED]:~$ sudo mount -t ntfs-3g -o remount,ro /dev/disk/by-uuid/0A22653721620251 /host Remounting is not supported at present. You have to umount volume and then mount it once again. ** Changed in: wubi Status: New => Confirmed -- Canno