CentOs putty 安装
要在linux上安装putty, 有点麻烦,需要收集各个帖子
帖子一:
1、下载Putty,官网下载地址为:http://www.putty.nl/download.html
2、下载完成后,进行解压:
[root@Desktop]# mkdir /home/91rhca/putty
[root@Desktop]# mv putty-0.59.tar.gz /home/91rhca/putty
[root@Desktop]# cd /home/91rhca/putty
[root@putty]#tar zxvf putty-0.59.tar.gz
3.进行Putty的编译安装:
[root@Desktop]#cd /home/91rhca/putty/unix
[root@unix]#./configure
[root@unix]#make
到这里Putty安装就完成了。
4.为方便平时的Putty的快速访问使用,可以做一个软连接至putty的运行文件
[root@unix]#cd /bin
[root@bin]#ln -s /home/91rhca/putty/putty ./putty
这样不管你在哪个目录下,只要输入:putty 命令即可运行了。
试了,不行,make之后没有putty command not found
然后看README 文件, 发现要装gtk+-2.0
然后找到帖子二:
在使用GTK+进行GUI编程之前,必须要先安装上GTK+。下面介绍CentOS 6.0中安装GTK2.0的过程。
网上搜了一下,发现安装gtk+-2.0不是一件容易的事,后来无意发现一个帖子挺不错,内容如下:
No package ‘libgnomeui-2.0′ found
No package ‘gtk+-2.0′ found
No package ‘glib-2.0′ found
../unix/gtkfont.c:527:6: warning: ‘g_strcasecmp’ is deprecated (declared at /usr/include/glib-2.0/glib/gstrfuncs.h:200) [-Wdeprecated-declarations]
if (!g_strcasecmp(components[3], "i"))
^
../unix/gtkfont.c:529:6: warning: ‘g_strcasecmp’ is deprecated (declared at /usr/include/glib-2.0/glib/gstrfuncs.h:200) [-Wdeprecated-declarations]
else if (!g_strcasecmp(components[3], "o"))
^
../unix/gtkfont.c:531:6: warning: ‘g_strcasecmp’ is deprecated (declared at /usr/include/glib-2.0/glib/gstrfuncs.h:200) [-Wdeprecated-declarations]
else if (!g_strcasecmp(components[3], "ri"))
^
../unix/gtkfont.c:533:6: warning: ‘g_strcasecmp’ is deprecated (declared at /usr/include/glib-2.0/glib/gstrfuncs.h:200) [-Wdeprecated-declarations]
else if (!g_strcasecmp(components[3], "ro"))
^
../unix/gtkfont.c:535:6: warning: ‘g_strcasecmp’ is deprecated (declared at /usr/include/glib-2.0/glib/gstrfuncs.h:200) [-Wdeprecated-declarations]
else if (!g_strcasecmp(components[3], "ot"))
。。。。。。。。。。
把makefile里的-Werror去掉就行了
———————————————————————————
就是把里面的werror删掉吗?