how to fix this and How to mount /dev/sda1 in /media with specific enter image description here
Asked
Active
Viewed 791 times
1 Answers
1
unmount
sudo umount /dev/sda1
create mountpoint, select a name that is easy to remember (only once)
sudo mkdir /media/sda1
mount
sudo mount /dev/sda1 /media/sda1
You may want to modify the permissions and ownership. This problem is typical for partitions with a Microsoft file system, NTFS, FAT32 and exFAT. The ownership and permissions are set when mounting and cannot be modified without unmounting and mounting again, this time with new settings.
See this link with more details,

sudodus
- 46,324
- 5
- 88
- 152