Linux系统默认PATH环境变量的设置
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
当系统启动后,想要运行一个程序,大部分情况下我们都是直接使用程序名即可运行,那是因为系统中的PATH环境变量已经添加了程序所在的目录,程序加载器会查找PATH环境变量来确定该程序所在的绝对路径。
init进程中的实现
系统在启动时第一个运行的用户空间进程叫init,init进程在启动时会去配置PATH环境变量,而其他用户进程都是由init进程fork产生,所以其他进程都会继承该默认的PATH配置了。嵌入式系统使用的busybox软件包中包含init程序的实现,我们以此为例进行介绍。
busybox-1.24.0/init/init.c:
int init_main(int argc UNUSED_PARAM, char **argv)
{
......
/* Make sure environs is set to something sane */
putenv((char *) "HOME=/");
putenv((char *) bb_PATH_root_path);
putenv((char *) "SHELL=/bin/sh");
putenv((char *) "USER=root"); /* needed? why? */
......
}
这里会使用putenv设置环境变量,bb_PATH_root_path的定义如下:
#ifndef BB_ADDITIONAL_PATH
#define BB_ADDITIONAL_PATH ""
#endif
const char bb_PATH_root_path[] ALIGN1 =
"PATH=/sbin:/usr/sbin:/bin:/usr/bin" BB_ADDITIONAL_PATH;
因此默认情况下PATH会包含如下一些目录:/sbin:/usr/sbin:/bin:/usr/bin
使用qemu验证一下:
/ # echo $PATH
/sbin:/usr/sbin:/bin:/usr/bin
/ #
情况和上述分析是一致的。这也就是为什么我们默认把集成的系统,可执行程序都放置到上述目录的原因。
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献14条内容
所有评论(0)