4

I have just installed xubuntu 16.04LTS on a Dell Inspiron Mini as a dual-boot with Windows 7.

When I booted it up for the first time yesterday, it worked fine. Today, however, I see the following:

/dev/sda5: recovering journal
/dev/sda5: clean, 174140/6045696 files, 1444115/24179712 blocks

I've consulted multiple other questions, such as Startup problem in 16.04 lts?, My Ubuntu is running fsck on every bootup, and Linux hanging at boot after fsck, which suggest that fsck is running on every boot or I have missing drivers, but none of them were exactly the same problem as I had.

However, in the problems concerning fsck, there is simply an irritating delay. Here it is stuck with this screen indefinitely, as far as I can tell. I've been waiting for quite a while now, and there hasn't been any change.

Do you have any possible solutions? Thanks.

3 Answers3

3

Hold Right-Shift to access GRUB-bootloader. Go to advanced options and start recovery-mode. When recovery mode menu opens, select to continue normal boot. Now if you get to login open terminal and type sudo nano /etc/default/grub

This is what I did.

  1. I changed "splash quiet" part to "nomodeset radeon.modeset=0 systemd.recover_state=0" if I'm correct nomodeset deals with intel or nvidia cards, could work with ati too. I have old ati card so radeon.modeset=0 seemed right but I did not play with these more to be really sure.

  2. save file in nano by pressing ctrl+o and then exit ctrl+x

  3. back in terminal again run sudo update-grub

Now try to do normal reboot by sudo reboot and see if this got your system booting normally.

ps. So maybe the problem is with display drivers??

xSamle
  • 31
1

I finally got mine to boot on Lubuntu (but I think I may end up using Xubuntu) after finding this solution on an archlinux forum.

Edit the kernel boot parameters, using (whichever text editor, I just used pico)

sudo pico /etc/default/grub

and where it says GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"

add in systemd.restore_state=0 so it should read like:

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash systemd.restore_state=0"

My source is https://bbs.archlinux.org/viewtopic.php?id=201523&p=2

and also https://bugzilla.redhat.com/show_bug.cgi?id=1253523

where I found some documentation related to this about "backlight" on the archlinux wiki. I can't link it since I don't have enough rep :( can only link two URLs at best.

*Edit: Now I have enough rep maybe? So this is where I saw the information: https://bbs.archlinux.org/viewtopic.php?id=201523&p=2

and

https://bugzilla.redhat.com/show_bug.cgi?id=1253523

Hope this works for you, took me a month to figure it out!

Apparently long story short: At boot, the system is trying to control the keyboard backlight, but this laptop doesn't even have one. Thus, it's stuck checking a nonexistent boot up parameter of whether to start with the light on or off.

  • I cannot do this because the only way I can get to a text editor is via the "root terminal" option under "recovery mode", which had a read-only system. Do you know some method to get around this? Thanks. (Sorry for the late reply) – Jonathan Lam Aug 13 '16 at 03:59
  • I've done the following two things, one of which is permanent and one is temporary.

    Route 1) At the GRUB menu, press the key that lets you edit the boot command (for me, I think it was "c" or "e"). Then after the words quiet splash, enter the above systemd.restore_state=0 thing. My main reference is: https://wiki.ubuntu.com/Kernel/KernelBootParameters

    This is only a temporary fix for just booting. Hopefully you can actually boot and then (permanently) edit the boot parameters like above once you're logged in.

    – Aaron Chen Aug 14 '16 at 08:26
  • Route 2?) Is the one I'm not sure exactly how to do but it's something like this: You can boot into a Live CD/USB from "Try without installing" and from the terminal, change to the partition your (x)ubuntu is on. Then you can edit the boot parameters using the same commands. My half-reference is http://askubuntu.com/questions/266429/error-file-grub-i386-pc-normal-mod-not-found?noredirect=1&lq=1 just for how to access your partition.

    I'm really hand-waving with Route 2, and I'm not any IT professional or guru with Linux; maybe someone else can help. Else, I hope Route 1 works for you ~

    – Aaron Chen Aug 14 '16 at 08:27
0

I had the same problem. Setting the kernel parameter loglevel=7 I found that the freeze is caused by the "Flush journal to persistent storage" operation that never ends. I resolved deleting the entire folder /var/log/journal. I believe that this is not the correct solution, but it is the onlyone that has worked for me.

RobotMan
  • 371
  • 2
  • 6