Ubuntu Linux: Install Wake On Lan Client For Server

To install a Wake-on-LAN client on an Ubuntu Linux server, you can use the etherwake package. Here’s how to install it: Open a terminal window. Install the etherwake package by running the following command: sudo apt-get install etherwake After the installation is complete, you can use the etherwake command to send a Wake-on-LAN packet to … Read more

Ubuntu Linux: Install Google Chrome Browser Command

To install Google Chrome browser on an Ubuntu Linux system, you can use the following steps: Download the Google Chrome Debian package by visiting the following link: https://www.google.com/chrome/ Open a terminal window and navigate to the directory where you downloaded the package. Install the package by running the following command: sudo dpkg -i google-chrome-stable_current_amd64.deb Note: … Read more

scp: Do not Overwrite Existing File On Linux or Unix System

To use scp on a Linux or Unix system and avoid overwriting an existing file, you can use the -n or –no-clobber option. This option prevents scp from overwriting existing files in the target directory. Here’s an example of using scp with the -n option: scp -n source_file user@target_host:target_directory In this example, source_file is the … Read more