Skip to content

Instantly share code, notes, and snippets.

@nemotoo
Created May 7, 2016 17:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nemotoo/2e6331632c87901f32c863fa80ffd290 to your computer and use it in GitHub Desktop.
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/
#!/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
@mtlung
Copy link

mtlung commented Jan 22, 2019

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?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment