David Cao

David Cao

David is a Cloud & DevOps Enthusiast. He has years of experience as a Linux engineer. He had working experience in AMD, EMC. He likes Linux, Python, bash, and more. He is a technical blogger and a Software Engineer. He enjoys sharing his learning and contributing to open-source.

4 ways to fix cd: no such file or directory

“cd: no such file or directory” is an error message that is displayed when the command line interpreter (CLI) is unable to find the directory that the user is trying to navigate to using the “cd” command. This error can…

Find Linux IP address using Bash Shell Script

A network interface is a point of interaction between a computer and a network. It can be a physical device, such as an Ethernet card or wireless adapter, or a virtual interface created by software. An IP address is a…

4 ways to fix ip: command not found

The “ip” command is a Linux command used to configure and manage network interfaces on a Linux system. It can be used to set various network interface parameters, such as IP addresses, netmasks, and gateway addresses. It can also be…

Mastering Linux Export Command

The export command is a bash shell BUILTIN command. It tells the Linux shell to make the variables available to the child processes. In Linux, the export command is usually used to change local variables to environment variables. We can…

What is PATH variable in Linux and how it works

The PATH variable is a list of directories that contains executable programs. It controls where your shell will look for commands on your system. When you enter a command in the terminal, such as grep, ls, or echo, the shell…