LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Debian
User Name
Password
Debian This forum is for the discussion of Debian Linux.

Notices


Reply
  Search this Thread
Old 03-24-2011, 02:50 PM   #1
m_yates
Senior Member
 
Registered: Aug 2003
Location: Upstate
Distribution: Debian, Mint, Mythbuntu
Posts: 1,249

Rep: Reputation: 101Reputation: 101
HOWTO Install Latest Firefox and Libreoffice in Debian Squeeze


For my desktop use, I wanted to keep my office suite and web browser updated while continuing to run Debian stable as my base. Here is how to install the latest Firefox and Libreoffice packages on Squeeze.

Download Firefox 4 here. Then as root:
Code:
mv firefox*.tar.bz2 /opt
cd /opt
tar -xvjf firefox*.tar.bz2
ln -s /opt/firefox /usr/local/firefox4
ln -s /usr/local/firefox4/firefox /usr/local/bin/firefox4
rm firefox*.tar.bz2
Firefox 4 can now be run as normal user with command "firefox4". or "/usr/local/bin/firefox4". In Gnome, you can add Firefox to the application menu by:

1. right click Applications menu
2. select "edit menus"
3. click on "Internet"
4. select "new item": Type: Application, Name: Firefox, Command: /usr/local/bin/firefox4
5. To add the Firefox icon in the menu, it is located in: /opt/firefox/icons/mozicon128.png

I just tested it, and it works well, including my plugins and bookmarks from Iceweasel.


Download Libreoffice here. Choose the deb version, then:
Code:
tar -xzf LibO_3*.tar.gz
cd LibO_3*/DEBS/
su
dpkg -i *.deb
cd desktop-integration
dpkg -i *.deb
It will install Libreoffice in /opt and the packages will show up in Synaptic Package Manager under "Local". The installation automatically creates menu entries in Gnome for Libreoffice applications.

I've had no problems thus far using the latest Libreoffice 3.2.2 and Firefox 4. Hope this is helpful for anyone else wanting to install.
 
Old 03-24-2011, 10:17 PM   #2
craigevil
Senior Member
 
Registered: Apr 2005
Location: OZ
Distribution: Debian Sid/RPIOS
Posts: 4,886
Blog Entries: 28

Rep: Reputation: 533Reputation: 533Reputation: 533Reputation: 533Reputation: 533Reputation: 533
download firefox, extract, create a new profile by opening iceweasel -profilemanager, create desktop shortcut. Uses all of the iceweasel plugins, and autoupdates.

Use smxi to install LibreOffice.
 
Old 03-25-2011, 07:56 AM   #3
jens
Senior Member
 
Registered: May 2004
Location: Belgium
Distribution: Debian, Slackware, Fedora
Posts: 1,463

Rep: Reputation: 299Reputation: 299Reputation: 299
Iceweasel 4

... or "apt-get" it from here: http://mozilla.debian.net/

Code:
deb http://mozilla.debian.net/ squeeze-backports iceweasel-4.0

Last edited by jens; 03-25-2011 at 07:58 AM.
 
Old 03-25-2011, 08:22 AM   #4
almatic
Member
 
Registered: Mar 2007
Distribution: Debian
Posts: 547

Rep: Reputation: 67
I have only one problem with the original firefox (any version). The "mailto" links will not work with evolution. Works fine with iceweasel and any other browser. Also other mail-programs do work from (original) firefox, but evolution does not.
 
Old 03-25-2011, 08:33 AM   #5
m_yates
Senior Member
 
Registered: Aug 2003
Location: Upstate
Distribution: Debian, Mint, Mythbuntu
Posts: 1,249

Original Poster
Rep: Reputation: 101Reputation: 101
Quote:
Originally Posted by jens View Post
... or "apt-get" it from here: http://mozilla.debian.net/

Code:
deb http://mozilla.debian.net/ squeeze-backports iceweasel-4.0

Thanks. I didn't know that. Hopefully Libreoffice will make it to the official backports of Debian too.
 
Old 03-25-2011, 08:43 AM   #6
jens
Senior Member
 
Registered: May 2004
Location: Belgium
Distribution: Debian, Slackware, Fedora
Posts: 1,463

Rep: Reputation: 299Reputation: 299Reputation: 299
Quote:
Originally Posted by m_yates View Post
Thanks. I didn't know that. Hopefully Libreoffice will make it to the official backports of Debian too.
It's from the Debian Mozilla team (Mike Hommey's packages), not backports.debian.org
Mike Hommey is the "even_more_official" debian maintainer

Last edited by jens; 03-25-2011 at 09:01 AM.
 
Old 03-25-2011, 06:05 PM   #7
craigevil
Senior Member
 
Registered: Apr 2005
Location: OZ
Distribution: Debian Sid/RPIOS
Posts: 4,886
Blog Entries: 28

Rep: Reputation: 533Reputation: 533Reputation: 533Reputation: 533Reputation: 533Reputation: 533
apt-cache policy iceweasel
iceweasel:
Installed: 4.0-2
Candidate: 4.0-2
Version table:
*** 4.0-2 0
1 http://mirrors.kernel.org/debian/ experimental/main i386 Packages
100 /var/lib/dpkg/status
4.0~rc1-1 0
500 http://mozilla.debian.net/ experimental/iceweasel-4.0 i386 Packages
3.5.18-1 0
500 http://mirrors.kernel.org/debian/ unstable/main i386 Packages

