ServerLoom Docs
  • 🏠ServerLoom Docs
  • Setup Fivem/RedM Server
    • Linux
      • Setup TxAdmin Linux
      • Setup PhPMyadmin Linux
      • Secure PHPMyadmin & TxAdmin
  • 🎮Game Servers
    • Setup Rust Server
      • Rust Dependencies
      • Install Rust
      • Rust Basic Usage
    • Multi Theft Auto (MTA)
      • MTA Dependencies
      • Install MTA
      • MTA Basic Usage
    • Counter Strike
      • Cs2 Dependencies
      • Install Cs2
      • Cs2 Basic Usage
    • San Andreas Multiplayer (SAMP)
      • SAMP Dependencies
      • Install SAMP
      • SAMP Basic Usage
  • Arma3
    • Arma3 Dependencies
    • Install Arma3
    • Arma3 Basic Usage
  • DayZ
    • DayZ Dependencies
    • Install DayZ
    • DayZ Basic Usage
  • Garry’s Mod
    • Garry’s Mod Dependencies
    • Install Garry’s Mod
    • Garry’s Mod Basic Usage
  • Euro Truck Simulator 2
    • ETS2 Dependencies
    • Install ETS2
    • ETS2 Basic Usage
Powered by GitBook
On this page
  1. Setup Fivem/RedM Server
  2. Linux

Setup TxAdmin Linux

Here is the procedure to install TxAdmin on Linux via SSH:

Go to the following website: https://runtime.fivem.net/artifacts/fivem/build_proot_linux/master/

Right-click on the latest "LATEST RECOMMENDED" artifact, then copy the download link.

Access SSH (using Putty/MobaXtrem) and enter the following commands in order:

    apt-get update && apt-get install screen -y
    
    screen # Press Enter on your keyboard
    
    ulimit -n 99999
    
    mkdir fivem
    
    cd fivem
    
    wget <PasteCopiedLinkHere>
    
    tar -xvf fx.tar.xz
    
    chmod 777 run.sh
    
    bash run.sh

Your TxAdmin is now started, and the startup code is displayed in the middle of your screen.

To exit the TxAdmin console via SSH, press the following keys simultaneously: CTRL+A+D on your keyboard.

If you want to return to the screen, the SSH command is:

    screen -x

To terminate all screens, use the following command:

    pkill screen
PreviousLinuxNextSetup PhPMyadmin Linux

Last updated 1 year ago