我想自动启动一个 shell 脚本,因此我将这行添加到我的/etc/profile
:
/bin/su -c "/path/to/my/script" user -
脚本本身启动 xterm shell 命令并在自动启动期间输出以下错误:
xterm: cannot load font '-misc-fixed-medium-r-semicondensed--13-120-75-75-c-60-iso10646-1'
=> 如果我手动启动 xterm 脚本,则不会遇到任何问题
我该如何解决这个问题?
答案1
添加脚本帮~/.bash_profile
我解决了问题。无需更改用户。(感谢@user2965433)
因此只需附加:
/path/to/my/script
至~/.bash_profile
所需用户。