I want to move /home
to a NTFS drive on Ubuntu 20.0 LTS. I tried the steps mentioned here, but it fails after the following steps:
sudo mkdir /mnt/tmp
sudo mount /dev/sdb1 /mnt/tmp
sudo rsync -avx /home/ /mnt/tmp
sudo mount /dev/sdb1 /home
The following message is shown:
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.
Can /home
be moved to an NTFS drive like this on Ubuntu ?