티스토리 툴바


달력

02

« 2012/02 »

  •  
  •  
  •  
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  •  
  •  
  •  

'2012/02'에 해당되는 글 2

  1. 2012/02/09 Eclipse에 vrapper 설치 후 키 설정하기
  2. 2012/02/08 CentOS 6에서 subversion 1.7.2 설치하기

이클립스(eclipse)에서 vim 커맨드 사용하기
를 포스팅 한 적이 있는데..
키 설정하는걸 빼 먹은거 같아서 글 쓴지 약 1년 반 후에 붙여서 씁니다.

먼저 홈페이지는  http://vrapper.sourceforge.net/home/ 입니다.


1. 설치하기

메뉴에서 Help -> Install New Software...
http://vrapper.sourceforge.net/update-site/stable
주소를 추가하고 설치 합니다.

2. 키 설정하기
Window -> Preferences -> General -> Keys -> Vim's key bindings
아래와 같이 설정 합니다.
  • Page Down: Ctrl+F
  • Page Up: Ctrl+B
  • Scroll Line Down: Ctrl+E
  • Scroll Line Up: Ctrl+Y

그리고 Apply 버튼을 누르고 OK



저작자 표시
크리에이티브 커먼즈 라이선스
Creative Commons License
Posted by 신규하
2012/02/08 11:32

CentOS 6에서 subversion 1.7.2 설치하기 컴퓨터2012/02/08 11:32

현재 centos에서 yum으로 받을 수 있는 subversion은 1.6.11 입니다.
1.7 버전을 쓰고 싶은데.. 받을수가 없어서.. 인터넷에 찾아 봤더니..
마땅한게 없더군요. 그래서 설치 방법을 정리해 봤습니다.

먼저 yum으로 설치된 기존 svn을 삭제 합니다.
# sudo yum remove subversion



http://svn-ref.assembla.com/download-clients.html#CentOS
여기 방문해서 rpm의 주소를 알아냅니다.

# wget http://svn-ref.assembla.com/svn-clients/SVN_1.7.2_clients/CentOS-6-Subversion%201.7.2_client-64bit.rpm


저 같은 경우는 64bit라서 위 주소로 받았습니다.

# sudo rpm -Uvh CentOS-6-Subversion\ 1.7.2_client-64bit.rpm


이렇게 설치 하시면 땡~

error: Failed dependencies:
        apr >= 1.2.7 is needed by subversion-1.7.2-1229026.x86_64
        apr-util >= 1.2.7 is needed by subversion-1.7.2-1229026.x86_64


이런 에러가 발생하면 아래꺼를 설치합니다.
# sudo yum install apr apr-util


그리고
error: Failed dependencies:
        libpq.so.5()(64bit) is needed by subversion-1.7.2-1229026.x86_64

이런 에러가 발생하면 아래꺼를 설치 하시면 됩니다.
sudo yum install postgresql


설치가 완료 되면, 버전을 확인해 보세요~
# svn --version
svn, version 1.7.2 (r1207936)
   compiled Jan 13 2012, 15:15:54

Copyright (C) 2011 The Apache Software Foundation.
This software consists of contributions made by many people; see the NOTICE
file for more information.
Subversion is open source software, see http://subversion.apache.org/

The following repository access (RA) modules are available:

* ra_svn : Module for accessing a repository using the svn network protocol.
  - with Cyrus SASL authentication
  - handles 'svn' scheme
* ra_local : Module for accessing a repository on local disk.
  - handles 'file' scheme
* ra_serf : Module for accessing a repository via WebDAV protocol using serf.
  - handles 'http' scheme
  - handles 'https' scheme


저작자 표시
크리에이티브 커먼즈 라이선스
Creative Commons License
Posted by 신규하