.bash_profile 加载】的更多相关文章

1.Debian默认的shell是Bash, 1.1 命令行 和 ssh 登录 ,首先读入 /etc/profile,这是对所有用户都有效的配置:然后依次寻找下面三个文件,这是针对当前用户的配置. ~/.bash_profile ~/.bash_login ~/.profile 需要注意的是,这三个文件只要有一个存在,就不再读入后面的文件了.比如,要是 ~/.bash_profile 存在,就不会再读入后面两个文件了. 1.2 图形界面登录:只加载 /etc/prfile 和 ~/.profil…
修改了bashrc, 新开一个终端都要source一下才起作用. 网上有说需要在 . bash_profile加载一次.bashrc. 但是这个和我的问题不一样. 我用的是zsh,需要修改~/.zshrc 以下是我在某乎找到的 zsh 是 zsh,bash 是 bash.zsh 没有义务加载 /etc/bashrc,bash 也不会加载 /etc/zshenv.你要放环境变量的话按 OS X 规矩 /etc/paths.d 自己加一个文件放.bashrc 注释里 for interactive…
我用的zsh,由于平时设置的环境变量都是在.bash_profile文件中,每次重启iterm后,都需要重启手动加载.bash_profile文件,很麻烦. 设置自动加载.bash_profile的方法如下: 在.zshrc配置文件中调用.bash_profile文件 打开zsh的配置文件.zshrc,在最后面添加一行代码source /Users/chenchengda/.bash_profile(也可以用相对路径,不过我比较喜欢用绝对路径,不容易出错),这样重启iterm便会自动加载.bas…
转自 https://blog.csdn.net/secondjanuary/article/details/9206151 文件说明: /ect/profile 此文件为系统的每个用户设置环境信息,当用户第一次登录时,该文件被执行.并从/etc/profile.d目录的配置文件中搜集shell的设置. /etc/bashrc 为每一个运行bash shell的用户执行此文件.当bash shell被打开时,该文件被读取. ~/.bash_profile 每个用户都可使用该文件输入专用于自己使用…
目录 一.关于linux配置文件 二.验证四个配置文件的加载顺序 三.结论 一.关于linux配置文件 1.linux下主要有四个配置文件:/etc/profile ./etc/bashrc ./root/.bashrc ./root/.bash_profile. ​ /etc/profile 设置的是系统全局环境和登录系统的一些配置,该配置对所有用户生效: ​ /etc/bashrc 是shell 全局自定义配置文件,主要用于自定义 shell,该配置对所有用户的shell都生效: ​ /ro…
Ubuntu下启动的时候的的加载环境变量的过程大致为: /etc/enviroment /etc/profile   -->/etc/bash.bashrc   --> /etc/profile     -->/etc/profile.d 下的所有.sh文件 ~/.profile (或~/.bash_profile 或 ~/.bash_login)   -->~/.bashrc (如果在运行bash才运行)     -->~/.bash_aliases     -->/…
无意中将home下的所有文件都删除了,一些配置文件都丢了. 重新登陆后,发现无法加载bashrc. 查找后,发现问题不在于bashrc,而在与.bash_profile丢失 login shell mode 只会读取 ~/.bash_profile , ~/.bash_login , ~/.profile 里面其中一个而已. 将其他系统上的.bash_profile 拷贝来即可,或者 # .bash_profile # Get the aliases and functions if [ -f…
linux加载配置项时通过下面方式 首先 加载/etc/profile配置 然后 加载/ect/profile.d/下面的所有脚本 然后 加载当前用户 .bash_profile 然后 加载.bashrc 最后 加载 [/etc/bashrc] /etc/profile → /etc/profile.d/*.sh → ~/.bash_profile → ~/.bashrc → [/etc/bashrc]…
本文目录: 1.1 判断是否交互式.是否登录式 1.2 几种常见的bash启动方式 1.3 加载bash环境配置文件 当用户登录系统时,会加载各种bash配置文件,还会设置或清空一系列变量,有时还会执行一些自定义的命令.这些行为都算是启动bash时的过程. 另外,有些时候登录系统是可以交互的(如正常登录系统),有些时候是无交互的(如执行一个脚本),因此总的来说bash启动类型可分为交互式shell和非交互式shell.更细分一层,交互式shell还分为交互式的登录shell和交互式非登录shel…
加载顺序,默认是没有 .bash_profile 文件 1. non-login 方式 ~$ su deepin run /ect/bash.bashrc run .bashrc 2.login 方式 ~$ su - deepin run /ect/profile run /ect/bash.bashrc run .profile run .bashrc =====复制 .profile 改名为 .bash_profile ========= 3. non-login 方式 同1 4.login…