如何增加root的path
在hp-ux 11.31 中,请问如何增加root 的path,并使之生效。
目前有一个path下面的命令不能直接运行,每次telnet后,都需要export PATH=$PAHT:mypath,才能运行mypath目录中的命令,请问有什么法子修改root的path呢?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
奇怪了,应该没问题的,直接在根下的.profile文件中修改,在path后面加入执行命令的路径就可以了.
# @(#)B11.23_LR
# Default (example of) super-user's .profile file
# Do not put "." in PATH; it is a potential security breach.
# Do not put "/usr/local/bin" in PATH; it is a potential security breach.
# Example assumes /home/root exists.
set +u
PATH=/usr/sbinPATH:/sbin:/home/root:/home/oracle
11.23系统,我这边测试没有任何问题
有没有export了,
你是用的什么SHELL
应该是你格式写错了,正确的格式参考我下面贴的,good luck!
# Set up the search paths:
PATH=$PATH:/production/com:/usr/vue/bin:
注意最后的冒号。
在根目录下面的.profile ,已经有了 PATH=$PATH:/mypath ,但是echo $PATH,还是没有出现想要的PATH.