Advertisement
Guest User

ogpAGENT

a guest
Sep 9th, 2017
314
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.17 KB | None | 0 0
  1. OGP AGENT Install Instructions:
  2.  
  3. All Versions of Ubuntu:
  4.  
  5. Before we can install the deb package for the OGP Agent, we need to install some prerequisites by running the following commands:
  6.  
  7. Code:
  8.  
  9. sudo apt-get update
  10. sudo apt-get upgrade
  11. sudo apt-get install libxml-parser-perl libpath-class-perl perl-modules screen rsync sudo e2fsprogs unzip subversion libarchive-extract-perl pure-ftpd libarchive-zip-perl libc6 libgcc1 git curl
  12. sudo apt-get install libc6-i386 libgcc1:i386
  13. sudo apt-get install lib32gcc1
  14. sudo apt-get install libhttp-daemon-perl
  15.  
  16.  
  17.  
  18.  
  19. All Versions of Debian:
  20.  
  21. If sudo is not installed automatically on your installation of Debian, switch to the root user using the below command:
  22.  
  23. Code:
  24. su root
  25.  
  26.  
  27.  
  28.  
  29. Install sudo now before proceeding:
  30.  
  31. Code
  32. apt-get install sudo
  33.  
  34.  
  35.  
  36.  
  37. Add your user to the sudo group if you're not a member of it already:
  38.  
  39. Code
  40. usermod -aG sudo "{REPLACE_WITH_YOUR_LINUX_USERNAME}"
  41.  
  42.  
  43.  
  44.  
  45. Restart the machine to apply the sudo group change:
  46.  
  47. Code
  48. shutdown -r now
  49.  
  50.  
  51.  
  52.  
  53. Before we can install the deb package for the OGP Agent, we need to install some prerequisites by running the following commands:
  54.  
  55. Code:
  56. sudo apt-get install libxml-parser-perl libpath-class-perl perl-modules screen rsync sudo e2fsprogs unzip subversion pure-ftpd libarchive-zip-perl libc6 libgcc1 git curl
  57. sudo apt-get install libc6-i386 lib32gcc1
  58. sudo apt-get install libhttp-daemon-perl
  59.  
  60.  
  61.  
  62.  
  63.  
  64. Debian 8 Extras:
  65.  
  66. If you're running Debian 8, you may need to install the below package as well:
  67.  
  68. Code
  69.  
  70. sudo apt-get install libarchive-extract-perl
  71.  
  72.  
  73.  
  74.  
  75.  
  76. Ubuntu and Debian:
  77.  
  78. Now, we can download and install the OGP Agent DEB package:
  79.  
  80. Code
  81. wget -N "https://github.com/OpenGamePanel/Easy-Installers/raw/master/Linux/Debian-Ubuntu/ogp-agent-latest.deb" -O "ogp-agent-latest.deb"
  82. sudo dpkg -i "ogp-agent-latest.deb"
  83.  
  84.  
  85.  
  86.  
  87. The OGP agent user (with sudo access) will be created automatically for you by the installer with a random password. To view the automatically generated encryption key, OGP username, and OGP user password, run the following command:
  88.  
  89. Code
  90. sudo cat /root/ogp_user_password
  91.  
  92.  
  93.  
  94.  
  95. You'll need the encryption key for the panel.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement