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

Last updated