How can I mount an NTFS external USB drive as read-write on Ubuntu 22.04 LTS?
When I connect the drive, it is mounted automatically as read-only. By running df -h, I figured that the drive is mounted as /dev/sdb1.
When I try to mount it with
Code:
sudo ntfs-3g /dev/sdb1 /media/user/BRB
It says:
Mount is denied because the NTFS volume is already exclusively opened.
The volume may be already mounted, or another software may use it which
could be identified for example by the help of the 'fuser' command.
I unmount it with
Code:
sudo umount /dev/sdb1
(it doesn't say anything; apparently it's fine)
Then when I try to mount it back with
Code:
sudo mount /dev/sdb /media/user/BRB
it says:
mount: /media/user/BRB: mount point does not exist.
Bookmarks