2024-02-22, 06:01 PM
Instead of automounting, lets manually mount it.
In the output of the fdisk command, find your USB hard drive. Make a note of the device name. Usually something like /dev/sdb1
In the /etc/fstab you will add the following line.
Save and quit.
Code:
umount /media/mhkb/CRUISERBLADE
sudo nano /etc/fstab
sudo mkdir -p /media/external
sudo fdisk -l
In the output of the fdisk command, find your USB hard drive. Make a note of the device name. Usually something like /dev/sdb1
In the /etc/fstab you will add the following line.
Code:
/dev/sdb1 /media/external ext4 defaults 0 0
Save and quit.
Code:
sudo mount -a
sudo chown -R mhkb:jellyfin /media/external
sudo chmod -R 770 /media/external