码迷,mamicode.com
首页 > 系统相关 > 详细

Linux运维系统工程师系列---13

时间:2014-08-08 16:23:36      阅读:312      评论:0      收藏:0      [点我收藏+]

标签:linux运维系统工程师系列 linux软件安装

定制安装

    

    定制安装,也叫源码安装,需要自己编译源代码的安装方式

        步骤:

    1、解压源代码包

    2、配置 configure

    3、编译 make

    4、安装 make install

        接下来开始做实验,希望朋友们自己动手实践,有啥不清楚的可以直接提问我,我看到会及时回复。

        1、解压源码包

[root@server254 base]# cd /root/Desktop/

[root@server254 Desktop]# ls

gnome-terminal.desktop  MPlayer-1.1.tar.gz  notecase-1.9.8_slack.tar.gz

[root@server254 Desktop]# tar zxvf MPlayer-1.1.tar.gz -C /usr/local/src/

        2、配置

[root@server254 MPlayer-1.1]# pwd

/usr/local/src/MPlayer-1.1

[root@server254 MPlayer-1.1]# ./configure --prefix=/usr/local/mplayer 会报错

Error: yasm not found, use --yasm=‘‘ if you really want to compile without

[root@server254 MPlayer-1.1]# ./configure --prefix=/usr/local/mplayer --yasm=‘‘

--prefix:指定的软件的安装路径

        3、编译

[root@server254 MPlayer-1.1]# make

        4、安装

[root@server254 MPlayer-1.1]# make install

        5、验证

[root@server254 bin]# cd /usr/local/mplayer/bin/

[root@server254 bin]# ./mplayer /root/Desktop/1983\ -\ 歌曲名.mp3 

听不到,报个错:

Can‘t open audio device /dev/dsp: No such file or directory

[root@server254 ~]# modprobe snd_pcm_oss

看能否听到声音

[root@server254 bin]# ./mplayer /root/Desktop/1983\ -\ 爱情木瓜.mp3


make其他相关命令

make clean:清除编译文件

make uninstall :卸载




[root@server254 Desktop]# ls /usr/local/src/

MPlayer-1.1  test  vmware-tools-distrib

[root@server254 Desktop]# cd !$ 

cd /usr/local/src/

!$:上一条命令最后一个参数




本文出自 “空谷幽兰” 博客,请务必保留此出处http://2489843.blog.51cto.com/2479843/1537391

Linux运维系统工程师系列---13,布布扣,bubuko.com

Linux运维系统工程师系列---13

标签:linux运维系统工程师系列 linux软件安装

原文地址:http://2489843.blog.51cto.com/2479843/1537391

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!