Browse Source

Add instructions for auto-mounting NTFS partitions.

main
Titouan Rigoudy 5 years ago
parent
commit
046be800d7
1 changed files with 16 additions and 0 deletions
  1. +16
    -0
      notes.md

+ 16
- 0
notes.md View File

@ -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
```

Loading…
Cancel
Save