M BUZZ CRAZE NEWS
// general

How to unmount after using mount --bind option?

By Emma Martinez

I have mounted a hard disk /dev/sda1 on /media/backup. Further, I have issued the following command:

mkdir /home/users/Desktop/backup
sudo mount --bind /media/backup /home/users/Desktop/backup

This allows me to access /media/backup from /home/users/Desktop/backup as well. However, now I would like to remove the --bind from /home/users/Desktop/backup. How should I go about doing this correctly?

Do I simply remove the /home/users/Desktop/backup directory? Or should I be using umount?

1 Answer

umount /home/users/Desktop/backup will remove the bind between the 2 folders.

You can then check /home/users/Desktop/backup to make sure that the bind is gone and remove the folder if you wish.

2

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy