LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Debian (https://www.linuxquestions.org/questions/debian-26/)
-   -   Fire Fox, latest version? (https://www.linuxquestions.org/questions/debian-26/fire-fox-latest-version-366438/)

hitest 09-23-2005 11:04 PM

Fire Fox, latest version?
 
I've just got Debian 3.1 working, using FF 1.0.4 to post this, used synaptic to get it.
Does Debian offer the latest version of FF, 1.0.7? If so would I use Apt to get it? I re-loaded the synaptic repositories and 1.0.4 is the latest version.
I'm not too concerned if it is not available. Debian rocks!

aysiu 09-24-2005 12:10 AM

It looks as if there are a few Debian repositories that have at least up to 1.0.6:

http://www1.apt-get.org/search.php?q...arch%5B%5D=all

I know Ubuntu already has 1.0.7 (I see Ubuntu in your profile, too).

hitest 09-24-2005 12:15 AM

Quote:

Originally posted by aysiu
It looks as if there are a few Debian repositories that have at least up to 1.0.6:

http://www1.apt-get.org/search.php?q...arch%5B%5D=all

I know Ubuntu already has 1.0.7 (I see Ubuntu in your profile, too).

Yes, I've got FF 1.0.7 running on my Ubuntu box, it's great!
Here's a stupid n00b, Debian question. How do you get the 1.0.6 version? I updated Synaptic, it's not carrying it.
Perhaps using apt at a shell prompt?

Edit: added later, ignore my n00b question. I clicked on your link, saw the repository:-) Thanks for the link.

aysiu 09-24-2005 12:24 AM

apt-get at the shell prompt is just a different version of Synaptic--it's doing the same thing. Do you see the link I gave you before? Add the appropriate repositories to your /etc/apt/sources.list. Then reload and see what pops up in Synaptic.

HappyTux 09-24-2005 12:27 AM

Quote:

Originally posted by hitest
Yes, I've got FF 1.0.7 running on my Ubuntu box, it's great!
Here's a stupid n00b, Debian question. How do you get the 1.0.6 version? I updated Synaptic, it's not carrying it.
Perhaps using apt at a shell prompt?

If you have sarge security in your sources.list you already have it the last security update for it was basically 1.0.6 renamed back to 1.0.4 due to problems backporting the changes. If you want to get newer packages than are in Sarge then you will have to look around for backports at places like apt-get.org and backports.org where you will be able to get the newer packages compiled to run on our system otherwise you need to change the instances of sarge in your sources.list to testing the use apt-get dist-upgrade after updating of course then your entire system will be updated and you will be able to get the newer packages as they come into testing from unstable.

hitest 09-24-2005 12:39 AM

Hi aysiu and HappyTux,

Thank you for the replies. I'll try and update my repositories, aysiu. If I understand you, HappyTux, then I already have 1.0.6 if I'm running 1.0.4. I refreshed synaptic before installing 1.0.4.
I appreciate your replies, gentlemen!:D

HappyTux 09-24-2005 01:07 AM

Quote:

Originally posted by hitest
Hi aysiu and HappyTux,

Thank you for the replies. I'll try and update my repositories, aysiu. If I understand you, HappyTux, then I already have 1.0.6 if I'm running 1.0.4. I refreshed synaptic before installing 1.0.4.
I appreciate your replies, gentlemen!:D

You have it if you have this in your sources.list.

Code:

deb http://security.debian.org/ sarge/updates main contrib

And have the version 1.0.4-2sarge3 installed.

Code:

apt-cache policy mozilla-firefox
mozilla-firefox:
  Installed: 1.0.6-5
  Candidate: 1.0.6-5
  Version table:
 *** 1.0.6-5 0
        990 http://amd64.debian.net testing/main Packages
        600 http://amd64.debian.net unstable/main Packages
        100 /var/lib/dpkg/status
    1.0.4-2sarge3 0
        990 http://secure-testing.debian.net etch/security-updates/main Packages
        500 http://security.debian.org sarge/updates/main Packages

BTW I was looking at the backports.org site and it looks like you can probably download 1.0.7 from there and use dpkg -i mozilla-firefox-????.deb and install it from the command line you may actually want to put the deb line for the site in your sources.list the guy who does the packages is a Debian developer so you won't be getting any broken half-assed packages from him.

hitest 09-24-2005 01:31 AM

Quote:

Originally posted by HappyTux
You have it if you have this in your sources.list.

Code:

deb http://security.debian.org/ sarge/updates main contrib

And have the version 1.0.4-2sarge3 installed.

Code:

apt-cache policy mozilla-firefox
mozilla-firefox:
  Installed: 1.0.6-5
  Candidate: 1.0.6-5
  Version table:
 *** 1.0.6-5 0
        990 http://amd64.debian.net testing/main Packages
        600 http://amd64.debian.net unstable/main Packages
        100 /var/lib/dpkg/status
    1.0.4-2sarge3 0
        990 http://secure-testing.debian.net etch/security-updates/main Packages
        500 http://security.debian.org sarge/updates/main Packages

BTW I was looking at the backports.org site and it looks like you can probably download 1.0.7 from there and use dpkg -i mozilla-firefox-????.deb and install it from the command line you may actually want to put the deb line for the site in your sources.list the guy who does the packages is a Debian developer so you won't be getting any broken half-assed packages from him.

Hey, thanks, HappyTux!
I just checked my synaptic repositories and I do have the security site there that you mentioned. I'm also running 1.0.4-2sarge3. So I'm up to date!:D

archtoad6 09-27-2005 07:48 AM

Minor correction
 
Quote:

Originally posted by aysiu
apt-get at the shell prompt is just a different version of Synaptic ...
Well, technically it's the other way 'round: Synaptic is (like KPackage) a GUI front end for apt-get & the rest of the APT package management system.

craigevil 09-27-2005 10:51 AM

Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Firefox/1.0.7 (Debian package 1.0.7-1) is in unstable.

You can take a look at :
# Backports of various packages for Debian 3.1 Sarge
# Updated versions of Firefox and Thunderbird
# For more information visit http://debian.stdout.at/
deb http://debian.stdout.at/ ./

BittaBrotha 10-31-2005 04:32 PM

I've just noticed also that FF is version 1.0.4. So I've added deb http://debian.stdout.at/ ./ to my source list.

I get this message below when I do the apt-get upgrade.

'WARNING: The following packages cannot be authenticated!
libfreetype6 mozilla-firefox mozilla-thunderbird
Install these packages without verification [y/N]? WARNING: The following packages cannot be authenticated!'

Any ideas on this?

Thnx.

Dead Parrot 10-31-2005 06:38 PM

Quote:

I've just noticed also that FF is version 1.0.4.
You have no need to worry if you've got security.debian.org in your sources.list. FF 1.0.4-2sarge5 already has the security fixes backported from 1.0.7.

http://lists.debian.org/debian-secur.../msg00231.html


All times are GMT -5. The time now is 05:08 PM.