「環境変数」の版間の差分

提供: ArchWiki
ナビゲーションに移動 検索に移動
(en:Environment variablesへの転送ページ)
 
1行目: 1行目:
  +
[[Category:システム管理]]
#redirect[[en:Environment variables]]
 
  +
[[de:Umgebungsvariablen]]
  +
[[en:Environment variables]]
  +
[[ru:Environment variables]]
  +
環境変数とは1つ、または複数のアプリケーションによって使用されるデータを含んだ名前付きオブジェクトです。簡単に言えば、名前と値がある変数です。環境変数の値は例えば、実行可能ファイルのファイルシステムにおける場所や使用するデフォルトのエディタ、システムロケールの設定などになります。Linux に慣れてないユーザーは、環境変数で設定をするのは御しがたいと考えがちですが、複数のアプリケーションと Linux のプロセスの設定を共有するシンプルな方法として環境変数が存在しています。
  +
  +
== ユーティリティ ==
  +
{{Pkg|coreutils}} パッケージには ''printenv'' と ''env'' というプログラムが入っています。現在設定されている環境変数とその値を表示するには:
  +
  +
$ printenv
  +
  +
{{Note|Some environment variables are user-specific. Check by comparing the outputs of ''printenv'' as an unprivileged user and as ''root''.}}
  +
  +
The {{ic|env}} utility can be used to run a command under a modified environment. The following example will launch ''xterm'' with the environment variable {{ic|EDITOR}} set to {{ic|vim}}. This will not affect the global environment variable {{ic|EDITOR}}.
  +
  +
$ env EDITOR=vim xterm
  +
  +
The [[Bash]] builtin ''set'' allows you to change the values of shell options and set the positional parameters, or to display the names and values of shell variables. For more information, see the ''set'' documentation: [http://www.gnu.org/software/bash/manual/bash.html#The-Set-Builtin].
  +
  +
To see what environment variables are available to a specific process, look in {{ic|/proc/${PID}/environ}}. This file contains special {{ic|\x0}} characters. You can parse it with this function.
  +
  +
# envof() { sed 's/\x0/\n/g' /proc/${1}/environ; }
  +
# envof 1
  +
TERM=linux
  +
  +
== サンプル ==
  +
The following section lists a number of common environment variables used by a Linux system and describes their values.
  +
  +
*{{ic|DE}} indicates the ''D''esktop ''E''nvironment being used. [[xdg-open]] will use it to choose more user-friendly file-opener application that desktop environment provides. Some packages need to be installed to use this feature. For [[GNOME]], that would be {{pkg|libgnome}}; for [[Xfce]] this is {{pkg|exo}}. Recognised values of {{ic|DE}} variable are: {{ic|gnome}}, {{ic|kde}}, {{ic|xfce}}, {{ic|lxde}} and {{ic|mate}}.
  +
  +
:The {{ic|DE}} environment variable needs to be exported before starting the window manager. For example:
  +
  +
{{hc|~/.xinitrc|2=
  +
export DE="xfce"
  +
exec openbox
  +
}}
  +
  +
:This will make ''xdg-open'' use the more user-friendly ''exo-open'', because it assumes it is running inside Xfce. Use ''exo-preferred-applications'' for configuring.
  +
  +
*{{ic|DESKTOP_SESSION}} is similar to {{ic|DE}}, but used in [[LXDE]] desktop enviroment: when {{ic|DESKTOP_SESSION}} is set to {{ic|LXDE}}, ''xdg-open'' will use ''pcmanfm'' file associations.
  +
  +
*{{ic|PATH}} contains a colon-separated list of directories in which your system looks for executable files. When a regular command (e.g., ''ls'', ''rc-update'' or ''ic|emerge'') is interpreted by the shell (e.g., ''bash'' or ''zsh''), the shell looks for an executable file with the same name as your command in the listed directories, and executes it. To run executables that are not listed in {{ic|PATH}}, the absoute path to the executable must be given: {{ic|/bin/ls}}.
  +
  +
{{Note|It is advised not to include the current working directory ({{ic|.}}) into your {{ic|PATH}} for security reasons, as it may trick the user to execute vicious commands.}}
  +
  +
*{{ic|HOME}} contains the path to the home directory of the current user. This variable can be used by applications to associate configuration files and such like with the user running it.
  +
  +
*{{ic|PWD}} contains the path to your working directory.
  +
  +
*{{ic|OLDPWD}} contains the path to your previous working directory, that is, the value of {{ic|PWD}} before last ''cd'' was executed.
  +
  +
*{{ic|SHELL}} contains the name of the running, interactive shell, e.g., {{ic|bash}}
  +
  +
*{{ic|TERM}} contains the name of the running terminal, e.g., {{ic|xterm}}
  +
  +
*{{ic|PAGER}} contains command to run the program used to list the contents of files, e.g., {{ic|/bin/less}}.
  +
  +
*{{ic|EDITOR}} contains the command to run the lightweight program used for editing files, e.g., {{ic|/usr/bin/nano}}. For example, you can write an interactive switch between ''gedit'' under [[Xorg|X]] or ''nano'' in this example):
  +
  +
