您的位置:首页 > 其它

ubuntu 12.04 安装 tightvnc

2017-03-14 23:01 274 查看
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

--------------------------------------------------------------
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: