Home Ubuntu How To Boot Into Rescue Mode Or Emergency Mode In Ubuntu 22.04 / 20.04 / 18.04

How To Boot Into Rescue Mode Or Emergency Mode In Ubuntu 22.04 / 20.04 / 18.04

Login To Rescue Mode Or Emergency Mode In Ubuntu Linux

By sk
Published: Last Updated on 152.2K views

This tutorial explains how to boot into rescue mode or emergency mode in Ubuntu 22.04, 20.04 and 18.04 LTS editions.

As you might already know, Runlevels are replaced with Systemd targets in many Linux distributions such as RHEL 7 / RHEL 8 and Ubuntu 16.04 LTS and newer versions. For more details about runlevels and systemd target, refer to this guide.

This guide is specifically written for Ubuntu, however the steps given below should work on most other Linux distributions that use Systemd as the default service manager.

Before getting into the topic, let us have a brief understanding about what is rescue mode and emergency mode and what is the purpose of these both modes.

What is Rescue Mode?

The rescue mode is equivalent to single user mode in Linux distributions that use SysV as the default service manager. In rescue mode, all local filesystems will be mounted, only some important services will be started. However, no normal services (E.g network services) won't be started.

The rescue mode is helpful in situations where the system can't boot normally. Also, we can perform some important rescue operations, such as reset root password, in rescue mode.

What is Emergency Mode?

In contrast to the rescue mode, nothing is started in the emergency mode. No services are started, no mount points are mounted, no sockets are established, nothing. All you will have is just a raw shell. Emergency mode is suitable for debugging purposes.

First, we will see how to boot into rescue mode and emergency mode in Ubuntu 22.04 and 20.04 LTS distributions. The procedure for entering rescue mode in Ubuntu 22.04 and 20.04 LTS is exactly the same!

Boot into Rescue Mode in Ubuntu 22.04 / 20.04 LTS

We can boot into rescue mode in two ways.

Method 1

Power on your Ubuntu system. Hit the ESC key right after the BIOS logo disappears to display the Grub menu.

In the GRUB menu, choose the first entry and press "e" to edit it.

GRUB Menu In Ubuntu 22.04 / 20.04 LTS
GRUB Menu In Ubuntu 22.04 / 20.04 LTS

Hit the DOWN arrow and find the line that starts with the word "linux" and add the following line at the end of it. To reach the end, just press CTRL+e or use the END key or LEFT/RIGHT arrows in your keyboard.

systemd.unit=rescue.target
Edit Grub Boot Menu Entries To Enter Into Rescue Mode In Ubuntu 22.04 / 20.04 LTS
Edit Grub Boot Menu Entries To Enter Into Rescue Mode In Ubuntu 22.04 / 20.04 LTS

After adding the above line, hit Ctrl+x or F10 to boot into rescue mode.

After a few seconds, you will be landed in the rescue mode (single user mode) as root user. You will be prompted to press ENTER to enter the maintenance mode.

Here is how rescue mode looks like in Ubuntu 22.04 / 20.04 LTS systems:

Boot Into Rescue Mode In Ubuntu 22.04 / 20.04 LTS
Boot Into Rescue Mode In Ubuntu 22.04 / 20.04 LTS

Now do whatever you want to do in the rescue mode. You may need to mount the root (/) file system in read/write mode before doing any operations in rescue mode.

mount -n -o remount,rw /
Mount Root File System In Read Write Mode In Ubuntu 22.04 / 20.04 LTS
Mount Root File System In Read Write Mode In Ubuntu 22.04 / 20.04 LTS

Once done, press "Ctrl+d" to boot into normal mode. Alternatively, you can type any one of the following commands to boot into normal mode.

systemctl default

Or,

exit

If you want to reboot the system instead of booting into normal mode, enter:

systemctl reboot

Method 2

In this method, you don't need to edit the grub boot menu entries.

Power on the system and choose "Advanced options for Ubuntu" from the Grub boot menu.

Choose Advanced Options For Ubuntu From Grub Boot Menu
Choose Advanced Options For Ubuntu From Grub Boot Menu

Next, you will see the list of available Ubuntu versions with Kernel versions. Choose the "Recovery mode" in the grub boot menu in Ubuntu.

Choose Recovery Mode In Grub Boot Menu In Ubuntu 22.04 / 20.04 LTS
Choose Recovery Mode In Grub Boot Menu In Ubuntu 22.04 / 20.04 LTS

After a few seconds, you will see the Ubuntu recovery menu. From the recovery menu, choose "Drop to root shell prompt" option and hit the ENTER key.

Enter Into Root Shell Prompt In Ubuntu 22.04 / 20.04 LTS
Enter Into Root Shell Prompt In Ubuntu 22.04 / 20.04 LTS

Now you will be landed in the rescue mode.

Ubuntu Maintenance Mode
Ubuntu Maintenance Mode

Mount the root (/) file system in read/write mode by entering the following command:

mount -n -o remount,rw /
Mount Root File System In Read Write Mode In Ubuntu
Mount Root File System In Read Write Mode In Ubuntu

Do whatever you want to do in the rescue mode.

