How To Change Path Variable In Linux

How To Change Path Variable In Linux
FacebookXFlipboardEmailShare

Many operating systems use environmental variables to define various global settings for any part of your operating system or applications to use. The PATH variable is one of these environmental variables which are constantly used without many people realizing it. The variable stores a list of directories where applications (most commonly your shell) should try to look for the program whenever you run a command. You can change the path variable in Linux, follow the simple steps below.

Find out what your current path is configured by running “echo $PATH”. A list of directories will be provided such as in the example below:

We can temporarily change this to whatever we would like by running the following command in a bash shell:

Echo the contents of PATH to confirm the changes are reflected in the variable:

Remember, the above is only temporary and will be lost after a reboot. In order to permanently store this setting, add the same line to your ~/.bashrc file

Note

Changing your PATH variable can potentially cause your operating system to not work properly. Programs frequently refer to this variable to find binary files and if the variable is not configured properly, many programs will stop running. Always test out the setting using the temporary method provided above prior to storing the setting permanently in your ~/.bashrc.

FacebookXFlipboardEmailShare
Exit mobile version