Category Archives: Linux

Prozilla

     Prozilla,Linux下的一款下载工具,支持命令行和图形界面,多线程,速度快,稳定    下载地址:http://prozilla.genesys.ro/     安装:./configure –prefix=/usr/local/prozilla; make; make install;     最新版本 2.0.4 ,make时出现错误:    download_win.h:55: error: extra qualification ‘DL_Window::’ on member ‘print_status’     解决方法:    src/download_win.h第55行     void DL_Window::print_status(download_t * download, int quiet_mode);     改为     void print_status(download_t * download, int quiet_mode);

Posted in Linux | 1 Comment

ZT: SSH login without password

  From http://linuxproblem.org/art_9.html  SSH login without password Your aim You want to use Linux and OpenSSH to automize your tasks. Therefore you need an automatic login from host A / user a to Host B / user b. You don’t want … Continue reading

Posted in Linux | Leave a comment

笔记—NFS

  向计算机集群系统加入一个专门下载数据的节点机,NFS配置完毕,挂载网络文件系统出现错误: mount: mount to NFS server ‘192.168.2.11′ failed: System Error: No route to host. 疑似控制台防火墙问题,但出于安全又不能取消防火墙,解决方法: 1、配置iptables. 在/etc/sysconfig/iptables里添加:     -A RH-Firewall-1-INPUT -p tcp –dport nfs -s 192.168.2.11/255.255.255.0 -j ACCEPT     -A RH-Firewall-1-INPUT -p udp –dport nfs -s 192.168.2.11/255.255.255.0 -j ACCEPT     … Continue reading

Posted in Linux | Leave a comment

与时俱进

        MM5所需的GFS数据已经不再提供GRIB1格式       不得不再折腾一番了       How to use GRIB2 data with MM5.     As more and more datasets are moving towards GRIB2, users still making use of MM5 will start running into problems, as MM5 cannot ingest GRIB2 data … Continue reading

Posted in Linux | Leave a comment

PGI 6.1 的安装

             不少人都因为PGI没有正确安装而发愁              之前写过一点PGI5.2的安装方法              很多人通过搜索找到了那一篇鬼东西              而实际上,那个方法仍存在一些问题              虽然能够正确编译你的fortran程序              但不能支持mpich并行库                重新看了一些官方论坛的帖子              这是安装程序的一个Bug,但自己能修正              现在的Linux的glibc版本都已经升级到2.5或更高              而PGI 6.1的安装只能识别2.3以下的版本                           修正方法:              安装前编辑linux86/6.1/bin中的makelocalrc              把222-226行复制下来替换掉266-268行              也就是欺骗你的安装程序,告诉它你的glibc版本是2.3              如果你的系统是64位,就编辑linux86-64/6.1/bin中的makelocalrc              方法没什么区别                  (另外,PGI 7.0以上的版本官方已经解决了这个问题)                如果还不能正确安装              检查你安装的Linux系统是不是英文环境              … Continue reading

Posted in Linux | 1 Comment

FC5 下 PGI 5.2 的安装

        已经多次发现有人通过搜索“PGI”之类关键词找到这个空间,只因曾写过一次PGI成功安装。       PGI在REDHAT下安装使用很是方便,但FC下PGI问题重重。       有人说缺少某些文件,但是把那些文件复制过来之后在我的机器上PGI仍然不能正常使用。         解决方案并不是很复杂:       1、在FC下安装PGI,安装完成后当然还无法使用。       2、将REDHAT下编译好的PGI复制到FC下,覆盖第一步安装的PGI文件。       3、检查/usr/lib/gcc-lib/i386-redhat-linux/3.2.2是否存在,如果存在则复制一份改名为3.2.1。           如果不存在就还从REDHAT里面复制过来吧。         在FC5,PGI5.2环境下测试没问题。       另外,如果先在REDHAT下安装好PGI,然后系统再把系统升级到FC也能正常使用PGI。      < 后来发现该方法仍有问题,参见 http://tongwandou.spaces.live.com/blog/cns!204F370B17E676FA!721.entry &gt;

Posted in Linux | 4 Comments