I’ve recently updated my system to Ubuntu 20.04, and I’m running into a really frustrating issue with Chromium. I thought updating would be a smooth process, but it seems like I jumped into a rabbit hole instead. After the update, I decided to install the latest version of Chromium from the Snap store, thinking that would resolve any issues related to compatibility. However, every single time I try to launch the browser, absolutely nothing happens. It’s like I didn’t even click on it!
I’ve tried a bunch of things to troubleshoot this situation. I’ve restarted my computer multiple times to see if that could shock it back into working order, but no luck there. I also checked System Monitor to see if Chromium is somehow running in the background but not displaying the window, and it looks like it’s a ghost – not even a process in sight when I check! I tried launching it from the terminal as well to see if any error messages pop up, but all I get is this annoying silence. Just me staring at the command line, waiting for some sort of indication that it’s working or at least crashing.
What’s even more frustrating is that on my previous version of Ubuntu, Chromium was a breeze to use. I didn’t experience any major issues, and now it seems like I can’t even get it off the ground. I’ve considered uninstalling and reinstalling, but I’m a little hesitant because I don’t want to mess something up further; plus, I’ve heard that sometimes uninstalling might not get rid of all the configs and cache files.
So, I’m turning to you all for some help. Has anyone else encountered this glitch after upgrading to Ubuntu 20.04? Could it be a compatibility issue or something else entirely? Any advice or suggestions to get Chromium up and running again would be greatly appreciated!
It sounds like you’re experiencing a frustrating issue with Chromium on Ubuntu 20.04, particularly after installing the Snap version. One possible solution to try is to reset the user’s Chromium configuration files. These files might be causing issues after the update. You can do this by locating the `~/.config/chromium` directory in your home folder and renaming it (or removing it, but renaming is safer). Use the following command in the terminal to rename the folder:
mv ~/.config/chromium ~/.config/chromium_backup
. After that, attempt to launch Chromium again; it should create a new configuration folder. If this method doesn’t solve the problem, it’s worth checking the logs for any errors that could point to other issues. You can use the commandjournalctl -xe
to look at system logs around the time you tried launching Chromium.If renaming the configuration folder doesn’t resolve the issue, consider uninstalling and reinstalling Chromium. As you noted, Snap packages can sometimes keep config files even after uninstallation; thus, it’s advisable to use
sudo snap remove chromium
followed bysudo snap install chromium
to ensure a clean installation. If you’re still keen on eliminating old configs, you could add the--purge
option if you’re using traditional packages instead of Snap. Lastly, check if there are any system updates pending that might affect Snap or your graphical environment, as these can sometimes cause discrepancies with version compatibility. Once you have completed these troubleshooting steps, see if you can launch Chromium successfully without further issues.Chromium Not Launching on Ubuntu 20.04
Sounds like you’re having a tough time with Chromium after upgrading to Ubuntu 20.04. Totally get that frustration!
Here are a few suggestions you might try:
Just be careful, you might want to backup these folders first, just in case!
Then reinstall with:
Hopefully, one of these tips helps get your Chromium back to working order! If not, there’s always the option of trying a different browser while you troubleshoot.
Good luck!