Closed passwordleak closed 5 years ago
Try installing in /usr/lib
instead of /usr/local/lib
?
./configure --prefix=/usr
make
sudo make install
Still the same issue unfortunately. I tried rebooting too. Is there an easy way to tell if the plugin is actually being used?
# ls /usr/lib/ntfs-3g/
ntfs-plugin-80000017.la ntfs-plugin-80000017.so
# ls /mnt/test/Windows/System32/notepad.exe -l
lrwxrwxrwx 2 root root [redacted] /mnt/test/Windows/System32/notepad.exe -> 'unsupported reparse point'
A safe way of determining the plugin directory is to run :
ls -ld $(strings $(which ntfs-3g) | grep ntfs-plugin | sed -e 's/ntfs-plugin.*//')
You may have to create the directory.
Ah, that did it! Thank you! For whatever reason, the correct plugin folder is /usr/lib/x86_64-linux-gnu/ntfs-3g/
Once I put the plugin files there, it worked! If only that logic could be integrated into the installer or part of the readme?
Glad that I found this hint - but only in a closed issue :-(
sudo cp -a /usr/{local/lib,lib/x86_64-linux-gnu}/ntfs-3g
did the trick on my Ubuntu system.
@ebiggers, please add the use of
ls -ld $(strings $(which ntfs-3g) | grep ntfs-plugin | sed -e 's/ntfs-plugin.*//')
as a hint in Installation
section of README.md
file.
Ubuntu 16.04 Windows volume: Windows 10 Enterprise 1703 ntfs-3g version:
I downloaded from releases and then did a ./configure and make && make install. This seemed to work fine:
Then to mount the volume:
Yet, I still get "unsupported reparse point" for compressed system files.