On ubuntu 22.04.4 I am trying to mount a partition as read/write. The following command seems to work:
sudo mount -o rw,user,uid=1000,umask=007,exec /dev/nvme0n1p4 /media/Work/
but I want to add it so /etc/fstab so it is mounted automatically. The following fstab entry however does not work:
/dev/nvme0n1p4 /media/Work/ fat32 rw,user,uid=1000,umask=007,exec 0 0
It will make the system go to emergency state. How to fix the fstab entry?
vfat, notfat32– muru Mar 27 '24 at 10:15ntfs3. Before that it wasntfs-3g. – muru Mar 27 '24 at 10:23uname -agives you the kernel version – user5325 Mar 27 '24 at 10:44