Fedora Linux Support Community & Resources Center

Go Back   FedoraForum.org > Fedora 17/18 > Using Fedora
FedoraForum Search

Forgot Password? Join Us!

Using Fedora General support for current versions. Ask questions about Fedora and it's software that do not belong in any other forum.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 20th December 2011, 11:07 AM
thelynx Offline
Registered User
 
Join Date: Dec 2011
Location: Abu Dhabi
Posts: 4
linuxchrome
rpmfusion repo difficulties

Hello everyone,

I am rather new to Fedora and am having a problem with rpmfusion on Fedora 16. When I check /etc/yum.repos.d I cannot find rpmfusion at all, but when I type yum rpm -ivh http...download1.rpmfusion.org/free/rpmfusion-free-release-stable.noarch.rpm, it says that it is already installed, i.e.:

Retrieving http://download1.rpmfusion.org/free/...ble.noarch.rpm
warning: /var/tmp/rpm-tmp.OEjBkh: Header V3 RSA/SHA256 Signature, key ID 865cc9ea: NOKEY
Preparing... ########################################### [100%]
package rpmfusion-free-release-14-2.noarch is already installed

But it isn't installed. And when I run yum update yum, it doesn't come up, nor is it in the software sources in Add Remove Programs. Furthermore, when I try to install vlc player, I get this:

Loaded plugins: langpacks, presto, refresh-packagekit
Setting up Install Process
No package vlc available.
Error: Nothing to do

It just doesn't make any sense. Any help whatsoever on this would be very very much appreciated, as I am starting to pull my hair out.

Thanks.
Reply With Quote
  #2  
Old 20th December 2011, 11:26 AM
sea's Avatar
sea Offline
"Shells" (of a sub world)
 
Join Date: May 2011
Location: Helvetic Federation (Swissh)
Age: 33
Posts: 2,607
linuxfirefox
Re: rpmfusion repo difficulties

VLC is in the nonfree packages


Code:
#!/bin/bash
# SSC - sea Scripts Collectior Framework
# File Description:	Installs basic multimedia support on your red hat based distro
# File Version:		0.4
# Created:			2011.11.21
# Changed:			2011.12.19
# Resources:		http://rpm.livna.org, http://rpmfusion.org/Configuration
# ------------------------------------------------------------------------------
echo "SC - Setup - RedHat : Multimedia"
if test ! 0 = $UID ; then echo -e "It is suggest to run this script as root, to avoid typing...\nDo you want to login su?" ;    select answer in yes no ; do case $answer in      
	  yes) su -c "$0 $1 $2 $3" && break ;; 
     	  no) echo "Have fun typing ;)" && break ;;  esac ; done ; fi
# |
# | Variables
    rpmlist="http://rpm.livna.org/livna-release.rpm http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm"
    yumy="libdvdcss gstreamer-plugins-ugly gstreamer-plugins-good gstreamer-plugins-bad gstreamer-plugins-base gstreamer-plugins-base-tools gstreamer-plugin-crystalhd audacious-plugins-freeworld-mp3 gstreamer-ffmpeg ffmpeg vlc mozilla-vlc"
# | 
# | EPEL Check for RHEL, SL or CentOS would take place here
    epel=false
# | 
# | Install RPM
	echo "Clean yum cache"
	yum clean all	2>&1
	
	echo "Installing RPM's" "Livna, RPM Fusion Free & non FRee"
	for r in $rpmlist ; do
		su -c "rpm -ih --quiet $r" 2>&1 && echo "Installed: $r" "$(ACTION_STATUS 1)" || echo "Installed: $r" "$(ACTION_STATUS"
	done
# |
# | Install Packages
	echo "Installing packages.." "Please be patient..."
	for y in  $yumy ; do
		echo "Installing $y..." "$(ACTION_STATUS 3)"
		#spacy=$[ $(tput cols) - (${#BORDER_LEFT} * 2) - ${#out}]
		su -c "yum -y -q install $y" 2>&1 && scecho "Installed: $y" "$(ACTION_STATUS 1)" || scecho "Installed: $y" "$(ACTION_STATUS 2)"
	done
