DEV Community

TechFixDocs
TechFixDocs

Posted on • Originally published at techfixdocs.my.id

How to Fix: Why does 'mount' give the error "mount: can't find /mnt/disk"?

Error fixing mount command in Ubuntu

The Problem

The 'mount' command returns an error 'can't find /mnt/disk in /etc/fstab or /etc/mtab' when trying to mount an image file on Ubuntu. This issue affects users who are new to Linux and may not be familiar with the mounting process.This error can be frustrating for users as it prevents them from accessing the mounted disk, which is essential for various tasks such as data recovery or creating a bootable environment.
⚠️ Common Causes

                The primary reason for this error is that the image file path '/mnt/disk' does not exist in the system's file systems. The 'mount' command looks for the disk in /etc/fstab or /etc/mtab, but since it's not present, it throws an error.Another possible cause could be that the image file is not a valid ISO file or the mount options are incorrect.

            ✅ Best Solutions to Fix It

                Using the 'sudo mount -o loop,isoimage' command

                    Step 1: Open a terminal and navigate to the directory where your image file is located.Step 2: Use the 'sudo mount -o loop,isoimage test.img /mnt/disk' command to mount the image file. The '-o loop' option tells the system to treat the image file as a loop device, while the 'isoimage' option tells it to create an ISO9660 filesystem on the device.Step 3: Verify that the disk has been mounted successfully by checking the output of the 'df -h' command.



                Adding the image file to /etc/fstab

                    Step 1: Open a text editor and create a new line in the /etc/fstab file. The format should be:    Step 2: For example, if your image file is located at '/home/user/test.img', add the following line to the end of the file: '/home/user/test.img /mnt/disk iso9660 loop'.Step 3: Save and close the file. Then, run the 'sudo mount -a' command to apply the changes.


            💡 Conclusion
            By following these steps, you should be able to successfully mount your image file on Ubuntu. If you encounter any further issues, ensure that the image file is valid and the mounting options are correct.
Enter fullscreen mode Exit fullscreen mode

Full step-by-step guide with screenshots: Read the complete fix here

Found this helpful? Check out more verified tech fixes at TechFixDocs

Top comments (0)