FiveM è un server di gioco multiplayer che ti consente di giocare in multiplayer su server dedicati personalizzati. È stato progettato specificamente per la creatività. Puoi creare il tuo server e realizzare i tuoi sogni. Fornisce una serie di strumenti per personalizzare l'esperienza di gioco del tuo server. Con FiveM puoi creare qualsiasi cosa, inclusi giochi di ruolo, drifting, corse, deathmatch o qualcosa di completamente originale.
In questo tutorial, ti mostreremo come installare FiveM su Ubuntu 20.04.
Prerequisiti
- Un nuovo VPS Ubuntu 20.04 sulla piattaforma Atlantic.Net Cloud
- Un nome di dominio valido puntato all'IP del tuo server
- Una password di root configurata sul tuo server
Fase 1:crea un server cloud Atlantic.Net
Per prima cosa, accedi al tuo server Atlantic.Net Cloud. Crea un nuovo server, scegliendo Ubuntu 20.04 come sistema operativo, con almeno 2GB di RAM. Collegati al tuo Cloud Server tramite SSH e accedi utilizzando le credenziali evidenziate in alto nella pagina.
Dopo aver effettuato l'accesso al tuo server Ubuntu 20.04, esegui il comando seguente per aggiornare il tuo sistema di base con gli ultimi pacchetti disponibili.
apt-get update -y
Passaggio 2:installazione delle dipendenze richieste
Prima di iniziare, dovrai installare alcune dipendenze nel tuo server. Puoi installarli tutti con il seguente comando:
apt-get install screen wget git -y
Una volta installati tutti i pacchetti, puoi procedere al passaggio successivo.
Fase 3 – Installa e configura FiveM
Innanzitutto, crea una directory per FiveM e scarica l'ultima versione di FiveM all'interno della directory:
mkdir ~/fivem_server cd ~/fivem_server wget https://runtime.fivem.net/artifacts/fivem/build_proot_linux/master/3074- 0c5d71ad77873c159d7542a7e8314d9696c1b55b/fx.tar.xz
Una volta completato il download, estrai il file scaricato con il seguente comando:
tar -xvf fx.tar.xz
Successivamente, dovrai scaricare i dati del server CFX sul tuo sistema. Puoi scaricarlo con il seguente comando:
git clone https://github.com/citizenfx/cfx-server-data ~/fivem_resources
Successivamente, dovrai creare un file di configurazione FiveM.
Puoi crearlo con il seguente comando:
nano ~/fivem_resources/server.cfg
Aggiungi le seguenti righe inclusa la tua licenza FiveM:
# Only change the IP if you’re using a server with multiple network interfaces, otherwise change the port only. endpoint_add_tcp "0.0.0.0:30120” endpoint_add_udp "0.0.0.0:30120” # These resources will start by default. ensure mapmanager ensure chat ensure spawnmanager ensure sessionmanager ensure fivem ensure hardcap ensure rconlog ensure scoreboard # This allows players to use scripthook-based plugins such as the legacy Lambda Menu. # Set this to 1 to allow scripthook. Do note that this does _not_ guarantee players won’t be able to use external plugins. sv_scriptHookAllowed 0 # Uncomment this and set a password to enable RCON. Make sure to change the password - it should look like rcon_password "YOURPASSWORD” #rcon_password "” # A comma-separated list of tags for your server. # For example: # - sets tags "drifting, cars, racing” # Or: # - sets tags "roleplay, military, tanks” sets tags "default” # Set an optional server info and connecting banner image url. # Size doesn’t matter, any banner sized image will be fine. #sets banner_detail "https://url.to/image.png” #sets banner_connecting "https://url.to/image.png” # Set your server’s hostname sv_hostname "FXServer, but unconfigured” # Nested configs! #exec server_internal.cfg # Loading a server icon (96×96 PNG file) #load_server_icon myLogo.png # convars which can be used in scripts set temp_convar "hey world!” # Uncomment this line if you do not want your server to be listed in the server browser. # Do not edit it if you *do* want your server listed. #sv_master1 "” # Add system admins add_ace group.admin command allow # allow all commands add_ace group.admin command.quit deny # but don’t allow quit add_principal identifier.steam:110000100000000 group.admin # add the admin to the group # Hide player endpoints in external log output. sv_endpointprivacy true # Server player slot limit (must be between 1 and 32, unless using OneSync) sv_maxclients 32 # License key for your server (https://keymaster.fivem.net) sv_licenseKey i1mqzvi2eukui85p8cb0uddanqsru2lk
Salva e chiudi il file quando hai finito.
Successivamente, puoi avviare il server FiveM con il seguente comando:
cd ~/fivem_resources && bash ~/fivem_server/run.sh +exec server.cfg
Una volta che il server è stato avviato correttamente, dovresti ottenere il seguente output:
Nota:l'avvio di questo processo richiederà alcuni minuti
[------------------------------------------------------------------------------------------------------ --------------------------------] 0/315Server license key authentication succeeded. Welcome! Authenticating with Nucleus... [#####------------------------------------------------------------------------------------------------- -------------------------------] 11/315 fff cccc ff xx xx rr rr eee cc ffff xx rrr r ee e cc ff xx ... rr eeeee ccccc ff xx xx ... rr eeeee Authenticated with cfx.re Nucleus: https://hitj-e8q3pd.users.cfx.re/ [###############################----------------------------------------------------------------------------- -------------------------] 74/315-- [server notice: tebex_not_set] ================ Monetize your server using Tebex! Visit https://tebex.io/fivem for more info. ================
Premi CTRL + C per fermare il server.
Fase 4:crea un file di servizio Systemd per FiveM
È una buona idea creare un file di servizio systemd per gestire il servizio FiveM. Puoi crearlo con il seguente comando:
nano /lib/systemd/system/fivem.service
Aggiungi le seguenti righe:
[Unit] Description=FiveM server [Service] Type=forking User=root ExecStart=/usr/bin/fivem_start.sh [Install] WantedBy=multi-user.target
Salva e chiudi il file, quindi crea uno script di avvio FiveM:
nano /usr/bin/fivem_start.sh
Add the following lines: #!/bin/bash screen -dm bash -c 'cd /root/fivem_resources && bash /root/fivem_server/run.sh +exec server.cfg'
Salva e chiudi il file, quindi imposta l'autorizzazione corretta:
chmod +x /usr/bin/fivem_start.sh
Quindi, ricarica il demone systemd con il seguente comando:
systemctl daemon-reload
Quindi, avvia FiveM e abilitalo per l'avvio al riavvio del sistema:
systemctl start fivem systemctl enable fivem
Puoi verificare lo stato di FiveM con il seguente comando:
stato systemctl cinquem
Dovresti ottenere il seguente output:
fivem.service - FiveM server
Loaded: loaded (/lib/systemd/system/fivem.service; disabled; vendor preset: enabled) Active: active (running) since Wed 2021-01-13 15:09:13 UTC; 6s ago Process: 24132 ExecStart=/usr/bin/fivem_start.sh (code=exited, status=0/SUCCESS) Main PID: 24136 (screen) Tasks: 67 (limit: 4691) Memory: 48.1M CGroup: /system.slice/fivem.service ├─24136 SCREEN -dm bash -c cd /root/fivem_resources && bash /root/fivem_server/run.sh +exec server.cfg ├─24148 /root/fivem_server/alpine/opt/cfx-server/ld-musl-x86_64.so.1 -- library-path /root/fivem_server/alpine/usr/lib/v8/:/root/f> └─24151 /root/fivem_server/alpine/opt/cfx-server/ld-musl-x86_64.so.1 -- library-path /root/fivem_server/alpine/usr/lib/v8/:/root/f> Jan 13 15:09:13 ubuntu2004 systemd[1]: Starting FiveM server... Jan 13 15:09:13 ubuntu2004 systemd[1]: Started FiveM server.
ss -antpl | grep 30120
Dovresti ottenere il seguente output:
LISTEN 0 128 0.0.0.0:30120 0.0.0.0:* users:(("ld-musl-x86_64.",pid=24148,fd=57))
Conclusione
Congratulazioni! Hai installato e configurato correttamente un server di gioco FiveM su Ubuntu 20.04. Ora puoi scaricare il client FiveM sul tuo sistema desktop e iniziare a giocare utilizzando FiveM sul tuo server privato virtuale da Atlantic.Net!
Scopri di più sui nostri servizi di hosting VPS e sui server privati virtuali.