# |
# | Flash or gnash?
    echo "Do you want to install Gnash?" "(Gnash is Opensource, but just like Flash)"
    select answer in yes no ; do
      case $answer in
    	yes)	su -c "yum install gnash" && break	;;
    	no)		su -c "rpm -i http://linuxdownload.adobe.com/adobe-release-1.0-1.noarch.rpm" 
    			su -c "yum -q -y install flash-plugin"
    			break ;;
      esac
    done
This should work, but there WILL be an error, that "ACTIon_STATUS" was not found, thats a self written function, which only displays if its progressing, succeeded or failed.

Hope this helps either way.
__________________
Fedora Manual: http://docs.fedoraproject.org
Script-Tools: https://sourceforge.net/projects/script-tools/
sudo st tweak repo toggle fedora-rawhide ; st iso dl-fed -respin && st iso usb
Reply With Quote
  #3  
Old 20th December 2011, 11:52 AM
bob's Avatar
bob Online
Administrator (yeah, back again)
 
Join Date: Jul 2004
Location: Colton, NY; Junction of Heaven & Earth (also Routes 56 & 68).
Age: 67
Posts: 21,219
linuxfirefox
Re: rpmfusion repo difficulties

The OP problem is that rpmfusion never installed in his repos.d, so it's never called up. If you try "locate rpmfusion-free-release" you will probably find it's pointing to /var/lib/yum. That's not a solution, of course. Let me see if I can get the basic repos copied down for your repos.d (brb)

Okay, I've uploaded my free & non-free & updates contents for just the basics. Obviously, the title doesn't get included in the actual repos.d, it's just what it's called when naming each one. There are many other entries, but for almost everything, those are what's involved. Hope it helps.
Attached Files
File Type: txt rpmfusion.txt (1.7 KB, 100 views)
__________________
Linux & Beer - That TOTALLY Computes!
Registered Linux User #362651


Don't use any of my solutions on working computers or near small children.
Reply With Quote
  #4  
Old 20th December 2011, 12:18 PM
sea's Avatar
sea Offline
"Shells" (of a sub world)
 
Join Date: May 2011
Location: Helvetic Federation (Swissh)
Age: 33
Posts: 2,607
linuxfirefox
Re: rpmfusion repo difficulties

Hmm ok, i've over read the part that its not there, but the nonfree doesnt get installed when insalling the free codecs.
What would be interesting is the output of:
Code:
ls /etc/yum.repos.d
Just to be sure if its there or not.
__________________
Fedora Manual: http://docs.fedoraproject.org
Script-Tools: https://sourceforge.net/projects/script-tools/
sudo st tweak repo toggle fedora-rawhide ; st iso dl-fed -respin && st iso usb
Reply With Quote
  #5  
Old 20th December 2011, 12:27 PM
bob's Avatar
bob Online
Administrator (yeah, back again)
 
Join Date: Jul 2004
Location: Colton, NY; Junction of Heaven & Earth (also Routes 56 & 68).
Age: 67
Posts: 21,219
linuxfirefox
Re: rpmfusion repo difficulties

Oh, you KNOW we all want those non-freebies!

So, yeah, let's just make sure by having you post your current /etc/yum.repos.d .
Here's mine, which includes a few extra repos you may not have or want:

Quote:
[root@localhost bob]# ls /etc/yum.repos.d
adobe-linux-x86_64.repo
fedora.repo
fedora-updates.repo
fedora-updates-testing.repo
rpmfusion-free.repo
rpmfusion-free-updates.repo
rpmfusion-free-updates-testing.repo
rpmfusion-free-rawhide.repo
rpmfusion-nonfree.repo
rpmfusion-nonfree-updates.repo
rpmfusion-nonfree-rawhide.repo
rpmfusion-nonfree-updates-testing.repo
google-chrome.repo
livna.repo
__________________
Linux & Beer - That TOTALLY Computes!
Registered Linux User #362651


Don't use any of my solutions on working computers or near small children.
Reply With Quote
  #6  
Old 20th December 2011, 12:31 PM
sea's Avatar
sea Offline
"Shells" (of a sub world)
 
