Xubuntu10.04安装spice客户端
安装spice客户端:
1.以root用户登录系统并在终端中运行apt-get update命令跟新软件包
注:软件包的源最好选择Main Server服务器,在Applications-System-Software Sources中的Download from里进行选择。
2.跟新好软件包后一次装入以下软件
apt-get install build-essential
apt-get install autoconf
apt-get install libjpeg62-dev
apt-get install libogg-dev
apt-get install libssl-dev
apt-get install libasound2-dev
apt-get install libxrandr-dev
apt-get install libxfixes-dev
apt-get install pkg-config
注:如果中间有确认安装提示,则直接输入y确定即可。
3. 从240服务器上copy安装spice所需的安装包到本地opt目录
scp [email protected]:/mnt/sda1/public/temp/spice.tar.gz /opt
(大家可以到spice官方网站上去下载)
4. 进到opt目录解压spicec.tar.gz包
tar –xvf spice.tar.gz
5 cd到spice/spice_svn/trunk/spiceProtocol/spice-protocol-0.6.3目录下依次运行以下三条命令:
./configure --prefix=/usr
make
make install
6 .从源码安装celt-0.5.1.3和pixman-0.18.4这两个软件包
(1): 安装celt-0.5.1.3包
cd到/opt/spice/celt-0.5.1.3目录下依次运行以下三条命令
./configure --prefix=/usr
make
make install
(2):安装pixman-0.18.4包
cd到/opt/spice/pixman-0.18.4目录下依次运行以下三条命令
./configure --prefix=/usr
make
make install
7.cd到/opt/spice_svn/trunk/spice目录下执行命令
./configure --prefix=/usr
如果编译没有错误的话,然后cd到/opt/spice_svn/trunk/spice/client目录执行以下命令
make
make install
至此spice客户端安装完毕!