blkid # Partions UUID
lsblk # List Partions with mounted point
fdisk -l # Partions Paths
su -l -c 'gedit /etc/fstab'

echo '
UUID="16108F4C108F3233" 	/FolderPath 	ntfs 		rw,noexec,noatime,nodev,nosuid 		0 0
UUID="16108F4C108F3233" 	/FolderPath 	ntfs 		defaults 							0 0
/Path/MediaName.iso 		/FolderPath 	iso9660 	ro,loop 							0 0
' >> /etc/fstab
mkdir -p /FolderPath
mount -a

-----------------------------------

#Access Control List

# add user to acl
setfacl -m u:UserName:rwx /FolderPath/

Permissions : rwx

# remove user from acl
setfacl -x u:UserName /FolderPath/

getfacl /FolderPath/
