LinuxQuestions.org
Help answer threads with 0 replies.
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-24-2008, 03:14 PM   #1
Nolanz2
Member
 
Registered: Apr 2008
Location: Columbus Ohio, USA
Distribution: Ubuntu 8.04
Posts: 105

Rep: Reputation: 15
Help on fedora


every time i try to download anything via yum or package installer i get the following errors

Yum
Code:
http://apt.atrpms.net/fedora/8/en/i386/at-stable/repodata/repomd.xml: [Errno 14] HTTP Error 404: Not Found
Trying other mirror.
Error: Cannot retrieve repository metadata (repomd.xml) for repository: atrpms. Please verify its path and try again
Package Installer
http://i269.photobucket.com/albums/j...reenshot-1.jpg

help?


Also I cannot watch dvds on it (movies) I get the error (using totem)
http://i269.photobucket.com/albums/j...reenshot-2.jpg

I dont think i can fix this until i fix the first problem, I am using the preview of fedora 9, so when i install the final virsion it will just up my following system, so i know that the problem isn't because im using the preview of fedora 9 (alsohad the same problem with the stable version of fedora 8)
 
Old 04-24-2008, 03:26 PM   #2
billymayday
LQ Guru
 
Registered: Mar 2006
Location: Sydney, Australia
Distribution: Fedora, CentOS, OpenSuse, Slack, Gentoo, Debian, Arch, PCBSD
Posts: 6,678

Rep: Reputation: 122Reputation: 122
How are you connected to the internet? You can get this problem trying to g othrough a proxy, but I'd imagine misconfigured firewalls or routers forwarding would cause similar effect.

For dvds, try installing libdvdcss2 (or maybe libdvdcss), but you'd better sort yum first
 
Old 04-24-2008, 03:31 PM   #3
Nolanz2
Member
 
Registered: Apr 2008
Location: Columbus Ohio, USA
Distribution: Ubuntu 8.04
Posts: 105

Original Poster
Rep: Reputation: 15
im connected to a neighbor's connection and cant get on to my house connection (other help topic) that explains that problem, so it might be a proxy
 
Old 04-24-2008, 03:48 PM   #4
lazlow
Senior Member
 
Registered: Jan 2006
Posts: 4,363

Rep: Reputation: 172Reputation: 172
Pretty sure you have your repo mis configured. The address you have listed above does not exist. Any address you use in a repo you should be able to move into your browser and look at.
 
Old 04-24-2008, 03:55 PM   #5
Nolanz2
Member
 
Registered: Apr 2008
Location: Columbus Ohio, USA
Distribution: Ubuntu 8.04
Posts: 105

Original Poster
Rep: Reputation: 15
but this happens every time i try to download something. how do i configure my repo properly?
 
Old 04-24-2008, 04:28 PM   #6
billymayday
LQ Guru
 
Registered: Mar 2006
Location: Sydney, Australia
Distribution: Fedora, CentOS, OpenSuse, Slack, Gentoo, Debian, Arch, PCBSD
Posts: 6,678

Rep: Reputation: 122Reputation: 122
Fair point lazlow

Instructions for atrpm here: http://www.atrpms.net/install.html
 
Old 04-24-2008, 04:30 PM   #7
billymayday
LQ Guru
 
Registered: Mar 2006
Location: Sydney, Australia
Distribution: Fedora, CentOS, OpenSuse, Slack, Gentoo, Debian, Arch, PCBSD
Posts: 6,678

Rep: Reputation: 122Reputation: 122
Code:
rpm --import http://ATrpms.net/RPM-GPG-KEY.atrpms

yum: Make sure the following lines are included in /etc/yum.conf:
Code:
[atrpms]
name=Fedora Core $releasever - $basearch - ATrpms
baseurl=http://dl.atrpms.net/f$releasever-$basearch/atrpms/stable
gpgkey=http://ATrpms.net/RPM-GPG-KEY.atrpms
gpgcheck=1
 
Old 04-24-2008, 04:36 PM   #8
Nolanz2
Member
 
Registered: Apr 2008
Location: Columbus Ohio, USA
Distribution: Ubuntu 8.04
Posts: 105

Original Poster
Rep: Reputation: 15
i don't understand that, the instruction on the site are confusing
 
