From 046be800d79d6558c65315ad6cff0ae51a23ae51 Mon Sep 17 00:00:00 2001 From: Titouan Rigoudy Date: Sat, 4 Apr 2020 13:54:36 -0400 Subject: [PATCH] Add instructions for auto-mounting NTFS partitions. --- notes.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/notes.md b/notes.md index 9fccb32..b046742 100644 --- a/notes.md +++ b/notes.md @@ -13,3 +13,19 @@ The rpmfusion nvidia driver package also disables Wayland separately. In file ``` WaylandEnable=false ``` + +Mount NTFS partitions in Fedora automatically +============================================= + +Identify the partitions using `sudo blkid` - specifically their UUIDs. + +Identify your UID and GID with `id -u` and `id -g` respectively. + +Add an entry to `/etc/fstab` per partition, of the form: + +``` +# Mount NTFS partitions owned by user `titz`, group `titz`. +# Directory permissions: 750 / drxwr-x---. +# File permissions: 640 / rw-r-----. +UUID=0123456789ABCDEF /media/windows ntfs defaults,windows_names,uid=1000,gid=1000,umask=000,dmask=027,fmask=137 0 0 +```