How to Reset the Password for sudo in Debian

Reset Sudo password in Debian

If you are a new Debian admin, you might want to know how to change the sudo password on the shell. After all, it is a good security practice to change passwords regularly for any user, especially the Super User, who can perform all sensitive operations on Debian. Only a Super User or root can … Read more

How to remotely manage a Linux server with SSH

Linux SSH server

SSH stands for Secure Shell and it is a protocol that is used to securely access a remote server on a local network or internet for configuration, management, monitoring, and troubleshooting, etc. In this article, I am going to discuss how you can manage a remote Linux server with the help of SSH. I have … Read more

How to Create Aliases for Customizing Commands in Debian

Debian Command Aliases

Debian allows you to customize your long and rugged bash commands by using short and pleasant aliases as a replacement. When you are working on the command line, you can just use an alias instead of the entire command you want to avoid typing. The alias will work exactly in the same way as the … Read more

How to View the Network Routing Table in Debian 10

Debian Network Routing

What is Routing of Network Packages? The process of network package routing is the transmission of an IP packet from one point to another over the network, e.g the internet. When you send an email to someone, you are actually transferring a series of IP packets or datagrams from your computer to the other network … Read more

5 Ways to Free Up Disk Space on Debian 10

Free up disk space

From time to time we have to clean up our system memory to make room for installing new programs and handling additional files. This is especially important when you have a low storage device or a limited storage capacity. Even if you have a large storage available but you are a person like me who … Read more

How to use grep command on Debian 10

Debian Grep Command

Grep stands for global regular expression print. It is a useful command and widely used by Linux system engineers while searching a string or patterns against regular files and in the system. In this article, I am going to demonstrate the usage of grep command with a large number of examples. I have tested all the … Read more

How to Enable/ Disable Automatic Login in Debian 10

Debian automatic login

As a common practice, users are required to provide authentication information to log on to a Linux system. This helps in securing any sensitive or personal files, emails and other data residing on your system from any physical intrusion. However, if your system is placed at an already secure location, free from any privacy threat, … Read more