[+] Add notes for NTFS mounting

This commit is contained in:
Hykilpikonna
2020-06-01 00:01:50 -04:00
committed by GitHub
parent 70f6e2a930
commit 74b7c85bb3
+10
View File
@@ -172,3 +172,13 @@ sctl start smb
sctl enable nmb
sctl start nmb
```
If you are still using an NTFS drive:
```bash
dnf install ntfs-3g fuse
modprobe fuse
mount -t ntfs-3g /dev/sdb1 /mnt/data
nano /etc/fstab
# Add line: /dev/sdb1 /mnt/data ntfs-3g defaults 0 0
```