I've downloaded/tested the USB live version of Ubuntu 18 on my Desktop and decided to try and install it on my laptop. The laptop is a bit older, runs a 64bit CPU (Intel Q9000). When I try to boot to the USB drive, I see first the regular boot screen (keyboard + circle on bottom), followed by a command line blinking. Then, the screen goes into a pixel test mode, showing all RGB + grayscale test patterns and I hear a drum sound once.
When I try F4 to enter the debug mode, the same issue happens after selecting install.
Any advice?
Checked, checksum checks out. As mentioned, the USB drive works with my desktop computer and starts Ubuntu there.
Rufus
Acer Aspire 8930g, Q9000 CPU, Nvidia 9600M, 4GB Memory, 1TB HDD
nomodeset
to make it work with that graphics card. The following link and links from it can help you enternomodeset
in the correct way, Boot options – sudodus Aug 30 '18 at 17:12Just booted Linux Live, chrooted my installed linux drive and tried to edit /etc/default/grub . However I found that "nomodeset" is already saved in that file. Is there another place where grub accesses this nomodeset data?
– petaris Aug 31 '18 at 08:06sudo mount /dev/sdb6 /mnt
sudo mount /dev/sdb1 /mnt/boot
for i in /dev /dev/pts /proc /sys /run; do sudo mount -B $i /mnt$i; done
sudo chroot /mnt
grub-install /dev/sdb
sudo update-grub
This resulted in a command line only grub upon startup. I got linux to boot via
set root=(hd0,msdos6)
linux /boot/vmlinuz-4.15.0-29-generic
initrd /boot/initrd.img-4.15.0-29-generic
boot
Resulting in the test screen mode.
– petaris Aug 31 '18 at 08:06sudo update-grub
is intended for installed systems (not for live systems). – sudodus Aug 31 '18 at 09:03