MobaXterm设置相对路径

User private Key的地方填写如下即可:

_CurrentFolder_\vpskey
````
这样只需要打包ini和key即可完全实现便携化。

----------

**免费便携版版设置主密码方法:**

用如下配置即可:(另存为`MobaXterm.ini`)

[Misc]
PasswordsInRegistry=0

[Passwords]
mobauser@mobaserver=EZKcWRpmc7Kw6K8jNAUZXOnU1RYESBwtF54=

centos版besttrace

cd
mkdir besttrace
cd besttrace
wget https://cdn.ipip.net/17mon/besttrace4linux.zip
unzip besttrace4linux.zip
rm -f besttrace4linux.zip
chmod +x besttrace
./besttrace -q 1 61.139.2.69

个性化Shell命令提示符及颜色

一键命令

echo "PS1='\[\e[1;32;40m\][\t \u@\h \W]\$ \[\e[0m\]'" >> ~/.bashrc && source ~/.bashrc

先贴个我的配置:

PS1='\[\e[1;32;40m\][\t \u@\h \W]\$ \[\e[0m\]'

显示样式:

[11:14:57 root@centos7 /]#

其他样式:

PS1='\[\e[1;32;40m\][\u@\h:\t \W]\$ \[\e[0m\]'

显示样式:

[root@centos7:11:11:25 ~]$ 

Shell命令提示符及颜色是由.bashrc里面的PS1环境变量控制的,所以我们修改PS1即可。

-- 阅读剩余部分 --