Advertisement
Guest User

SinusBot

a guest
Sep 3rd, 2017
2,660
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.63 KB | None | 0 0
  1. Getestet auf/Tested on
  2.  
  3. Debian 8 64-Bit
  4.  
  5. Befehle / Commands
  6.  
  7. Deutsch / German
  8.  
  9. 1. Server und Pakete updaten
  10. apt-get update && apt-get upgrade
  11.  
  12. 2. Benötigte Pakete installieren
  13. apt-get install x11vnc xvfb libxcursor1 ca-certificates bzip2 -y
  14. update-ca-certificates
  15. apt-get install libglib2.0-0
  16.  
  17. 3. User hinzufügen auf dem der MusikBot laufen soll und das Verzeichnis erstellen in da der Bot später installiert werden soll
  18. adduser sinusbot
  19. mkdir -p /opt/ts3soundboard
  20. cd /opt/ts3soundboard
  21.  
  22. 4. SinusBot Dateien herunterladen und entpacken
  23. apt-get install curl
  24. curl -O https://www.sinusbot.com/dl/sinusbot-beta.tar.bz2
  25. tar -xjf sinusbot-beta.tar.bz2
  26.  
  27. 5. Konfiguration kopieren und Berechtigungen vergeben
  28. cp config.ini.dist config.ini
  29. chown -R sinusbot:sinusbot /opt/ts3soundboard
  30.  
  31. 6. Teamspeak Linux Client herunterladen, Berechtigungen setzen und starten
  32. wget http://dl.4players.de/ts/releases/3.0.18.2/TeamSpeak3-Client-linux_amd64-3.0.18.2.run
  33. chmod 0755 TeamSpeak3-Client-linux_amd64-3.0.18.2.run
  34. ./TeamSpeak3-Client-linux_amd64-3.0.18.2.run
  35.  
  36. 7. Plugins kopieren und Berechtigungen setzen
  37. cp plugin/libsoundbot_plugin.so /opt/ts3soundboard/TeamSpeak3-Client-linux_amd64/plugins
  38. chmod 755 sinusbot
  39.  
  40. 8. In den Bot Benutzer einloggen und den Bot starten
  41. su sinusbot
  42. ./sinusbot
  43.  
  44. Zusatz:
  45. Youtube DL installieren
  46. https://rg3.github.io/youtube-dl/
  47.  
  48.  
  49. English
  50.  
  51. 1. Make sure that your system is up-to-date
  52. apt-get update && apt-get upgrade
  53.  
  54. 2. Install Required Packets
  55. apt-get install x11vnc xvfb libxcursor1 ca-certificates bzip2 -y
  56. update-ca-certificates
  57. apt-get install libglib2.0-0
  58.  
  59. 3. Add the User under the MusicBot should run and create the directory in that the Bot will be install later
  60. adduser sinusbot
  61. mkdir -p /opt/ts3soundboard
  62. cd /opt/ts3soundboard
  63.  
  64. 4. Download SinusBot Files and extract it
  65. apt-get install curl
  66. curl -O https://www.sinusbot.com/dl/sinusbot-beta.tar.bz2
  67. tar -xjf sinusbot-beta.tar.bz2
  68.  
  69. 5. Copy the configuration and set up the permissions
  70. cp config.ini.dist config.ini
  71. chown -R sinusbot:sinusbot /opt/ts3soundboard
  72.  
  73. 6. Download the Teamspeak Linux Client, set up the permissions and start it
  74. wget http://dl.4players.de/ts/releases/3.0.18.2/TeamSpeak3-Client-linux_amd64-3.0.18.2.run
  75. chmod 0755 TeamSpeak3-Client-linux_amd64-3.0.18.2.run
  76. ./TeamSpeak3-Client-linux_amd64-3.0.18.2.run
  77.  
  78. 7. Copy the plugins kopieren and set up the permissions
  79. cp plugin/libsoundbot_plugin.so /opt/ts3soundboard/TeamSpeak3-Client-linux_amd64/plugins
  80. chmod 755 sinusbot
  81.  
  82. 8. Log into the Bot User and start it
  83. su sinusbot
  84. ./sinusbot
  85.  
  86. additional:
  87. Install Youtube DL
  88. https://rg3.github.io/youtube-dl/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement