'Language'에 해당되는 글 2건

  1. 2011.12.12 numpy & scipy
  2. 2011.04.21 NFS Mount Checkup Script
Language2011. 12. 12. 20:32
$ tar zxvfp Python-2.7.2.tgz
$ cd Python-2.7.2
$ ./configure --prefix=/Data/Utils/python && make && make install
$ cd ..
$ wget http://peak.telecommunity.com/dist/ez_setup.py
$ /Data/Utils/python/bin/python ez_setup.py
$ /Data/Utils/python/bin/easy_install numpy
$ /Data/Utils/python/bin/easy_install scipy
Posted by 변익수
Language/Perl2011. 4. 21. 15:54

#!/usr/bin/perl

$mount = `df -k`;

if($mount !~ /10.1.1.1:\/BiO/)    {

system("mkdir /BiO;mount -t nfs 10.1.1.1:/BiO /BiO";chmod 777 /BiO);
}

Posted by 변익수