Format drive and create desired permissions (GParted)<br>List drives with uuid<br><code>sudo blkid</code><br><code>ls -l /dev/disk/by-uuid</code><br><code>lsblk -f</code><br>Create folder wherever you want to access the drive with correct permissions<br><code>mkdir /media/data.ext2</code><br>Add to fstab (This will automatically mount it as desired on startup)<br><code>sudo edit /etc/fstab</code><br><code>UUID=f48dc231-02 /media/data.ext2 ntfs-3g permissions,auto 0 0</code><br>Remount<br><code>sudo mount -a</code>