MEPIS This forum is for the discussion of MEPIS Linux. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
|
02-28-2008, 11:46 PM
|
#1
|
Member
Registered: Jun 2001
Location: Whangarei
Distribution: KDE Ubuntu 15.04 Mint17.3
Posts: 340
Rep:
|
up grade firefox
Hi
Have downloaded Firefox firefox-2.o.o.12.tar.gz and Thunderbird-2.0.0.12ta
have tried to untar these files but no joy
How can I install these files
Maurice
|
|
|
02-29-2008, 02:01 AM
|
#2
|
LQ Guru
Registered: Nov 2003
Location: N. E. England
Distribution: Fedora, CentOS, Debian
Posts: 16,298
Rep:
|
You should do
Code:
tar zxvf filename.tar.gz
After that move the extracted directory to a place like /opt and then create a launcher for Firefox and Thunderbird in your menu or desktop. If you put the extracted directories in /opt then the command to run firefox would be /opt/firefox/firefox and for Thunderbird /opt/thunderbird/thunderbird. Those are the commands you will need to use in your launchers. You can also configure KDE to use your new Firefox and Thunderbird as defaults. Run Kcontrol -> KDE Components -> Component chooser and change the settings for the Email Client and Web Browser.
|
|
|
02-29-2008, 03:48 AM
|
#3
|
LQ 5k Club
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,520
|
reddazz: Aren't you letting those files beeing owned by the user ??
I once learned: 'cd /opt' and then tar.....
Now root is the owner.
Or have I misunderstood something?
|
|
|
02-29-2008, 01:59 PM
|
#4
|
Member
Registered: Jun 2001
Location: Whangarei
Distribution: KDE Ubuntu 15.04 Mint17.3
Posts: 340
Original Poster
Rep:
|
Thank you Reddazzfor reply
tar zxvf firefox-2.0.0.12.tar.gz
/bin/gzip: /bin/gzip: cannot execute binary file
tar: Child returned status 126
tar: Error exit delayed from previous errors
Can open Ark file on Desktop but not install
firefox-2.0.0.12.tar.gz
Maurice
|
|
|
03-01-2008, 12:02 PM
|
#5
|
LQ Guru
Registered: Nov 2003
Location: N. E. England
Distribution: Fedora, CentOS, Debian
Posts: 16,298
Rep:
|
Quote:
Originally Posted by knudfl
reddazz: Aren't you letting those files beeing owned by the user ??
I once learned: 'cd /opt' and then tar.....
Now root is the owner.
Or have I misunderstood something?
|
You are correct. On a machine where you are the only user, it probably doesn't really matter which method you use (you can always change the permissions anyway). If you want to be a purist, then yes you can change into /opt first or extract the tarball as root using "tar zxvf -C /opt".
|
|
|
03-01-2008, 12:06 PM
|
#6
|
LQ Guru
Registered: Nov 2003
Location: N. E. England
Distribution: Fedora, CentOS, Debian
Posts: 16,298
Rep:
|
Quote:
Originally Posted by Maurice Arthur
Thank you Reddazzfor reply
tar zxvf firefox-2.0.0.12.tar.gz
/bin/gzip: /bin/gzip: cannot execute binary file
tar: Child returned status 126
tar: Error exit delayed from previous errors
Can open Ark file on Desktop but not install
firefox-2.0.0.12.tar.gz
Maurice
|
If you can open the file with Ark, then all you need to do is extract the contents of the file and then move the extracted contents to a place like /opt and then create launchers like I described in my initial post.
|
|
|
03-01-2008, 04:40 PM
|
#7
|
Member
Registered: Jun 2001
Location: Whangarei
Distribution: KDE Ubuntu 15.04 Mint17.3
Posts: 340
Original Poster
Rep:
|
Upgrade Firefox
Hi Reddazz
Have configured KDE Change Components No problem
Tried /opt extraction operation failed
You do not have write permission to folder
the only way that fire fox 2 comes on screen is to open /home/ firefox5.2 kb shell script
task bar still has 1.5 fire fox icon
How can I change it to Fire fox 2 and Thunder bird email
Maurice
|
|
|
03-01-2008, 04:45 PM
|
#8
|
LQ Guru
Registered: Nov 2003
Location: N. E. England
Distribution: Fedora, CentOS, Debian
Posts: 16,298
Rep:
|
The reason why you got that error is because you need to be root to write into /opt (and most directories outside your own home directory). You have to login to a terminal as root and do the following
Code:
mv /home/userid/firefox /opt/
chown -r root:root /opt/firefox
Make sure "userid" in the first command is the same as your userid. After that run the menu editor (right click on the KDE button on your menu and choose "Menu Editor" and edit the paths for your current Firefox so that it points to /opt/firefox/firefox.
|
|
|
03-01-2008, 06:13 PM
|
#9
|
Member
Registered: Jun 2001
Location: Whangarei
Distribution: KDE Ubuntu 15.04 Mint17.3
Posts: 340
Original Poster
Rep:
|
Up grade firefox
Hi Reddazz
Thanks for quick reply
Code typed in root
Result Invalid option -rKDE
Menu Editor Still boots to version 1.5.0.13
|
|
|
03-01-2008, 06:48 PM
|
#10
|
LQ Guru
Registered: Nov 2003
Location: N. E. England
Distribution: Fedora, CentOS, Debian
Posts: 16,298
Rep:
|
Sorry, the second command should be
Code:
chown -R root:root /opt/firefox
The menu will keep showing the old version until you edit the entry yourself and change the command so that it points to your new version of Firefox. I've already given you several clues on how to do this in previous posts.
|
|
|
03-02-2008, 03:40 PM
|
#11
|
Member
Registered: Jun 2001
Location: Whangarei
Distribution: KDE Ubuntu 15.04 Mint17.3
Posts: 340
Original Poster
Rep:
|
up grade firefox
Hi Reddazz
Situation is I now have Firefox extracted to /opt
KDE components configured to /opt
Synaptic only has version 1.5.0.13 and that is still my firefox
do I delete from Synaptic?
Shell scipt from firefox /opt is the only way that show an up grade
Appreciate your help
Maurice
|
|
|
03-03-2008, 05:53 AM
|
#12
|
LQ Guru
Registered: Nov 2003
Location: N. E. England
Distribution: Fedora, CentOS, Debian
Posts: 16,298
Rep:
|
Glad you got things working. Sometimes distros don't always have the latest versions, so you have to install things on your own if you want the latest software. Did you manage to configure your menus to run /opt/firefox/firefox instead of the one shipped by Mepis?
|
|
|
03-03-2008, 02:19 PM
|
#13
|
Member
Registered: Jun 2001
Location: Whangarei
Distribution: KDE Ubuntu 15.04 Mint17.3
Posts: 340
Original Poster
Rep:
|
Up grade Firefox
Hi Redazz
Yes have path to opt Now need Link to Icon on task bar,then I can delete tha synaptic version
Maurice
|
|
|
03-04-2008, 06:45 PM
|
#14
|
LQ Guru
Registered: Nov 2003
Location: N. E. England
Distribution: Fedora, CentOS, Debian
Posts: 16,298
Rep:
|
If using KDE 3.5.x, right click on an empty space on the taskbar -> Add Application to Panel -> Add Non KDE Application. Enter the description and name of your choice e.g. "Mozilla Firefox". For the executable part, make sure you enter /opt/firefox/firefox.
|
|
|
03-04-2008, 07:20 PM
|
#15
|
Member
Registered: Jun 2001
Location: Whangarei
Distribution: KDE Ubuntu 15.04 Mint17.3
Posts: 340
Original Poster
Rep:
|
Upgrade firefox
Hi Reddazz
Now have Firefox 2 working fine from kickerbar
Thanks for all your help
Have a good
Maurice
|
|
|
All times are GMT -5. The time now is 09:01 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|