Firefox version


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Firefox version
# 1  
Old 03-21-2013
Firefox version

Hello,
I'm trying to find the version of Firefox that is on my server. Normally I do this.
Code:
> firefox -version
Mozilla Firefox 10.0.7

The issue is that this version of Firefox, is Firefox ESR 10.0.7. I need to be able to see, from the command line, the version of Firefox and if it is a ESR version.

Thanks
# 2  
Old 03-21-2013
Did you try what:

Code:
what /usr/bin/firefox

assuming /usr/bin is the location of the executable
# 3  
Old 03-22-2013
What? Smilie Isn't "what" in very limited use? I never heard of it before.

-------------------------

What output do you get from firefox -v command?

If you can't figure it out, maybe just uninstall and reinstall with ESR. It should not take long to install.

Or look in directories where it is installed. Could well be a readme file with the needed information.
# 4  
Old 03-22-2013
From within firefox, you can just check if app.update.channel in about:config is set to "esr". I'm not aware of any way to query about:config settings from the command line, but perhaps you do.

Regards,
Alister
# 5  
Old 03-22-2013
Thank you for replying.

jim mcnamara,
what is not a command on my system

hanson44,
I have provided the the output from firefox -version. I didn't see any read me file.

alister,
The point is to do this on the command line.

Anyway, the reason I want to do this, is so I can wright a script to see what version of Firefox is running. This is because I do a lot of server hardening and to fix certain CVE hits you need to upgrade to a certain version of Firefox.


For example to fix CVE-2013-0787 you need to have Firefox updated to one of the versions below.
Firefox 19.0.2 or later
Firefox ESR 17.0.4 or later

I'm sure you can now see my issue.
# 6  
Old 03-22-2013
Quote:
Originally Posted by bitlord
alister,
The point is to do this on the command line.
Yes, I gathered that and even mentioned it in my post. I shared the information about app.update.channel in case you knew how to query about:config from the command line but were not aware of that particular setting.

Regards,
Alister
# 7  
Old 03-22-2013
What about trying this:
Code:
$ grep -r "app.update.channel" /usr/lib/firefox
/usr/lib/firefox/defaults/pref/channel-prefs.js:pref("app.update.channel", "release");

?
 
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. Red Hat

Finding version of firefox in directory

I have a unique situation, I have a RHEL OS but also a file path that has a OS image (it is not the image running on the machine) if I run fire fox -version it will give me the version of the actively installed FF however I need to know if the version of FF sitting in the non active path is the... (4 Replies)
Discussion started by: cybersecEG
4 Replies

2. Red Hat

OS version and Firmware version

Guys, How to find OS version and firmware version in LINUX? Like in AIX. uname -a will show me the version 5.3, 6.1,7.1. lsmcode -c will show me - system firmware image as SF240_417. What are the similar commands in Linux. I checked uname -a and cat /etc/release. uname... (1 Reply)
Discussion started by: ElizabethPJ
1 Replies

3. Shell Programming and Scripting

Copy a file from directroy/ prior version to the directory/ new version

How to copy a file from directroy/ prior version to the directory/ new version automatically. (4 Replies)
Discussion started by: roy1912
4 Replies

4. UNIX for Advanced & Expert Users

Advanced Search * View * Edit JAVA version to WORK in GLASSFISH Forum topic JAVA version

Would like to confirm the ff. I got confused actually with the version I needed to download that will work on glassfish 3.0.1 a. Debian Squeeze (HP DL360). Need to use java version6 On Debian, I did apt-get install sun-java6-jdk. So when I check it's java version "1.6.0_22" Java(TM) SE... (1 Reply)
Discussion started by: lhareigh890
1 Replies

5. Solaris

Migrate unix version 8 to version 9

i have a program writing in PRO C which currently running in unix version 8 tie with oracle 8i, but in the future company gonna migrate this OS to version 9. Anything i have to prepare for my PRO C program to run in unix version 9? or anything would that impact my program couldn't run well? what... (2 Replies)
Discussion started by: lsy
2 Replies

6. UNIX for Dummies Questions & Answers

Need Shell script for getting Firefox Browser Version

Hi, How to write a script for finding out firefox version in our linux machine? Could you please share the same? I am using Red Hat Linux machine. Thanks, Kammy (2 Replies)
Discussion started by: kjannu
2 Replies

7. Shell Programming and Scripting

Shell Command for finding out Firefox version

Hi I need a shell command for finding out Firefox browser verion on linux machine. Waiting for your reply. Thanks and Regards, Kammy. (0 Replies)
Discussion started by: kjannu
0 Replies
Login or Register to Ask a Question