Ubuntu – Disk drive boot problem: The disk drive for /tmp is not ready yet or is not present!

mounttmp

When I started Ubuntu, I got this error: The disk drive for /tmp is not ready yet or is not present! I tried skipping mounting, but it came up like a command prompt.

Please help me.

Best Answer

Try this. Just press Ctrl + Alt + T on your keyboard to open Terminal. When it opens, run the command(s) below:

sudo mv /tmp /tmp_old
sudo mkdir /tmp
sudo chmod 1777 /tmp

Reboot, and it should be OK.

Related Question