/tmp holds temporary files, that are deleted at next boot. So you just need to create the folder again with the right permissions.
Well, perhaps it is not that hard. Boot from the DVD. Once on the desktop, open a terminal. Usually the root partition of your installation would be on /dev/sda1, but if you aren't sure you can check with:
- Code: Select all
sudo fdisk -l
Once you know which partition has the root filesystem of your installation, mount it to /mnt as so:
- Code: Select all
sudo mount /dev/sda1 /mnt
Then create the folder as follows:
- Code: Select all
sudo mkdir /mnt/tmp
sudo chmod 1777 /mnt/tmp
Then unmount it (no typo):
- Code: Select all
sudo umount /mnt
That should do it.