You are not logged in.
Pages: 1
i tried to mount a ntfs hdd on my devuan system stable .
I am using xfce4 and stable version of dev1 .
all packages of ntfs are installed
ls -altr /sbin/mount.ntfs
lrwxrwxrwx 1 root root 13 Mar 23 2023 /sbin/mount.ntfs -> mount.ntfs-3g
according to debian forum [1] the solution was to install a package and will be fine
but in my case the package is installed
[1]https://forums.debian.net/viewtopic.php?t=154459
Last edited by jemadux (2023-10-05 22:09:01)
Dev1 Stable | openrc | XFCE
Greetings from Greece
Offline
Which kernel version do you have installed?
uname -a
It appears NTFS support has not been compiled into your kernel, you may need to change your (specialized) kernel for a generic one instead.
Otherwise it might be an error in your fstab:
cat /etc/fstab | grep ntfs*
Both commands as root.
Last edited by Dutch_Master (2023-10-05 22:21:16)
Offline
root@cryptolab:~# uname -a
Linux cryptolab 6.1.0-12-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.52-1 (2023-09-07) x86_64 GNU/Linux
root@cryptolab:~# cat /etc/fstab | grep ntfs*
root@cryptolab:~#
Dev1 Stable | openrc | XFCE
Greetings from Greece
Offline
Is fuse installed?
Offline
Is fuse installed?
apt install fuse
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following packages will be REMOVED:
fuse3 gvfs-fuse ntfs-3g ntfs-3g-dev xdg-desktop-portal xdg-desktop-portal-gtk
The following NEW packages will be installed:
fuse
0 upgraded, 1 newly installed, 6 to remove and 0 not upgraded.
Need to get 61.3 kB of archives.
After this operation, 5,126 kB disk space will be freed.
Do you want to continue? [Y/n]
Last edited by jemadux (2023-10-06 07:13:56)
Dev1 Stable | openrc | XFCE
Greetings from Greece
Offline
solved ..
❯ sudo ntfsfix -d /dev/sdb1
Mounting volume... $MFTMirr does not match $MFT (record 3).
FAILED
Attempting to correct errors...
Processing $MFT and $MFTMirr...
Reading $MFT... OK
Reading $MFTMirr... OK
Comparing $MFTMirr to $MFT... FAILED
Correcting differences in $MFTMirr record 3...OK
Processing of $MFT and $MFTMirr completed successfully.
Setting required flags on partition... OK
Going to empty the journal ($LogFile)... OK
Checking the alternate boot sector... OK
NTFS volume version is 3.1.
NTFS partition /dev/sdb1 was processed successfully.
source https://bbs.archlinux.org/viewtopic.php?id=271650
Last edited by jemadux (2023-10-06 07:38:11)
Dev1 Stable | openrc | XFCE
Greetings from Greece
Offline
Well, strange. When posting the fuse hint I forgot that the old fuse has been replaced by fuse3.
Its working here on my workstation with fuse3 and ntfs-3g, no kernel modules.
Offline
Pages: 1