Guides - Troubleshooting

Fully managed automatic daily, weekly, and biweekly backups of your Linode Compute Instances.

Create a Linode account to try this guide with a $100 credit.
This credit will be applied to any valid services used during your first 60 days.

Linode Backup Disk Won’t Boot

If you are restoring a single backup disk to your Linode, then the new disk will have a different UUID than the original. When this happens, configuration files on the Linode may still be referencing the old UUID of the original disk, instead of the new one, causing boot issues. If this is the case, you will likely see errors related to the UUID in your console when booting in Rescue Mode:

ALERT!  UUID=xxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx does not exist.  Dropping to a shell!

To fix this error, you will need to boot into Rescue Mode and edit your /etc/fstab file to account for the new UUID. This can be done in the following steps:

  1. Follow the instructions for Booting Into Rescue Mode using our Rescue and Rebuild guide. Once you have successfully completed step 4 in the section to Change Root, proceed to the next step.

  2. Enter the following command to obtain the UUID of your current disk:

     blkid
    

    Output will resemble the following:

    /dev/sda: UUID="ecfd4955-9ce6-44ad-a8e4-275d5ac13ffc" TYPE="ext4"
    Copy only the string surrounded by the quotation marks defining the UUID field in the output to use in the next step.

  3. You should now have access to your disk’s contents in the recovery environment. Check the contents of your /etc/fstab file for any entries pertaining to the UUID. This line may appear as follows:

    UUID=41c22818-fbad-4da6-8196-c816df0b7aa8  /disk2p2      ext3    defaults,errors=remount-ro 0       1
  4. Replace the string defining the UUID in the /etc/fstab file with the the UUID of the disk you copied from the output of the blkid command.

  5. After following all of the above steps, you should now be able to reboot your Linode normally.

This page was originally published on


Your Feedback Is Important

Let us know if this guide made it easy to get the answer you needed.