LinuxQuestions.org
Visit Jeremy's Blog.
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 03-09-2009, 05:27 AM   #1
Azazwa
Member
 
Registered: Mar 2009
Distribution: Fedora 8, Ubuntu 9.10, SuSE 10, Fedora 14
Posts: 98

Rep: Reputation: 15
Where can I find certain rpm's for Fedora 8?


Hi!

I'm looking for the following rpm's BUT for x86_64 NOT i386. I tried to google it, but I wasn't very successful. Does anyone know of a server I can use. Obviously in my example at the bottom the server used was local. Also, I know how configure it with Yast on Suse, but does Fedora have a similar way of doing it with yum?

http://192.168.0.150/pub/fedora/linu...g/i386/extras/
libaio-0.3.106-3.2.i386.rpm

http://192.168.0.150/pub/fedora/linu...g/i386/extras/
libaio-devel-0.3.106-3.2.i386.rpm

http://192.168.0.150/pub/fedora/linu...g/i386/extras/
tcsh-6.15-1.fc8.i386.rpm

http://192.168.0.150/pub/fedora/linu...g/i386/extras/
xinetd-2.3.14-14.fc8.i386.rpm

Thanks!
 
Old 03-09-2009, 05:47 AM   #2
linuxlover.chaitanya
Senior Member
 
Registered: Apr 2008
Location: Gurgaon, India
Distribution: Cent OS 6/7
Posts: 4,631

Rep: Reputation: Disabled
The F8 that you installed should come with yum. So use yum to install the packages.
If your F8 is x86_64 then yum will install these 64 packages or else it will install 32 bit.
One more thing to see is that F8 is old and no longer supported. If you want to be on Fedora then latest is F10. If you are planning on using it on server then something like CentOS, which has got longer life cycle and support life, is better option.
 
Old 03-09-2009, 05:53 AM   #3
colucix
LQ Guru
 
Registered: Sep 2003
Location: Bologna
Distribution: CentOS 6.5 OpenSuSE 12.3
Posts: 10,509

Rep: Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983
You can select a mirror from the official list: http://mirrors.fedoraproject.org/publiclist. Using yum you can setup additional repositories, similar to the Package Source configuration in Yast. The configuration files are stored in /etc/yum.repos.d. Maybe you have simply to check/modify the existing /etc/yum.repos.d/fedora.repo file.

For further details, you can refer to this guide.
 
Old 03-09-2009, 06:16 AM   #4
Azazwa
Member
 
Registered: Mar 2009
Distribution: Fedora 8, Ubuntu 9.10, SuSE 10, Fedora 14
Posts: 98

Original Poster
Rep: Reputation: 15
Thanks!

I took a long route, (doing it by hand) but I've got those rpm's now!

For anyone else who might perhaps need to do the same and don't quite know how to do it in a quicker way, here's where I got the rpm's: (this link is specifically for xinetd)

http://rpm.pbone.net/index.php3?stat...fc8.x86_64.rpm

I'm learning, very slowly, but surely.

:-)
 
Old 03-09-2009, 07:01 AM   #5
colucix
LQ Guru
 
Registered: Sep 2003
Location: Bologna
Distribution: CentOS 6.5 OpenSuSE 12.3
Posts: 10,509

Rep: Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983
To anyone else, I'd rather suggest the official repository http://download.fedora.redhat.com/pu...fc8.x86_64.rpm Even better if choosing a mirror in your vicinity, from the list linked in my previous post.
 
Old 05-12-2009, 10:33 AM   #6
Azazwa
Member
 
Registered: Mar 2009
Distribution: Fedora 8, Ubuntu 9.10, SuSE 10, Fedora 14
Posts: 98

Original Poster
Rep: Reputation: 15
Hi!

I decided to learn how to do this like you suggested colucix, but I'm still fairly clueless. I looked at that link, and I like it very much as it explains it so that I'm not immediately confused. ;-)

But now, I tried
Code:
[root@gnlserv01 ~]# su -c 'yum grouplist'
Existing lock /var/run/yum.pid: another copy is running as pid 12521.
Another app is currently holding the yum lock; waiting for it to exit...
and got many lines of "Another app..."
so I said
Code:
[root@gnlserv01 gaussianTests]# service yum-updatesd stop
Stopping yum-updatesd:                                     [  OK  ]
[root@gnlserv01 gaussianTests]# killall yum-updatesd
yum-updatesd: no process killed
[root@gnlserv01 gaussianTests]# killall yum
If I try
Code:
[compchem@gnlserv01 ~]$ su -c 'yum list tsclient'
Password:
as explained by http://fedoraproject.org/wiki/Docs/D.../SearchwithYum
it seems as if the terminal hangs.

Am I too impatient, or do I have to start some service somewhere?

colucix also referred to the file /etc/yum.repos.d/fedora.repo, and this is how mine looks like:
Code:
[fedora]
name=Fedora $releasever - $basearch
failovermethod=priority
#baseurl=http://download.fedora.redhat.com/pub/fedora/linux/releases/$releasever/Everything/$basearch/os/
mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-fedora file:///etc/pki/rpm-gpg/RPM-GPG-KEY

[fedora-debuginfo]
name=Fedora $releasever - $basearch - Debug
failovermethod=priority
#baseurl=http://download.fedora.redhat.com/pub/fedora/linux/releases/$releasever/Everything/$basearch/debug/
mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-debug-$releasever&arch=$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-fedora file:///etc/pki/rpm-gpg/RPM-GPG-KEY

[fedora-source]
name=Fedora $releasever - Source
failovermethod=priority
#baseurl=http://download.fedora.redhat.com/pub/fedora/linux/releases/$releasever/Everything/source/SRPMS/
mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-source-$releasever&arch=$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-fedora file:///etc/pki/rpm-gpg/RPM-GPG-KEY
I really want to know how to do this in the proper way especially since colucix rapped me across the fingers. ;-)
Thanks for the help!
 
Old 05-12-2009, 07:13 PM   #7
chrism01
LQ Guru
 
Registered: Aug 2004
Location: Sydney
Distribution: Rocky 9.2
Posts: 18,356

Rep: Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751
The first entry in your /etc/yum.repos.d/fedora.repo matches colucix if you look carefully. Probably you are too eager.
As mentioned though, F8 is not being updated anymore, so either get a current version (F10 or 11) or use Centos if you want long term updates.
 
  


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
anybody know where I can find KDE 3.5.x RPM's? mrapathy Fedora 18 12-20-2005 09:03 AM
RPM's in Fedora Core 2 sergeantroach Linux - Software 10 07-16-2004 02:20 PM
How to find RPM's on distribution CDs TomF Linux - Newbie 2 05-29-2004 11:22 AM
Fedora 2 Gnome RPM's craigs1987 Fedora 0 05-28-2004 12:24 PM
Help installing RPM's on Fedora Core 1 rock9604 Linux - Software 3 05-04-2004 03:52 PM

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

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