sudo blkid
/dev/sdc1: LABEL="Music" UUID="B814-3F9B" BLOCK_SIZE="512" TYPE="exfat" PARTUUID="5c1d9c23-01"
Then I added:
UUID=B814-3F9B /media/music exfat defaults,rw,uid=1000,gid=1000,umask=0002 0 0
to: /etc/fstab (sudo nano /etc/fstab)
Not sure if this matters but I needed to share the drive on a Windows network so I altered /etc/samba/smb.conf (sudo nano /etc/samba/smb.conf):
[music]
path = /media/music
comment = Put all your Music here
available = yes
valid users = (your_user_name)
guest ok = yes
read only = no
browseable = yes
public = yes
writable = yes
create mask = 0777
available = Yes
create mode = 0644
directory mode = 0755
![[Image: image.png]](https://i.ibb.co/zWPhVBFH/image.png)