export EDITOR="$(if <nowiki>[[</nowiki> -n $DISPLAY <nowiki>]]</nowiki>; then echo 'gedit'; else echo 'nano'; fi)"
  +
  +
*{{ic|VISUAL}} contains command to run the full-fledged editor that is used for more demanding tasks, such as editing mail (e.g., {{ic|vi}}, [[vim]], [[emacs]] etc).
  +
  +
*{{ic|MAIL}} contains the location of incoming email. The traditional setting is {{ic|/var/spool/mail/$LOGNAME}}.
  +
  +
*{{ic|BROWSER}} contains the path to the web browser. Helpful to set in an interactive shell configuration file so that it may be dynamically altered depending on the availability of a graphic environment, such as [[Xorg|X]]:
  +
  +
if <nowiki>[</nowiki> -n "$DISPLAY" <nowiki>]</nowiki>; then
  +
export BROWSER=firefox
  +
else
  +
export BROWSER=links
  +
fi
  +
  +
*{{ic|ftp_proxy and http_proxy}} contains FTP and HTTP proxy server, respectively:
  +
ftp_proxy="<nowiki>ftp://192.168.0.1:21</nowiki>"
  +
http_proxy="<nowiki>http://192.168.0.1:80</nowiki>"
  +
  +
*{{ic|MANPATH}} contains a colon-separated list of directories in which ''man'' searches for the man pages.
  +
{{Note|In {{ic|/etc/profile}}, there is a comment that states "Man is much better than us at figuring this out", so this variable should generally be left as default, i.e. {{ic|/usr/share/man:/usr/local/share/man}}
  +
}}
  +
  +
*{{ic|INFODIR}} contains a colon-separated list of directories in which the info command searches for the info pages, e.g., {{ic|/usr/share/info:/usr/local/share/info}}
  +
  +
*{{ic|TZ}} can be used to to set a time zone different to the system zone for a user. The zones listed in {{ic|/usr/share/zoneinfo/}} can be used as reference, for example {{ic|1=TZ="/usr/share/zoneinfo/Pacific/Fiji"}}
  +
  +
== 変数の定義 ==
  +
  +
