Hello,
I am trying to mount Windows partition. However I am new Linux user, I think I have done everything I was excepted, and searched for help whole internet, but have not found the answers for this error.
So, I installed whole package of command utilities thru zypper (because command "make" and some others did not work), I downloaded NTFS-3G, run Terminal and wrote:
su
./configure
make
make install
but, when sending "make" command, it reports me a bunch of errors:
[root@Petr-desktop ntfs-3g_ntfsprogs-2012.1.15]# make
make all-recursive
make[1]: Entering directory `/home/Petr/Stažené/ntfs-3g_ntfsprogs-2012.1.15'
Making all in include
make[2]: Entering directory `/home/Petr/Stažené/ntfs-3g_ntfsprogs-2012.1.15/include'
Making all in ntfs-3g
make[3]: Entering directory `/home/Petr/Stažené/ntfs-3g_ntfsprogs-2012.1.15/include/ntfs-3g'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/home/Petr/Stažené/ntfs-3g_ntfsprogs-2012.1.15/include/ntfs-3g'
Making all in fuse-lite
make[3]: Entering directory `/home/Petr/Stažené/ntfs-3g_ntfsprogs-2012.1.15/include/fuse-lite'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/home/Petr/Stažené/ntfs-3g_ntfsprogs-2012.1.15/include/fuse-lite'
make[3]: Entering directory `/home/Petr/Stažené/ntfs-3g_ntfsprogs-2012.1.15/include'
make[3]: Nothing to be done for `all-am'.
make[3]: Leaving directory `/home/Petr/Stažené/ntfs-3g_ntfsprogs-2012.1.15/include'
make[2]: Leaving directory `/home/Petr/Stažené/ntfs-3g_ntfsprogs-2012.1.15/include'
Making all in libfuse-lite
make[2]: Entering directory `/home/Petr/Stažené/ntfs-3g_ntfsprogs-2012.1.15/libfuse-lite'
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I../include/fuse-lite -g -O2 -Wall -MT libfuse_lite_la-fuse.lo -MD -MP -MF .deps/libfuse_lite_la-fuse.Tpo -c -o libfuse_lite_la-fuse.lo `test -f 'fuse.c' || echo './'`fuse.c
gcc -DHAVE_CONFIG_H -I. -I.. -I../include/fuse-lite -g -O2 -Wall -MT libfuse_lite_la-fuse.lo -MD -MP -MF .deps/libfuse_lite_la-fuse.Tpo -c fuse.c -fPIC -DPIC -o .libs/libfuse_lite_la-fuse.o
In file included from fuse_misc.h:10:0,
from fuse.c:13:
/usr/include/pthread.h:162:50: error: expected ‘;’, ‘,’ or ‘)’ before ‘__thread’
/usr/include/pthread.h:572:1: error: storage class specified for unnamed parameter
In file included from /usr/include/pthread.h:636:0,
from fuse_misc.h:10,
from fuse.c:13:
/usr/include/bits/sigthread.h:36:1: error: storage class specified for unnamed parameter
fuse.c: In function ‘fuse_lib_setattr’:
fuse.c:1198:29: error: ‘UTIME_OMIT’ undeclared (first use in this function)
fuse.c:1198:29: note: each undeclared identifier is reported only once for each function it appears in
fuse.c:1202:33: error: ‘UTIME_NOW’ undeclared (first use in this function)
fuse.c:1204:29: error: ‘struct stat’ has no member named ‘st_atim’
fuse.c:1209:29: error: ‘struct stat’ has no member named ‘st_mtim’
make[2]: *** [libfuse_lite_la-fuse.lo] Error 1
make[2]: Leaving directory `/home/Petr/Stažené/ntfs-3g_ntfsprogs-2012.1.15/libfuse-lite'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/Petr/Stažené/ntfs-3g_ntfsprogs-2012.1.15'
make: *** [all] Error 2
Have anyone got in the same situation and know how to solve it?