First of all to install the Firefox Aurora(nightly) you can download the .tar.bz2
file from https://www.mozilla.org/en-US/firefox/channel/desktop/
-> Open terminal and navigate to the folder where you downloaded the file.
-> Now run the command tar xjf firefox-112.0a1.en-US.linux-x86_64.tar.bz2
to extract the files.
(the version provided is the one which is currently available in the website)
-> Move the extracted folder(firefox) to /opt using
sudo mv firefox /opt/
-> Create a symbolic link using
sudo ln -s /opt/firefox/firefox /usr/local/bin/firefox
This should solve the problem of Firefox not showing up on default applications.
If that doesn't solve the problem or your installation is different you can try creating a .desktop file for Firefox Aurora(nightly).
Open a new text file and add the following lines
[Desktop Entry]
Name=Firefox Aurora
Comment=Web Browser
GenericName=Web Browser
X-GNOME-FullName=Firefox Aurora Web Browser
Exec=/path/to/firefox/firefox %u
Terminal=false
X-MultipleArgs=false
Type=Application
Icon=/path/to/firefox/browser/chrome/icons/default/default128.png
Categories=Network;WebBrowser;
MimeType=text/html;text/xml;application/xhtml+xml;application/vnd.mozilla.xul+xml;text/mml;
StartupNotify=true
Actions=NewWindow;NewPrivateWindow;
[Desktop Action NewWindow]
Name=Open a New Window
Exec=firefox -new-window
[Desktop Action NewPrivateWindow]
Name=Open a New Private Window
Exec=firefox -private-window
Save it as firefoxaurora.desktop
.
Run chmod +x firefoxaurora.desktop
in terminal from where the .desktop
file is present to make it executable.
Now run sudo desktop-file-install firefoxaurora.desktop
Again that should fix the issue. Hope it helps!
/usr/share/applications
or~/.local/share/applications
. So GNOME wouldn't be aware the browser is "installed" as such, because it isn't. – popey Feb 26 '23 at 14:14