Difference between revisions of "System Requirements"

 
(29 intermediate revisions by 2 users not shown)
Line 3: Line 3:
 
* Microsoft .NET Framework 4.7.2
 
* Microsoft .NET Framework 4.7.2
 
** [https://dotnet.microsoft.com/download/dotnet-framework/net472 https://dotnet.microsoft.com/download/dotnet-framework/net472]
 
** [https://dotnet.microsoft.com/download/dotnet-framework/net472 https://dotnet.microsoft.com/download/dotnet-framework/net472]
* [https://nmap.org/npcap/dist/npcap-1.00.exe with '''"Install Npcap in WinPcap API-compatible mode"''' enabled] (for bandwidth monitor)
+
* [https://nmap.org/npcap/dist/npcap-1.00.exe Npcap with '''"Install Npcap in WinPcap API-compatible mode"''' enabled] (for bandwidth monitor)
 
* Optional components
 
* Optional components
 +
** [[Recommended_Registry_Changes|Recommended registry changes]]
 
** A MySQL database located on the same server is recommended for best performance. https://dev.mysql.com/downloads/mysql/ '''TCAdmin Supports MySQL 8 Password Encryption for Authentication'''
 
** A MySQL database located on the same server is recommended for best performance. https://dev.mysql.com/downloads/mysql/ '''TCAdmin Supports MySQL 8 Password Encryption for Authentication'''
 
** [https://support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-c-downloads Visual C runtime] and [https://www.microsoft.com/en-us/download/details.aspx?id=35&6B49FDFB-8E5B-4B07-BC31-15695C5A2143=1 DirectX] is required by some games.
 
** [https://support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-c-downloads Visual C runtime] and [https://www.microsoft.com/en-us/download/details.aspx?id=35&6B49FDFB-8E5B-4B07-BC31-15695C5A2143=1 DirectX] is required by some games.
Line 10: Line 11:
  
 
== Linux ==
 
== Linux ==
 +
=== Automated TCAdmin installer for Linux ===
 +
The automated installer will automatically install TCAdmin and all of the dependencies.
 +
 +
Supported distributions:
 +
* Ubuntu 16.04 and newer
 +
* Debian 9 and newer
 +
* CentOS 6 and newer
 +
 +
<source lang="bash">cd /home && curl -o tcadmin-installer.sh https://downloads.tcadmin.net/installer/tcadmin-installer.sh && sh tcadmin-installer.sh -i</source>
 +
Run the installer as root or sudo.
 +
 +
Should you run into any issues, please post them in this thread: [https://community.tcadmin.com/topic/11831-automated-linux-installer/ https://community.tcadmin.com/topic/11831-automated-linux-installer/]
 +
 +
 +
 
'''<span style="color:red">A swap partition is required. Mono is unstable when the server is configured without swap space.</span>'''
 
'''<span style="color:red">A swap partition is required. Mono is unstable when the server is configured without swap space.</span>'''
  
 
'''You must know how to manage a Linux server. TCAdmin support will not teach you how to log in to your server with Putty, execute commands, install missing dependencies for the game/voice servers or tools that you run.'''
 
'''You must know how to manage a Linux server. TCAdmin support will not teach you how to log in to your server with Putty, execute commands, install missing dependencies for the game/voice servers or tools that you run.'''
  
=== CentOS / Fedora / Redhat 32bit ===
+
<!-- === CentOS / Fedora / Redhat 32bit ===
 
* '''<span style="color:red">Install Mono 6.0 or greater</span>'''
 
* '''<span style="color:red">Install Mono 6.0 or greater</span>'''
** If you accidentally install Mono 4 you must uninstall it before installing Mono 5.
+
** If you accidentally install Mono 4 you must uninstall it before installing Mono 6.
 
** [http://www.mono-project.com/download/stable/#download-lin Add the Xamarin repository from mono-project.com] '''Then execute:
 
** [http://www.mono-project.com/download/stable/#download-lin Add the Xamarin repository from mono-project.com] '''Then execute:
 
  yum install mono-complete mono-basic xsp
 
  yum install mono-complete mono-basic xsp
 
* Execute these commands to install other dependencies.
 
* Execute these commands to install other dependencies.
<source lang="bash">wget http://www.tcadmin.com/installer/msttcorefonts-2.0-1.noarch.rpm
 
yum -y install msttcorefonts-2.0-1.noarch.rpm --nogpgcheck
 
 
yum -y install libpcap schedutils lsof
 
yum -y install libpcap schedutils lsof
 
</source>
 
</source>
 
* Optional: MySQL 5.1 or greater.
 
* Optional: MySQL 5.1 or greater.
 +
-->
  
 
=== CentOS / Fedora / Redhat 64bit ===
 
=== CentOS / Fedora / Redhat 64bit ===
 
* '''<span style="color:red">Install Mono 6.0 or greater</span>'''
 
* '''<span style="color:red">Install Mono 6.0 or greater</span>'''
** If you accidentally install Mono 4 you must uninstall it before installing Mono 5.
+
** If you accidentally install Mono 4 you must uninstall it before installing Mono 6.
 
** [http://www.mono-project.com/download/stable/#download-lin Add the Xamarin repository from mono-project.com] '''Then execute:
 
** [http://www.mono-project.com/download/stable/#download-lin Add the Xamarin repository from mono-project.com] '''Then execute:
yum install mono-complete mono-basic xsp
+
<source lang="bash">yum install mono-complete mono-basic xsp</source>
* Install 32bit libraries for steamcmd and 32bit games: https://developer.valvesoftware.com/wiki/SteamCMD#32-bit_libraries_on_64-bit_Linux_systems
+
* Install 32bit libraries for steamcmd and 32bit games: https://developer.valvesoftware.com/wiki/SteamCMD#32-Bit_Libraries_on_64-Bit_Linux_Systems
 
* Execute these commands to install other dependencies.
 
* Execute these commands to install other dependencies.
<source lang="bash">wget http://www.tcadmin.com/installer/msttcorefonts-2.0-1.noarch.rpm
+
<source lang="bash">yum -y install libpcap schedutils lsof glibc.i686 libstdc++.i686 socat screen</source>
yum -y install msttcorefonts-2.0-1.noarch.rpm --nogpgcheck
 
yum -y install libpcap schedutils lsof glibc.i686 libstdc++.i686
 
</source>
 
 
* Optional: MySQL 5.1 or greater.
 
* Optional: MySQL 5.1 or greater.
  
=== Debian 32bit ===
+
<!-- === Debian 32bit ===
 
* '''<span style="color:red">Install Mono 6.0 or greater</span>'''
 
* '''<span style="color:red">Install Mono 6.0 or greater</span>'''
** If you accidentally install Mono 4 you must uninstall it before installing Mono 5.
+
** If you accidentally install Mono 4 you must uninstall it before installing Mono 6.
 
** [http://www.mono-project.com/download/stable/#download-lin Add the Xamarin repository from mono-project.com] '''Then execute:
 
** [http://www.mono-project.com/download/stable/#download-lin Add the Xamarin repository from mono-project.com] '''Then execute:
 
  apt-get install mono-complete mono-vbnc mono-xsp
 
  apt-get install mono-complete mono-vbnc mono-xsp
 
* Execute this command to install other dependencies.
 
* Execute this command to install other dependencies.
<source lang="bash">apt-get install libpcap0.8 schedutils lsof
+
<source lang="bash">apt-get install libpcap0.8 schedutils lsof socat</source>
</source>
 
 
* Optional: MySQL 5.1 or greater.
 
* Optional: MySQL 5.1 or greater.
 +
-->
  
 
=== Debian 64bit ===
 
=== Debian 64bit ===
 
* '''<span style="color:red">Install Mono 6.0 or greater</span>'''
 
* '''<span style="color:red">Install Mono 6.0 or greater</span>'''
** If you accidentally install Mono 4 you must uninstall it before installing Mono 5.
+
** If you accidentally install Mono 4 you must uninstall it before installing Mono 6.
 
** [http://www.mono-project.com/download/stable/#download-lin Add the Xamarin repository from mono-project.com] '''Then execute:
 
** [http://www.mono-project.com/download/stable/#download-lin Add the Xamarin repository from mono-project.com] '''Then execute:
apt-get install mono-complete mono-vbnc mono-xsp
+
<source lang="bash">apt-get install mono-complete mono-vbnc mono-xsp</source>
* Install 32bit libraries for steamcmd and 32bit games: https://developer.valvesoftware.com/wiki/SteamCMD#32-bit_libraries_on_64-bit_Linux_systems
+
* Install 32bit libraries for steamcmd and 32bit games: https://developer.valvesoftware.com/wiki/SteamCMD#32-Bit_Libraries_on_64-Bit_Linux_Systems
 
* Execute this command to install other dependencies. If util-linux does not exist install schedutils.
 
* Execute this command to install other dependencies. If util-linux does not exist install schedutils.
<source lang="bash">apt-get install libpcap0.8 util-linux lsof</source>
+
<source lang="bash">apt-get install libpcap0.8 util-linux lsof socat screen</source>
 
* Optional: MySQL 5.1 or greater.
 
* Optional: MySQL 5.1 or greater.
  
=== Ubuntu 32bit ===
+
<!-- === Ubuntu 32bit ===
 
* '''<span style="color:red">Install Mono 6.0 or greater</span>'''
 
* '''<span style="color:red">Install Mono 6.0 or greater</span>'''
** If you accidentally install Mono 4 you must uninstall it before installing Mono 5.
+
** If you accidentally install Mono 4 you must uninstall it before installing Mono 6.
 
** [http://www.mono-project.com/download/stable/#download-lin Add the Xamarin repository from mono-project.com] '''Then execute:
 
** [http://www.mono-project.com/download/stable/#download-lin Add the Xamarin repository from mono-project.com] '''Then execute:
 
  apt-get install mono-complete mono-vbnc mono-xsp
 
  apt-get install mono-complete mono-vbnc mono-xsp
 
* Execute this command to install other dependencies. If util-linux does not exist install schedutils.
 
* Execute this command to install other dependencies. If util-linux does not exist install schedutils.
<source lang="bash">apt-get install libpcap0.8 util-linux lsof
+
<source lang="bash">apt-get install libpcap0.8 util-linux lsof socat screen iptables-persistent</source>
</source>
 
 
* Optional: MySQL 5.1 or greater.
 
* Optional: MySQL 5.1 or greater.
 +
-->
  
 
=== Ubuntu 64bit ===
 
=== Ubuntu 64bit ===
 
* '''<span style="color:red">Install Mono 6.0 or greater</span>'''
 
* '''<span style="color:red">Install Mono 6.0 or greater</span>'''
** If you accidentally install Mono 4 you must uninstall it before installing Mono 5.
+
** If you accidentally install Mono 4 you must uninstall it before installing Mono 6.
 
** [http://www.mono-project.com/download/stable/#download-lin Add the Xamarin repository from mono-project.com] '''Then execute:
 
** [http://www.mono-project.com/download/stable/#download-lin Add the Xamarin repository from mono-project.com] '''Then execute:
apt-get install mono-complete mono-vbnc mono-xsp
+
<source lang="bash">apt-get install mono-complete mono-vbnc mono-xsp</source>
* Install 32bit libraries for steamcmd and 32bit games: https://developer.valvesoftware.com/wiki/SteamCMD#32-bit_libraries_on_64-bit_Linux_systems
+
* Install 32bit libraries for steamcmd and 32bit games: https://developer.valvesoftware.com/wiki/SteamCMD#32-Bit_Libraries_on_64-Bit_Linux_Systems
 
* Execute this command to install other dependencies. If util-linux does not exist install schedutils.
 
* Execute this command to install other dependencies. If util-linux does not exist install schedutils.
<source lang="bash">apt-get install libpcap0.8 util-linux lsof
+
<source lang="bash">apt-get install libncurses5 libncursesw5 libpcap0.8 util-linux lsof screen socat iptables-persistent</source>
</source>
 
 
* Optional: MySQL 5.1 or greater.
 
* Optional: MySQL 5.1 or greater.
  
 
== Linux & Windows ==
 
== Linux & Windows ==
 
* If you plan on having remote servers, it is recommended that you use a MySQL database. You can convert your SQLite database to MySQL at any time using the conversion tool included in TCAdmin.
 
* If you plan on having remote servers, it is recommended that you use a MySQL database. You can convert your SQLite database to MySQL at any time using the conversion tool included in TCAdmin.

Latest revision as of 15:26, 10 October 2022

Windows

Linux

Automated TCAdmin installer for Linux

The automated installer will automatically install TCAdmin and all of the dependencies.

Supported distributions:

  • Ubuntu 16.04 and newer
  • Debian 9 and newer
  • CentOS 6 and newer
cd /home && curl -o tcadmin-installer.sh https://downloads.tcadmin.net/installer/tcadmin-installer.sh && sh tcadmin-installer.sh -i

Run the installer as root or sudo.

Should you run into any issues, please post them in this thread: https://community.tcadmin.com/topic/11831-automated-linux-installer/


A swap partition is required. Mono is unstable when the server is configured without swap space.

You must know how to manage a Linux server. TCAdmin support will not teach you how to log in to your server with Putty, execute commands, install missing dependencies for the game/voice servers or tools that you run.


CentOS / Fedora / Redhat 64bit

yum install mono-complete mono-basic xsp
yum -y install libpcap schedutils lsof glibc.i686 libstdc++.i686 socat screen
  • Optional: MySQL 5.1 or greater.


Debian 64bit

apt-get install mono-complete mono-vbnc mono-xsp
apt-get install libpcap0.8 util-linux lsof socat screen
  • Optional: MySQL 5.1 or greater.


Ubuntu 64bit

apt-get install mono-complete mono-vbnc mono-xsp
apt-get install libncurses5 libncursesw5 libpcap0.8 util-linux lsof screen socat iptables-persistent
  • Optional: MySQL 5.1 or greater.

Linux & Windows

  • If you plan on having remote servers, it is recommended that you use a MySQL database. You can convert your SQLite database to MySQL at any time using the conversion tool included in TCAdmin.
Retrieved from "https://help.tcadmin.com/index.php?title=System_Requirements&oldid=2505"