answertopia.com - Ubuntu 20.04 Remote Desktop Access with Vino
gsettings set org.gnome.Vino require-encryption false
answertopia.com - Ubuntu 20.04 Remote Desktop Access with Vino
gsettings set org.gnome.Vino require-encryption false
version: '3.1' | |
services: | |
teamspeak: | |
image: teamspeak | |
restart: always | |
ports: | |
- 9987:9987/udp | |
- 10011:10011 | |
- 30033:30033 | |
environment: |
#!/bin/bash | |
######################################################################################## | |
# From https://forum.teamspeak.com/threads/66796-Using-Snapshot-scripts-for-daily-backup | |
######################################################################################## | |
set -e | |
set -u | |
#set -x |
#!/bin/bash | |
######################################################################################## | |
# From https://forum.teamspeak.com/threads/66796-Using-Snapshot-scripts-for-daily-backup | |
######################################################################################## | |
set -e | |
set -u | |
#set -x |
#!/bin/bash | |
FILE=snapshot_`date +%Y_%m_%d`.txt | |
if [[ -f "$FILE" ]]; then | |
echo "The $FILE already exists!" | |
exit | |
fi | |
LOGIN=`grep -oP 'loginname=..\K[[:alnum:]]+' ts3_server.txt` | |
PASSWD=`grep -oP 'password=..\K([[:alnum:]]|\+){8}' ts3_server.txt` |
#!/usr/bin/env bash | |
sudo apt-get install virtualbox-guest-dkms virtualbox-guest-utils virtualbox-guest-x11 | |
sudo reboot |
#!/usr/bin/env bash | |
# Check existence/ Creates the .ssh directory | |
[ -d ~/.ssh ] || mkdir ~/.ssh | |
# Generate an ED25519 key and display the public key | |
ssh-keygen -o -a 100 -t ed25519 | |
echo 'Your ED25519 key' | |
cat ~/.ssh/id_ed25519.pub |