From 74b7c85bb3092d3c4056243300413c674288ffa6 Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Mon, 1 Jun 2020 00:01:50 -0400 Subject: [PATCH] [+] Add notes for NTFS mounting --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index df1b2cd..b3819c9 100644 --- a/README.md +++ b/README.md @@ -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 +```