My /etc/rc.local in Development Server of RHEL

[codesyntax lang="bash"] #!/bin/sh # # This script will be executed *after* all the other init scripts. # You can put your own initialization stuff in here if you don't # want to do the full Sys V sty… Continue reading
Posted in Linux, RHEL| Tagged , | Leave a comment

Sync Up the Repository by Rsync

rsync server : 192.168.0.132 rsync client : 192.168.0.133 1. Check and Install rsync : [codesyntax lang="bash"] $ rpm -q rsync $ yum install rsync [/codesyntax] or download and install from http://rsy… Continue reading
Posted in RHEL| Tagged , | Leave a comment

Install yum on RHEL5

1. Delete the default yum : [codesyntax lang="bash" lines="no" container="pre" tab_width="4"] $ rpm -aq | grep yum | xargs rpm -e --nodeps [/codesyntax] 2. Install yum of from http://mirrors.163.com/c… Continue reading
Posted in RHEL| Tagged , | 2 Comments