top of page
Search
How To: Thunderbird change time format from 24Hr to12Hr
In Terminal gsettings set org.gnome.desktop.interface clock-format '12h' In Thunderbird Edit --> Setting --> Date and Time Formatting...

Chris Speed
May 27, 20231 min read
1
0
Virtual Box: USB Setup
In order for usb devices to connect to the vm the following needs to be done (only Linux hosts): sudo apt install --reinstall...

Chris Speed
Apr 30, 20231 min read
4
0
How to Change Default Torrent Client for Magnet Links
Step 1: Display the default app for magnet links xdg-mime query default x-scheme-handler/magnet Step 2: Set/Change the default app for...

Chris Speed
Apr 11, 20231 min read
11
0
How To: Docker: Install Docker Compose
Installing Docker Compose sudo curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname...

Chris Speed
Jan 3, 20231 min read
10
0


How To: Install nginx server & enable TLS Support
sudo apt update sudo apt install nginx Setting up Virtual Host cd /etc/nginx/sites-enabled sudo "${EDITOR:-vi}" tutorial server { listen...

Chris Speed
Jan 3, 20232 min read
16
0
Virtual Box: VBoxManage Create & Modify VM
# switch into default VirtualBox directory cd VirtualBox\ VMs/ # create new VirtualBox VM VBoxManage createvm --name "centos_x64"...

Chris Speed
Dec 13, 20221 min read
27
0
Ubuntu Server Setup / Install Notes
SSH Keep Ubuntu Server running on a laptop with the lid closed? How do I change the font or the font size in the TTY (console)? Webmin...

Chris Speed
Dec 13, 20221 min read
36
1
Firewall Ports
Ubuntu Turn Firewall On or Off sudo ufw enable sudo ufw disable Check Firewall Ports sudo ufw status verbose sudo ufw app list Open a...

Chris Speed
Nov 27, 20221 min read
20
0
MySQL Allow Remote Connection
The following allows for remote connection to mySQL view TCP/IP considering the firewall port 3306 is currently open and active. mySQL>...

Chris Speed
Nov 27, 20221 min read
7
0
bottom of page