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的过程。

1、打开任意一个终端,在里面输入: yum install gtk+*   ,然后回车,安装过程中选择“Y”;
.....
试了,还是不行
发现/usr/include 下面只有gtk1.2 的,没有2.0
在找:
帖子三:
我在编译安装emacs23的时候提示No package ‘gtk+-2.0′ found  centos的开发环境。
网上搜了一下,发现安装gtk+-2.0不是一件容易的事,后来无意发现一个帖子挺不错,内容如下:

No package ‘libgnomeui-2.0′ found
No package ‘gtk+-2.0′ found
No package ‘glib-2.0′ found

我尝试了yum install libgnomeui,但是提示我已经安装过了,经过google,发现要安装的是libgnomeui-devel
解决:yum install libgnomeui-devel
试了,成功gtk2.0 有了
然后在make, 不行,报错:
../unix/gtkfont.c: In function ‘x11font_enum_fonts’:
../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"))
。。。。。。。。。。
然后在找,帖子四:
很容易处理,但我不知道你会不会找FLAGS

把makefile里的-Werror去掉就行了
CentOs putty 安装
———————————————————————————
CentOs putty 安装

就是把里面的werror删掉吗?
成功,把MakeFile里的-Werror 去掉之后成功
 
thank god

相关推荐