Tomas M | 2 May 2007 14:31
Favicon

NTFS-3g during reboot

Hello,
when I reboot, killall5 kills all processes, including ntfs-3g, causing
the NTFS-3G mountpoint to fail.

Is it possible to fix this problem anyhow?

Or should I forwarded the problem to killall5 developers?

Thank you

Tomas M

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
Johannes Kastl | 4 May 2007 06:24
Picon
Picon

Warning about wrong fuse module


Hello,

I just got the following error, and I find it it not well described.

> WARNING: Deficient FUSE kernel module detected. Some driver features are
>          not available (swap file on NTFS, boot from NTFS by LILO), and
>          unmount is not safe unless it's made sure the ntfs-3g process
>          naturally terminates after calling 'umount'. The safe FUSE kernel
>          driver is included in the official Linux kernels since version
>          2.6.20-rc1, or in the FUSE 2.6.0 or later software packages,
>          except the faulty FUSE version 2.6.2. Please see the next page
>          for more help: http://www.ntfs-3g.org/support.html#fuse26

What is right? Cos http://www.ntfs-3g.org/support.html#fuse26 is saying:
=====================================================================
Why do I get "WARNING: Deficient FUSE kernel module detected"?

The FUSE technology used by ntfs-3g consists of two major parts: a
library and a Linux kernel driver. The message means that you either
have the faulty FUSE 2.6.2 release, or the library (FUSE package) is
safe but the kernel driver is not. When you install or upgrade the
FUSE package then it installs only the library, not the kernel driver.
In other words, ntfs-3g and FUSE is safe but not your kernel.
=====================================================================

So obviously not both the kernel and the fuse package bring along the
kernel module. But the versions of the kernel module AND the fuse
package must "match" meaning that they should work together.

(Continue reading)

Tim Fechtner | 8 May 2007 11:10
Picon
Favicon

Bug report: folders with non-ASCII letters aren't displayed

I'm using ntfs-3g with the following /etc/fstab:

/dev/hda6            /                    ext3       acl,user_xattr                                1 1
/dev/hda1            /windows/C           vfat       users,gid=users,umask=0002,utf8=true          0 0
/dev/hda5            swap                 swap       defaults                                      0 0
proc                 /proc                proc       defaults                                      0 0
sysfs                /sys                 sysfs      noauto                                        0 0
debugfs              /sys/kernel/debug    debugfs    noauto                                        0 0
usbfs                /proc/bus/usb        usbfs      noauto                                        0 0
devpts               /dev/pts             devpts     mode=0620,gid=5                               0 0
/dev/fd0             /media/floppy        auto       noauto,user,sync                              0 0
/dev/hdb1            /windows/D           ntfs-3g    rw,auto,users,gid=users,umask=0002,force      0 0
/dev/hdd1            /windows/C_alt       ntfs       ro,auto,users,gid=users,umask=0002,nls=utf8   0 0

The problem is about /windows/D. When I start the computer, folders containing german umlauts
(Öffentlichkeitsarbeit or Pädagogik for example) aren't displayed, not in Konqueror, not in the
console. Also I can't create folder with umlauts. The output of mount is:

/dev/hda6 on / type ext3 (rw,acl,user_xattr)
proc on /proc type proc (rw)
sysfs on /sys type sysfs (rw)
debugfs on /sys/kernel/debug type debugfs (rw)
udev on /dev type tmpfs (rw)
devpts on /dev/pts type devpts (rw,mode=0620,gid=5)
/dev/hda1 on /windows/C type vfat (rw,noexec,nosuid,nodev,gid=100,umask=0002,utf8=true)
/dev/hdb1 on /windows/D type fuse (rw,nosuid,nodev,noexec,noatime,allow_other,default_permissions)
/dev/hdd1 on /windows/C_alt type ntfs (ro,noexec,nosuid,nodev,gid=100,umask=0002,nls=utf8)
securityfs on /sys/kernel/security type securityfs (rw)

When I log in as root, 'umount /windows/D' and then 'mount /windows/D' (should this way using also the
(Continue reading)

Tomas M | 8 May 2007 11:31
Favicon

Re: Bug report: folders with non-ASCII letters aren't displayed

I think it's related to your locales settings (which are different if 
you login as root). Simply add 'locale=.....' mount option to your fstab.

I would suggest you to read this.
http://www.ntfs-3g.org/support.html#locale

Tim Fechtner wrote:
> I'm using ntfs-3g with the following /etc/fstab:
> 
> /dev/hda6            /                    ext3       acl,user_xattr                                1 1
> /dev/hda1            /windows/C           vfat       users,gid=users,umask=0002,utf8=true          0 0
> /dev/hda5            swap                 swap       defaults                                      0 0
> proc                 /proc                proc       defaults                                      0 0
> sysfs                /sys                 sysfs      noauto                                        0 0
> debugfs              /sys/kernel/debug    debugfs    noauto                                        0 0
> usbfs                /proc/bus/usb        usbfs      noauto                                        0 0
> devpts               /dev/pts             devpts     mode=0620,gid=5                               0 0
> /dev/fd0             /media/floppy        auto       noauto,user,sync                              0 0
> /dev/hdb1            /windows/D           ntfs-3g    rw,auto,users,gid=users,umask=0002,force      0 0
> /dev/hdd1            /windows/C_alt       ntfs       ro,auto,users,gid=users,umask=0002,nls=utf8   0 0
> 
> The problem is about /windows/D. When I start the computer, folders containing german umlauts
(Öffentlichkeitsarbeit or Pädagogik for example) aren't displayed, not in Konqueror, not in the
console. Also I can't create folder with umlauts. The output of mount is:
> 
> /dev/hda6 on / type ext3 (rw,acl,user_xattr)
> proc on /proc type proc (rw)
> sysfs on /sys type sysfs (rw)
> debugfs on /sys/kernel/debug type debugfs (rw)
> udev on /dev type tmpfs (rw)
(Continue reading)