[[Systemd/ユーザー#環境変数]]も見て下さい。
  +
  +
=== グローバル ===
  +
  +
Most Linux distributions tell you to change or add environment variable definitions in {{ic|/etc/profile}} or other locations. Be sure to maintain and manage the environment variables and pay attention to the numerous files that can contain environment variables. In principle, any shell script can be used for initializing environmental variables, but following traditional UNIX conventions, these statements should be only be present in some particular files.
  +
  +
The following files should be used for defining global environment variables on your system: {{ic|/etc/profile}}, {{ic|/etc/bash.bashrc}} and {{ic|/etc/environment}}. Each of these files has different limitations, so you should carefully select the appropriate one for your purposes.
  +
  +
*{{ic|/etc/profile}} initializes variables for login shells ''only''. It does, however, run scripts and can be used all [[wikipedia:Bourne shell|Bourne shell]] compatible shells.
  +
*{{ic|/etc/bash.bashrc}} initializes variables for interactive shells ''only''. It also runs scripts but (as its name implies) is Bash specific.
  +
*{{ic|/etc/environment}} is used by the PAM-env module and is agnostic to login/non-login, interactive/non-interactive and also Bash/non-Bash, so scripting or glob expansion cannot be used. The file only accepts {{ic|1=''variable=value''}} pairs.
  +
  +
In this example, we add {{ic|~/bin}} directory to the {{ic|PATH}} for respective user. To do this, just put this in your preferred global environment variable config file ({{ic|/etc/profile}} or {{ic|/etc/bash.bashrc}}):
  +
  +
{{bc|<nowiki>
  +
# If user ID is greater than or equal to 1000 & if ~/bin exists and is a directory & if ~/bin is not already in your $PATH
  +
# then export ~/bin to your $PATH.
  +
if [[ $UID -ge 1000 && -d $HOME/bin && -z $(echo $PATH | grep -o $HOME/bin) ]]
  +
then
  +
export PATH=$HOME/bin:${PATH}
  +
fi
  +
</nowiki>}}
  +
  +
=== ユーザーごと ===
  +
  +
環境変数をグローバルに定義したくないという時もあるでしょう。例えば、{{ic|PATH}} に {{ic|/home/my_user/bin}} を追加したいが、システム上の他のユーザーには同じ {{ic|PATH}} を使って欲しくないという場合が考えられます。様々なファイルを使うことでローカルに環境変数を定義することができます:
  +
  +
# シェルの設定ファイル、例えば [[Bash#設定ファイル]] や [[Zsh#設定ファイル]]。
  +
# {{ic|~/.profile}} is used by many shells as fallback, see [[wikipedia:Unix_shell#Configuration_files_for_shells]].
  +
# {{ic|~/.pam_environment}} is the user specific equivalent of {{ic|/etc/environment}}, used by PAM-env module. See {{ic|pam_env(8)}} for details.
  +
  +
To add a directory to the {{ic|PATH}} for local usage, put following in {{ic|~/.bash_profile}}:
  +
  +
export PATH="${PATH}:/home/my_user/bin"
  +
  +
To update the variable, re-login or ''source'' the file: {{ic|$ source ~/.bash_profile}}.
  +
  +
==== グラフィカルアプリケーション ====
  +
  +
GUI アプリケーションの環境変数を設定したいときは、[[xinitrc]] に変数を記述することができます。例:
  +
  +
{{hc|1=~/.xinitrc|2=
  +
export PATH="${PATH}:~/scripts"
  +
export GUIVAR=value}}
  +
  +
=== セッションごと ===
  +
  +
Sometimes even stricter definitions are required. One might want to temporarily run executables from a specific directory created without having to type the absolute path to each one, or editing {{ic|~/.bash_profile}} for the short time needed to run them.
  +
  +
In this case, you can define the {{ic|PATH}} variable in your current session, combined with the ''export'' command. As long as you do not log out, the {{ic|PATH}} variable will be using the temporary settings. To add a session-specific directory to {{ic|PATH}}, issue:
  +
  +
$ export PATH="${PATH}:/home/my_user/tmp/usr/bin"
  +
  +
== 参照 ==
  +
  +
* [http://www.gentoo.org/doc/ja/handbook/handbook-x86.xml?full=1#book_part2_chap5 Gentoo Linux ドキュメント]
  +
* [[デフォルトアプリケーション]]
  +
* [[Xdg-open]]

2015年2月13日 (金) 16:54時点における版

環境変数とは1つ、または複数のアプリケーションによって使用されるデータを含んだ名前付きオブジェクトです。簡単に言えば、名前と値がある変数です。環境変数の値は例えば、実行可能ファイルのファイルシステムにおける場所や使用するデフォルトのエディタ、システムロケールの設定などになります。Linux に慣れてないユーザーは、環境変数で設定をするのは御しがたいと考えがちですが、複数のアプリケーションと Linux のプロセスの設定を共有するシンプルな方法として環境変数が存在しています。

ユーティリティ

coreutils パッケージには printenvenv というプログラムが入っています。現在設定されている環境変数とその値を表示するには:

$ printenv
ノート: Some environment variables are user-specific. Check by comparing the outputs of printenv as an unprivileged user and as root.

The env utility can be used to run a command under a modified environment. The following example will launch xterm with the environment variable EDITOR set to vim. This will not affect the global environment variable EDITOR.

$ env EDITOR=vim xterm

The Bash builtin set allows you to change the values of shell options and set the positional parameters, or to display the names and values of shell variables. For more information, see the set documentation: [1].

To see what environment variables are available to a specific process, look in /proc/${PID}/environ. This file contains special \x0 characters. You can parse it with this function.

# envof() { sed 's/\x0/\n/g' /proc/${1}/environ; }
# envof 1
TERM=linux

サンプル

The following section lists a number of common environment variables used by a Linux system and describes their values.

  • DE indicates the Desktop Environment being used. xdg-open will use it to choose more user-friendly file-opener application that desktop environment provides. Some packages need to be installed to use this feature. For GNOME, that would be libgnome; for Xfce this is exo. Recognised values of DE variable are: gnome, kde, xfce, lxde and mate.
The DE environment variable needs to be exported before starting the window manager. For example:
~/.xinitrc
export DE="xfce"
exec openbox
This will make xdg-open use the more user-friendly exo-open, because it assumes it is running inside Xfce. Use exo-preferred-applications for configuring.
  • DESKTOP_SESSION is similar to DE, but used in LXDE desktop enviroment: when DESKTOP_SESSION is set to LXDE, xdg-open will use pcmanfm file associations.
  • PATH contains a colon-separated list of directories in which your system looks for executable files. When a regular command (e.g., ls, rc-update or ic|emerge) is interpreted by the shell (e.g., bash or zsh), the shell looks for an executable file with the same name as your command in the listed directories, and executes it. To run executables that are not listed in PATH, the absoute path to the executable must be given: /bin/ls.
ノート: It is advised not to include the current working directory (.) into your PATH for security reasons, as it may trick the user to execute vicious commands.
  • HOME contains the path to the home directory of the current user. This variable can be used by applications to associate configuration files and such like with the user running it.
  • PWD contains the path to your working directory.
  • OLDPWD contains the path to your previous working directory, that is, the value of PWD before last cd was executed.
  • SHELL contains the name of the running, interactive shell, e.g., bash
  • TERM contains the name of the running terminal, e.g., xterm
  • PAGER contains command to run the program used to list the contents of files, e.g., /bin/less.
  • EDITOR contains the command to run the lightweight program used for editing files, e.g., /usr/bin/nano. For example, you can write an interactive switch between gedit under X or nano in this example):
export EDITOR="$(if [[ -n $DISPLAY ]]; then echo 'gedit'; else echo 'nano'; fi)"
  • VISUAL contains command to run the full-fledged editor that is used for more demanding tasks, such as editing mail (e.g., vi, vim, emacs etc).
  • MAIL contains the location of incoming email. The traditional setting is /var/spool/mail/$LOGNAME.
  • BROWSER contains the path to the web browser. Helpful to set in an interactive shell configuration file so that it may be dynamically altered depending on the availability of a graphic environment, such as X:
if [ -n "$DISPLAY" ]; then
    export BROWSER=firefox
else 
    export BROWSER=links
fi
  • ftp_proxy and http_proxy contains FTP and HTTP proxy server, respectively:
ftp_proxy="ftp://192.168.0.1:21"
http_proxy="http://192.168.0.1:80"
  • MANPATH contains a colon-separated list of directories in which man searches for the man pages.
ノート: In /etc/profile, there is a comment that states "Man is much better than us at figuring this out", so this variable should generally be left as default, i.e. /usr/share/man:/usr/local/share/man
  • INFODIR contains a colon-separated list of directories in which the info command searches for the info pages, e.g., /usr/share/info:/usr/local/share/info
  • TZ can be used to to set a time zone different to the system zone for a user. The zones listed in /usr/share/zoneinfo/ can be used as reference, for example TZ="/usr/share/zoneinfo/Pacific/Fiji"

変数の定義

Systemd/ユーザー#環境変数も見て下さい。

グローバル

Most Linux distributions tell you to change or add environment variable definitions in /etc/profile or other locations. Be sure to maintain and manage the environment variables and pay attention to the numerous files that can contain environment variables. In principle, any shell script can be used for initializing environmental variables, but following traditional UNIX conventions, these statements should be only be present in some particular files.

The following files should be used for defining global environment variables on your system: /etc/profile, /etc/bash.bashrc and /etc/environment. Each of these files has different limitations, so you should carefully select the appropriate one for your purposes.

  • /etc/profile initializes variables for login shells only. It does, however, run scripts and can be used all Bourne shell compatible shells.
  • /etc/bash.bashrc initializes variables for interactive shells only. It also runs scripts but (as its name implies) is Bash specific.
  • /etc/environment is used by the PAM-env module and is agnostic to login/non-login, interactive/non-interactive and also Bash/non-Bash, so scripting or glob expansion cannot be used. The file only accepts variable=value pairs.

In this example, we add ~/bin directory to the PATH for respective user. To do this, just put this in your preferred global environment variable config file (/etc/profile or /etc/bash.bashrc):

# If user ID is greater than or equal to 1000 & if ~/bin exists and is a directory & if ~/bin is not already in your $PATH
# then export ~/bin to your $PATH.
if [[ $UID -ge 1000 && -d $HOME/bin && -z $(echo $PATH | grep -o $HOME/bin) ]]
then
    export PATH=$HOME/bin:${PATH}
fi

ユーザーごと

環境変数をグローバルに定義したくないという時もあるでしょう。例えば、PATH/home/my_user/bin を追加したいが、システム上の他のユーザーには同じ PATH を使って欲しくないという場合が考えられます。様々なファイルを使うことでローカルに環境変数を定義することができます:

  1. シェルの設定ファイル、例えば Bash#設定ファイルZsh#設定ファイル
  2. ~/.profile is used by many shells as fallback, see wikipedia:Unix_shell#Configuration_files_for_shells.
  3. ~/.pam_environment is the user specific equivalent of /etc/environment, used by PAM-env module. See pam_env(8) for details.

To add a directory to the PATH for local usage, put following in ~/.bash_profile:

export PATH="${PATH}:/home/my_user/bin"

To update the variable, re-login or source the file: $ source ~/.bash_profile.

グラフィカルアプリケーション

GUI アプリケーションの環境変数を設定したいときは、xinitrc に変数を記述することができます。例:

~/.xinitrc
export PATH="${PATH}:~/scripts"
export GUIVAR=value

セッションごと

Sometimes even stricter definitions are required. One might want to temporarily run executables from a specific directory created without having to type the absolute path to each one, or editing ~/.bash_profile for the short time needed to run them.

In this case, you can define the PATH variable in your current session, combined with the export command. As long as you do not log out, the PATH variable will be using the temporary settings. To add a session-specific directory to PATH, issue:

$ export PATH="${PATH}:/home/my_user/tmp/usr/bin"

参照