vim /etc/ssh/sshd_config修改如下:
PubkeyAuthentication yes
| #!/bin/bash | |
| # 设置严格模式 | |
| set -euo pipefail | |
| # 配置参数 | |
| LANG="zh-CN" | |
| #SAVE_PATH="/volume1/myshare/wallpaper" | |
| DESKTOP="yes" |
| #!/usr/bin/env python2 | |
| # lrdcq | |
| # usage python2 unwxapkg.py filename | |
| import sys, os | |
| import struct | |
| class WxapkgFile(object): | |
| nameLen = 0 |