Installing Skype from Repository
Edit: Here is the new version that works with Fedora 13. It installs the latest Skype from the Skype repository (apparently the Skype repo was outdated in the past, but now it contains the same version as on the Skype website).
First, create the skype.repo file in the /etc/yum.repos.d directory:
Code:
su - cat <<EOF> /etc/yum.repos.d/skype.repo [skype] name=Skype Repository baseurl=http://download.skype.com/linux/repos/fedora/updates/i586/ gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-skype enabled=1 gpgcheck=0 EOF exit
Code:
sudo yum -y install skype
Code:
sudo yum -y install alsa-lib.i686 dbus-libs.i686 e2fsprogs-libs.i686 expat.i686 fontconfig.i686 freetype.i686 glib2.i686 glibc.i686 keyutils-libs.i686 krb5-libs.i686 libcap.i686 libgcc.i686 libICE.i686 libpng.i686 libselinux.i686 libSM.i686 libstdc++.i686 libX11.i686 libXau.i686 libxcb.i686 libXcursor.i686 libXdmcp.i686 libXext.i686 libXfixes.i686 libXi.i686 libXinerama.i686 libXrandr.i686 libXrender.i686 libXScrnSaver.i686 libXv.i686 openssl.i686 qt.i686 qt-x11.i686 zlib.i686
================================
Below is the old version for Fedora 10. It might still be of some value to some people.
First, get Skype's public key:
Code:
gpg --keyserver pgp.mit.edu --recv-keys 0xD66B746E gpg -a -o RPM-GPG-KEY-skype --export 0xD66B746E sudo rpm --import RPM-GPG-KEY-skype rm RPM-GPG-KEY-skype
Code:
su - cat <<EOF> /etc/yum.repos.d/skype.repo [skype] name=Skype Repository baseurl=http://download.skype.com/linux/repos/fedora/updates/i586/ gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-skype enabled=1 gpgcheck=1 EOF exit
Code:
sudo yum -y install skype