
$ sudo apt-get update //패키지 목록 업데이트$ sudo apt-get upgrade //패키지 최신으로 업데이트$ dpkg -l //설치된 패키지 확인$ sudo apt-cache search 패키지이름 // 패키지 찾기$ sudo apt-get install 패키지이름 // 패키지 설치
$ sudo apt-get install ubuntu-desktop
$ sudo apt-get install vsftpd // 서버 패키지 설치$ sudo vi /etc/vsftpd.conf //설정 파일 수정anonymous_enable=NO //NO로 변경local_enable=YES //주석을 제거write_enable=YES //주석을 제거local_umask=022 //주석을 제거
chroot_local_user=YES //주석 제거
pasv_enable=NO //추가 vi , G O$ sudo /etc/init.d/vsftpd restart // 변경 사항 반영을 위해 서버 재시작
sudo apt-get install samba4$ sudo smbpasswd -a userid // id 생성$ sudo vi /etc/samba/smb.confShare Difinitions >[home][homes]comment = Home Directoriesbrowseable = nowritable = yes$ sudo /etc/init.d/samba restart //삼바 재시작
$ sudo apt-get install php5-gd$ sudo /etc/init.d/apache2 restart
$ sudo apt-get install netatalk
$ mkdir svn$ cd svn$ svnadmin create --fs-type fsfs project$ svnserve -d -r /home/edan/svn/저장소/conf/svnserve.confanon-access = noneauth-access = writepassword-db = passwdrealm = edan's Repositorypasswduser = password이후 새로운 프로젝트를 생성하여 import를 한 뒤 check out을 한번 수행하여 작업을 시작한다.
Posted by Enowy

