LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 04-09-2015, 10:07 AM   #16
DJ Shaji
Member
 
Registered: Dec 2004
Location: Yo Momma's house
Distribution: Fedora Rawhide, ArchLinux
Posts: 518
Blog Entries: 15

Rep: Reputation: 106Reputation: 106

4.2.3.3 can be found here: https://downloadarchive.documentfoun...e/old/4.2.3.3/

As long as you don't have a really old version running somewhere, it doesn't really matter. Newer versions are more stable and have more features, but the file formats don't change from one minor version to another. That said, it isn't generally a very good idea to stick to an old version when you have to install it afresh. Just install and update to the newest version and you'll be good to go. My 2c
 
1 members found this post helpful.
Old 04-09-2015, 12:48 PM   #17
jross
Member
 
Registered: Apr 2014
Distribution: Xubuntu 14.04
Posts: 164

Rep: Reputation: Disabled
Quote:
But do I really need to do all those things (increase the swap rate, activate the firewall etc etc)?
I read that page too after installing Xubuntu 14.04. I never bothered with that swap rate thing since I have never heard it mentioned anywhere else and it doesn't seem to be a problem anyway. I did enable the firewall and you should too since it can't hurt(well in our cases anyway). The very first thing I installed from the software center was GUFW (called "Firewall Configuration" in the software center. But since I did just the basic "on" it was a waste of time since you can just turn on the firewall quicker in terminal with
Code:
sudo ufw enable
I would not recommend setting rules unless you REALLY know what you are doing!
check status of firewall:
Code:
 sudo ufw status verbose
This is output I get from simply just turning it on
Code:
Status: active
Logging: on (low)
Default: deny (incoming), allow (outgoing), disabled (routed)
New profiles: skip
Did you go to .deb file and right click on it and then choose open with gdebi?

Last edited by jross; 04-09-2015 at 12:51 PM.
 
1 members found this post helpful.
Old 04-09-2015, 04:11 PM   #18
timl
Member
 
Registered: Jan 2009
Location: Sydney, Australia
Distribution: Fedora,CentOS
Posts: 750

Rep: Reputation: 156Reputation: 156
GreggBell

Quote:
gregg@LG:~/Desktop$ ls
LibreOffice_4.2.3.3_Linux_x86_deb
gregg@LG:~/Desktop$ cd LibreOffice_4.2.3.3_Linux_x86_deb
gregg@LG:~/Desktop/LibreOffice_4.2.3.3_Linux_x86_deb$ sudo apt-get install LibreOffice_4.2.3.3_Linux_x86_deb
[sudo] password for gregg:
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package LibreOffice_4.2.3.3_Linux_x86_deb
E: Couldn't find any package by regex 'LibreOffice_4.2.3.3_Linux_x86_deb'
gregg@LG:~/Desktop/LibreOffice_4.2.3.3_Linux_x86_deb$
I should have pointed out that the "*" I use below is a wildcard - select all matches so

Quote:
sudo apt-get install *.deb
means install all files with the deb extension. In this case you DO want to include the "*" in your command

Last edited by timl; 04-09-2015 at 04:12 PM.
 
Old 04-09-2015, 04:37 PM   #19
TobiSGD
Moderator
 
Registered: Dec 2009
Location: Germany
Distribution: Whatever fits the task best
Posts: 17,148
Blog Entries: 2

Rep: Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886
Quote:
Originally Posted by timl View Post
GreggBell



I should have pointed out that the "*" I use below is a wildcard - select all matches so



means install all files with the deb extension. In this case you DO want to include the "*" in your command
You can't use apt-get to install .deb packages that way. apt-get will only install packages that it can get from available repositories. To install single packages the way you mean you either use dpkg or one of the frontends that handle dependencies while installing packages, like Gdebi.
 
1 members found this post helpful.
Old 04-09-2015, 05:00 PM   #20
timl
Member
 
Registered: Jan 2009
Location: Sydney, Australia
Distribution: Fedora,CentOS
Posts: 750

Rep: Reputation: 156Reputation: 156
Oh okay, thanks. I am not a debian user so I just adapted how I would do this with yum/dnf on fedora.

Always good to build up the knowledge base.

Cheers
 
Old 04-09-2015, 05:35 PM   #21
Gregg Bell
Senior Member
 
Registered: Mar 2014
Location: Illinois
Distribution: Xubuntu
Posts: 2,034

Original Poster
Rep: Reputation: 176Reputation: 176
Quote:
Originally Posted by Habitual View Post
FWIW: I usually only have to double click and install the first .deb using gdebi installer.
Thanks Habitual. Actually I right clicked (which is what I usually do with gdebi installer) and chose the option to install but it just installed the first folder.
 
Old 04-09-2015, 05:48 PM   #22
Gregg Bell
Senior Member
 
Registered: Mar 2014
Location: Illinois
Distribution: Xubuntu
Posts: 2,034

Original Poster
Rep: Reputation: 176Reputation: 176
Quote:
Originally Posted by sgosnell View Post
Find the original .deb file you downloaded, NOT the expanded folder. You need the original .deb. Navigate to the folder where that .deb file is. Use dpkg for installing it. dpkg -i filename.deb, replacing filename with the actual name of the file. Easier, after typing the first few letters of the filename, press Tab and autocompletion should put the full filename on the terminal line, and you can then just press enter. Apt-get will not install local files, that's not what it's for. Gdebi can do it, but it's just a GUI frontend for dpkg, and isn't designed to be run from the command line.
Thanks sgosnell. You know, I remember this being MUCH easier doing the install last time (because I installed 4.2.3.3 on my laptop), but I could not find the individual file. Only the tar and folder. (see screenshot)

So I must be able to get the original .deb. Where do I get it?
Attached Thumbnails
Click image for larger version

Name:	Selection_012.png
Views:	16
Size:	117.3 KB
ID:	18063  
 
Old 04-09-2015, 05:50 PM   #23
Gregg Bell
Senior Member
 
Registered: Mar 2014
Location: Illinois
Distribution: Xubuntu
Posts: 2,034

Original Poster
Rep: Reputation: 176Reputation: 176
Quote:
Originally Posted by DJ Shaji View Post
4.2.3.3 can be found here: https://downloadarchive.documentfoun...e/old/4.2.3.3/

As long as you don't have a really old version running somewhere, it doesn't really matter. Newer versions are more stable and have more features, but the file formats don't change from one minor version to another. That said, it isn't generally a very good idea to stick to an old version when you have to install it afresh. Just install and update to the newest version and you'll be good to go. My 2c
Thanks DJ. I'm getting close to doing just what you suggest.
 
Old 04-09-2015, 05:59 PM   #24
Gregg Bell
Senior Member
 
Registered: Mar 2014
Location: Illinois
Distribution: Xubuntu
Posts: 2,034

Original Poster
Rep: Reputation: 176Reputation: 176
Quote:
Originally Posted by jross View Post
I read that page too after installing Xubuntu 14.04. I never bothered with that swap rate thing since I have never heard it mentioned anywhere else and it doesn't seem to be a problem anyway. I did enable the firewall and you should too since it can't hurt(well in our cases anyway). The very first thing I installed from the software center was GUFW (called "Firewall Configuration" in the software center. But since I did just the basic "on" it was a waste of time since you can just turn on the firewall quicker in terminal with
Code:
sudo ufw enable
I would not recommend setting rules unless you REALLY know what you are doing!
check status of firewall:
Code:
 sudo ufw status verbose
This is output I get from simply just turning it on
Code:
Status: active
Logging: on (low)
Default: deny (incoming), allow (outgoing), disabled (routed)
New profiles: skip
Did you go to .deb file and right click on it and then choose open with gdebi?
Thanks jross. I did the firewall. And you're right--it very easy from the terminal. I tested it. Got the same as you. Thanks.

And yes, I did do the right-click, open with gdebi on the first file and it just opened the first file, though.

I don't know. I have a hard time believing getting the same version is that hard, but I'm getting close to just downloading the latest from the USC.
 
Old 04-11-2015, 11:06 AM   #25
sgosnell
Senior Member
 
Registered: Jan 2008
Location: Baja Oklahoma
Distribution: Debian Stable and Unstable
Posts: 1,943

Rep: Reputation: 542Reputation: 542Reputation: 542Reputation: 542Reputation: 542Reputation: 542
Have you read the instructions?

https://wiki.documentfoundation.org/.../Install/Linux

It's for 3.x, but it should be the same for 4.x.
 
1 members found this post helpful.
Old 04-11-2015, 12:57 PM   #26
JeremyBoden
Senior Member
 
Registered: Nov 2011
Location: London, UK
Distribution: Debian
Posts: 1,947

Rep: Reputation: 511Reputation: 511Reputation: 511Reputation: 511Reputation: 511Reputation: 511
There is a problem that occurs if you download packages and use gdebi to install them.

You probably have a program that periodically checks against your repositories for updated packages.
If you installed a package via synaptic or apt-get (etc) and a new version exists you get notified.
There will be a simple way to download and install the changes - typically via a GUI.

If you did a download and used gdebi, it will be your responsibility to do the same next time you want to apply an update.

This is why I avoid gdebi, if at all possible.
The same reasoning applies to downloading source and compiling it.

It also complicates backup and recovery.
You can't just re-install a Linux distro and be ready to go...
 
1 members found this post helpful.
Old 04-11-2015, 01:43 PM   #27
beachboy2
Senior Member
 
Registered: Jan 2007
Location: Wild West Wales, UK
Distribution: Linux Mint 21 MATE, EndeavourOS, antiX, MX Linux
Posts: 3,972
Blog Entries: 32

Rep: Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465
Smile

Gregg Bell,

I hope you don't think I am being rude but please, do take a really deep breath and look at these instructions, in particular A and B:

http://www.libre-software.net/how-to...ntu-linux-mint

It really is not too difficult to install LibreOffice, believe me.

If you seriously want to increase the degree of difficulty in installing a Linux distro, or one of its programs, by a factor of “a rather large number”, then I suggest that you try to install (in no particular order of complexity):

1. CentOS 7.1
2. Slackware
3. Arch

You will then realise that installing LibreOffice in Xubuntu is a very short stroll in the park.

P.S. I have been there!
 
1 members found this post helpful.
Old 04-11-2015, 02:42 PM   #28
JeremyBoden
Senior Member
 
Registered: Nov 2011
Location: London, UK
Distribution: Debian
Posts: 1,947

Rep: Reputation: 511Reputation: 511Reputation: 511Reputation: 511Reputation: 511Reputation: 511
I agree it's not hard - I've done it in the early days of Libre Office, when it wasn't very stable.

It's just that I like an easy life, so I have only a very few non-repository packages installed.
e.g. printer or graphics drivers.
So I stick to a Mint version of Debian.

I did look at Arch recently - but only very briefly!!!
 
1 members found this post helpful.
Old 04-11-2015, 02:46 PM   #29
beachboy2
Senior Member
 
Registered: Jan 2007
Location: Wild West Wales, UK
Distribution: Linux Mint 21 MATE, EndeavourOS, antiX, MX Linux
Posts: 3,972
Blog Entries: 32

Rep: Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465
Jeremy,

Quote:
It's just that I like an easy life, so I have only a very few non-repository packages installed.
e.g. printer or graphics drivers.
So I stick to a Mint version of Debian.
I could not agree more, but just occasionally I like to "swim with the Linux sharks" on a spare machine.
 
1 members found this post helpful.
Old 04-11-2015, 06:26 PM   #30
John VV
LQ Muse
 
Registered: Aug 2005
Location: A2 area Mi.
Posts: 17,624

Rep: Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651
Why dose no one bother to read the README and INSTALL files ?

libreoffice has a very NICE and well written README that informs you as to HOW to install it

from the "LibreOffice_4.4.2_Linux_x86-64_rpm.tar.gz"
the deb will have the same file
/readmes/README_en-US

to QUOTE the debian seciton
Quote:

Installation of LibreOffice on Debian/Ubuntu-based Linux systems
----------------------------------------------------------------------

For instructions on how to install a language pack (after having installed the US English version of LibreOffice), please read the section below entitled Installing a Language Pack.

When you unpack the downloaded archive, you will see that the contents have been decompressed into a sub-directory. Open a file manager window, and change directory to the one starting with "LibreOffice_", followed by the version number and some platform information.

This directory contains a subdirectory called "DEBS". Change directory to the "DEBS" directory.

Right-click within the directory and choose "Open in Terminal". A terminal window will open. From the command line of the terminal window, enter the following command (you will be prompted to enter your root user's password before the command will execute):

The following commands will install LibreOffice and the desktop integration packages (you may just copy and paste them into the terminal screen rather than trying to type them):

sudo dpkg -i *.deb

The installation process is now completed, and you should have icons for all the LibreOffice applications in your desktop's
or
read the instructions on the Libreoffice web page
https://www.libreoffice.org/get-help...l-howto/linux/
that informs you to use your packagemanager
or
read the wiki
https://wiki.documentfoundation.org/...ffice_on_Linux

 
1 members found this post helpful.
  


Reply

Tags
install, libreoffice



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
Unoconv Convertor for RHEL 6 : Libre office & open office utility vishwajeet jagtap Linux - Software 0 02-15-2013 09:44 AM
install libre office on centos 6.2 using yum fudmier Linux - Newbie 11 02-12-2013 11:41 PM
install libre office mposwal Slackware 12 11-03-2011 07:34 PM
LXer: Libre Office Initial plans for the free office suite [German] LXer Syndicated Linux News 2 11-14-2010 05:14 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 09:56 AM.

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