CentOS 6.4에 최신 VLC 플레이어를 설치하는 방법은 무엇입니까?

CentOS 6.4에 최신 VLC 플레이어를 설치하는 방법은 무엇입니까?

내 노트북에는 CentOS 6.4가 설치되어 있습니다. CentOS 6.4에서 VLC를 설치하는 방법을 알고 싶습니다. vlc 패키지를 다운로드하여 컴파일해야 하나요, 아니면 yum install vlc이를 사용하여 설치할 수 있나요?

답변1

VLC를 설치할 수 있도록 다음 yum 저장소(EPEL, famouslecollet 및 RPMFusion)를 설치할 수 있습니다.

$ sudo yum localinstall --nogpgcheck http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-7.noarch.rpm
$ sudo yum localinstall --nogpgcheck http://rpms.famillecollet.com/enterprise/remi-release-6.rpm

$ sudo yum localinstall --nogpgcheck http://download1.rpmfusion.org/free/el/updates/6/i386/rpmfusion-free-release-6-1.noarch.rpm
$ sudo yum localinstall --nogpgcheck http://download1.rpmfusion.org/nonfree/el/updates/6/i386/rpmfusion-nonfree-release-6-1.noarch.rpm

이제 VLC 패키지가 보이는지 테스트해 보세요.

$ yum --enablerepo=remi-test info vlc
Loaded plugins: fastestmirror, refresh-packagekit
Loading mirror speeds from cached hostfile
Available Packages
Name        : vlc
Arch        : i686
Version     : 2.0.3
Release     : 1.el6
Size        : 1.9 M
Repo        : rpmfusion-free-updates
Summary     : The cross-platform open-source multimedia framework, player and server
URL         : http://www.videolan.org
License     : GPLv2+
Description : VLC media player is a highly portable multimedia player and multimedia framework
            : capable of reading most audio and video formats as well as DVDs, Audio CDs VCDs,
            : and various streaming protocols.
            : It can also be used as a media converter or a server to stream in uni-cast or
            : multi-cast in IPv4 or IPv6 on networks.

VLC를 설치하기 전에 시스템 업데이트

$ sudo yum update -y

설치하려면:

$ sudo yum --enablerepo=remi-test install vlc

테스트하려면:

$ vlc

관련 정보