vi 편집기 명령어

명령 모드로 돌아가려면 Esc 키를 누릅니다.

  • h , moves cursor left

  • , moves cursor down

  • k , moves cursor up

  • , moves cursor right

  • , delete character

  • ##x , delete ## characters

  • dw , delete word

  • dd , delete line

  • p , put last deletion after cursor

  • , undo last change

  • , turn on insert mode (hit the esc key twice to stop)

  • :w ,write to the file already named

  • :q , quit editing

  • :wq , write file and quit

  • :q! , quit without saving file

  • ctrl f , move forward one page

  • ctrl b , move backward one page

  • :/text , will search for next occurance of 'text' (hitting n will find next occurence)

  • :?text ,search backward for first occurrence of text

  • G , go to end of file

  • 1G , go to first line of file

  • set nu , to set line number

  • :w filename , write to the file named filename

  • yy , yank line into buffer

  • ##yy , yank ## lines into general buffer

  • CONTROL-G print information about file: name, current line number

  • :%s/pattern/text/ substitute first occurrence of pattern on each line with text

  • :%s/pattern/text/g substitute every occurrence of pattern with text

  • p , put contents of general buffer after current line

  • , put contents of general buffer before current line

  • :g/pattern/d delete every line containing pattern

시스템 업데이트 방법
네트워크가 설정되고 인터넷에 연결되고 나면, 가장 먼저 할 일은 업데이트 작업이다. 최초 배포판 이후에 알려진 버그 업데이트들을 시스템에 적용하는 것이다. 이 작업을 하기전에 몇가지 참고할 사항을 설명한다.

CentOS의 업데이트 서버 한국 미러서버에 mirror.khlug.org, data.nicehosting.co.kr가 있는데 속도 제한이 설정되어  1kb/sec의 속도가 나올정도로 느리다. 이로인해 업데이트 작업은 위서버들은 예외되도록 설정하자.
[root]# cat /etc/yum/pluginconf.d/fatestmirror.conf


나머지는 https://www.3rabbitz.com/f01c33e7d8367da2#857542b4ddd63403 여기서



'Cloud Service > CentOS' 카테고리의 다른 글

Oracle VirtualBox 이미지 생성  (0) 2015.07.03
Posted by MIDDLE
,