CentOS系统怎么安装VLC播放器
VLC这个播放器的牛X+V5,在windows下用起来确实很安逸,那么CentOS系统怎么安装VLC播放器呢?今天学习啦小编与大家分享下CentOS系统安装VLC播放器的具体操作步骤,有需要的朋友不妨了解下。
CentOS系统安装VLC播放器方法
以下安装命令使用root用户权限执行
1、安装epel和remi的repository:
代码如下:
yum localinstall --nogpgcheck
http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
代码如下:
yum localinstall --nogpgcheck
http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
2、安装rpmfusion的repository:
下面两个rpm包都要安装
代码如下:
yum localinstall --nogpgcheck
http://download1.rpmfusion.org/free/el/updates/6/i386/rpmfusion-free-release-6-1.noarch.rpm
代码如下:
yum localinstall --nogpgcheck
http://download1.rpmfusion.org/nonfree/el/updates/6/i386/rpmfusion-nonfree-release-6-1.noarch.rpm
3、查看vlc的版本信息:
代码如下:
yum --enablerepo=remi-test info vlc
不出意外的,这条命令下去,结果应该是下面这样子的:
Available Packages
Name : vlc
Arch : i686
Version : 2.0.6
Release : 1.el6
Size : 1.4 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.
4、安装之:
代码如下:
yum --enablerepo=remi-test install vlc
完事之后直接运行输入vlc运行
代码如下:
vlc
不幸的是,它会告诉你说vlc不支持root。
退出root用户,使用普通用户执行vlc命令
代码如下:
vlc
若没有创建普通用户,使用以下命令创建:
代码如下:
useradd username -p
#useradd vlc -p123456
创建完使用该用户
代码如下:
su vlc
执行vlc命令
Tag:centos VLC
看过“CentOS系统怎么安装VLC播放器”的人还看了: