Results 1 to 9 of 9
hi folks,
i installed vlc but i already had rpmfusion-free-release-stable.noarch.rpm
so i did this.
PHP Code:
[ root @ pc /] # rpm -ivh rpmfusion-free-release-stable.noarch.rpm
warning : rpmfusion - free - release - ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 04-25-2012 #1
how do i get the downloaded vlc packages for reinstallation.
hi folks,
i installed vlc but i already had rpmfusion-free-release-stable.noarch.rpm
so i did this.
[root@pc /]# yum install vlcPHP Code:[root@pc /]# rpm -ivh rpmfusion-free-release-stable.noarch.rpm
warning: rpmfusion-free-release-stable.noarch.rpm: Header V3 RSA/SHA256 Signature, key ID a3780952: NOKEY
Preparing... ########################################### [100%]
1:rpmfusion-free-release ########################################### [100%]
vlc installed sucessfully but i need to install it on another machine and i dont want to download it again. so please some help
- 04-25-2012 #2Just Joined!
- Join Date
- Dec 2006
- Posts
- 36
Look for the rpm file for vlc in /var/cache/yum/rpmfusion*
The file name would be something like vlc-{version_number}.rpm
Copy this file on other machine. And issue this command:
If you get signature error then try with --nosignature option. If you want to auto install dependencies as well then try with:Code:rpm -ivh vlc*.rpm
Code:yum localinstall vlc*.rpm
- 04-25-2012 #3
This is what is in the named directory
[root@pc yum]# pwd
/var/cache/yumAs in there is no such file as vlc but there are packagekit rpm updates. And secondly the dependencies are so many and dont start with the name "vlc" so "vlc*.rpm" wild cards may not work.[root@pc yum]# ls
i386 installedLast edited by jonniemuk; 04-25-2012 at 02:09 PM. Reason: typo
- 04-26-2012 #4
- 04-26-2012 #5
- 04-26-2012 #6
- 04-26-2012 #7Linux Newbie
- Join Date
- Oct 2008
- Posts
- 150
You may have to download it one more time. If so, yumdownloader vlc will download it and its' dependencies into the current directory. Then you can install onto other computers with yum localinstall vlc.
- 04-26-2012 #8
vlc has the following package dependencies in Fedora 16, as an example. You're going to need the rpm for each one that's not already on the target system. "yumdownloader" will only grab the dependencies not already installed on the system where yumdownloader is run, so doing it on the system where you've installed vlc is not going to get them.
Package dependencies:
aalib-libs
bash
cairo
dbus-libs
dejavu-sans-fonts
dejavu-sans-mono-fonts
dejavu-serif-fonts
freetype
freetype-freeworld
fribidi
gdk-pixbuf2
glib2
glibc
kde-filesystem
libcaca
libgcc
libICE
libpng
libprojectM
librsvg2
libSM
libstdc++
libtar
libX11
libxcb
libXext
libXpm
mesa-libGL
minizip
pulseaudio-libs
qt
qt-x11
vlc-core
xcb-util
xdg-utils
zlib
There are specific minimum version numbers for each, but grab the latest of each one and you should be good. It would also be simple to pipe the list to a bash "for" loop that did an rpmrebuild for each on the system where vlc is installed.
- 05-11-2012 #9
thanks folks, i have been off for a while but i will try the above solutions and get back to you.


Reply With Quote