Join Date: May 2011
Location: Helvetic Federation (Swissh)
Age: 33
Posts: 2,607
linuxfirefox
Re: rpmfusion repo difficulties

The adobe repo looks interesting.

Quote:
fedora-awesome.repo rpmfusion-free-updates.repo
fedora.repo rpmfusion-free-updates-testing.repo
fedora-updates.repo rpmfusion-nonfree-rawhide.repo
fedora-updates-testing.repo rpmfusion-nonfree.repo
livna.repo rpmfusion-nonfree-updates.repo
rpmfusion-free-rawhide.repo rpmfusion-nonfree-updates-testing.repo
rpmfusion-free.repo
__________________
Fedora Manual: http://docs.fedoraproject.org
Script-Tools: https://sourceforge.net/projects/script-tools/
sudo st tweak repo toggle fedora-rawhide ; st iso dl-fed -respin && st iso usb
Reply With Quote
  #7  
Old 20th December 2011, 12:40 PM
bob's Avatar
bob Online
Administrator (yeah, back again)
 
Join Date: Jul 2004
Location: Colton, NY; Junction of Heaven & Earth (also Routes 56 & 68).
Age: 67
Posts: 21,219
linuxfirefox
Re: rpmfusion repo difficulties

Yup, courtesy of Dave's Auto-Ten (Fedora Set-Up Guides, above). Even if you're an experienced, hard-core, do-it-yourself Fedora set-up guy, you really ought to add Auto-Ten to the must-haves as soon as you install Fedora.
__________________
Linux & Beer - That TOTALLY Computes!
Registered Linux User #362651


Don't use any of my solutions on working computers or near small children.
Reply With Quote
  #8  
Old 20th December 2011, 04:18 PM
thelynx Offline
Registered User
 
Join Date: Dec 2011
Location: Abu Dhabi
Posts: 4
linuxchrome
Re: rpmfusion repo difficulties

Many thanks for your replies, bob and sea. Before adding bob's repos, this was in my yum.repos.d:

adobe-linux-i386.repo livna.repo
fedora.repo livna.repo~
fedora.repo~
fedora-updates.repo
fedora-updates-testing.repo
google-chrome.repo

Now I've got:

adobe-linux-i386.repo livna.repo
fedora.repo livna.repo~
fedora.repo~ rpmfusion-free.repo
fedora-updates.repo rpmfusion-free-updates.repo
fedora-updates-testing.repo rpmfusion-nonfree.repo
google-chrome.repo rpmfusion-nonfree-updates.repo

But when I run yum update yum or I search for vlc, I get an endless series of these:

