
Originally Posted by
IsmAvatar
drs305: I have tried your suggestion and edited the entry, replacing "quiet splash" with "nomodeset" and then continued with boot using Ctrl+X. It proceeded to the purple screen, and then the black screen with several lines of text ending with "Checking battery state" and the flashing cursor, and then did not proceed any further.
In summary, unfortunately that did not fix it, and I'm still having the same issue. I do greatly appreciate you guys trying to help me, and I'll be so happy once this works again.
Do the same in the grub menu as before, except-- replace "quiet splash" with "--verbose single". It may go to a rescue screen, where you will press resume boot... It will drop you down to a command line prompt.
First lwhile we are able, find out some info on your Video
Code:
lspci -vnn | grep VGA
With the card you had, the nomodeset boot option should have worked, since it didn't, theres other things going on. So I'm going to tell you how to get around them...
Code:
sudo apt-get update
sudo apt-get remove nvidia-*
sudo apt-get install linux-headers-'uname -r'
sudo apt-get install nvidia-current
sudo nvidia-xconfig
sudo apt-get update
echo options nouveau modeset=0 > /etc/modprobe.d/nouveau-kms.conf
echo RUN+="/sbin/modprobe nvidia" > /etc/udev/rules.d/90-modprobe.rules
sudo update-initramfs -u
sudo reboot
And test.
What all that does, is removes any previous instances of the nvidia driver or it's pieces, makes sure there is a header file there, installs the driver and configures it. It then it straightens out the load order of the files, while updating that to that initial loading image file.
Tell me how it goes.
Bookmarks