ubuntu 12.04 安装 tightvnc

1、获取源码:wget http://www.tightvnc.com/download/1.3.10/tightvnc-1.3.10_unixsrc.tar.gz 
2、阅读 README 文件,查看编译方法,发现缺少xmkmf工具
3、通过sudo apt-get install xutils-dev 解决
4、根据README文件提供的编译方法编译 vncviewer vncserver vncpasswd vncconnect.
xmkmf
make World
在 make World 时出现找不到X11的一些头文件
vncviewer.h:39:28: fatal error: X11/Xmu/StdSel.h: No such file or directory
通过 sudo apt-get install libxmu-dev 解决
再次执行makefile 出现
desktop.c:25:30: fatal error: X11/Xaw/Viewport.h: No such file or directory
通过 sudo apt-get install libxaw7-dev 解决
再次执行makefile 成功,不过出现exit 和 strlen 的 warning: incompatible implicit declaration of built-in function ‘strlen’ [enabled by default]
5,、编译 Xvnc
cd Xvnc
./configure
make
成功编译
6、安装
      cd ..
sudo ./vncinstall /usr/local/bin /usr/local/man

你可能感兴趣的:(ubuntu 12.04 安装 tightvnc)