ubuntu下关于/etc/profile的问题请教高手:)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ubuntu下关于/etc/profile的问题请教高手:)相关的知识,希望对你有一定的参考价值。

配置tomcat5.5时,改动了profile文件,后来我又把自己添加的东西给删掉了,可是现在进不去ubuntu了,提示错误信息为:ubuntu /etc/profile:1:Syntax error:"(" unexpected
现在我的profile文件内容如下:
# /etc/profile: system-wide .profile file for the Bourne shell (sh(1))
# and Bourne compatible shells (bash(1), ksh(1), ash(1), ...).

if [ -d /etc/profile.d ]; then
for i in /etc/profile.d/*.sh; do
if [ -r $i ]; then
. $i
fi
done
unset i
fi

if [ "$PS1" ]; then
if [ "$BASH" ]; then
PS1='\u@\h:\w\$ '
if [ -f /etc/bash.bashrc ]; then
. /etc/bash.bashrc
fi
else
if [ "`id -u`" -eq 0 ]; then
PS1='# '
else
PS1='$ '
fi
fi
fi

umask 022

请高人指点一下怎么回出问题呢?

rm掉,系统会自动重新生成。
或者你可以看看同目录底下有没有profile.bak,profile.backup,profile.******
如果有,直接重命名覆盖源文件。
参考技术A 你把前面两行的注释去掉或者用##看下.
有时候一个#没办法起到注释的作用.
参考技术B 开机的时候grub是按Esc,选择recovery模式,后面修复你的系统!

修改ubuntu按下关机键触发的事件

gsettings set org.gnome.settings-daemon.plugins.power button-power shutdown

will change your the behaviour of the power button of your system from interactive (default) to immediate normal shutdown.

The command is gsettings set org.gnome.settings-daemon.plugins.power button-power <option>

Available options are:

  • Blank: does nothing
  • Suspend: makes your system suspend
  • Shutdown: starts a normal issued shutdown procedure
  • Hibernate: hibernates your system
  • Nothing: does nothing
  • Log out: log your user out

参考链接:http://askubuntu.com/questions/430776/how-can-i-modify-the-power-button-behaviour

以上是关于ubuntu下关于/etc/profile的问题请教高手:)的主要内容,如果未能解决你的问题,请参考以下文章

Ubuntu 解决 /etc/rc.local 开机启动问题

ubuntu里面的/etc/ssh/sshd_config 这个文件全是空的,怎么回事?怎么解决?

Ubuntu网络管理以及NetworkManager和/etc/init.d/networking区别

为啥在ubuntu的终端输入的命令sudo mkdir /etc/mentohust 后说 找不到命令

ubuntu18.04 /etc/resolv.conf 文件问题

ubuntu下/etc/init.d/下面的脚本全都无效,没有任何回执信息,也没有错误提示,而且还没有起作用