Add a directory to your $path in Linux

Configurare noua (How To)

Situatie

Solutie

It’s easy to see what’s in your path. Just type the following to use the echo command and print the value held in the $PATH variable:

echo $PATH

The output is a list of colon (:) delimited file system locations. The shell searches from left to right through the path, checking each file system location for a matching executable to perform your command.

We can pick our way through the listing to see the file system locations that will be searched, and the order in which they will be searched:

/usr/local/sbin
/usr/local/bin
/usr/sbin
/usr/bin
/sbin
/bin
/usr/games
/usr/local/games
/snap/bin

Something that might not be immediately obvious is the search doesn’t start in the current working directory. Rather, it works its way through the listed directories, and only the listed directories. If the current working directory isn’t in your path, it won’t be searched. Also, if you have commands stored in directories that aren’t in the path, the shell won’t find them.

To demonstrate this, we created a small program called rf. When executed, rf prints the name of the directory from which it was launched in the terminal window. It’s located in /usr/local/bin. We also have a newer version in the /dave/work directory.

We type the following which command to show us which version of our program the shell will find and use:

which rf

The shell reports the version it found is the one in the directory that’s in the path.

We type the following to fire it up:

rf

Version 1.0 of rf runs and confirms our expectations were correct. The version found and executed is located in /usr/local/bin.

To run any other version of rf on this computer, we’ll have to use the path to the executable on the command line, as shown below:

./work/rf

Now that we’ve told the shell where to find the version of rf we want to run, it uses version 1.1. If we prefer this version, we can copy it into the /usr/local/bin directory and overwrite the old one.

Let’s say we’re developing a new version of rf. We’ll need to run it frequently as we develop and test it, but we don’t want to copy an unreleased development build into the live environment.

Or, perhaps we’ve downloaded a new version of rf and want to do some verification testing on it before we make it publicly available. If we add our work directory to the path, we make the shell find our version. And this change will only affect us — others will still use the version of rf in /usr/local/bin .

Add a directory to your PATH
You can use the export command to add a directory to the PATH. The directory is then included in the list of file system locations the shell searches. When the shell finds a matching executable, it stops searching, so you want to make sure it searches your directory first, before /usr/local/bin.

This is easy to do. For our example, we type the following to add our directory to the start of the path so it’s the first location searched:

export PATH=/home/paul/work:$PATH

This command sets $PATH to be equal to the directory we’re adding, /home/paul/work, and then the entire current path.

The first PATH has no dollar sign ($). We set the value for PATH. The final $PATH has a dollar sign because we’re referencing the contents stored in the PATH variable. Also, note the colon (:) between the new directory and the $PATH variable name.

Let’s see what the path looks like now:

echo $PATH

Our /home/paul/work directory is added to the start of the path. The colon we provided separates it the rest of the path.

We type the following to verify our version of rf is the first one found:

which rf

The proof in the pudding is running rf, as shown below:

rf

The shell finds Version 1.1 and executes it from /home/paul/work.

To add our directory to the end of the path, we just move it to the end of the command, like so:

export PATH=$PATH:/home/paul/work

How to Permanently Add Something to PATH
As Beth Brooke-Marciniak said, “Success is fine, but success is fleeting.” The moment you close the terminal window, any changes you’ve made to the $PATH are gone. To make them permanent, you have to put your export command in a configuration file.

When you put the export command in your .bashrc file, it sets the path each time you open a terminal window. Unlike SSH sessions, for which you have to log in, these are called “interactive” sessions. In the past, you would put the export command in your .profile file to set the path for log in terminal sessions.

However, we found that if we put the export command in either the .bashrc or .profile files, it correctly set the path for both interactive and log in terminal sessions. Your experience might be different. To handle all eventualities, we’ll show you how to do it in both files.

Use the following command in your /home directory to edit the .bashrc file:

gedit .bashrc

The gedit editor opens with the .bashrc file loaded.

Scroll to the bottom of the file, and then add the following export command we used earlier:

export PATH=/home/paul/work:$PATH
Save the file. Next, either close and reopen the terminal window or use the dot command to read the .bashrc file, as follows:

. .bashrcThen, type the following echo command to check the path:

echo $PATH

This adds the /home/paul/work directory to the start of the path. The process to add the command to the .profile file is the same. Type the following command:

gedit .profile

The gedit editor launches with the .profile file loaded.

Add the export command to the bottom of the file, and then save it. Closing and opening a new terminal window is insufficient to force the .profile file to be reread. For the new settings to take effect, you must log out and back in or use the dot command as shown below:

. .profile

Setting the Path for Everyone
To set the path for everyone who uses the system, you can edit the /etc/profile file.

You’ll need to use sudo, as follows:

sudo gedit /etc/profile
When the gedit editor launches, add the export command to the bottom of the file. Save and close the file. The changes will take effect for others the next time they log in.

Tip solutie

Permanent

Voteaza

(10 din 15 persoane apreciaza acest articol)

Despre Autor