$ apt-cache policy libreoffice
libreoffice:
Installed: 1:3.3.2-1
Candidate: 1:3.3.2-1
Version table:
*** 1:3.3.2-1 0
500 http://mirrors.kernel.org/debian/ unstable/main i386 Packages
100 /var/lib/dpkg/status
 
Old 03-27-2011, 10:16 AM   #8
the trooper
Senior Member
 
Registered: Jun 2006
Location: England
Distribution: Debian Bullseye
Posts: 1,508

Rep: Reputation: Disabled
Quote:
create a new profile by opening iceweasel -profilemanager
Why do you need to do this?,and what do you name the new profile?.
 
Old 03-27-2011, 10:26 AM   #9
brianL
LQ 5k Club
 
Registered: Jan 2006
Location: Oldham, Lancs, England
Distribution: Slackware64 15; SlackwareARM-current (aarch64); Debian 12
Posts: 8,298
Blog Entries: 61

Rep: Reputation: Disabled
I'm ashamed (not really ) to say I haven't done it "The Debian Way". I unpacked it to /usr/local, then made a link:
Code:
ln -s /usr/local/firefox/firefox /usr/local/bin/firefox4
Then created a launcher.
Will I be excommunicated & defrocked?
 
Old 03-28-2011, 05:46 PM   #10
craigevil
Senior Member
 
Registered: Apr 2005
Location: OZ
Distribution: Debian Sid/RPIOS
Posts: 4,886
Blog Entries: 28

Rep: Reputation: 533Reputation: 533Reputation: 533Reputation: 533Reputation: 533Reputation: 533
Quote:
Originally Posted by the trooper View Post
Why do you need to do this?,and what do you name the new profile?.
Only need to do it if you are also using Iceweasel, keeps you from having problems if the versions are different. I also keep a clean profile with no extensions or themes to test if I have issues on my normal profile.
Name it whatever, mine are named firefox and testing, along with the default iceweasel profile.
 
1 members found this post helpful.
Old 03-29-2011, 10:02 AM   #11
the trooper
Senior Member
 
Registered: Jun 2006
Location: England
Distribution: Debian Bullseye
Posts: 1,508

Rep: Reputation: Disabled
Ok,thanks for the feedback craigevil.
 
Old 03-30-2011, 08:34 AM   #12
cynwulf
Senior Member
 
Registered: Apr 2005
Posts: 2,727

Rep: Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367
Quote:
Originally Posted by brianL View Post
I unpacked it to /usr/local, then made a link:
Code:
ln -s /usr/local/firefox/firefox /usr/local/bin/firefox4
Then created a launcher.
If you're going to do that it's good practice to put it in /opt rather than /usr/local
 
Old 03-30-2011, 09:17 AM   #13
brianL
LQ 5k Club
 
Registered: Jan 2006
Location: Oldham, Lancs, England
Distribution: Slackware64 15; SlackwareARM-current (aarch64); Debian 12
Posts: 8,298
Blog Entries: 61

Rep: Reputation: Disabled
Quote:
Originally Posted by Caravel View Post
If you're going to do that it's good practice to put it in /opt rather than /usr/local
Yeah, I realised that shortly after (act first - think later, one of my bad habits ). I deleted it from /usr/local, and put it in /opt, as soon as my brain got out of stand-by.
 
Old 04-01-2011, 10:30 PM   #14
malayo
Member
 
Registered: Dec 2010
Posts: 130

Rep: Reputation: 1
me, i get libreoffice and iceweasel from
Code:
deb http://mozilla.debian.net/ squeeze-backports iceweasel-4.0
deb http://download.tuxfamily.org/gericom/libreoffice / #gericom@hummer
sometime ago i got Firefox from LMDE repo but it does not provide the latest Firefox
Code:
deb http://packages.linuxmint.com/ debian main upstream import
 
Old 04-01-2011, 10:56 PM   #15
craigevil
Senior Member
 
Registered: Apr 2005
Location: OZ
Distribution: Debian Sid/RPIOS
Posts: 4,886
Blog Entries: 28

Rep: Reputation: 533Reputation: 533Reputation: 533Reputation: 533Reputation: 533Reputation: 533
Install Firefox 4 on Linux Mint Debian Edition (LMDE) | Yet Another Linux Blog : http://linux-blog.org/install-firefo...-edition-lmde/
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] Trouble installing latest Nvidia driver on Debian Squeeze Elixer Debian 30 11-20-2010 05:19 AM
Could someone write an easy LDAP with NFS Client howto, for squeeze debian? frenchn00b Debian 2 10-26-2009 12:59 AM
howto install firefox on debian driftboy Debian 10 09-30-2008 11:58 PM
howto install firefox and thunderbird on debian sarge mohapi Linux - Software 1 04-01-2006 09:23 AM
HOWTO: Install the Latest Firefox rykel Ubuntu 3 06-11-2005 07:56 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Debian

All times are GMT -5. The time now is 11:14 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration