sudo apt install xrdp
sudo adduser xrdp ssl-cert
sudo systemctl restart xrdp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Shell script to display raw Quake 3 server info and status responses. | |
# Author: Zack Middleton (zturtleman) | |
# License: Creative Commons Zero (CC0) | |
# Note: Default 'classic' netcat doesn't support IPv6 (debian package netcat-traditional) | |
# so I use the OpenBSD rewrite instead. (debian package netcat-openbsd) | |
# There is also a nc6 command in netcat6 package... | |
# netcat arguments: |
http://bookofzeus.com/harden-ubuntu/initial-setup/system-updates/
Keeping the system updated is vital before starting anything on your system. This will prevent people to use known vulnerabilities to enter in your system.
sudo apt-get update
sudo apt-get upgrade
sudo apt-get autoremove
sudo apt-get autoclean
Want to inject some flavor into your everyday text chat? You're in luck! Discord uses Markdown, a simple plain text formatting system that'll help you make your sentences stand out. Here's how to do it! Just add a few characters before & after your desired text to change your text! I'll show you some examples...
Italics *italics* or _italics_
Underline italics __*underline italics*__
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Servers have the ability to run multiple gametypes, known as "factories." You should not add gameplay related | |
// cvars in the server config: they may get overwritten by the factory. For creating your own sets of gameplay rules, | |
// create a file ending in ".factories" inside baseq3/scripts, and refer to "Creating custom gametypes" in the | |
// server_readme.txt file. | |
// Be aware that factories can override any cvar, including ones specified in this config file. | |
set sv_hostname "SARL | CA | elo+stats | GLHF" | |
set sv_tags "clanarena, qlstats.net, ELO, SARL, no-whiners, glhf" // Comma delimited field of server tags to show in server browser. |