top of page
Search
How To: Docker: Install Docker Engine on CentOS
Install the required packages to allow yum to use a repository over HTTPS: sudo yum install -y yum-utils device-mapper-persistent-data...

Chris Speed
Jul 21, 20231 min read
Virtual Box: Install Guest Additions
create directory and mount. sudo mkdir -p /mnt/cdrom sudo mount /dev/cdrom /mnt/cdrom run the Guest Additions CD image. cd /mnt/cdrom...

Chris Speed
Jul 20, 20231 min read
Harbor Install & Setup
1. Go to the Harbor releases page & Download either the online or offline installer for the version you want to install. 2. Use tar to...

Chris Speed
Jul 16, 20231 min read
CentOS Server Setup
Start up internet connection and locate IP Address sudo nmcli con up enp0s3 sudo nmcli con mod enp0s3 connection.autoconnect yes #sudo...

Chris Speed
Jul 16, 20231 min read


How To: PostgreSQL Install
Install PostgreSQL sudo apt install postgresql postgresql-contrib #Ubuntu sudo yum install postgresql postgresql-contrib #Centos Start...

Chris Speed
Jul 11, 20232 min read
How to Samba on Ubuntu Server
Install sudo apt install samba -y Verfiy Installation systemctl status smbd Configure sudo nano /etc/samba/smb.conf Create symbolic to...

Chris Speed
Jul 11, 20231 min read
How to WebDAV on Ubuntu
Create Directory Structure for WebDAV mkdir /var/www/webdav chown -R www-data:www-data /var/www/webdav Create an Apache Virtual Host for...

Chris Speed
Jul 1, 20231 min read
How to Disable Wireless LAN in Linux
sudo ip link set dev wlo1 down #permanent solution sudo ifconfig wlo1 down sudo ifconfig wlo1 up References:...

Chris Speed
Jun 13, 20231 min read
How to Create an SSH Shortcut
nano ~/.ssh/config Host plexserver HostName 10.0.0.251 User plex Port 9022 Host citron HostName 10.0.0.165 User citron Port 22 Now, you...

Chris Speed
Jun 12, 20231 min read
bottom of page