如何在终端上安装vlc on centos7?

时间:2015-04-04 05:28:18

标签: linux centos vlc fedora-21

我想在centos7上安装vlc。我遵循互联网上提到的一些步骤。当我试图跑 1. yum update 然后 2. yum install vlc ,它出现以下错误。 我得到了一些建议的东西 您可以尝试使用--skip-broken来解决问题     您可以尝试运行:rpm -Va --nofiles --nodigest

    Error: Package: vlc-2.0.7-10.el6.x86_64 (linuxtech-release)
           Requires: libnotify.so.1()(64bit)
           Available: libnotify-0.5.0-1.el6.x86_64 (tejas-barot-vlc)
               libnotify.so.1()(64bit)
           Installed: libnotify-0.7.5-7.el7.x86_64 (@base/$releasever)
              ~libnotify.so.4()(64bit)
Error: Package: vlc-2.0.7-10.el6.x86_64 (linuxtech-release)
           Requires: libgnutls.so.26()(64bit)
           Available: gnutls-2.8.5-14.el6_5.x86_64 (tejas-barot-vlc)
               libgnutls.so.26()(64bit)
           Installed: gnutls-3.3.8-12.el7.x86_64 (@base)
              ~libgnutls.so.28()(64bit)
Error: Package: vlc-2.0.7-10.el6.x86_64 (linuxtech-release)
           Requires: libgnutls.so.26(GNUTLS_1_4)(64bit)
           Available: gnutls-2.8.5-14.el6_5.x86_64 (tejas-barot-vlc)
               libgnutls.so.26(GNUTLS_1_4)(64bit)
           Installed: gnutls-3.3.8-12.el7.x86_64 (@base)
              ~libgnutls.so.28(GNUTLS_1_4)(64bit)
              ~libgnutls.so.28(GNUTLS_2_10)(64bit)
              ~libgnutls.so.28(GNUTLS_2_12)(64bit)
              ~libgnutls.so.28(GNUTLS_2_8)(64bit)
Error: Package: vlc-2.0.7-10.el6.x86_64 (linuxtech-release)
           Requires: libudev.so.0()(64bit)
           Available: libudev-147-2.57.el6.x86_64 (tejas-barot-vlc)
               libudev.so.0()(64bit)
Error: Package: vlc-2.0.7-10.el6.x86_64 (linuxtech-release)
           Requires: libproxy.so.0()(64bit)
           Available: libproxy-0.3.0-10.el6.x86_64 (tejas-barot-vlc)
               libproxy.so.0()(64bit)
           Installed: libproxy-0.4.11-6.el7.x86_64 (@base/$releasever)
              ~libproxy.so.1()(64bit)
Error: Package: vlc-2.0.7-10.el6.x86_64 (linuxtech-release)
           Requires: libmtp.so.8()(64bit)
           Available: libmtp-0.3.7-1.el5.rf.x86_64 (rpmforge)
               libmtp.so.8()(64bit)
           Available: libmtp-1.0.1-2.el6.x86_64 (tejas-barot-vlc)
               libmtp.so.8()(64bit)
           Installed: libmtp-1.1.6-3.el7.x86_64 (@base/$releasever)
              ~libmtp.so.9()(64bit)
 You could try using --skip-broken to work around the problem
 You could try running: rpm -Va --nofiles --nodigest

我只是运行yum repolist

repo id               repo name                                           status
adobe-linux-x86_64    Adobe Systems Incorporated                               2
atrpms/7/x86_64       Fedora Core 7 - x86_64 - ATrpms                        827
base/7/x86_64         CentOS-7 - Base                                      8,652
epel/x86_64           Extra Packages for Enterprise Linux 7 - x86_64       7,602
extras/7/x86_64       CentOS-7 - Extras                                       84
google-chrome         google-chrome                                            3
linuxtech-release     LinuxTECH.NET el6 main repo                          1,161
nodesource/x86_64     Node.js Packages for Enterprise Linux 7 - x86_64        29
openstack-juno        OpenStack Juno Repository                              953
rpmforge              RHEL 7 - RPMforge.net - dag                         11,403
tejas-barot-vlc       CentOS Repository for VLC Installation               6,518
updates/7/x86_64      CentOS-7 - Updates                                     300
repolist: 37,534

我们可以看到已启用EPEL列表。 我从这个链接开始 http://www.tecmint.com/how-to-enable-epel-repository-for-rhel-centos-6-5/

我是

2 个答案:

答案 0 :(得分:1)

安装或启用epel存储库,然后您就可以安装vlc了。

答案 1 :(得分:0)

有几种方法可以在Centos上安装任何软件。我们将使用YUM来安装vlc。在安装之前,您应该通过以下命令检查您正在使用的Centos版本。

  

cat / etc / centos-release

现在根据centos版本按照说明操作: -

对于Centos 7

第1步:安装EPEL

  

yum install epel-release

如果您在安装EPEL时遇到任何困难,请按照link进行操作。

  

rpm -Uvh http://li.nux.ro/download/nux/dextop/el7/x86_64/nux-dextop-release-0-1.el7.nux.noarch.rpm

对于Centos 6

步骤1:运行以下命令

  

rpm -Uvh http://dl.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm

     

rpm -Uvh   http://li.nux.ro/download/nux/dextop/el6/x86_64/nux-dextop-release-0-2.el6.nux.noarch.rpm

第2步:更新Yum

  

yum update

第3步:安装VLC

  

yum install vlc

第4步:打开VLC

  

vlc -v

恭喜!你安装了VLC。