OK. Here’s how I fixed this (on Mac OS X, but fix should work on any client)

This particular issue arises when you are using a non-standard port (let’s say 12001 for sake of example) for your SSH server.

Apparently the SVN client experiences syntax errors when given a port address on a command line like this one:

svn list svn+ssh://username@domainname.com:12001/home/username/svn/myproject

So, to fix this, you need to create a client-side config file for SSH like this:

cd ~
cd .ssh
vi config (create a config file like the one that follows)
:w
:q

Config file located in ~/.ssh/config:

Host domain.com
User username
Port 12001

Then, issue your svn+ssh command WITHOUT the port like this:

svn list svn+ssh://username@domain.com/home/username/svn/myproject

That’s it!

Hope that helps.
Rick

출처: http://www.techper.net/2009/01/11/changing-port-number-of-svnssh-subversion-protocol/

 

Latest update: 2011. 3. 29. 17:56
svnadmin dump 저장소위치 > 백업파일명

svnadmin load 새저장소위치 < 백업파일명

 
Latest update: 2011. 3. 29. 17:27


libmcrypt 가 필요한데,

mcrypt 를 받아서 컴파일 하려 했더니

libmcrypt 가 없어서 안된다고 합니다.



libmcrypt 는 알고보니

같은 sourceforge project 에서 받을 수 있더군요.


Download 버튼 밑에
Browse all files 라는 링크를 따라가면

mcrypt 
libmcrypt  

이렇게 2개의 카테고리가 보입니다.

혹시나 libmcrypt 못 찾는 분 계신다면 도움 되시라고 남깁니다.


아. 참고로
./configure 만 하면 libltdl 은 설치되지 않습니다. 
설치하시려면 libltdl 디렉토리로 들어가서
./configure --enable-ltdl-install



'opensource' 카테고리의 다른 글

svn - Unrecognized URL scheme  (0) 2012.02.07
pkg-config  (0) 2012.01.03
hadoop  (0) 2010.06.28
Pureftpd - FTP over SSH  (0) 2010.06.22
Pureftpd MySQL authentication README  (0) 2010.06.22
Latest update: 2011. 2. 21. 21:35