fedora 9を実行しているx86ターゲットで作業しています。
再起動するたびに、履歴が何らかの状態に戻り、再起動前のセッションで行ったコマンドがありません。
再起動前に履歴を更新するには、何を変更する必要がありますか?
fedora 9を実行しているx86ターゲットで作業しています。
再起動するたびに、履歴が何らかの状態に戻り、再起動前のセッションで行ったコマンドがありません。
再起動前に履歴を更新するには、何を変更する必要がありますか?
回答:
私は同じ問題に苦しんでいましたが、私の.bashrc
ファイルにはすでにshopt -s histappend
正しい修正HISTFILE
がHISTSIZE
ありましたHISTFILESIZE
。
私にとって問題は、.bash_history
ファイルがユーザー名ではなくルートに所有されているため、ユーザーが終了時にそのファイルに保存できないことでした。
sudo chmod your_user_name .bash_history
それをやった!ありがとう。
sudo chown user_name:user_name ~.bash_history
それを解決しました!
環境変数HISTFILE、HISTSIZE、HISTFILESIZEを検索します。
セッションまたはタスクごとに履歴ファイルを設定するためのスクリプトを作成しましたが、これは以下に基づいています。
# write existing history to the old file
history -a
# set new historyfile
export HISTFILE="$1"
export HISET=$1
# touch the new file to make sure it exists
touch $HISTFILE
# load new history file
history -r $HISTFILE
すべての履歴コマンドを保存する必要はありませんが、関心のあるコマンドを保存し、すべてのコマンドを実行するよりも簡単に取得できます。私のバージョンはすべての履歴ファイルもリストし、それらすべてを検索する機能を提供します。
完全なソース:https : //github.com/simotek/scripts-config/blob/master/hiset.sh
.bashrcに次のことを実現する行をいくつか書きました:各コマンドの後にすべてのセッションをファイルに保存します。端末を起動したのと同じ数の履歴ファイルがあります。最新の履歴ファイルから新しい端末を起動すると、行カウントのしきい値に達するまで、以前のセッションからのすべての履歴ファイルを履歴バッファにロードします。
HISTCONTROL=''
HISTFOLDER=~/.bash_histories
HISTFILEEXT=history # only files in $HISTFOLDER with this extension will be read
shopt -s histappend # append when closing session
mkdir -p $HISTFOLDER
HISTFILE=$HISTFOLDER/$(date +%Y-%m-%d_%H-%M-%S_%N).$HISTFILEEXT # create unique file name for this session. Nanoseconds seems to be unique enough, try: for ((i=0; i<=10; i++)); do date +%Y-%m-%d_%H-%M-%S_%N; done
# if HISTFILE unset, history is not saved on exit -> not really necessary if we save after each command, but its a double net safety
HISTSIZE=-1 # maximum number of commands to hold inside bash history buffer
HISTFILESIZE=-1 # maximum number of lines in history file
# history -a $HISTFILE # bash saves the total history commands entered since startup or since the last save and saves that amount of commands to the file. This means reading a history file after typing commands will trip up bash, but this won't be a problem if the history file is only loaded in the beginning. This means that only new commands are saved not all the old loaded commands, thereby we can load as many history files into the buffer as we want and still only save newly thereafter typed commands
PROMPT_COMMAND="history -a $HISTFILE; $PROMPT_COMMAND" # This command is executed after very typed command -> save history after each command instead after only closing the session
# Load old histories from last 5 files/sessions
HISTLINESTOLOAD=2000
# --reverse lists newest files at first
names=($(ls --reverse $HISTFOLDER/*.$HISTFILEEXT 2>/dev/null))
toload=()
linecount=0
# Check if is really file and count lines and only append to $toload if linecount under $HISTLINESTOLOAD
for fname in ${names[*]}; do
if test -f $fname; then
linecount=$((linecount+$(wc -l < $fname) ))
if test $linecount -ge $HISTLINESTOLOAD; then
break
fi
toload+=($fname)
fi
done
# Beginning with the oldest load files in $toload into bash history buffer
for (( i=${#toload[*]}-1; i>=0; i-- )); do
history -r ${toload[$i]}
done
この質問に対する良い答えはこちらです:
http://linuxcommando.blogspot.com/2007/11/keeping-command-history-across-multiple.html