感谢老D博客整理更新这些科学上网Hosts
Tips
A ton of data to import with a shell
Standardschema_import.sh
Installing SoftEther VPN Server
Standardapt-get update; apt-get install build-essential; cd; wget http://www.softether-download.com/files/softether/v4.21-9613-beta-2016.04.24-tree/Linux/SoftEther_VPN_Server/64bit_-_Intel_x64_or_AMD64/softether-vpnserver-v4.21-9613-beta-2016.04.24-linux-x64-64bit.tar.gz; tar zxf softether-vpnserver-v4.21-9613-beta-2016.04.24-linux-x64-64bit.tar.gz; cd vpnserver/; make; cd; mv vpnserver /usr/local/; vi /etc/init.d/vpnserver; #!/bin/sh DAEMON=/usr/local/vpnserver/vpnserver LOCK=/var/lock/subsys/vpnserver test -x $DAEMON || exit 0 case "$1" in start) $DAEMON start touch $LOCK ;; stop) $DAEMON stop rm $LOCK ;; restart) $DAEMON stop sleep 3 $DAEMON start ;; *) echo "Usage: $0 {start|stop|restart}" exit 1 esac exit 0 chmod +x /etc/init.d/vpnserver; /etc/init.d/vpnserver start; |
转Linux Performance
Standard链接...
难得今天zabbix上的实例和服务全绿,拍照^_^
Standard截屏...
Jenkins安装配置
Standard步骤...
春节快乐
StandardPretty Git branch graphs
Standardgit config --global alias.logtree "log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold cyan)%aD%C(reset) %C(bold green)(%ar)%C(reset)%C(bold yellow)%d%C(reset)%n'' %C(white)%s%C(reset) %C(dim white)- %an%C(reset)' --all"
How to Use PGP Encryption With Gmail
Standard视频...
精确调整Sublime的布局
Standard按ctrl+` 键入window.get_layout()回车查看当前layout,然后结合下面的图一看你就会明白了。 ...