此方案的前提是你需要有一个可以正常安装系统的“亮机卡”,同时在有“亮机卡”的时候就设置好 BIOS 并安装好 DG1 的驱动。 目前情况是设置好之后可以正常进 BIOS 设置。
因为涉及到 BIOS 中的隐藏选项,所以使用 BiosConfigUtility 工具实现 BIOS 的修改。
使用以下命令获取当前BIOS设置:
BiosConfigUtility /GetConfig:"bios.txt"
此方案的前提是你需要有一个可以正常安装系统的“亮机卡”,同时在有“亮机卡”的时候就设置好 BIOS 并安装好 DG1 的驱动。 目前情况是设置好之后可以正常进 BIOS 设置。
因为涉及到 BIOS 中的隐藏选项,所以使用 BiosConfigUtility 工具实现 BIOS 的修改。
使用以下命令获取当前BIOS设置:
BiosConfigUtility /GetConfig:"bios.txt"
package calendar; | |
public class TestCalendar { | |
public static void main(String[] args) { | |
ViewCalendar vc = new ViewCalendar(2015); | |
vc.print(); | |
// vc.print(9); | |
} | |
} |
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>CIDR Match</title> | |
</head> | |
<body> | |
<table> | |
<tbody> | |
<tr> |
iptab_r() { | |
local LOCAL_IP BODY | |
LOCAL_IP=$(uci get network.lan.ipaddr 2>/dev/null) | |
BODY=$(echo -e "$IPLIST" | \ | |
awk '$1 ~ /^([0-9]{1,3}\.){3}[0-9]{1,3}/ \ | |
{printf("-A SHADOWSOCKS -d %s -j RETURN\n", $1)}') | |
iptables-restore -n <<-EOF | |
*nat | |
:SHADOWSOCKS - [0:0] |
#!/bin/bash | |
DELAY=5 | |
PID_FILE=/tmp/systatus.pid | |
OUT_FILE=/tmp/systatus.json | |
RX_FILE=/sys/class/net/eth0/statistics/rx_bytes | |
TX_FILE=/sys/class/net/eth0/statistics/tx_bytes | |
TEMP_FILE=/sys/class/thermal/thermal_zone0/temp | |
if [ "stop" = "$1" ]; then |
#!/bin/sh | |
CD_VER="1.1.8" | |
CD_SHA="324844f" | |
CD_RLS="1" | |
SS_VER="1.5.3" | |
SS_SHA="5cc562f" | |
SS_RLS="1" | |
SV_VER="0.1.4" | |
SV_SHA="0d51fd3" |
#!/bin/sh | |
# Get argument | |
getopts :c: opt && CONFIG=$OPTARG | |
getopts :i: opt && IGNORE=$OPTARG | |
# Check argument | |
[ -z $CONFIG ] || [ -z $IGNORE ] && { | |
echo "Missing argument" | |
exit 128 |
--- a/ngx_http_autoindex_module.c Tue Aug 5 19:18:36 2014 | |
+++ b/ngx_http_autoindex_module.c Wed Aug 20 14:17:28 2014 | |
@@ -40,13 +40,12 @@ | |
ngx_flag_t enable; | |
ngx_flag_t localtime; | |
ngx_flag_t exact_size; | |
+ ngx_uint_t name_length; | |
} ngx_http_autoindex_loc_conf_t; | |
#!/bin/bash | |
HOST="123.123.123:21" # FTP服务器地址 | |
USER="username" # FTP用户名 | |
PASS="password" # FTP密码 | |
SCD="/" # 远程根目录 | |
LCD="/home/www/" # 本地根目录 | |
LST="dir1 dir2 dir3" # 要同步的目录, 空格隔开 | |
for RCD in $LST; do |