Announcement

Collapse
No announcement yet.

Installing Firefox

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Installing Firefox

    I've just created a new installation of Precise Kubuntu. One of the actions on the initial application menu is to install Firefox. I did that, but it didn't seem to have an effect; the installation seemed to succeed uneventfully, but when I was done I still had only the installer, not Firefox itself. What am I missing?

    #2
    I cannot help you with the "install Firefox" link in the menu, but you can install Firefox through Muon Package Manager or the Terminal. The Terminal command is:
    Code:
    sudo apt-get install firefox

    Comment


      #3
      Firefox versions

      Is the Firefox you get from mozilla.org the same as the one gotten from the repositories? If not, which is preferable?

      I've read somewhere that mozilla.org is dropping Ubuntu support. Do you know anything about that?

      Comment


        #4
        Originally posted by pwabrahams View Post
        Is the Firefox you get from mozilla.org the same as the one gotten from the repositories? If not, which is preferable?

        I've read somewhere that mozilla.org is dropping Ubuntu support. Do you know anything about that?
        I don't believe the version from Mozilla themselves is the exact same as the one found in the repositories but I think there are a few minor changes. I would always install from the repositories first but if I wanted software that was available in the repositories then download either from the main developers own website or from sourceforge.net website. Sourceforge is a great website to go for all open source software but in most cases you will need to compile the code and in stall it yourself.

        Comment


          #5
          It is the same code as Mozilla Firefox, they have just tweaked the theme and other things via the ubufox extension. There may be more, Not sure about unity integration

          Sent from my SCH-I510 using Tapatalk 2

          Comment


            #6
            What happened.

            It turns out that when I tried to use the installer, I didn't have a network connection even though I thought I did. Once I had the connection, the installer did its thing correctly. I suppose the installer should complain explicitly if there's no network connection instead of silently quitting.

            Comment


              #7
              The Firefox package depends on a Unity global menu plugin that serves no purpose in KDE. Avoid that by altering the install command thusly:
              Code:
              sudo apt-get install --no-install-recommends firefox
              You can install a slightly different binary, one compiled with better KDE integration, from a software archive maintained by Blue Shell, the organization that sponsors Kubuntu's development:

              Code:
              sudo add-apt-repository ppa:blue-shell/firefox-kde
              echo -e 'Package: *\nPin: release o=LP-PPA-blue-shell-firefox-kde\nPin-Priority: 1000' | sudo tee /etc/apt/preferences.d/blue-shell-firefox > /dev/null
              sudo apt-get update
              sudo apt-get install --no-install-recommends firefox firefox-kde-support
              Note: the second line above begins with echo and ends with /dev/null. It might wrap for display purposes. It's best if you copy-paste each line into a Konsole window.

              Comment


                #8
                Originally posted by pwabrahams View Post
                It turns out that when I tried to use the installer, I didn't have a network connection even though I thought I did. Once I had the connection, the installer did its thing correctly. I suppose the installer should complain explicitly if there's no network connection instead of silently quitting.
                Put it down to experience. Every computer "expert" has done something stupid when working with computers. You arn't the first and you won't be the last.

                Comment

                Working...
                X