从 /etc/profile 运行 xterm 脚本导致“无法加载字体”

从 /etc/profile 运行 xterm 脚本导致“无法加载字体”

我想自动启动一个 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所需用户。

相关内容