Tag: linux
The Network Time Protocol (NTP) can be installed via: sudo apt install ntp The configuration for the NTP server (time synchronization) is located at: /etc/ntp.conf. In Network Time Protocol …
This post shows you 3 interesting/fun BASH commands: BASH Console Tetris Game You can now play tetris game in Bash console. You would need to install this via: $ …
Sometimes we want to repeat a command on Linux, and we can use the following BASH function to repeat a command for a number of times: function repeat() { …
Killing a process that opens a TCP port can be necessary in various situations, such as when you want to stop a misbehaving or unwanted application or service. Here …
How to Check if a Domain can be Ping-able? Creating a bash script to check if a domain is reachable via ping can be very useful for basic network …