Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 372 Bytes

automount.md

File metadata and controls

29 lines (24 loc) · 372 Bytes

Automount

1. Make mount point

mkdir /mnt/big

2. Get drive UUID

sudo blkid
sudo fdisk -l

3. Edit fstab

sudo vim /etc/fstab
# then paste this
# UUID=1bd37cc5-9310-4fbf-b28e-4cef2d7e62a9 /mnt/big  ext4  defaults  0  2

4. Mount

sudo mount -a

Allow others

sudo setfacl -R -m u:plex:rwx /mnt/big