http...ftp-stud.hs-esslingen.de/pub/Mirrors/rpmfusion.org/free/fedora/updates/16/i386/repodata/7f8dc54ccb12037c8d72c38749f44c41eede629ce6b2583b4f 08ffcd39631b74-primary.sqlite.bz2: [Errno 14] HTTP Error 404 - Not Found : http....ftp-stud.hs-esslingen.de/pub/Mirrors/rpmfusion.org/free/fedora/updates/16/i386/repodata/7f8dc54ccb12037c8d72c38749f44c41eede629ce6b2583b4f 08ffcd39631b74-primary.sqlite.bz2
Trying other mirror.
^[chttp....mirror.karneval.cz/pub/linux/rpmfusion/free/fedora/updates/16/i386/repodata/7f8dc54ccb12037c8d72c38749f44c41eede629ce6b2583b4f 08ffcd39631b74-primary.sqlite.bz2: [Errno 14] HTTP Error 404 - Not Found : http....mirror.karneval.cz/pub/linux/rpmfusion/free/fedora/updates/16/i386/repodata/7f8dc54ccb12037c8d72c38749f44c41eede629ce6b2583b4f 08ffcd39631b74-primary.sqlite.bz2

etc. etc. etc.


Clearly, I'm missing something. Any ideas?

Thanks again.
Reply With Quote
  #9  
Old 20th December 2011, 04:34 PM
bob's Avatar
bob Online
Administrator (yeah, back again)
 
Join Date: Jul 2004
Location: Colton, NY; Junction of Heaven & Earth (also Routes 56 & 68).
Age: 67
Posts: 21,219
linuxfirefox
Re: rpmfusion repo difficulties

Interesting! I'm running X86_64, but that shouldn't create the error. Hmmm...how about going into each of the rpmfusion repos and changing "gpgcheck=1" to "gpgcheck=0" .

You might also try changing the comment (#) from in front of the baseurl to the mirrorlist, which would draw directly from the main repo, not from the mirrors. (Still might get errors, but there would only be one, not one from each mirror).
__________________
Linux & Beer - That TOTALLY Computes!
Registered Linux User #362651


Don't use any of my solutions on working computers or near small children.
Reply With Quote
  #10  
Old 20th December 2011, 04:48 PM
bob's Avatar
bob Online
Administrator (yeah, back again)
 
Join Date: Jul 2004
Location: Colton, NY; Junction of Heaven & Earth (also Routes 56 & 68).
Age: 67
Posts: 21,219
linuxfirefox
Re: rpmfusion repo difficulties

Failing that, I'd remove the repos.d that I sent you and try to force a reinstall.

I would be to go to http://rpmfusion.org/Configuration and use the commands provided there except to substitute "reinstall" for "localinstall" . Test and see if that works.
__________________
Linux & Beer - That TOTALLY Computes!
Registered Linux User #362651


Don't use any of my solutions on working computers or near small children.
Reply With Quote
  #11  
Old 20th December 2011, 05:02 PM
thelynx Offline
Registered User
 
Join Date: Dec 2011
Location: Abu Dhabi
Posts: 4
linuxchrome
Re: rpmfusion repo difficulties

Thanks, Bob. Changing the gpgcheck=1 to 0 worked and I'm downloading vlc as I type this . Is there any drawback to leaving it at gpgcheck=0?

Incidentally, is it normal to get this upon typing: sudo gedit rpmfusion-free.repo or the like?

(gedit:17073): Gtk-WARNING **: Attempting to store changes into `/root/.local/share/recently-used.xbel', but failed: Failed to create file '/root/.local/share/recently-used.xbel.BHK06V': No such file or directory

(gedit:17073): Gtk-WARNING **: Attempting to set the permissions of `/root/.local/share/recently-used.xbel', but failed: No such file or directory

(gedit:17073): Gtk-WARNING **: Attempting to store changes into `/root/.local/share/recently-used.xbel', but failed: Failed to create file '/root/.local/share/recently-used.xbel.0BM16V': No such file or directory

(gedit:17073): Gtk-WARNING **: Attempting to set the permissions of `/root/.local/share/recently-used.xbel', but failed: No such file or directory

Thanks again for all your help.
Reply With Quote
  #12  
Old 20th December 2011, 05:51 PM
bob's Avatar
bob Online
Administrator (yeah, back again)
 
Join Date: Jul 2004
Location: Colton, NY; Junction of Heaven & Earth (also Routes 56 & 68).
Age: 67
Posts: 21,219
linuxfirefox
Re: rpmfusion repo difficulties

No, you should be okay to leave it at "0". That's a security validation check and obviously there was a complete failure to set rpmfusion up properly the first time, which is why you're still getting failed component errors now. If it works, great. Otherwise, you could try to force a reinstall to correct everything.
__________________
Linux & Beer - That TOTALLY Computes!
Registered Linux User #362651


Don't use any of my solutions on working computers or near small children.
Reply With Quote
Reply

Tags
difficulties, repo, rpmfusion

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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 On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Any reason RPMFusion repo for F14 is empty simpfeld Using Fedora 10 11th November 2010 01:20 PM
rpmfusion repo change GoinEasy9 Fedora 13 Development Branch 1 20th April 2010 05:57 AM
rpmfusion repo change GoinEasy9 F16 Development 0 17th April 2010 06:53 AM
can't update rpmfusion repo Fungyo Linux Chat 5 24th July 2009 09:58 AM
RpmFusion repo problems. bdjohns Alpha, Beta & Snapshots Discussions (Fedora 10 Only) 3 21st November 2008 10:57 PM


Current GMT-time: 18:51 (Thursday, 23-05-2013)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat