0%

tmux创建后台会话

QQ群:397745473

The following is a “Hello World” example illustrating the use of the send-keys command.

  • Step 1. Create a detached session:

    1
    user@host:~$ tmux new -d -s mySession
  • Step 2: Execute a command in the detached session:

    1
    user@host:$ tmux send-keys -t mySession.0 "echo 'Hello World'" ENTER
  • Step 3: Attach to the session:

    1
    user@host:$ tmux a -t mySession
阅读全文 »

IIS 8.5 隐藏 X-Powered-By 及 X-Powered-By 信息

网上搜了很久,尝试了很多方法,觉得这种办法最靠谱,已经测试通过.

网上其中有办法是装个IIS插件,结果把IIS给搞挂了.尴尬.现在这种办法是用正则过滤,效果能符合PCI 要求

QQ群:397745473

阅读全文 »