Ubuntu下profile,bashrc

系统级环境变量设置

/etc/profile

这个对所有用户有效,当用户第一次登录时,该文件被执行.并从/etc/profile.d目录的配置文件中搜集shell的设置.

英文描述为:

# /etc/profile

# System wide environment and startup programs,for login setup
# Functions and aliases Go in /etc/bashrc

# It's NOT a good idea to change this file unless you kNow what you
# are doing. It's much better to create a custom.sh shell script in
# /etc/profile.d/ to make custom changes to your environment,as this
# will prevent the need for merging in future updates.

/etc/environment

这个文件里面就一个PATH环境变量,它的执行顺序是晚于/etc/profile

用户级环境变量配置

~/.profile

这个文件类似于/etc/profile,只是它是针对用户级的,每一个用户都会有一个自己的.profile,这个文件调用~/.bashrc(如果存在的话)

~/.bashrc

登录时以及每次打开新的shell时,该文件被读取.(每个用户都有一个.bashrc文件,在用户目录下)。当修改了.bashrc的内容,不需要重启生效,只要重新打开一个bash即可生效

临时环境变量配置

export命令
export PATH= HOME/bin: PATH

其他配置文件

~/.bash_logout

每次退出系统时执行

系统级与用户级执行顺序

/etc/profile–>/etc/environment–>$HOME/.profile

相关文章

目录前言一、创建Hadoop用户二、更新apt和安装Vim编辑器三、...
原文连接:https://www.cnblogs.com/yasmi/p/5192694.html ...
电脑重启后,打开VirtualBox,发现一直用的虚拟机莫名的消失...
参见:https://blog.csdn.net/weixin_38883338/article/deta...
Ubuntu 18.04 LTS 已切换到 Netplan 来配置网络接口。Netpla...
介绍每个 Web 服务都可以通过特定的 URL 在 Internet 上访问...