OS/LINUX2010. 7. 9. 17:00
반응형



1. yum 다운 받는다

wget http://linux.duke.edu/projects/yum/download/2.0/yum-2.0.7.tar.gz


2. 압축을 푼다.

gzip -d 파일이름

tar -xvf 파일이름


3. 압축된 폴더로 이동하여 아래와 같이 입력한다.

./configure
make
make install


4. 설치를 확인한다.

yum

여러 옵션설 명이 뜬다면 설치된것이다.
반응형

'OS > LINUX' 카테고리의 다른 글

linux root 패스워드 복구 방법  (0) 2011.05.21
[Linux] 설치 후 설정 변경  (0) 2010.08.11
ssh 포트 변경  (0) 2010.02.04
linux kernel panic에러시 복구  (0) 2010.02.02
NFS-네트웍을 이용한 파일시스템 공유  (0) 2009.12.21
Posted by [PineTree]
OS/LINUX2006. 3. 30. 08:34
반응형

회사에서 내부적인 서비스를 위해 CentOS 4.2를 설치했는데, 한글이 깨지는 현상이 발생했다.

CentOS 3.0에서는 잘 나왔는데, 귀찮게시리 고쳐야 할 상황이다.

 

그래서 수정했다.

 

/etc/sysconfig/i18n 의 내용을 아래와 같이 고치면 된다.

 

LANG="ko_KR.eucKR"
SUPPORTED="en_US.UTF-8:en_US:en:ko_KR.eucKR:ko_KR:ko"
SYSFONT="lat0-sun16"
SYSFONTACM="8859-15"

 

앞으로도 몇가지 보안 및 기타 설정들을 해야 하는데, 간간히 정리나 해봐야겠다.

 

/*------------------------------man의 한글 깨짐 추가--------------------------------*/

man명령어에서도 한글이 깨지는 현상이 있었다.--;

그래서 수정했다.

 

/etc/man.config 에서

 

PAGER          /usr/bin/less -iRs 의 옵션 중에서 대문자 R을 아래와 같이

PAGER       /usr/bin/less -irs

 

소문자로 바꿔주면 된다. 두 옵션의 차이는 아래의 설명으로 대신한다.

 

       -r or --raw-control-chars
              Causes "raw" control characters to be displayed.  The default is to  dis-

              play control characters using the caret notation; for example, a control-
              A (octal 001) is displayed as "^A".  Warning: when the -r option is used,
              less cannot keep track of the actual appearance of the screen (since this
              depends on how the screen responds to each type  of  control  character).
              Thus, various display problems may result, such as long lines being split
              in the wrong place.

 

       -R or --RAW-CONTROL-CHARS
              Like -r, but tries to keep track of the screen appearance where possible.
              This  works  only  if the input consists of normal text and possibly some
              ANSI "color" escape sequences, which are sequences of the form:

 

                   ESC [ ... m

 

              where the "..." is zero or more characters other than "m".  For the  pur-
              pose  of  keeping  track of screen appearance, all control characters and
              all ANSI color escape sequences are assumed to not move the cursor.   You
              can  make  less  think  that characters other than "m" can end ANSI color
              escape sequences by setting the environment variable LESSANSIENDCHARS  to
              the list of characters which can end a color escape sequence.

 

 

 


반응형

'OS > LINUX' 카테고리의 다른 글

var/log/audit.d/ full 문제  (0) 2006.10.09
리눅스 텔넷 설정  (0) 2006.08.08
[펌] / 화일 시스템이 full 되었을 경우 조치 방법  (0) 2005.12.22
[펌] NFS(Network File System) 사용방법  (0) 2005.02.15
LINUX : NFS 설정하기.  (0) 2005.02.15
Posted by [PineTree]