unmount a Linux disk partition centos
To unmount a Linux disk partition centos # umount /dev/sda1 Type the command to unmount /mnt forcefully: # fuser -km /mnt Where, -k : Kill processes accessing the file. -m : Name specifies a file on a mounted file system or a block device that is mounted. In above example you are using /mnt Linux … Read more