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
10
1
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
1
0
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
19
0
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
6
0


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

Chris Speed
Jul 12, 20232 min read
8
0
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 12, 20231 min read
7
0
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 2, 20231 min read
3
0
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 14, 20231 min read
14
0
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
11
0
bottom of page