Tim Fechtner | 8 May 2007 14:40
Picon
Favicon

Re: Bug report: folders with non-ASCII letters aren't displayed

Thanks. It's working fine now. I'll report the problem to openSUSE.

By the way: Binary packages for openSUSE are avaible from:
http://software.opensuse.org/download/filesystems/ (for the list on ntfs-3g.org).
--

-- 
"Feel free" - 10 GB Mailbox, 100 FreeSMS/Monat ...
Jetzt GMX TopMail testen: http://www.gmx.net/de/go/topmail

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
Christopher Smith | 6 May 2007 08:03
Picon

Copying files using globs fills up all available disk space

I found this problem on the version of ntfs-3g found on the Trinity
Rescue Kit and also on the latest release of ntfs-3g for Gentoo.  I use
ntfs-3g when recovering data from dying hard drives and when I am
copying from an NTFS partition to another NTFS partition using globs (eg
"cp * /Documents and Settings/User/Desktop/Backup/") the disk I am
copying to always fills up entirely even when I was copying the contents
of a 160GB hard drive to a 320GB (empty) hard drive.  I experienced this
on two different machines, one was using TRK and the other was Gentoo.
I am not sure that this is definitely a globbing issue or not but it is
the only time I can remember it happening.  It seems like it loops
through the glob and just starts copying again after it finishes.

Christopher Smith

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
Peter Vogt | 2 May 2007 06:55
Picon

mmap problem in ntfs-3g?

Hi,

NTFS-3g is working perfectly fine but I have this problem: I have 
Crossover 6.01 installed with MS-office2003 which is working fine but 
office-files located on a NTFS-drive mounted with NTFS-3g are reported 
as 'Read-Only' when opened in MS-Office using Crossover. I can not save 
changes to these files. This is not a permission problem since these 
files can be renamed or overwritten. I contacted Crossover, and go this 
reply (support ticket 123175):
 >>
After talking with our head developer it seems the ntfs-3g driver does 
not support writtable mmaps. This feature is needed for our software to 
work properly. The best thing I can advise is to contact the developers 
of the driver and ask them what will be needed to add support for this.
 >>

I'm running a standard 32-bit Kubuntu 7.04 install, (fuse 2.63, ntfs-3g 
1.328, kernel 2.6.20.15-generic). I updated to the latest ntfs-3g 1.417 
and again, everything works perfectly fine besides the problem mentioned 
above which seems to be related to the mmaps.

regards,
-peter

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
(Continue reading)

Gwi Bong | 4 May 2007 15:48
Picon

tfs-3g use after restart fail...solving give me

# ntfs-3g /dev/sda1 /mnt
$LogFile indicates unclean shutdown (0, 0)
Failed to mount '/dev/sda1': Operation not supported
Mount is denied because NTFS logfile is unclean. Choose one action:
   Boot Windows and shutdown it cleanly, or if you have a removable
   device then click the 'Safely Remove Hardware' icon in the Windows
   taskbar notification area before disconnecting it.
Or
   Run ntfsfix version 1.13.1 on Linux unless you have Vista.
Or
   Mount the NTFS volume with the 'ro' option in read-only mode.
-------------------------------------------------------------------
I want NTFS logfile clean operation command..........help me....

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
Udrescu Gabriel sau G@By | 8 May 2007 17:34
Picon
Gravatar

Re: Bug report: folders with non-ASCII letters aren't displayed


By the way: Binary packages for openSUSE are avaible from: http://software.opensuse.org
/download/filesystems/ (for the list on ntfs-3g.org).


You should consider using the latest ntfs-3g rather than a precompiled rpm pack. it's much better, because openSUSE developers can't keep up with ntfs-3g (or other) developers. even if you prefer Yast or other packmangager, compiling the fuse kernel-module & ntfs-3g is a much better than installing a precompiled pack.
I've had a similar problem with PCLinuxOS repos & rpm packs.

--
AFaith - CvTk Admin - www.craiovatracker.com
-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
ntfs-3g-devel mailing list
ntfs-3g-devel@...
https://lists.sourceforge.net/lists/listinfo/ntfs-3g-devel
Szakacsits Szabolcs | 10 May 2007 00:06
Favicon

Re: mmap problem in ntfs-3g?


Hi Peter,

On Wed, 2 May 2007, Peter Vogt wrote:

> NTFS-3g is working perfectly fine but I have this problem: I have
> Crossover 6.01 installed with MS-office2003 which is working fine but
> office-files located on a NTFS-drive mounted with NTFS-3g are reported
> as 'Read-Only' when opened in MS-Office using Crossover. I can not save
> changes to these files. This is not a permission problem since these
> files can be renamed or overwritten. I contacted Crossover, and go this
> reply (support ticket 123175):
>  >>
> After talking with our head developer it seems the ntfs-3g driver does
> not support writtable mmaps. This feature is needed for our software to
> work properly. The best thing I can advise is to contact the developers
> of the driver and ask them what will be needed to add support for this.
>  >>

Writable mmap is supported, the very rare shared writeable mmap isn't yet.

The issue is independent of ntfs-3g and is a pure kernel, FUSE kernel
driver one. When the support will be implemented in the Linux kernel then
any ntfs-3g driver will support shared writtable mmap without any change.

Regards,
        Szaka

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/

Gmane