Old 04-24-2008, 04:56 PM   #9
Nolanz2
Member
 
Registered: Apr 2008
Location: Columbus Ohio, USA
Distribution: Ubuntu 8.04
Posts: 105

Original Poster
Rep: Reputation: 15
I cant insert
Code:
[atrpms]
name=Fedora Core $releasever - $basearch - ATrpms
baseurl=http://dl.atrpms.net/f$releasever-$basearch/atrpms/stable
gpgkey=http://ATrpms.net/RPM-GPG-KEY.atrpms
gpgcheck=1
http://i269.photobucket.com/albums/j...reenshot-3.jpg
 
Old 04-24-2008, 04:59 PM   #10
Nolanz2
Member
 
Registered: Apr 2008
Location: Columbus Ohio, USA
Distribution: Ubuntu 8.04
Posts: 105

Original Poster
Rep: Reputation: 15
what do i replace $basearch and $releasever with?
 
Old 04-24-2008, 05:02 PM   #11
billymayday
LQ Guru
 
Registered: Mar 2006
Location: Sydney, Australia
Distribution: Fedora, CentOS, OpenSuse, Slack, Gentoo, Debian, Arch, PCBSD
Posts: 6,678

Rep: Reputation: 122Reputation: 122
Ok - type the first line verbatum (you'll need to be root)

cd /etc/yum.repos.d

you should then create a file called atrmps.repo (I prefer this approach to putting repos in /etc/yum.conf but you can do either)

Add the second code box to this file.

Off the top of my head, my keystrokes would be:

select rpm --import http://ATrpms.net/RPM-GPG-KEY.atrpms with mouse and control insert to copy it.

open a terminal session as root.

shift insert to paste the line previosly copied and hit return - wait for it to import

then (keystrokes unless in ()):
(copy the second code box starting at [ and ending with 1 using your mouse and control insert)
vi /etc/yum.repos.d/atrpms.repo
i<shift insert> (ie - type i then hit shift and insert to paste the code previously copied - i puts vi into insert mode)
<escape>:wq
You're done

note that hitting escape pts vi back into command mode, :wq writes changes and quits.

Let us know how you go

Last edited by billymayday; 04-24-2008 at 05:03 PM.
 
Old 04-24-2008, 05:04 PM   #12
billymayday
LQ Guru
 
Registered: Mar 2006
Location: Sydney, Australia
Distribution: Fedora, CentOS, OpenSuse, Slack, Gentoo, Debian, Arch, PCBSD
Posts: 6,678

Rep: Reputation: 122Reputation: 122
Quote:
Originally Posted by Nolanz2 View Post
what do i replace $basearch and $releasever with?
Nothing - yum will do that when it runs
 
Old 04-24-2008, 05:14 PM   #13
Nolanz2
Member
 
Registered: Apr 2008
Location: Columbus Ohio, USA
Distribution: Ubuntu 8.04
Posts: 105

Original Poster
Rep: Reputation: 15
you should then create a file called atrmps.repo (I prefer this approach to putting repos in /etc/yum.conf but you can do either)


wat?

so heres whatr im doing, im in a terminal, type
Code:
cd /etc/yum.repos.d
then what am i supposed to do? how do i create the file?
 
Old 04-24-2008, 05:30 PM   #14
billymayday
LQ Guru
 
Registered: Mar 2006
Location: Sydney, Australia
Distribution: Fedora, CentOS, OpenSuse, Slack, Gentoo, Debian, Arch, PCBSD
Posts: 6,678

Rep: Reputation: 122Reputation: 122
Did you read post 11?
 
Old 04-24-2008, 06:00 PM   #15
Nolanz2
Member
 
Registered: Apr 2008
Location: Columbus Ohio, USA
Distribution: Ubuntu 8.04
Posts: 105

Original Poster
Rep: Reputation: 15
ok, i put all that in, no when i try to do something
http://i269.photobucket.com/albums/j...enshot-1-1.jpg

wtf?

Last edited by Nolanz2; 04-24-2008 at 06:18 PM. Reason: BTW, i fixed the other error, now this is happening still
 
  


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
http://download.fedora.us/fedora/fedora/3/i386/RPMS.os broken! caps_phisto Fedora 3 02-05-2005 04:16 PM

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

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