Once done, type exit to return back to the recovery menu.

exit

Finally, choose "Resume normal boot" option and hit the ENTER key.

Boot Into Normal Mode In Ubuntu
Boot Into Normal Mode In Ubuntu

Press ENTER key again to exit recovery mode and continue booting into normal mode.

Exit The Recovery Mode In Ubuntu
Exit The Recovery Mode In Ubuntu

If you don't want to boot into normal mode, type "reboot" and press ENTER from the maintenance mode to restart your system.

Boot into Emergency Mode in Ubuntu 22.04 / 20.04 LTS

When the GRUB boot menu appears, press "e" to edit it.

GRUB Menu In Ubuntu 22.04 / 20.04 LTS
GRUB Menu In Ubuntu 22.04 / 20.04 LTS

Find the line that starts with the word "linux" and add the following line at the end of it.

systemd.unit=emergency.target
Edit Grub Boot Menu Entries To Enter Into Emergency Mode In Ubuntu 22.04 / 20.04 LTS
Edit Grub Boot Menu Entries To Enter Into Emergency Mode In Ubuntu 22.04 / 20.04 LTS

After adding the above line, hit Ctrl+x or F10 to boot into emergency mode.

After a few seconds, you will be landed in the emergency mode as root user. You will be prompted to press ENTER to enter the maintenance mode.

Here is how emergency mode looks like in Ubuntu 22.04 / 20.04 LTS system:

Boot Into Emergency Mode In Ubuntu 22.04 / 20.04 LTS
Boot Into Emergency Mode In Ubuntu 22.04 / 20.04 LTS

Now do whatever you want to do in the emergency mode. You may need to mount the root (/) file system in read/write mode before doing any operations in this mode.

mount -n -o remount,rw /

Once done, press "Ctrl+d" to boot into normal mode. Alternatively, you can type any one of the following commands to boot into normal mode.

systemctl default

Or,

exit

If you want to reboot the system instead of booting into normal mode, enter:

systemctl reboot

Boot into Rescue Mode in Ubuntu 18.04 LTS

Boot your Ubuntu system. When the Grub menu appears, choose the first entry and press e to edit. (To reach the end, just press CTRL+e or use the END key or LEFT/RIGHT arrows in your keyboard):

Grub Menu
Grub Menu

If you don't see the Grub menu, just hit ESC key right after the BIOS logo disappears.

Find the line that starts with word "linux" and add the following line at the end of that line (To reach the end, just press CTRL+e or use the END key or LEFT/RIGHT arrows in your keyboard):

systemd.unit=rescue.target
Edit Grub Menu
Edit Grub Menu

Once you added the above line, just press CTRL+x or F10 to continue to boot into rescue mode. After a few seconds, you will be landed in the rescue mode (single user mode) as root user.

Here is how rescue mode looks like in Ubuntu 18.04 LTS server:

Ubuntu Rescue Mode
Ubuntu Rescue Mode

Next, type the following command to mount root (/) file system into read/write mode.

mount -n -o remount,rw /

Boot into Emergency Mode

Booting your Ubuntu into emergency is as same as above method. All you have to do is replace "systemd.unit=rescue.target" with "systemd.unit=emergency.target" when editing grub menu.

Edit Grub Menu
Edit Grub Menu

Once you added "systemd.unit=emergency.target", press Ctrl+x or F10 to continue booting into emergency mode.

Ubuntu Emergency Mode
Ubuntu Emergency Mode

Finally, you can mount root filesystem into read/write mode with command:

mount -n -o remount,rw /

Switch between Rescue and Emergency Modes

If you are in rescue mode, you don't have to edit the grub boot entry as I mentioned above. Instead, just type the following command to switch to emergency mode instantly:

systemctl emergency

Similarly, to switch from emergency to rescue mode, type:

systemctl rescue

Conclusion

You know now what is rescue and emergency modes and how to boot into rescue and emergency modes in Ubuntu 22.04, 20.04 and 18.04 LTS systems. Like I already mentioned, the steps provided here will work on many recent Linux versions that uses Systemd.

You May Also Like

2 comments

india_delhi October 5, 2022 - 10:58 pm

Make ubuntu live usb
boot using live usb then choose “Try ubuntu”
“search the missing file path on internet”
Open folder in ubuntu and go to ” + other locations ”
copy missing files from usb to your ubuntu drive
if ask permission to copy then use ” sudo -H nautilus ” in terminal. A new folder is open with root access…use this folder to copy-paste.
“”””””””””””””””””””””””reboot”””””””””””””””””””””””””””””
follow same for other missing files…..

Reply
wwwrun September 12, 2023 - 2:51 am

Thanks, that was helping a lot. I found the emergency mode kicking in when booting into the recovery console having the interface compete with the command line, not allowing to enter any command properly. Allowing to consciously boot into the rescue mode from grub allowed me to fix some disk errors on /home after a power outage on a separate partition with fsck.

Reply

Leave a Comment

* By using this form you agree with the storage and handling of your data by this website.

This site uses Akismet to reduce spam. Learn how your comment data is processed.

This website uses cookies to improve your experience. By using this site, we will assume that you're OK with it. Accept Read More