Installing the latest Firefox version on Debian 12
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearFA
    facecloth
    1y ago 100%

    you can install as many firefox instances you like by downloading and extracting the tarball and by running a script (suppose firefox clone is extracted in ~/firefox-clone)

    #!/bin/sh
    
    HOME=$(pwd)
    firefox --no-remote
    

    saving as firefox-clone.sh and running it inside firefox-clone directory.

    1