I upgraded 21.04 to 21.10 and have a couple of issues which I'll separate out. The first is Firefox will not launch. Or rather it does, but only to give the error
Your Firefox profile cannot be loaded. It may be missing or inaccessible.There doesn't seem to be any way around the error message. I had Firefox running successfully under 21.04 before the upgrade.
42 Answers
The Firefox snap app is the default web browser in Ubuntu 21.10. You can uninstall the snap version and install the .deb version with the command:
sudo apt install firefox && sudo snap remove firefoxThe .deb version of Firefox should be able to see your profile.
I had the same issue. Here is what I did to quickly fix this issue.
Uninstall firefox snap with:
sudo snap remove firefoxInstall firefox snap with:
sudo snap install firefoxRun snap with:
snap run firefox
With the last command you should see the following lines in the terminal:
Importing existing firefox profiles from /home/xxxxxxx/.mozilla/firefox
Found default profile: xxxxxxxx.default
Import done in 1.826 sAfter that all bookmarks and login/password should be back.
1