@ubfan1
I wanted to thank you for your post here.
I received this laptop for Christmas and I use Ubuntu to create ROMs for android phones. So its a must.
I used these parameters to boot "try Ubuntu"; I created a new menu item so as to not modify the default settings on grub.cfg.
Code:
menuentry "Try Ubuntu for ASUS GL552VW" {
set gfxpayload=keep
linux /casper/vmlinuz.efi file=/cdrom/preseed/ubuntu.seed cdrom-detect/try-usb=true noprompt floppy.allowed_drive_mask=0 ignore_uuid boot=casper i915.preliminary_hw_support=1 nouveau.modeset=0 nouveau.noaccel=1 nomodeset acpi=0 acpi_osi=linux acpi_backlight=vendor noalpic intel_idle.max_cstate=1 ---
initrd /casper/initrd.lz
}
I was able to install 15.10; after it completed I restarted from the USB stick one more time and modified the grub.cfg on my laptop using the same added options:
Code:
i915.preliminary_hw_support=1 nouveau.modeset=0 nouveau.noaccel=1 nomodeset acpi=0 acpi_osi=linux acpi_backlight=vendor noalpic intel_idle.max_cstate=1
Then restarted and used the grub menu on the hard drive, Ubuntu 15.10 started right up.
For completeness, the only option I changed to dual boot was fast boot in windows 10. Nothing was changed in the UEFI/BIOS settings. Matter of fact, I modified a bunch then did a reset defaults once I found these options to pass to linux in this post.
Thank you again for taking the time to answer the original question.
EDIT:
The better solution is to modify /etc/grub.d/10_linux to that any subsequent updates don't over write the grub.cfg file and thus your modifications.
So
Code:
sudo gedit /etc/grub.d/10_linux
look for line 177, it should start with
Code:
linux ${rel_dirname}/${basename}.efi.signed root=${linux_root_device_thisversion}
then after ro add
Code:
nmodeset acpi=0 acpi_osi=linux acpi_backlight=vendor noalpic i915.preliminary_hw_support=1
save and close the file then update grub via
is what worked for me.
Bookmarks