freedns.afraid.org

How to Build Linux Web Server with Dynamic IP Address

Requirements: Ubuntu GNU/Linux Account at freedns.afraid.org Easy Hosting Control Panel (EHCP) Router How to: 1. Install Ubuntu. We set local IP Address to 192.168.0.1 $ sudo nano /etc/network/interfaces Type in the following lines: auto eth0 iface eth0 inet static address 192.168.0.1 netmask 255.255.255.0 gateway 192.168.0.254 192.168.0.254 is the gateway / modem’s IP Address. 2. Install…

Read More

How to Check System Uptime on Windows

On Linux operating system, we can use command top to show system statistic, running processes, and uptime. How can we do it on Windows environment? Using Windows operating system, the similar to top command is net statistics server. Execute this command in command prompt will show summary of  Windows system statistic including when the system…

Read More

How to Setup Github Actions

Here is a concise guide to Setup Github Actions. 1. Generating SSH Keys for GitHub Login to your server which hosting your application. ed25519 is the recommended algorithm (faster and more secure than RSA). Save location: Press Enter to use the default (/root/.ssh/id_ed25519). Passphrase: Press Enter twice to leave it empty (required for automated deployments)….

Read More