LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 01-08-2012, 09:05 PM   #1
primorec
Member
 
Registered: Sep 2004
Distribution: RH5.2/6.2/8.0/9.0,RHEL 3.0/4.X/5.X/6.X,MDK 10.1,KNOPPIX3.6,Solaris 8/9,CentOS 3.X/4.X/5.X/6.X/7.X
Posts: 67

Rep: Reputation: 15
How to install gnumeric on CentOS 6.x (x86_64) and remain sane


A) become 'root'
B) download RPMs
C) wget http://puias.princeton.edu/data/puia...6.1.x86_64.rpm
D) wget http://puias.princeton.edu/data/puia...as6.x86_64.rpm
E) wget http://puias.princeton.edu/data/puia...6.1.x86_64.rpm
F) install downloaded RPMs
G) rpm -i goffice-0.8.12-1.puias6.x86_64.rpm
H) rpm -i gnumeric-1.10.10-1.puias6.1.x86_64.rpm
I) rpm -i gnumeric-plugins-extras-1.10.10-1.puias6.1.x86_64.rpm
J) exit 'root'
K) enjoy
 
Old 01-09-2012, 03:39 AM   #2
John VV
LQ Muse
 
Registered: Aug 2005
Location: A2 area Mi.
Posts: 17,627

Rep: Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651
none of the above

gnumeric should be in the cent6 base install or rpmforge repo
Code:
yum install gnumeric
 
Old 01-09-2012, 06:17 AM   #3
snatale1
Member
 
Registered: Aug 2003
Location: Richmond, Virginia, US
Distribution: Ubuntu 20.04 / Manjaro
Posts: 439

Rep: Reputation: 48
Quote:
Originally Posted by John VV View Post
none of the above

gnumeric should be in the cent6 base install or rpmforge repo
Code:
yum install gnumeric
Correct!
 
Old 01-09-2012, 06:48 AM   #4
RockDoctor
Senior Member
 
Registered: Nov 2003
Location: Minnesota, US
Distribution: Fedora, Ubuntu, Manjaro
Posts: 1,791

Rep: Reputation: 427Reputation: 427Reputation: 427Reputation: 427Reputation: 427
Quote:
Originally Posted by primorec View Post
A) become 'root'
B) download RPMs
C) wget http://puias.princeton.edu/data/puia...6.1.x86_64.rpm
D) wget http://puias.princeton.edu/data/puia...as6.x86_64.rpm
E) wget http://puias.princeton.edu/data/puia...6.1.x86_64.rpm
F) install downloaded RPMs
G) rpm -i goffice-0.8.12-1.puias6.x86_64.rpm
H) rpm -i gnumeric-1.10.10-1.puias6.1.x86_64.rpm
I) rpm -i gnumeric-plugins-extras-1.10.10-1.puias6.1.x86_64.rpm
J) exit 'root'
K) enjoy
Sorry, this is a recipe for insanity, As pointed out above, (as root)
Code:
 yum install gnumeric
is the sane way to do this
 
Old 01-09-2012, 10:23 PM   #5
primorec
Member
 
Registered: Sep 2004
Distribution: RH5.2/6.2/8.0/9.0,RHEL 3.0/4.X/5.X/6.X,MDK 10.1,KNOPPIX3.6,Solaris 8/9,CentOS 3.X/4.X/5.X/6.X/7.X
Posts: 67

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by John VV View Post
none of the above
hmmmm.... really ?? Are you sure ? Is your statement based on the verifiable data or you just pulled it out from your a..

Quote:
Originally Posted by John VV View Post
gnumeric should be in the cent6 base install or rpmforge repo
Code:
yum install gnumeric
Ok, let's do some small analysis and verification of your bold statement.

My system: Freshly installed CentOS 6 with ALL updates

List of the repos used for the search:

Loaded plugins: fastestmirror, protectbase, refresh-packagekit, security
Loading mirror speeds from cached hostfile
* base: linux.mirrors.es.net
* extras: mirror-la.7x24web.net
* rpmforge: fr2.rpmfind.net
* updates: mirror.5ninesolutions.com


Lets see if there is anything related to the 'gnumeric' in any of the listed repos.

First, let us count all the packages in ALL repos.
Code:
[me@localhost ~]$ yum list | wc -l
10618
How many packages are in 'base' repo and in 'rpmforge' repo ?
Code:
[me@localhost ~]$ yum list | grep base | wc -l
5322
[me@localhost ~]$ yum list | grep rpmforge | wc -l
3460
Is there a package called 'gnumeric' in any of the repos listed above ?
Code:
[me@localhost ~]$ yum list | grep gnumeric
gnumeric.x86_64                         1:1.10.10-1.puias6.1     installed      
gnumeric-plugins-extras.x86_64          1:1.10.10-1.puias6.1     installed

Dear reader(s) (including John VV), as you can see, I did my home work before I wrote the initial post.
The package 'gnumeric' is not part of the repos 'base' and/or 'rpmforge'. I found it and install
it from the repository 'puias' and NOT from 'base' or 'rpmforge'.

