通常情况下,/etc/profile文件是只读的,直接用vi或gedit打开修改后是无法保存的。要修改profile,需要取得root权限,(使用gedit编辑)应该如下:
$sudo gedit /etc/profile
或者
$sudo -s
$gedit /etc/profile
这样打开profile文件,修改后就可以保存了。
让修改后的profile文件立即生效的方法:
法1:
$. /etc/profile
.和/etc/profile之间有一个空格
法2:
$source /etc/profile
source命令也称为“点命令”,也就是一个点符号(.)。source命令通常用于重新执行刚修改的初始化文件,使之立即生效,而不必注销并重新登录。
Linux /etc/profile文件详解:http://www.linuxdiyf.com/linux/11204.html
Linux修改/etc/profile导致进不去系统:http://www.linuxdiyf.com/linux/5493.html