私は Sugar on a Stick (Fedora 23)0.106 fori686をディストリビューションとして使用しています。
ターミナルを使用すると、非常に奇妙な動作をします。
たとえば、ls
と入力すると、]777;notify;Command completed;ls[sugar] #
が得られます。ここで、[sugar] #
はPS1
環境変数の値です。
私の.bashrc
は次のようになります:
# .bashrc
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
# Prompt
PS1="[sugar] # "
# Uncomment the following line if you don't like systemctl's auto-paging feature:
# export SYSTEMD_PAGER=
# User specific aliases and functions
Source global definitions
セクションをコメントアウトすると、問題は解消されます。しかし、/etc/bashrc
を変更したいとき、このファイルを変更するのは賢明ではないことを読みました。ファイルは次のとおりです。
# /etc/bashrc
# System wide functions and aliases
# Environment stuff goes in /etc/profile
# It's NOT a good idea to change this file unless you know what you
# are doing. It's much better to create a custom.sh Shell script in
# /etc/profile.d/ to make custom changes to your environment, as this
# will prevent the need for merging in future updates.
# are we an interactive shell?
if [ "$PS1" ]; then
if [ -z "$Prompt_COMMAND" ]; then
case $TERM in
xterm*|vte*)
if [ -e /etc/sysconfig/bash-Prompt-xterm ]; then
Prompt_COMMAND=/etc/sysconfig/bash-Prompt-xterm
Elif [ "${VTE_VERSION:-0}" -ge 3405 ]; then
Prompt_COMMAND="__vte_Prompt_command"
else
Prompt_COMMAND='printf "\033]0;%s@%s:%s\007" "${USER}" "${HOSTNAME%%.*}" "${PWD/#$HOME/\~}"'
fi
;;
screen*)
if [ -e /etc/sysconfig/bash-Prompt-screen ]; then
Prompt_COMMAND=/etc/sysconfig/bash-Prompt-screen
else
Prompt_COMMAND='printf "\033k%s@%s:%s\033\\" "${USER}" "${HOSTNAME%%.*}" "${PWD/#$HOME/\~}"'
fi
;;
*)
[ -e /etc/sysconfig/bash-Prompt-default ] && Prompt_COMMAND=/etc/sysconfig/bash-Prompt-default
;;
esac
fi
# Turn on parallel history
shopt -s histappend
history -a
# Turn on checkwinsize
shopt -s checkwinsize
[ "$PS1" = "\\s-\\v\\\$ " ] && PS1="[\u@\h \W]\\$ "
# You might want to have e.g. tty in Prompt (e.g. more virtual machines)
# and console windows
# If you want to do so, just add e.g.
# if [ "$PS1" ]; then
# PS1="[\u@\h:\l \W]\\$ "
# fi
# to your custom modification Shell script in /etc/profile.d/ directory
fi
if ! shopt -q login_Shell ; then # We're not a login Shell
# Need to redefine pathmunge, it get's undefined at the end of /etc/profile
pathmunge () {
case ":${PATH}:" in
*:"$1":*)
;;
*)
if [ "$2" = "after" ] ; then
PATH=$PATH:$1
else
PATH=$1:$PATH
fi
esac
}
# By default, we want umask to get set. This sets it for non-login Shell.
# Current threshold for system reserved uid/gids is 200
# You could check uidgid reservation validity in
# /usr/share/doc/setup-*/uidgid file
if [ $UID -gt 199 ] && [ "`id -gn`" = "`id -un`" ]; then
umask 002
else
umask 022
fi
Shell=/bin/bash
# Only display echos from profile.d scripts if we are no login Shell
# and interactive - otherwise just process them to set envvars
for i in /etc/profile.d/*.sh; do
if [ -r "$i" ]; then
if [ "$PS1" ]; then
. "$i"
else
. "$i" >/dev/null
fi
fi
done
unset i
unset -f pathmunge
fi
# vim:ts=4:sw=4
私はそれについて何ができますか?
PS1
環境変数に加えて、Prompt_COMMAND
環境変数もプロンプトに影響します。 bashのmanページから:
設定されている場合、値は各プライマリプロンプトを発行する前にコマンドとして実行されます
不要なコンテンツをプロンプトに追加しているのはそのコマンドです。 .bashrcの変数の設定を解除することで、この動作を停止できます。
unset Prompt_COMMAND
EL7では、mate-terminalおよびvte *パッケージの更新が機能していることがわかりました。
Mateは同じプロセスを維持し、新しいウィンドウを起動するため、すべてのmateターミナルを閉じて再度開く必要があります。そのため、新しいライブラリを起動するには、最初からやり直す必要があります。
これは、ユーザーの端末からsuを実行しているときにFed28でも発生します。 「su-」を実行しても、この問題は発生しません。
/ etc/bashrcと/etc/profile.d/vte.shの両方に、環境をテストするための同一のコードスニペットがあります。 Prompt_COMMANDを設定します。コードをいじると、実行されているのは前者であることがわかります。
示されているように文字列にコメントします
Sudo vim /etc/profile.d/vte.sh ... _vte_Prompt_command(){ ... #printf "\033] 777; notify;コマンドが完了しました;%s\007\033] 0;%s @%s:%s\007%s "" $ {command} "" $ {USER} "" $ {HOSTNAME %% 。*} "" $ {pwd} "" $(__ vte_osc7) " }