ubuntu 12.04 安装 tightvnc

前端之家收集整理的这篇文章主要介绍了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


--------------------------------------------------------------

原文链接:https://www.f2er.com/ubuntu/354047.html

猜你在找的Ubuntu相关文章