mirror of
https://github.com/ChocoTaco1/Tribes2-Server-Setup-Guide.git
synced 2026-07-12 15:04:33 +00:00
Update README.md
This commit is contained in:
parent
eec6bcb88c
commit
1652fff8e7
1 changed files with 17 additions and 18 deletions
35
README.md
35
README.md
|
|
@ -8,15 +8,15 @@
|
||||||
Discord: [Tribes 2 Discord](https://discord.gg/Y4muNvF)
|
Discord: [Tribes 2 Discord](https://discord.gg/Y4muNvF)
|
||||||
|
|
||||||
### Target Environment
|
### Target Environment
|
||||||
- This is for guide is for Debian 12 (Bookworm)
|
- This guide is for Debian 12 (Bookworm)
|
||||||
- This could probably work on other distros varying packages and commands
|
- This could probably work on other distros varying packages and commands
|
||||||
|
|
||||||
### Choosing a host
|
### Choosing a host
|
||||||
- Any VPS host could probably run a t2 server depending on how much you want to pay...
|
- Any VPS host could probably run a t2 server depending on how much you want to pay...
|
||||||
- Vultr is probably to easiest to use - https://www.vultr.com/
|
- Vultr is probably to easiest to use - https://www.vultr.com/
|
||||||
- Linode probably a great option too (Now Akamai) - https://www.linode.com/
|
- Linode probably a great option too (Now Akamai) - https://www.linode.com/
|
||||||
- GCE (Google Compute Engine) being probably the more difficult option https://cloud.google.com/compute/
|
- GCE (Google Compute Engine) being probably the more difficult option - https://cloud.google.com/compute/
|
||||||
I'm sure there's others
|
- I'm sure there's others
|
||||||
|
|
||||||
### Connecting...
|
### Connecting...
|
||||||
- SSH as root into your vps (Your ssh password can usually be found on your host vps website)
|
- SSH as root into your vps (Your ssh password can usually be found on your host vps website)
|
||||||
|
|
@ -32,27 +32,26 @@ Discord: [Tribes 2 Discord](https://discord.gg/Y4muNvF)
|
||||||
- This is for winetricks later
|
- This is for winetricks later
|
||||||
echo "deb http://deb.debian.org/debian bookworm contrib" > /etc/apt/sources.list
|
echo "deb http://deb.debian.org/debian bookworm contrib" > /etc/apt/sources.list
|
||||||
|
|
||||||
sudo apt update && sudo apt upgrade
|
sudo apt update && sudo apt upgrade
|
||||||
|
|
||||||
//****Log out as root and log back in as t2server or your newly created user. This is very important...****
|
# Log out as root and log back in as t2server or your newly created user. This is very important...
|
||||||
|
|
||||||
//Install desktop
|
- Install desktop
|
||||||
sudo apt install xfce4 xfce4-goodies tightvncserver xfonts-base firefox-esr synaptic file-roller git winetricks htop curl zenity
|
sudo apt install xfce4 xfce4-goodies tightvncserver xfonts-base firefox-esr synaptic file-roller git winetricks htop curl zenity
|
||||||
|
|
||||||
//Start vnc server, make password...8 characters
|
- Start vnc server, make password...8 characters
|
||||||
vncserver
|
vncserver
|
||||||
|
|
||||||
//Kill vnc server
|
- Kill vnc server
|
||||||
vncserver -kill :1
|
vncserver -kill :1
|
||||||
|
|
||||||
//Open vnc config file
|
- Open vnc config file
|
||||||
nano ~/.vnc/xstartup
|
nano ~/.vnc/xstartup
|
||||||
|
|
||||||
//Copy this inside xstartup, ctrl-o save
|
- Copy this inside xstartup, ctrl-o save. This says to start our desktop when we start our vnc
|
||||||
//This says to start our desktop when we start our vnc
|
#!/bin/bash
|
||||||
#!/bin/bash
|
xrdb $HOME/.Xresources
|
||||||
xrdb $HOME/.Xresources
|
startxfce4 &
|
||||||
startxfce4 &
|
|
||||||
|
|
||||||
//Repair permissions
|
//Repair permissions
|
||||||
sudo chmod +x ~/.vnc/xstartup
|
sudo chmod +x ~/.vnc/xstartup
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue