timezone 변경 /etc/sysconfig/clock 변경 ZONE="Asia/Seoul" UTC=false ARC=false 참조파일은 /usr/share/zoneinfo를 참조. /etc/sysconfig/clock 변경 후 ln -sf /usr/share/zoneinfo/Asia/Seoul /etc/localtime date 확인. hwclock --systohc 하면 bios상의 시간두 변경가능. ======================== 오래전 이야기/Server 2008.09.15
pure-ftpd 설치 ###################### # pure-ftpd install ###################### cd /usr/local/src wget ftp://ftp.pureftpd.org/pub/pure-ftpd/releases/pure-ftpd-1.0.20.tar.bz2 bzip2 -dc pure-ftpd-1.0.20.tar.bz2 | tar xvf - cd pure-ftpd-1.0.20 ./configure --with-tls --with-altlog --with-certile=/etc/ssl/private/pure-ftpd.pem make make install ### To create a self-signed certificate, you can use the following com.. 오래전 이야기/Server 2008.09.15
perl 설치 NAME SYNOPSiS DESCRIPTION CPAN 모듈 펄 5.8.5 설치 cpan 초기화 cpan으로 펄 모듈 설치 AUTHOR REFERENCE COPYRIGHT NAME CPAN 모듈 사용하기 SYNOPSiS CPAN을 활용해 펄 모듈을 설치한다. DESCRIPTION 펄 공동체에는 꽤 쓸만한 모듈이 많이 있다. 그것들이 체계적으로 정리되어 있는 곳이 CPAN(Comprehensive Perl Archive Network)이며 http://search.cpan.org/ 를 방문하면 개별적으로 검색할 수도 있다. 여기서 다룰 CPAN 모듈은, 광대한 바다에서 우리가 필요로 하는 보물을 찾는데 도와주는 역할을 한다. 펄 모듈의 가장 단순한 설치는 모듈을 파일 시스템에 복사하면 된다. 허나, 어지간.. 오래전 이야기/Server 2008.09.15
ACE_wrappers Install ########################## ## Install ACE_wrappers ########################## OS: RHEL 4 Server: IBM Blade wget wget ftp://deuce.doc.wustl.edu/pub/ACE+TAO-distribution/ACE.tar.bz2 bzip2 -dc ACE.tar.bz2 | tar xvf - cd ACE_wrappers/ vi /etc/profile ACE_ROOT=/usr/local/src/ACE_wrappers LD_LIBRARY_PATH=$ACE_ROOT/ace export ACE_ROOT LD_LIBRARY_PATH source /etc/profile cd /etc/ld.so.conf.d/ vi ACE_wra.. 오래전 이야기/Server 2008.09.15
Building mod_fastcgi For Apache 2 Building mod_fastcgi For Apache 2 Something I discovered last night in playing around with Ruby and Rails is that the CGI has a very long startup time, on the order of several seconds. That doesn’t sound like much, but it’s extremely annoying, especially when you’re trying to test changes to your code. I knew that the Fast CGI mod for Apache would help, but I had avoided it to simplify the setup.. 오래전 이야기/Server 2008.09.15
Apache+ruby+rubygem+fastcgi Ruby on Rails HowtoSetupApacheWithFastCGIAndRubyBindings Home Page | All Pages | Recently Revised | Feed How to install Apache, Ruby, RubyGems, Rails, and FastCGI? under Linux Become root and go to a directory to work in su root cd /usr/local/src Download all of the needed files. These versions may be out of date, so you might want to go find the latest. wget http://xyz.lcs.mit.edu/ruby/ruby-1.8.. 오래전 이야기/Server 2008.09.15
Install ruby on rails ### Install Ruby on Rails - Ruby Distribution URL: ftp://ftp.ruby-lang.org/pub/ruby/ - Ruby Homepage http://www.ruby-lang.org/ cd /usr/local/src wget http://rubyforge.org/frs/download.php/7858/ruby-1.8.4.tar.gz wget http://rubyforge.org/frs/download.php/5207/rubygems-0.8.11.tgz http://rubyforge.org/frs/download.php/7654/rails-1.0.0.tgz == Ruby Install tar xvfzp ruby-1.8.4.tar.gz cd ruby-1.8.4 ./.. 오래전 이야기/Server 2008.09.15
Install yum on RHEL4 Install yum on RHEL4 Submitted by eth00 on Sat, 2006-01-21 21:54. Virtual Private Servers (VPS) So why do you want to install yum on a rhel box if you already have up2date? Well there are a number of reasons, the main one and the reason I wrote this is that I was installing openvz and it needed yum installed. Trying to just use the yum rpm or source compiling was getting all sorts of python erro.. 오래전 이야기/Server 2008.09.15
perl module install Perl 모듈 설치하기 perl -e 'use CPAN; install Time::HiRes' # perl -MCPAN -e shell cpan> install DBI cpan> install HTML::LinkExtor cpan> install LWP::RobotUA cpan> install Data::Dumper 오래전 이야기/Server 2008.09.15
find로 찾은 파일 삭제하기. - 파일명중 060227 이 들어간 파일 검색 후 삭제하기. find . -name "*_060227_*" -print -exec rm -f {} \; 오래전 이야기/Server 2008.09.15