{"id":163,"date":"2026-06-02T09:45:22","date_gmt":"2026-06-02T09:45:22","guid":{"rendered":"https:\/\/velanremoteitsupport.com\/blog\/?post_type=techtips&#038;p=163"},"modified":"2026-06-18T09:25:53","modified_gmt":"2026-06-18T09:25:53","slug":"linux-emergency-mode-fix-boot-default","status":"publish","type":"techtips","link":"https:\/\/velanremoteitsupport.com\/blog\/techtips\/linux-emergency-mode-fix-boot-default\/","title":{"rendered":"How to Recover from Linux Emergency Mode &amp; into Default Mode"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"what-is\" style=\"font-size:20px\">What Is Emergency Mode in Linux?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Linux emergency mode is a basic systemd target (emergency.target) that provides a single root shell when the system fails to complete a normal boot process. It serves as the lowest-level recovery environment, with only the root filesystem mounted in read-only mode, and operates without network connectivity or additional services.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" style=\"font-size:20px\">What is the purpose of emergency mode in Linux?<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Make a root shell available even if the filesystem is corrupted.<\/li>\n\n\n\n<li>Permit errors in \/etc\/fstab to be manually corrected<\/li>\n\n\n\n<li>Use fsck to resolve disc corruption.<\/li>\n\n\n\n<li>Determine which systemd units are failing and preventing a normal boot.<\/li>\n\n\n\n<li>Recover from a broken initramfs or bad kernel parameters<\/li>\n<\/ul>\n\n\n\n<p class=\"has-cyan-bluish-gray-background-color has-background wp-block-paragraph\" style=\"font-size:16px\"><strong>Emergency vs rescue mode<br><\/strong>Emergency mode (<code>emergency.target<\/code>) mounts only root read-only and starts almost nothing. Rescue mode (<code>rescue.target<\/code>) mounts all local filesystems and starts more services. Use emergency mode for the most broken systems; use rescue mode for configuration issues.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"causes\" style=\"font-size:19px\"><strong>Common Causes of Linux Emergency Mode in Ubuntu Systems<\/strong><br><\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th class=\"has-text-align-left\" data-align=\"left\">Cause<\/th><th class=\"has-text-align-left\" data-align=\"left\">Symptom \/ Error<\/th><th class=\"has-text-align-left\" data-align=\"left\">Fix<\/th><\/tr><\/thead><tbody><tr><td>Bad \/etc\/fstab entry<\/td><td><em>Dependency failed for local-fs.target<\/em><\/td><td>Comment out bad line; correct UUID<\/td><\/tr><tr><td>Filesystem corruption<\/td><td><em>failed to mount on real root<\/em><\/td><td>Run&nbsp;<code>fsck -y \/dev\/sdXN<\/code><\/td><\/tr><tr><td>Missing \/ replaced disk<\/td><td>UUID not found in fstab<\/td><td>Run&nbsp;<code>blkid<\/code>; update fstab UUID<\/td><\/tr><tr><td>Broken initramfs<\/td><td><em>Entering emergency mode. Exit the shell to continue.<\/em><\/td><td>Regenerate with&nbsp;<code>dracut --force<\/code><\/td><\/tr><tr><td>Failed systemd service<\/td><td><em>Failed to start default.target<\/em><\/td><td><code>systemctl list-units --failed<\/code><\/td><\/tr><tr><td>Root account locked<\/td><td><em>Cannot open root shell, try again&#8230;<\/em><\/td><td>Use GRUB&nbsp;<code>rd.break<\/code>&nbsp;or live USB<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">You will see the following screen \u2013<\/p>\n\n\n\n<p class=\"has-cyan-bluish-gray-background-color has-background wp-block-paragraph\" style=\"font-size:17px\"><em>Welcome to emergency mode! After logging in, type \u201cjournalctl -xb\u201d to view system logs, \u201csystemctl reboot\u201d to reboot, \u201csystemctl default\u201d or ^D to try again to boot into default mode.<\/em><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Give root password for maintenance (or type control-D to continue):<\/em><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The following steps are used in Linux to boot the server in default mode and leave emergency mode in the Ubuntu system.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Step 1:<\/strong> Enter the password for the root. It might be your password to restart the server if necessary.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Step 2:<\/strong>&nbsp;For Quick Reboot: <strong>CTRL+D<\/strong> at the emergency prompt to attempt continuing the boot without logging in. If the error is transient, the system will boot normally. If not, you will be returned to emergency mode.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Step 3:<\/strong> For Force Reboot: Press&nbsp;<strong>CTRL+ALT+DELETE&nbsp;<\/strong>to trigger a systemd-managed reboot \u2014 safer than a hard power cycle.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Step 4<\/strong>: If the above steps do not resolve the issue, restart the server with&nbsp;<strong>CTRL+D&nbsp;<\/strong>with<strong>&nbsp;the root password&nbsp;<\/strong>and try the following commands to reboot the server in default mode.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Step 5:<\/strong> Before executing the unmount command, make a note of every valid&nbsp;mount point. All of the discs can be unmounted using these commands.<\/p>\n\n\n\n<p class=\"has-cyan-bluish-gray-background-color has-background wp-block-paragraph\" style=\"font-size:20px\"># unmount -a<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Step 6<\/strong>: The next step is to edit the fstab file in \/etc folder (\/etc\/fstab).&nbsp; Comment using the # the unmounted mount points.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Step 7:<\/strong> Next reboot the server, and the system will reboot in default mode.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" style=\"font-size:17px\"><strong>Some Linux terminal commands used to fix a system that fails to boot properly<\/strong><\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th class=\"has-text-align-left\" data-align=\"left\">Goal<\/th><th class=\"has-text-align-left\" data-align=\"left\">Command<\/th><\/tr><\/thead><tbody><tr><td>View boot error logs<\/td><td><code>journalctl -xb -p err<\/code><\/td><\/tr><tr><td>Remount root writable<\/td><td><code>mount -o remount,rw \/<\/code><\/td><\/tr><tr><td>List disk UUIDs<\/td><td><code>blkid<\/code><\/td><\/tr><tr><td>Check &amp; repair filesystem<\/td><td><code>fsck -y \/dev\/sdXN<\/code><\/td><\/tr><tr><td>Unmount all filesystems<\/td><td><code>umount -a<\/code><\/td><\/tr><tr><td>Edit fstab<\/td><td><code>nano \/etc\/fstab<\/code><\/td><\/tr><tr><td>Test fstab<\/td><td><code>mount -a<\/code><\/td><\/tr><tr><td>List failed units<\/td><td><code>systemctl list-units --failed<\/code><\/td><\/tr><tr><td>Reset failed units<\/td><td><code>systemctl reset-failed<\/code><\/td><\/tr><tr><td>Boot to default target<\/td><td><code>systemctl default<\/code><\/td><\/tr><tr><td>Reboot<\/td><td><code>systemctl reboot<\/code><\/td><\/tr><tr><td>Regenerate initramfs (RHEL)<\/td><td><code>dracut --force<\/code><\/td><\/tr><tr><td>Regenerate initramfs (Ubuntu)<\/td><td><code>update-initramfs -u<\/code><\/td><\/tr><tr><td>Regenerate initramfs (Arch)<\/td><td><code>mkinitcpio -P<\/code><\/td><\/tr><tr><td>Check system state<\/td><td><code>systemctl is-system-running<\/code><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"professional-linux-server-support\" style=\"font-size:19px\"><strong>Professional Linux Emergency Server Support<\/strong><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Dealing with a Linux server in emergency mode on a production system can be stressful and time-critical. At&nbsp;<strong>Velan Remote IT Support<\/strong>, our&nbsp;<a href=\"https:\/\/velanremoteitsupport.com\/outsourced-server-management-support-service\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>server support engineers<\/strong><\/a>&nbsp;specialize in exactly these kinds of urgent recovery scenarios \u2014 from corrupted filesystems and broken&nbsp;<code>\/etc\/fstab<\/code>&nbsp;entries to failed kernel updates and initramfs issues.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">We troubleshoot Linux emergency mode, rescue mode, and server crash recovery for clients every day across Ubuntu, RHEL, CentOS, Debian, Rocky Linux, and many other distributions. Our team is available 24\/7 for <a href=\"https:\/\/velanremoteitsupport.com\/managed-server-administration-support-service\" type=\"link\" id=\"https:\/\/velanremoteitsupport.com\/managed-server-administration-support-service\"><strong>emergency server support.<\/strong><\/a><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">If your server is stuck in emergency mode right now and you need immediate help,&nbsp;<a href=\"https:\/\/velanremoteitsupport.com\/contact-remote-managed-it-service-provider\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>fill out our Quick Connect form<\/strong><\/a>&nbsp;and a support engineer will reach out to you promptly.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"faq\" style=\"font-size:21px\"><strong>Frequently Asked Questions on Ubuntu Systems<\/strong><\/h2>\n\n\n\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1780376607717\"><strong class=\"schema-faq-question\"><strong>How do I get out of emergency mode without a root password?<\/strong><\/strong> <p class=\"schema-faq-answer\">Edit the GRUB kernel line and add\u00a0<code>rd.break<\/code>\u00a0(Fedora\/RHEL) or\u00a0<code>init=\/bin\/bash<\/code>\u00a0(Arch\/Ubuntu) to get a shell without a password. Alternatively, boot from a live USB and use the chroot method above.<\/p> <\/div> <div class=\"schema-faq-section\" id=\"faq-question-1780376627515\"><strong class=\"schema-faq-question\">Why does Linux keep booting into emergency mode after I fix it?<\/strong> <p class=\"schema-faq-answer\">Check these in order: (1) fstab still has an error \u2014 test with\u00a0<code>mount -a<\/code>; (2) filesystem corruption is not fully repaired \u2014 run\u00a0<code>fsck -f<\/code>\u00a0to force a check; (3) the UUID changed after a disk replacement; (4) a systemd unit is still failing \u2014 check\u00a0<code>systemctl list-units --failed<\/code>.<\/p> <\/div> <div class=\"schema-faq-section\" id=\"faq-question-1780376672099\"><strong class=\"schema-faq-question\">What does &#8220;you are in emergency mode&#8221; mean on Ubuntu 22.04?<\/strong> <p class=\"schema-faq-answer\">It means systemd could not mount one or more filesystems listed in\u00a0<code>\/etc\/fstab<\/code>. The most common cause is a wrong UUID after a disk was replaced or resized. Run\u00a0<code>blkid<\/code>\u00a0and compare UUIDs against\u00a0<code>\/etc\/fstab<\/code>.<\/p> <\/div> <div class=\"schema-faq-section\" id=\"faq-question-1780376684694\"><strong class=\"schema-faq-question\">Is emergency mode the same as rescue mode?<\/strong> <p class=\"schema-faq-answer\">No. Emergency mode is more restrictive \u2014 only the root filesystem is mounted read-only. Rescue mode mounts all local filesystems and starts more services. Emergency mode is the fallback when even rescue mode cannot start.<\/p> <\/div> <div class=\"schema-faq-section\" id=\"faq-question-1780376711730\"><strong class=\"schema-faq-question\">How do I enter emergency mode intentionally?<\/strong> <p class=\"schema-faq-answer\">Add\u00a0<code>systemd.unit=emergency.target<\/code>\u00a0to the kernel line in GRUB, or run\u00a0<code>systemctl emergency<\/code>\u00a0from a running system.<\/p> <\/div> <\/div>\n\n\n\n<div data-wp-context=\"{ &quot;autoclose&quot;: false, &quot;accordionItems&quot;: [] }\" data-wp-interactive=\"core\/accordion\" role=\"group\" class=\"wp-block-accordion is-layout-flow wp-block-accordion-is-layout-flow\">\n<div data-wp-class--is-open=\"state.isOpen\" data-wp-context=\"{ &quot;id&quot;: &quot;accordion-item-1&quot;, &quot;openByDefault&quot;: false }\" data-wp-init=\"callbacks.initAccordionItems\" data-wp-on-window--hashchange=\"callbacks.hashChange\" class=\"wp-block-accordion-item is-layout-flow wp-block-accordion-item-is-layout-flow\">\n<h3 class=\"wp-block-accordion-heading\"><button aria-expanded=\"false\" aria-controls=\"accordion-item-1-panel\" data-wp-bind--aria-expanded=\"state.isOpen\" data-wp-on--click=\"actions.toggle\" data-wp-on--keydown=\"actions.handleKeyDown\" id=\"accordion-item-1\" type=\"button\" class=\"wp-block-accordion-heading__toggle\"><span class=\"wp-block-accordion-heading__toggle-title\"><\/span><span class=\"wp-block-accordion-heading__toggle-icon\" aria-hidden=\"true\">+<\/span><\/button><\/h3>\n\n\n\n<div inert aria-labelledby=\"accordion-item-1\" data-wp-bind--inert=\"!state.isOpen\" id=\"accordion-item-1-panel\" role=\"region\" class=\"wp-block-accordion-panel is-layout-flow wp-block-accordion-panel-is-layout-flow\">\n<p class=\"wp-block-paragraph\"><\/p>\n<\/div>\n<\/div>\n<\/div>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n","protected":false},"excerpt":{"rendered":"<p>What Is Emergency Mode in Linux? Linux emergency mode is a basic systemd target (emergency.target) that provides a single root shell when the system fails to complete a normal boot process. It serves as the lowest-level recovery environment, with only the root filesystem mounted in read-only mode, and operates without network connectivity or additional services. [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":180,"comment_status":"open","ping_status":"closed","template":"","meta":{"footnotes":""},"techtips_category":[6],"class_list":["post-163","techtips","type-techtips","status-publish","has-post-thumbnail","hentry","techtips_category-applications"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Fix Linux Emergency Mode Issues and Restore Boot<\/title>\n<meta name=\"description\" content=\"Learn how to exit emergency mode in Linux and restore default boot mode using simple troubleshooting steps for Ubuntu servers and systems.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/velanremoteitsupport.com\/blog\/techtips\/linux-emergency-mode-fix-boot-default\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Fix Linux Emergency Mode Issues and Restore Boot\" \/>\n<meta property=\"og:description\" content=\"Learn how to exit emergency mode in Linux and restore default boot mode using simple troubleshooting steps for Ubuntu servers and systems.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/velanremoteitsupport.com\/blog\/techtips\/linux-emergency-mode-fix-boot-default\/\" \/>\n<meta property=\"og:site_name\" content=\"Cloud, DevOps &amp; Managed It Service Blog From Top Consultants\" \/>\n<meta property=\"article:modified_time\" content=\"2026-06-18T09:25:53+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/velanremoteitsupport.com\/blog\/wp-content\/uploads\/2026\/06\/How-to-Exit-Emergency-Mode-in-Linux.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"628\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/velanremoteitsupport.com\\\/blog\\\/techtips\\\/linux-emergency-mode-fix-boot-default\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/velanremoteitsupport.com\\\/blog\\\/techtips\\\/linux-emergency-mode-fix-boot-default\\\/\"},\"author\":{\"name\":\"velanitsupport\",\"@id\":\"https:\\\/\\\/velanremoteitsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/7f8186652db2990b657bfadb49b49700\"},\"headline\":\"How to Recover from Linux Emergency Mode &amp; into Default Mode\",\"datePublished\":\"2026-06-02T09:45:22+00:00\",\"dateModified\":\"2026-06-18T09:25:53+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/velanremoteitsupport.com\\\/blog\\\/techtips\\\/linux-emergency-mode-fix-boot-default\\\/\"},\"wordCount\":878,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/velanremoteitsupport.com\\\/blog\\\/techtips\\\/linux-emergency-mode-fix-boot-default\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/velanremoteitsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/How-to-Exit-Emergency-Mode-in-Linux.jpg\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/velanremoteitsupport.com\\\/blog\\\/techtips\\\/linux-emergency-mode-fix-boot-default\\\/#respond\"]}]},{\"@type\":[\"WebPage\",\"FAQPage\"],\"@id\":\"https:\\\/\\\/velanremoteitsupport.com\\\/blog\\\/techtips\\\/linux-emergency-mode-fix-boot-default\\\/\",\"url\":\"https:\\\/\\\/velanremoteitsupport.com\\\/blog\\\/techtips\\\/linux-emergency-mode-fix-boot-default\\\/\",\"name\":\"How to Fix Linux Emergency Mode Issues and Restore Boot\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/velanremoteitsupport.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/velanremoteitsupport.com\\\/blog\\\/techtips\\\/linux-emergency-mode-fix-boot-default\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/velanremoteitsupport.com\\\/blog\\\/techtips\\\/linux-emergency-mode-fix-boot-default\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/velanremoteitsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/How-to-Exit-Emergency-Mode-in-Linux.jpg\",\"datePublished\":\"2026-06-02T09:45:22+00:00\",\"dateModified\":\"2026-06-18T09:25:53+00:00\",\"description\":\"Learn how to exit emergency mode in Linux and restore default boot mode using simple troubleshooting steps for Ubuntu servers and systems.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/velanremoteitsupport.com\\\/blog\\\/techtips\\\/linux-emergency-mode-fix-boot-default\\\/#breadcrumb\"},\"mainEntity\":[{\"@id\":\"https:\\\/\\\/velanremoteitsupport.com\\\/blog\\\/techtips\\\/linux-emergency-mode-fix-boot-default\\\/#faq-question-1780376607717\"},{\"@id\":\"https:\\\/\\\/velanremoteitsupport.com\\\/blog\\\/techtips\\\/linux-emergency-mode-fix-boot-default\\\/#faq-question-1780376627515\"},{\"@id\":\"https:\\\/\\\/velanremoteitsupport.com\\\/blog\\\/techtips\\\/linux-emergency-mode-fix-boot-default\\\/#faq-question-1780376672099\"},{\"@id\":\"https:\\\/\\\/velanremoteitsupport.com\\\/blog\\\/techtips\\\/linux-emergency-mode-fix-boot-default\\\/#faq-question-1780376684694\"},{\"@id\":\"https:\\\/\\\/velanremoteitsupport.com\\\/blog\\\/techtips\\\/linux-emergency-mode-fix-boot-default\\\/#faq-question-1780376711730\"}],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/velanremoteitsupport.com\\\/blog\\\/techtips\\\/linux-emergency-mode-fix-boot-default\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/velanremoteitsupport.com\\\/blog\\\/techtips\\\/linux-emergency-mode-fix-boot-default\\\/#primaryimage\",\"url\":\"https:\\\/\\\/velanremoteitsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/How-to-Exit-Emergency-Mode-in-Linux.jpg\",\"contentUrl\":\"https:\\\/\\\/velanremoteitsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/How-to-Exit-Emergency-Mode-in-Linux.jpg\",\"width\":1200,\"height\":628,\"caption\":\"Exit Ubuntu emergency mode\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/velanremoteitsupport.com\\\/blog\\\/techtips\\\/linux-emergency-mode-fix-boot-default\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/velanremoteitsupport.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Tech Tips\",\"item\":\"https:\\\/\\\/velanremoteitsupport.com\\\/blog\\\/techtips\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How to Recover from Linux Emergency Mode &amp; into Default Mode\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/velanremoteitsupport.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/velanremoteitsupport.com\\\/blog\\\/\",\"name\":\"Cloud, DevOps &amp; Managed It Service Blog From Top Consultants\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/velanremoteitsupport.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/velanremoteitsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/7f8186652db2990b657bfadb49b49700\",\"name\":\"velanitsupport\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/fcd0064d165acc2e6f538183065b52b252301170debe16e6caf5a7d70a6de80f?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/fcd0064d165acc2e6f538183065b52b252301170debe16e6caf5a7d70a6de80f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/fcd0064d165acc2e6f538183065b52b252301170debe16e6caf5a7d70a6de80f?s=96&d=mm&r=g\",\"caption\":\"velanitsupport\"},\"sameAs\":[\"https:\\\/\\\/velanremoteitsupport.com\\\/blog\"],\"url\":\"https:\\\/\\\/velanremoteitsupport.com\\\/blog\\\/author\\\/velanitsupport\\\/\"},{\"@type\":\"Question\",\"@id\":\"https:\\\/\\\/velanremoteitsupport.com\\\/blog\\\/techtips\\\/linux-emergency-mode-fix-boot-default\\\/#faq-question-1780376607717\",\"position\":1,\"url\":\"https:\\\/\\\/velanremoteitsupport.com\\\/blog\\\/techtips\\\/linux-emergency-mode-fix-boot-default\\\/#faq-question-1780376607717\",\"name\":\"How do I get out of emergency mode without a root password?\",\"answerCount\":1,\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"Edit the GRUB kernel line and add\u00a0rd.break\u00a0(Fedora\\\/RHEL) or\u00a0init=\\\/bin\\\/bash\u00a0(Arch\\\/Ubuntu) to get a shell without a password. Alternatively, boot from a live USB and use the chroot method above.\",\"inLanguage\":\"en-US\"},\"inLanguage\":\"en-US\"},{\"@type\":\"Question\",\"@id\":\"https:\\\/\\\/velanremoteitsupport.com\\\/blog\\\/techtips\\\/linux-emergency-mode-fix-boot-default\\\/#faq-question-1780376627515\",\"position\":2,\"url\":\"https:\\\/\\\/velanremoteitsupport.com\\\/blog\\\/techtips\\\/linux-emergency-mode-fix-boot-default\\\/#faq-question-1780376627515\",\"name\":\"Why does Linux keep booting into emergency mode after I fix it?\",\"answerCount\":1,\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"Check these in order: (1) fstab still has an error \u2014 test with\u00a0mount -a; (2) filesystem corruption is not fully repaired \u2014 run\u00a0fsck -f\u00a0to force a check; (3) the UUID changed after a disk replacement; (4) a systemd unit is still failing \u2014 check\u00a0systemctl list-units --failed.\",\"inLanguage\":\"en-US\"},\"inLanguage\":\"en-US\"},{\"@type\":\"Question\",\"@id\":\"https:\\\/\\\/velanremoteitsupport.com\\\/blog\\\/techtips\\\/linux-emergency-mode-fix-boot-default\\\/#faq-question-1780376672099\",\"position\":3,\"url\":\"https:\\\/\\\/velanremoteitsupport.com\\\/blog\\\/techtips\\\/linux-emergency-mode-fix-boot-default\\\/#faq-question-1780376672099\",\"name\":\"What does \\\"you are in emergency mode\\\" mean on Ubuntu 22.04?\",\"answerCount\":1,\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"It means systemd could not mount one or more filesystems listed in\u00a0\\\/etc\\\/fstab. The most common cause is a wrong UUID after a disk was replaced or resized. Run\u00a0blkid\u00a0and compare UUIDs against\u00a0\\\/etc\\\/fstab.\",\"inLanguage\":\"en-US\"},\"inLanguage\":\"en-US\"},{\"@type\":\"Question\",\"@id\":\"https:\\\/\\\/velanremoteitsupport.com\\\/blog\\\/techtips\\\/linux-emergency-mode-fix-boot-default\\\/#faq-question-1780376684694\",\"position\":4,\"url\":\"https:\\\/\\\/velanremoteitsupport.com\\\/blog\\\/techtips\\\/linux-emergency-mode-fix-boot-default\\\/#faq-question-1780376684694\",\"name\":\"Is emergency mode the same as rescue mode?\",\"answerCount\":1,\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"No. Emergency mode is more restrictive \u2014 only the root filesystem is mounted read-only. Rescue mode mounts all local filesystems and starts more services. Emergency mode is the fallback when even rescue mode cannot start.\",\"inLanguage\":\"en-US\"},\"inLanguage\":\"en-US\"},{\"@type\":\"Question\",\"@id\":\"https:\\\/\\\/velanremoteitsupport.com\\\/blog\\\/techtips\\\/linux-emergency-mode-fix-boot-default\\\/#faq-question-1780376711730\",\"position\":5,\"url\":\"https:\\\/\\\/velanremoteitsupport.com\\\/blog\\\/techtips\\\/linux-emergency-mode-fix-boot-default\\\/#faq-question-1780376711730\",\"name\":\"How do I enter emergency mode intentionally?\",\"answerCount\":1,\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"Add\u00a0systemd.unit=emergency.target\u00a0to the kernel line in GRUB, or run\u00a0systemctl emergency\u00a0from a running system.\",\"inLanguage\":\"en-US\"},\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Fix Linux Emergency Mode Issues and Restore Boot","description":"Learn how to exit emergency mode in Linux and restore default boot mode using simple troubleshooting steps for Ubuntu servers and systems.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/velanremoteitsupport.com\/blog\/techtips\/linux-emergency-mode-fix-boot-default\/","og_locale":"en_US","og_type":"article","og_title":"How to Fix Linux Emergency Mode Issues and Restore Boot","og_description":"Learn how to exit emergency mode in Linux and restore default boot mode using simple troubleshooting steps for Ubuntu servers and systems.","og_url":"https:\/\/velanremoteitsupport.com\/blog\/techtips\/linux-emergency-mode-fix-boot-default\/","og_site_name":"Cloud, DevOps &amp; Managed It Service Blog From Top Consultants","article_modified_time":"2026-06-18T09:25:53+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/velanremoteitsupport.com\/blog\/wp-content\/uploads\/2026\/06\/How-to-Exit-Emergency-Mode-in-Linux.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/velanremoteitsupport.com\/blog\/techtips\/linux-emergency-mode-fix-boot-default\/#article","isPartOf":{"@id":"https:\/\/velanremoteitsupport.com\/blog\/techtips\/linux-emergency-mode-fix-boot-default\/"},"author":{"name":"velanitsupport","@id":"https:\/\/velanremoteitsupport.com\/blog\/#\/schema\/person\/7f8186652db2990b657bfadb49b49700"},"headline":"How to Recover from Linux Emergency Mode &amp; into Default Mode","datePublished":"2026-06-02T09:45:22+00:00","dateModified":"2026-06-18T09:25:53+00:00","mainEntityOfPage":{"@id":"https:\/\/velanremoteitsupport.com\/blog\/techtips\/linux-emergency-mode-fix-boot-default\/"},"wordCount":878,"commentCount":0,"image":{"@id":"https:\/\/velanremoteitsupport.com\/blog\/techtips\/linux-emergency-mode-fix-boot-default\/#primaryimage"},"thumbnailUrl":"https:\/\/velanremoteitsupport.com\/blog\/wp-content\/uploads\/2026\/06\/How-to-Exit-Emergency-Mode-in-Linux.jpg","inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/velanremoteitsupport.com\/blog\/techtips\/linux-emergency-mode-fix-boot-default\/#respond"]}]},{"@type":["WebPage","FAQPage"],"@id":"https:\/\/velanremoteitsupport.com\/blog\/techtips\/linux-emergency-mode-fix-boot-default\/","url":"https:\/\/velanremoteitsupport.com\/blog\/techtips\/linux-emergency-mode-fix-boot-default\/","name":"How to Fix Linux Emergency Mode Issues and Restore Boot","isPartOf":{"@id":"https:\/\/velanremoteitsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/velanremoteitsupport.com\/blog\/techtips\/linux-emergency-mode-fix-boot-default\/#primaryimage"},"image":{"@id":"https:\/\/velanremoteitsupport.com\/blog\/techtips\/linux-emergency-mode-fix-boot-default\/#primaryimage"},"thumbnailUrl":"https:\/\/velanremoteitsupport.com\/blog\/wp-content\/uploads\/2026\/06\/How-to-Exit-Emergency-Mode-in-Linux.jpg","datePublished":"2026-06-02T09:45:22+00:00","dateModified":"2026-06-18T09:25:53+00:00","description":"Learn how to exit emergency mode in Linux and restore default boot mode using simple troubleshooting steps for Ubuntu servers and systems.","breadcrumb":{"@id":"https:\/\/velanremoteitsupport.com\/blog\/techtips\/linux-emergency-mode-fix-boot-default\/#breadcrumb"},"mainEntity":[{"@id":"https:\/\/velanremoteitsupport.com\/blog\/techtips\/linux-emergency-mode-fix-boot-default\/#faq-question-1780376607717"},{"@id":"https:\/\/velanremoteitsupport.com\/blog\/techtips\/linux-emergency-mode-fix-boot-default\/#faq-question-1780376627515"},{"@id":"https:\/\/velanremoteitsupport.com\/blog\/techtips\/linux-emergency-mode-fix-boot-default\/#faq-question-1780376672099"},{"@id":"https:\/\/velanremoteitsupport.com\/blog\/techtips\/linux-emergency-mode-fix-boot-default\/#faq-question-1780376684694"},{"@id":"https:\/\/velanremoteitsupport.com\/blog\/techtips\/linux-emergency-mode-fix-boot-default\/#faq-question-1780376711730"}],"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/velanremoteitsupport.com\/blog\/techtips\/linux-emergency-mode-fix-boot-default\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/velanremoteitsupport.com\/blog\/techtips\/linux-emergency-mode-fix-boot-default\/#primaryimage","url":"https:\/\/velanremoteitsupport.com\/blog\/wp-content\/uploads\/2026\/06\/How-to-Exit-Emergency-Mode-in-Linux.jpg","contentUrl":"https:\/\/velanremoteitsupport.com\/blog\/wp-content\/uploads\/2026\/06\/How-to-Exit-Emergency-Mode-in-Linux.jpg","width":1200,"height":628,"caption":"Exit Ubuntu emergency mode"},{"@type":"BreadcrumbList","@id":"https:\/\/velanremoteitsupport.com\/blog\/techtips\/linux-emergency-mode-fix-boot-default\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/velanremoteitsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Tech Tips","item":"https:\/\/velanremoteitsupport.com\/blog\/techtips\/"},{"@type":"ListItem","position":3,"name":"How to Recover from Linux Emergency Mode &amp; into Default Mode"}]},{"@type":"WebSite","@id":"https:\/\/velanremoteitsupport.com\/blog\/#website","url":"https:\/\/velanremoteitsupport.com\/blog\/","name":"Cloud, DevOps &amp; Managed It Service Blog From Top Consultants","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/velanremoteitsupport.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/velanremoteitsupport.com\/blog\/#\/schema\/person\/7f8186652db2990b657bfadb49b49700","name":"velanitsupport","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/fcd0064d165acc2e6f538183065b52b252301170debe16e6caf5a7d70a6de80f?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/fcd0064d165acc2e6f538183065b52b252301170debe16e6caf5a7d70a6de80f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/fcd0064d165acc2e6f538183065b52b252301170debe16e6caf5a7d70a6de80f?s=96&d=mm&r=g","caption":"velanitsupport"},"sameAs":["https:\/\/velanremoteitsupport.com\/blog"],"url":"https:\/\/velanremoteitsupport.com\/blog\/author\/velanitsupport\/"},{"@type":"Question","@id":"https:\/\/velanremoteitsupport.com\/blog\/techtips\/linux-emergency-mode-fix-boot-default\/#faq-question-1780376607717","position":1,"url":"https:\/\/velanremoteitsupport.com\/blog\/techtips\/linux-emergency-mode-fix-boot-default\/#faq-question-1780376607717","name":"How do I get out of emergency mode without a root password?","answerCount":1,"acceptedAnswer":{"@type":"Answer","text":"Edit the GRUB kernel line and add\u00a0rd.break\u00a0(Fedora\/RHEL) or\u00a0init=\/bin\/bash\u00a0(Arch\/Ubuntu) to get a shell without a password. Alternatively, boot from a live USB and use the chroot method above.","inLanguage":"en-US"},"inLanguage":"en-US"},{"@type":"Question","@id":"https:\/\/velanremoteitsupport.com\/blog\/techtips\/linux-emergency-mode-fix-boot-default\/#faq-question-1780376627515","position":2,"url":"https:\/\/velanremoteitsupport.com\/blog\/techtips\/linux-emergency-mode-fix-boot-default\/#faq-question-1780376627515","name":"Why does Linux keep booting into emergency mode after I fix it?","answerCount":1,"acceptedAnswer":{"@type":"Answer","text":"Check these in order: (1) fstab still has an error \u2014 test with\u00a0mount -a; (2) filesystem corruption is not fully repaired \u2014 run\u00a0fsck -f\u00a0to force a check; (3) the UUID changed after a disk replacement; (4) a systemd unit is still failing \u2014 check\u00a0systemctl list-units --failed.","inLanguage":"en-US"},"inLanguage":"en-US"},{"@type":"Question","@id":"https:\/\/velanremoteitsupport.com\/blog\/techtips\/linux-emergency-mode-fix-boot-default\/#faq-question-1780376672099","position":3,"url":"https:\/\/velanremoteitsupport.com\/blog\/techtips\/linux-emergency-mode-fix-boot-default\/#faq-question-1780376672099","name":"What does \"you are in emergency mode\" mean on Ubuntu 22.04?","answerCount":1,"acceptedAnswer":{"@type":"Answer","text":"It means systemd could not mount one or more filesystems listed in\u00a0\/etc\/fstab. The most common cause is a wrong UUID after a disk was replaced or resized. Run\u00a0blkid\u00a0and compare UUIDs against\u00a0\/etc\/fstab.","inLanguage":"en-US"},"inLanguage":"en-US"},{"@type":"Question","@id":"https:\/\/velanremoteitsupport.com\/blog\/techtips\/linux-emergency-mode-fix-boot-default\/#faq-question-1780376684694","position":4,"url":"https:\/\/velanremoteitsupport.com\/blog\/techtips\/linux-emergency-mode-fix-boot-default\/#faq-question-1780376684694","name":"Is emergency mode the same as rescue mode?","answerCount":1,"acceptedAnswer":{"@type":"Answer","text":"No. Emergency mode is more restrictive \u2014 only the root filesystem is mounted read-only. Rescue mode mounts all local filesystems and starts more services. Emergency mode is the fallback when even rescue mode cannot start.","inLanguage":"en-US"},"inLanguage":"en-US"},{"@type":"Question","@id":"https:\/\/velanremoteitsupport.com\/blog\/techtips\/linux-emergency-mode-fix-boot-default\/#faq-question-1780376711730","position":5,"url":"https:\/\/velanremoteitsupport.com\/blog\/techtips\/linux-emergency-mode-fix-boot-default\/#faq-question-1780376711730","name":"How do I enter emergency mode intentionally?","answerCount":1,"acceptedAnswer":{"@type":"Answer","text":"Add\u00a0systemd.unit=emergency.target\u00a0to the kernel line in GRUB, or run\u00a0systemctl emergency\u00a0from a running system.","inLanguage":"en-US"},"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/velanremoteitsupport.com\/blog\/wp-json\/wp\/v2\/techtips\/163","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/velanremoteitsupport.com\/blog\/wp-json\/wp\/v2\/techtips"}],"about":[{"href":"https:\/\/velanremoteitsupport.com\/blog\/wp-json\/wp\/v2\/types\/techtips"}],"author":[{"embeddable":true,"href":"https:\/\/velanremoteitsupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/velanremoteitsupport.com\/blog\/wp-json\/wp\/v2\/comments?post=163"}],"version-history":[{"count":13,"href":"https:\/\/velanremoteitsupport.com\/blog\/wp-json\/wp\/v2\/techtips\/163\/revisions"}],"predecessor-version":[{"id":265,"href":"https:\/\/velanremoteitsupport.com\/blog\/wp-json\/wp\/v2\/techtips\/163\/revisions\/265"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/velanremoteitsupport.com\/blog\/wp-json\/wp\/v2\/media\/180"}],"wp:attachment":[{"href":"https:\/\/velanremoteitsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=163"}],"wp:term":[{"taxonomy":"techtips_category","embeddable":true,"href":"https:\/\/velanremoteitsupport.com\/blog\/wp-json\/wp\/v2\/techtips_category?post=163"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}