linux调整tmp目录,linux – 如何将默认/ tmp更改为/ home / user / tmp
我不确定java applet在启动之前是否会实际查看环境变量,但你可以编辑/ etc / profile并添加以下行:if [[ -O /home/$USER/tmp && -d /home/$USER/tmp ]]; thenTMPDIR=/home/$USER/tmpelse# You may wish to remove this line, it is there in
我不确定java applet在启动之前是否会实际查看环境变量,但你可以编辑/ etc / profile并添加以下行:
if [[ -O /home/$USER/tmp && -d /home/$USER/tmp ]]; then
TMPDIR=/home/$USER/tmp
else
# You may wish to remove this line, it is there in case
# a user has put a file 'tmp' in there directory or a
rm -rf /home/$USER/tmp 2> /dev/null
mkdir -p /home/$USER/tmp
TMPDIR=$(mktemp -d /home/$USER/tmp/XXXX)
fi
TMP=$TMPDIR
TEMP=$TMPDIR
export TMPDIR TMP TEMP
要使它成为一个真正的tmp目录(如文件在会话结束时消失,你将需要编辑用户的.bash_logout以及骨架.bash_logout(/etc/skel/.bash_logout)以包含以下内容:
if [ -O $TMPDIR && -d $TMPDIR ]; then
rm -rf $TMPDIR/*
fi
注销部分很危险,因为变量未设置并且您以root身份登录!我不会将此添加到root帐户或任何轮组成员!继续你自己的谨慎行事.
更多推荐
所有评论(0)