펄폴스 클라/서버

1. 윈도우 설치

1. Ubuntu에 설치

mkdir ~/perforce
cd ~/perforce
wget <https://package.perforce.com/perforce.pubkey>
gpg -n --import --import-options import-show perforce.pubkey
gpg -n --import --import-options import-show perforce.pubkey | grep -q "E58131C0AEA7B082C6DC4C937123CB760FF18869" && echo "true"
wget -qO - <https://package.perforce.com/perforce.pubkey> | sudo apt-key add -

sudo nano /etc/apt/sources.list.d/perforce.list

...
# 에디터로 열은 perforce.list에 아래 내용 작성 후 저장
deb <http://package.perforce.com/apt/ubuntu> focal release

sudo apt-get update
sudo apt-get install helix-p4d
sudo /opt/perforce/sbin/configure-helix-p4d.sh

...
# configure-helix-p4d.sh configuration (<https://www.perforce.com/manuals/p4sag/Content/P4SAG/install.linux.packages.configure.html>)
- service name: omfg
- server root: /mnt/perforce/omfg # 퍼포스 데이터를 저장할 서버의 디렉토리
- Create directory?: y # 해당 위치에 디렉토리 없으면 생성
- unicode mode: y # 한국어 커밋을 위해. UTF-8
- case sensitivity: y
- server address: ssl:1666
- super user: super

2. 포트 및 공유기 설정