Since I needed and wanted to have 'gnumeric' on my box, I googled a little bit and found
this repository.


Why did I write such a lengthy reply ?
The answer is very simple. Many people use www.linuxquestions.org as a source
for the solution for their real problems with Linux. Half cooked replies (aka not verified replies)
reduce the usefulness of the site.

Last edited by primorec; 01-09-2012 at 10:33 PM.
 
Old 01-09-2012, 10:42 PM   #6
primorec
Member
 
Registered: Sep 2004
Distribution: RH5.2/6.2/8.0/9.0,RHEL 3.0/4.X/5.X/6.X,MDK 10.1,KNOPPIX3.6,Solaris 8/9,CentOS 3.X/4.X/5.X/6.X/7.X
Posts: 67

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by snatale1 View Post
Correct!
As long the 'base' repo or rpmforge repo contain the desired package, you are right.
Since I could find 'gnumeric' in those repos I searched for the solution for all the people who did their home work and could not find it.
 
Old 01-09-2012, 10:59 PM   #7
primorec
Member
 
Registered: Sep 2004
Distribution: RH5.2/6.2/8.0/9.0,RHEL 3.0/4.X/5.X/6.X,MDK 10.1,KNOPPIX3.6,Solaris 8/9,CentOS 3.X/4.X/5.X/6.X/7.X
Posts: 67

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by RockDoctor View Post
Sorry, this is a recipe for insanity, As pointed out above, (as root)
Why are you saying this ? Are you able to install the package into /usr/bin or /usr/local/bin as a regular user ?
Please, share with us (or, at least, with me) the secret. Thanks in advance.

Or, you think that this sequence of command is significantly better than the original one ? Please, educate me.

A) download RPMs
B) wget http://puias.princeton.edu/data/puia...6.1.x86_64.rpm
C) wget http://puias.princeton.edu/data/puia...as6.x86_64.rpm
D) wget http://puias.princeton.edu/data/puia...6.1.x86_64.rpm
E) install downloaded RPMs
F) become 'root'

G) rpm -i goffice-0.8.12-1.puias6.x86_64.rpm
H) rpm -i gnumeric-1.10.10-1.puias6.1.x86_64.rpm
I) rpm -i gnumeric-plugins-extras-1.10.10-1.puias6.1.x86_64.rpm
J) exit 'root'
K) enjoy



Quote:
Originally Posted by RockDoctor View Post
Code:
 yum install gnumeric
is the sane way to do this
Yes, this ___is___
Code:
yum install gnumeric
the sane way to do it, as long the package exists in the repository. In this case, it does NOT.

Last edited by primorec; 01-09-2012 at 11:03 PM.
 
Old 01-10-2013, 06:13 PM   #8
sramanujam
LQ Newbie
 
Registered: May 2008
Posts: 2

Rep: Reputation: 0
Thumbs up

Quote:
Originally Posted by primorec View Post
A) become 'root'
B) download RPMs
C) wget http://puias.princeton.edu/data/puia...6.1.x86_64.rpm
D) wget http://puias.princeton.edu/data/puia...as6.x86_64.rpm
E) wget http://puias.princeton.edu/data/puia...6.1.x86_64.rpm
F) install downloaded RPMs
G) rpm -i goffice-0.8.12-1.puias6.x86_64.rpm
H) rpm -i gnumeric-1.10.10-1.puias6.1.x86_64.rpm
I) rpm -i gnumeric-plugins-extras-1.10.10-1.puias6.1.x86_64.rpm
J) exit 'root'
K) enjoy
I could not install gnumeric using yum install gnumeric. I then followed each step as you have listed here and it worked. Thanks!
 
Old 06-28-2017, 10:09 AM   #9
InstaSteve
LQ Newbie
 
Registered: Jun 2017
Posts: 1

Rep: Reputation: Disabled
Thumbs down Not part of CENT OS 7

Gnumeric is not a package available for me in Cent OS 7. Thank you for the advice; It worked perfectly.

People can be a bit of a jackass sometimes by saying "Uhh just do sudo yum install gnumeric" ... I think as linux users that is the first thing we try. Coming to a forum like this to ask for help and getting responses like that is very immature and unprofessional.

For anyone still looking for help, go to this link:

http://www.linuxfromscratch.org/blfs.../gnumeric.html

The repos are updated and everything works there.

Last edited by InstaSteve; 06-28-2017 at 10:12 AM. Reason: Adding link
 
  


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
How to enable MP3 audio stream playback on CentOS 6.x (x86_64) and remain sane primorec Linux - Software 3 11-17-2012 01:00 PM
How to install linux on HP netbook dv4 1540us and remain sane primorec Linux - Laptop and Netbook 6 12-08-2009 08:52 PM
How to speed up gvim by factor of 3 and remain sane primorec Linux - Software 7 07-16-2008 09:03 AM
How to install firefox 1.0 on REDHAT 8 and remain sane primorec Linux - Software 23 02-25-2005 02:17 AM
How to install gambas on REDHAT 8 and remain sane primorec Linux - Software 0 12-29-2004 12:42 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 06:19 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