One of the earlier post explained how to remotely copy multiple files and directories and keep them in sync by using rsync over ssh. While this is great for transferring files and directories in bulk, what if just a single file or a few files need to be copied quickly? For this, scp (secure copy) [...]
Here’s how to mount remote ftp site as a local folder in Linux Mint / Ubuntu: 1. Issue the following command at the terminal to install curlftpfs – sudo apt-get install curlftpfs 2. After the installation is complete, issue the following command at the terminal to create a directory that will be used a local [...]
If you are working on terminal in Linux Mint / Ubuntu and need to configure your time zone without using the GUI, follow the following steps: 1. Issue the following command at the terminal – sudo dpkg-reconfigure tzdata 2. Now select your geographic area and then select ‘<Ok>’ to proceed. 3. Finally, select the city [...]
Here’s how to quickly generate a report of system’s network interfaces from Linux terminal: 1. Issue the following command at the terminal – sudo ip addr 2. The output of the above command will generate a report of all the network interfaces present in the system along with their properties. If looking for a Linux [...]
Sometimes you me be required to to find out how much memory is supported by you Linux system. Here’s how you can quickly find out the maximum amount of memory supported in Linux from terminal: 1. Issue the following command at the terminal – sudo dmidecode -t 16 2. The resulting output will show you [...]