Basic Email Signature
<!DOCTYPE html> <html> <head> <title>CoverWeb</title> </head> <body> <div style="max-width:width:250px;"> <img src="https://old.garthbaker.co.za/wp-content/uploads/2020/08/Logo-250x250-1.png" style="width:250px; height:auto;"/> <div style="padding:10px 28px;"> <p><b>Email :</b> info@coverweb.co.za</p> </div> </div> </body> </html>
The above signature looks like this
Email : info@coverweb.co.za
Ubuntu Add Virtual Ram
free -m mkdir -p /var/swapmemory cd /var/swapmemory #Here, 1M * 2000 ~= 2GB of swap memory dd if=/dev/zero of=swapfile bs=1M count=2000 mkswap swapfile swapon swapfile chmod 600 swapfile echo "/var/swapmemory/swapfile none swap sw 0 0" >> /etc/fstab #cat /proc/meminfo free -m
How to SSH to your hosting server
ssh ftpuser@domainname Or
ssh ftpuser@serverIPAddress Or
ssh user@mydomain.com
© Garth Baker 2025 All rights reserved.