So I just upgrade my HTPC from 18.04 to 18.10. It has a built in AMD video card and it is plugged in to my tv with a HDMI cable and it is set to autmatically log in. After the upgrade, the computer will boot and have the ubuntu hue like the log in prompt is coming then the screen will go black. I plugged it into a much smaller TV and it did fine but for some reason it doesn't like my wide screen. Any ideas?
Asked
Active
Viewed 68 times
radeon.modeset=0
and/oracpi=off
to your GRUB. Add it after the wordsquiet splash
within the quotes of that line. There's some more to make that a permanent fix if it works, but for now let's see if that works. Have you tried to see if the issue is replicated when using a live USB that has 18.04 or 18.10 installed on it? – avisitoritseems Mar 16 '19 at 15:54sudo nano /etc/default/grub
, and addingradeon.modeset=0
to the line beginning inGRUB_CMDLINE_LINUX_DEFAULT
. That or just purge and reinstall your video drivers. This is interesting to me, I didn't think AMD drivers had issues like Nvidia does. – avisitoritseems Mar 16 '19 at 17:38nomodeset
andaspci=off
to GRUB yourself. Save with Ctrl + O -> enter -> Ctrl + X, and in console typesudo update-grub
so that your settings your are saved for every boot. This shouldn't cause any performance issues. Here are a couple references that may help: https://ubuntuforums.org/showthread.php?t=1613132 https://askubuntu.com/questions/1124197/ – avisitoritseems Mar 16 '19 at 20:26sudo modprobe radeon
orsudo modprobe amdgpu
after installing the correct AMD drivers. If that breaks, usesudo modprobe -r radeon
orsudo modprobe -r amdgpu
to revert. This should let your system know to load those modules. If one works it's great. If both don't load because it can't find them then you mat be missing drivers. Btw the widescreen issue may be due to missing/incorrect drivers, so really I would look at drivers before literally anything else. – avisitoritseems Mar 16 '19 at 20:34software-settings-gtk
, which should be called "Software and Updates" in your application launcher, and check the tab 'Additional Drivers'. You should be able to install optimal AMD drivers from there, although I use Nvidia so YMMV with AMD if your specific card requires proprietary drivers to use. The reason to use this route is to have a GUI that gives you an idea of what you're actually using to drive X11. – avisitoritseems Mar 17 '19 at 04:13nomodeset
andaspci=off
to see if it finally works. Also, if you installed proprietary drivers in the past, you should have alternate repos in 'Other Software' that were unticked during the distro upgrade to [ironically] protect you from bugs. You can tick those active and it would be installable via apt. – avisitoritseems Mar 17 '19 at 04:13modprobe
(did you spell it right in console?) failed for bothmodprobe radeon
andmodprobe amdgpu
. Because you don't have the modules for AMD drivers, this likely means you don't have AMD drivers installed to begin with which definitely would cause issues with display resolution. – avisitoritseems Mar 17 '19 at 04:21BTW, if you aren't hellbent on keeping 18.10 and your current system you could reformat and go back to 18.04 to save yourself the time. Ofc, there's no gaurentee that'll work either....
Another possible solution: changing distro -- https://www.reddit.com/r/linux_gaming/comments/6al8ps/linux_distro_with_best_amd_driver_support/dhff3nv/
– avisitoritseems Mar 17 '19 at 04:28