1. Subversion 설치 [root@test ~]# yum intall -y subversion 2. svn user 추가 [root@test ~]# adduser svn [root@test ~]# passwd svn Changing password for user svn. New UNIX password: Retype new UNIX password: passwd: all authentication tokens updated successfully. 3. svn repository 생성 파일 시스템 타입으로 생성 [root@test ~]# svnadmin create --fs-type fsfs /home/svn/project 4. 권한 설정 [root@test ~]# chown -R svn:sv..