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 解决

rfbproto.c:32:21: fatal error: jpeglib.h: No such file or directory
compilation terminated.
make: *** [rfbproto.o] Error 1
root@ubuntu:/aaron/toradex/nvida/vnc/xlibs/tightvnc-1.3.9/vncviewer# apt-get install libjpeg


再次执行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退出redis的示例:指定配置文件方式启动源码redis:roo...
ubuntu中mysql改密码忘了的解决方法:1.在终端中切换到root权...
ubuntu安装mysql失败的解决方法原因:可能是原有的MySQL还有...
使用centos和ubuntu建站的区别有以下几点1.CentOS是Linux发行...
ubuntu图形界面和字符界面切换的方法:可以通过快捷键CTRL+A...
ubuntu中重启mysql失败的解决方法1.首先,在ubuntu命令行中,...