Skip to content

Instantly share code, notes, and snippets.

@ericoporto
Created June 19, 2016 18:28
Show Gist options
  • Save ericoporto/76b0621eeebf80f9af5cc64d50158d14 to your computer and use it in GitHub Desktop.
Save ericoporto/76b0621eeebf80f9af5cc64d50158d14 to your computer and use it in GitHub Desktop.
A writing on booting Lubuntu 16.04 on ASUS EEEPC 701 with nonpae cpu

I have an old Asus EEE PC 701 (4GB SSD 2GB RAM) with Crunchbang and since Crunchbang development stopped, decided to try Lubuntu in it. So I made a Lubuntu 16.04 i386 bootable flash using unetbootin and a 8GB pen drive under Ubuntu.

At the system start, selecting the option Try Lubuntu without installing gives me a non-pae cpu error. Using tab I see that this option is made like this.

/casper/vmlinuz initrd=/casper/initrd.lz file=/cdrom/preseed/lubuntu.seed boot=casper quiet splash --- persistent 

So I try forcepae option to boot. This will boot, but error on [ OK ] Started Update UTMP about System Runlevel Changes. To fix, we need to boot twice, first let's add nomodeset.

/casper/vmlinuz initrd=/casper/initrd.lz file=/cdrom/preseed/lubuntu.seed boot=casper quiet splash nomodeset forcepae -- forcepae --- persistent 

This will take a long time to boot and the system will be very slow. Be patient, we just need a network connection. Then, open a terminal (after you connected to the internet) and type :

sudo apt-get install xserver-xorg-video-intel

Reboot and now change the grub option (using tab) to:

/casper/vmlinuz initrd=/casper/initrd.lz file=/cdrom/preseed/lubuntu.seed boot=casper quiet splash forcepae -- forcepae --- persistent 

If everything is done correctly, the system should boot fine. You can make the forcepae settings persistent by editing the grub.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment