Created
May 7, 2016 17:09
-
-
Save nemotoo/2e6331632c87901f32c863fa80ffd290 to your computer and use it in GitHub Desktop.
Install script Perforce 16.1 on Raspi2 - from http://allarsblog.com/2014/09/25/Setup-Perforce-Digital/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
wget ftp://ftp.perforce.com/perforce/r16.1/bin.linux26armhf/p4d | |
chmod +x p4d | |
sudo mv p4d /usr/local/bin | |
sudo adduser perforce | |
sudo mkdir /perforce_depot | |
sudo chown perforce /perforce_depot | |
sudo mkdir /var/log/perforce | |
sudo chown perforce /var/log/perforce | |
sudo apt-get install daemon | |
cd /etc/init.d | |
wget https://raw.githubusercontent.com/Allar/linux-perforce-installer/master/p4dservice | |
chmod +x /etc/init.d/p4dservice | |
sudo update-rc.d p4dservice defaults | |
sudo reboot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi! I would like to install p4d on Pi and come across your repository.
However perforce FTP no longer has any binary for arm, could you let me know where can I find one?