在Linux/MacOSX上部署AList和clouddrive

网站所有资源都有,可联系VX:kanyingvip

AList 是一个开源的网盘文件罗列程序,它支持数十个网盘的挂载,并提供 WebDav 的访问方式。

clouddrive

clouddrive
原文:思考者 (chenyanggao.github.io)  TG:https://t.me/cloudnaschat

clouddrive 是一个闭源的网盘文件罗列程序,虽然它只支持几个网盘,但是也有独特的功能,例如把 阿里云盘 的文件搬运到 115网盘。它支持 WebDav 和 挂载到磁盘本地(需要 fusermount 支持) 的访问方式。

我编写了 2 个脚本:deploy-alist.sh 可用于一键部署 alist,deploy-clouddrive.sh 可用于一键部署 clouddrive。您的设备上可能有一个应用商店,本身就提供了安装 alist 或 clouddrive,或者你使用了官方提供的一键部署脚本(但支持的平台有限),或者你用 docker 来部署,等等,这样你可能用不到我的脚本。不过如果你的平台上找不到可用的一键部署方案,不如尝试一下我的办法吧😂。

代码实现

TIPS 代码的最新版本在 GitHub Gist 中维护
https://gist.github.com/ChenyangGao/e8e520de651e6375dad552b5a761902f

1. 部署 AList

文件名称是 deploy-alist.sh,您可以用 bash 或 zsh 运行代码,由于用到了一些较新的语法,请确保你的解释器版本不能太低:

deploy-alist.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
#!/usr/bin/env bash

# NOTE 这个脚本可以用 bash 或 zsh 运行,在 Linux 下请用 root 权限运行,否则不会尝试设置开机自启动服务
# NOTE 可用环境变量 VERSION 指定要下载的版本号
# NOTE 可用环境变量 NOSTARTUP 禁用自动设置开机启动

# NOTE 操作系统中必须安装有 wget (我不用 curl,因为 curl 访问 github 好像有 bug,经常返回空页面)
if ! command -v wget >&-; then
echo “请安装 wget”
exit 1
fi

# inetutils (apt)
# net-tools (yum)
get-local-ipv4-using-hostname() {
hostname -I 2>&- | awk ‘{print $1}’
}

# iproute2
get-local-ipv4-using-iproute2() {
# OR ip route get 1.2.3.4 | awk ‘{print $7}’
ip -4 route 2>&- | awk ‘{print $NF}’ | grep -Eo –color=never ‘[0-9]+(.[0-9]+){3}’
}

# net-tools
get-local-ipv4-using-ifconfig() {
( ifconfig 2>&- || ip addr show 2>&- ) | grep -Eo ‘^s+inets+S+’ | grep -Eo ‘[0-9]+(.[0-9]+){3}’ | grep -Ev ‘127.0.0.1|0.0.0.0’
}

# 获取本机 IPv4 地址
get-local-ipv4() {
set -o pipefail
get-local-ipv4-using-hostname || get-local-ipv4-using-iproute2 || get-local-ipv4-using-ifconfig
}

# 获取本机 IPv4 地址(只取第一个)
get-local-ipv4-select() {
local ips=$(get-local-ipv4)
local retcode=$?
if [ $retcode -ne 0 ]; then
return $retcode
fi
grep -m 1 “^192.” <<<“$ips” ||
grep -m 1 “^172.” <<<“$ips” ||
grep -m 1 “^10.” <<<“$ips” ||
head -n 1 <<<“$ips”
}

# 操作系统的名称
PLATFORM=$(uname -s)
# 操作系统的 CPU 架构
ARCH=$(uname -m)
# alist 项目的 github 主页链接
ALIST_GITHUB_URL=https://github.com/alist-org/alist
# 默认的 alist 软件包,会根据系统信息自动确定,不能确定的留空
ALIST_DEFAULT_ASSET=
# 已选择的 alist 软件包,此参数被 download-asset 函数设置
ALIST_SELECTED_ASSET=
if [ “$PLATFORM” = ‘Darwin’ ]; then
if [ “$ARCH” = ‘arm64’ ] || [ “$ARCH” = ‘aarch64’ ]; then
ALIST_DEFAULT_ASSET=alist-darwin-arm64.tar.gz
elif [ “$ARCH” = ‘x86_64’ ] || [ “$ARCH” = ‘amd64’ ]; then
ALIST_DEFAULT_ASSET=alist-darwin-amd64.tar.gz
fi
elif [ “$PLATFORM” = ‘Linux’ ]; then
if [ “$ARCH” = ‘arm64’ ] || [ “$ARCH” = ‘aarch64’ ]; then
ALIST_DEFAULT_ASSET=alist-linux-musl-arm64.tar.gz
elif [ “$arch” = ‘armv7l’ ]; then
ALIST_DEFAULT_ASSET=alist-linux-musleabihf-armv7l.tar.gz
elif [ “$ARCH” = ‘x86_64’ ] || [ “$ARCH” = ‘amd64’ ]; then
ALIST_DEFAULT_ASSET=alist-linux-musl-amd64.tar.gz
elif [ “$ARCH” = ‘mips’ ]; then
ALIST_DEFAULT_ASSET=alist-linux-musl-mips.tar.gz
elif [ “$ARCH” = ‘mipsle’ ]; then
ALIST_DEFAULT_ASSET=alist-linux-musl-mipsle.tar.gz
elif [ “$ARCH” = ‘mips64’ ]; then
ALIST_DEFAULT_ASSET=alist-linux-musl-mips64.tar.gz
elif [ “$ARCH” = ‘mips64le’ ]; then
ALIST_DEFAULT_ASSET=alist-linux-musl-mipsle.tar.gz
elif [ “$ARCH” = ‘ppc64le’ ]; then
ALIST_DEFAULT_ASSET=alist-linux-musl-ppc64le.tar.gz
elif [ “$ARCH” = ‘riscv64’ ]; then
ALIST_DEFAULT_ASSET=alist-linux-riscv64.tar.gz
elif [ “$ARCH” = ‘s390x’ ]; then
ALIST_DEFAULT_ASSET=alist-linux-musl-s390x.tar.gz
fi
# NOTE 暂时不管 Windows
# elif [ $PLATFORM = ‘Windows’ ]; then
fi

# 当前系统所用的进程启动器
SYSTEM_INIT=
if [ -n “${NOSTARTUP+x}” ]; then
SYSTEM_INIT=unset
elif [ “$PLATFORM” = ‘Darwin’ ]; then
SYSTEM_INIT=$(ps -p 1 -o comm=)
elif [ “$PLATFORM” = ‘Linux’ ]; then
# ps -p 1 -o comm= # NOTE 也可以用这个命令,但是但有些嵌入式系统,ps 没有 -p 选项
# SYSTEM_INIT=$(cat /proc/1/cmdline)
SYSTEM_INIT=$(cat /proc/1/comm)
# NOTE 暂时不管 Windows
# elif [ $PLATFORM = ‘Windows’ ]; then
# # services.exe 和 lsass.exe 进程通常是由 Windows 的启动器(服务控制管理器)启动的
# # tasklist | findstr /i “services.exe lsass.exe”
fi

# 获取某个 github 页面的响应。$1: github 链接。
request-github-url() {
local url=$1
if [ -z “$url” ]; then
echo ‘不能是空链接’
return 1
fi
if [[ $url == /* ]]; then
url=https://github.com$url
elif [ “$url” = https://github.com ]; then
true
elif [[ $url != https://github.com/* ]]; then
url=https://github.com/$url
fi
local page=$(wget -q -O – “$url”)
local retcode=$?
# NOTE 我发现,如果使用 curl,可能会因为访问失败,而返回空页面,虽然目前使用 wget,但为了以防万一
while [ -z “$page” ]; do
echo $’x1b[38;5;1mx1b[1mRETRYINGx1b[0m:’ “$url” >&2
page=$(wget -q -O – “$url”)
retcode=$?
done
if [ $retcode -ne 0 ]; then
echo -n “$page” >&2
return $retcode
fi
echo -n “$page”
}

# 获取某个项目最新的 release 链接。$1: 项目的 github 主页链接。
github-newest-release-link() {
local url=$1
if [ -z “$url” ]; then
echo ‘不能是空链接’
return 1
fi
if [[ $url == /* ]]; then
url=https://github.com$url
elif [ “$url” = https://github.com ]; then
true
elif [[ $url != https://github.com/* ]]; then
url=https://github.com/$url
fi

local release_link=$(request-github-url “$1” | grep -o “${url#https://github.com}”‘/releases/tag/[^”]+’)
if [ $? -ne 0 ] || [ -z “$release_link” ]; then
echo ‘获取 release_link 失败’
return 1
fi
release_link=https://github.com$release_link
echo -n $release_link
}

# 下载软件包,如果软件包已存在,则跳过。$1: 版本号。
download-asset() {
local version=$1
local release_link=
if [ -z “$version” ] || ! [[ “$version” =~ ^v?[0-9.]+$ ]] ; then
echo ‘版本号未知,正尝试获取最新版本 …’
release_link=$(github-newest-release-link “$ALIST_GITHUB_URL”)
local retcode=$?
if [ $retcode -ne 0 ]; then
return $retcode
fi
version=$(basename “$release_link”)
else
if ! [[ “$version” == v* ]]; then
version=v$version
fi
release_link=$ALIST_GITHUB_URL/releases/tag/$version
fi

local assets_link=”${release_link//tag///expanded_assets/}”
local assets_page=$(request-github-url “$assets_link”)

local ifs=$IFS

local var
IFS=$’n’
local links=()
for var in $(echo “$assets_page” | grep -o ‘href=”[^”]+’); do
links+=(“${var/href=”/https://github.com}”)
done
IFS=$ifs

local length=${#links[@]}

local flag=0
IFS=$’n’
local names=()
for var in $(echo “$assets_page” | grep ‘^ <span’ | grep -o ‘>[^<]*<‘); do
if [ $flag -eq 0 ]; then
names+=(“${var:1:-1}”)
flag=1
else
names[-1]=”${names[-1]}””${var:1:-1}”
flag=0
fi
done
IFS=$ifs

local default_index
if [ -n “$ZSH_VERSION” ]; then
for ((i=1; i<=$length; i++)); do
if [ “${names[$i]}” = “$ALIST_DEFAULT_ASSET” ]; then
default_index=$i
fi
printf ‘%2s | ‘ $i
echo “${names[$i]} |” “${links[$i]}”
done
else
for ((i=0; i<$length; i++)); do
if [ “${names[$i]}” = “$ALIST_DEFAULT_ASSET” ]; then
default_index=$i
fi
printf ‘%2s | ‘ $i
echo “${names[$i]} |” “${links[$i]}”
done
fi

local link name chosen_index
if [ -z “$default_index” ]; then
while true; do
echo -n “请选择一个数字:”
read chosen_index
chosen_index=$(tr -d ‘[:space:]’ <<<“$chosen_index”)
if [ -z “$chosen_index” ]; then
continue
fi
link=”${links[$chosen_index]}”
if [ -z “$link” ]; then
continue
fi
name=”${names[$chosen_index]}”
break
done
else
while true; do
echo -n “请选择一个数字(默认值 $default_index):”
read chosen_index
chosen_index=$(tr -d ‘[:space:]’ <<<“$chosen_index”)
if [ -z “$chosen_index” ]; then
chosen_index=default_index
fi
link=”${links[$chosen_index]}”
if [ -z “$link” ]; then
continue
fi
name=”${names[$chosen_index]}”
break
done
fi

ALIST_SELECTED_ASSET=${version}_$name
if ! [ -f “$ALIST_SELECTED_ASSET” ]; then
wget -O “$ALIST_SELECTED_ASSET” “$link”
fi
}

################################################################

cd ~

download-asset “$VERSION”
if [ $? -ne 0 ]; then
echo ‘获取软件包失败’ >&2
exit 1
fi

mkdir -p ~/alist.d/data
tar –overwrite -xzf “$ALIST_SELECTED_ASSET” -C alist.d

# NOTE 因为在我的 openwrt 上 pgrep 没有 -u 选项 😂
if pgrep -u a $USER &>/dev/null; then
pgrep_arr=(pgrep -u $USER)
else
pgrep_arr=(pgrep)
fi

echo
if [ $EUID -eq 0 ]; then
prep=()
else
prep=(sudo)
fi
case $(basename “$SYSTEM_INIT”) in
‘launchd’)
if [ $EUID -eq 0 ]; then
service=alist
else
service=alist-$USER
fi
service_file=”$HOME/Library/LaunchAgents/$service.plist”
mkdir -p “$HOME/Library/LaunchAgents”
echo $’x1b[38;5;2mx1b[1mService filex1b[0m:’ “$service_file”
echo $’x1b[38;5;2mx1b[1m>>>x1b[0m’
tee “$service_file” << EOF
<?xml version=”1.0″ encoding=”UTF-8″?>
<!DOCTYPE plist PUBLIC “-//Apple//DTD PLIST 1.0//EN” “http://www.apple.com/DTDs/PropertyList-1.0.dtd”>
<plist version=”1.0″>
<dict>
<key>Description</key>
<string>ALIST – 🗂️ A file list program that supports multiple storage, powered by Gin and Solidjs.</string>
<key>Documentation</key>
<string>https://alist.nn.ci/guide/</string>
<key>Label</key>
<string>com.alist</string>
<key>UserName</key>
<string>$USER</string>
<key>KeepAlive</key>
<true />
<key>ProgramArguments</key>
<array>
<string>/bin/sh</string>
<string>-c</string>
<string>’$HOME/alist.d/alist’ server –data ‘$HOME/alist.d/data'</string>
</array>
<key>RunAtLoad</key>
<true />
<key>OnDemand</key>
<false />
<key>LaunchOnlyOnce</key>
<true />
<key>StandardErrorPath</key>
<string>/tmp/$service.err</string>
<key>StandardOutPath</key>
<string>/tmp/$service.out</string>
</dict>
</plist>
EOF
if [ $? -eq 0 ]; then
echo $’x1b[38;5;2mx1b[1m<<<x1b[0m’
echo $’x1b[38;5;2mx1b[1mSTART servicex1b[0m:’ “launchctl load -w ‘$service_file'”
echo $’x1b[38;5;2mx1b[1mSTOP servicex1b[0m:’ “launchctl unload ‘$service_file'”
launchctl unload “$service_file” 2>&-
launchctl load -w “$service_file”
fi
;;
‘systemd’)
if [ $EUID -eq 0 ]; then
service=alist
else
service=alist-$USER
fi
service_file=/etc/systemd/system/$service.service
echo $’x1b[38;5;2mx1b[1mService filex1b[0m:’ “$service_file”
echo $’x1b[38;5;2mx1b[1m>>>x1b[0m’
“${prep[@]}” tee “$service_file” << EOF
[Unit]
Description=’ALIST – 🗂️ A file list program that supports multiple storage, powered by Gin and Solidjs.’
Documentation=’https://alist.nn.ci/guide/’
After=network.target

[Service]
Type=simple
User=$USER
Restart=on-failure
ExecStart=’$HOME/alist.d/alist’ server –data ‘$HOME/alist.d/data’

[Install]
WantedBy=default.target
EOF
if [ $? -eq 0 ]; then
echo $’x1b[38;5;2mx1b[1m<<<x1b[0m’
echo $’x1b[38;5;2mx1b[1mSTART servicex1b[0m:’ “service $service start”
echo $’x1b[38;5;2mx1b[1mSTOP servicex1b[0m:’ “systemctl start $service”
echo $’x1b[38;5;2mx1b[1mSTART servicex1b[0m:’ “service $service stop”
echo $’x1b[38;5;2mx1b[1mSTOP servicex1b[0m:’ “systemctl stop $service”
“${prep[@]}” systemctl enable “$service”
“${prep[@]}” systemctl stop “$service”
“${prep[@]}” systemctl start “$service”
fi
;;
‘init’)
if [ $EUID -eq 0 ]; then
service=alist
else
service=alist-$USER
fi
service_file=/etc/init/$service.conf
echo $’x1b[38;5;2mx1b[1mService filex1b[0m:’ “$service_file”
echo $’x1b[38;5;2mx1b[1m>>>x1b[0m’
“${prep[@]}” tee “$service_file” << EOF
description “ALIST – 🗂️ A file list program that supports multiple storage, powered by Gin and Solidjs.”
documentation “https://alist.nn.ci/guide/”

start on filesystem or runlevel [2345]
stop on runlevel [!2345]

respawn

exec ‘$HOME/alist.d/alist’ server –data ‘$HOME/alist.d/data’
EOF
if [ $? -eq 0 ]; then
echo $’x1b[38;5;2mx1b[1m<<<x1b[0m’
echo $’x1b[38;5;2mx1b[1mSTART servicex1b[0m:’ “service $service start”
echo $’x1b[38;5;2mx1b[1mSTOP servicex1b[0m:’ “service $service stop”
“${prep[@]}” service “$service” enable
“${prep[@]}” service “$service” stop
“${prep[@]}” service “$service” start
fi
;;
‘procd’)
if [ $EUID -eq 0 ]; then
service=alist
else
service=alist-$USER
fi
service_file=/etc/init.d/$service
echo $’x1b[38;5;2mx1b[1mService filex1b[0m:’ “$service_file”
echo $’x1b[38;5;2mx1b[1m>>>x1b[0m’
“${prep[@]}” tee “$service_file” << EOF
#!/bin/sh /etc/rc.common

USE_PROCD=1

START=99
STOP=99

Description=’ALIST – 🗂️ A file list program that supports multiple storage, powered by Gin and Solidjs.’
Documentation=’https://alist.nn.ci/guide/’

start_service() {
procd_open_instance
procd_set_param command ‘$HOME/alist.d/alist’ server –data ‘$HOME/alist.d/data’
procd_set_param respawn
procd_set_param user $USER
procd_set_param stdout 1
procd_set_param stderr 1
procd_set_param pidfile /var/run/alist-$USER.pid
procd_close_instance
}
EOF
if [ $? -eq 0 ]; then
echo $’x1b[38;5;2mx1b[1m<<<x1b[0m’
“${prep[@]}” chmod +x “$service_file”
echo $’x1b[38;5;2mx1b[1mSTART servicex1b[0m:’ “service $service start”
echo $’x1b[38;5;2mx1b[1mSTOP servicex1b[0m:’ “service $service stop”
“${prep[@]}” service “$service” enable
“${prep[@]}” service “$service” stop
“${prep[@]}” service “$service” start
fi
;;
*) # 默认情况
echo $’x1b[38;5;2mx1b[1mSTART servicex1b[0m:’ “‘$HOME/alist.d/alist’ start –data ‘$HOME/alist.d/data'”
echo $’x1b[38;5;2mx1b[1mSTOP servicex1b[0m:’ “‘$HOME/alist.d/alist’ stop”
# NOTE 如果有已经运行的实例,终结之
“${pgrep_arr[@]}” alist | xargs kill -9
“$HOME/alist.d/alist” start –data “$HOME/alist.d/data”
;;
esac

~/alist.d/alist admin –data ~/alist.d/data

echo
echo -e ‘x1b[38;5;3mDocumentationx1b[0m: https://alist.nn.ci/guide/’
echo -e “x1b[38;5;3mServer onx1b[0m: http://$(get-local-ipv4-select):5244”

2. 部署 clouddrive2

文件名称是 deploy-clouddrive.sh,您可以用 bash 或 zsh 运行代码,由于用到了一些较新的语法,请确保你的解释器版本不能太低:

deploy-clouddrive.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
#!/usr/bin/env bash

# NOTE 这个脚本可以用 bash 或 zsh 运行,在 Linux 下请用 root 权限运行,否则不会尝试设置开机自启动服务
# NOTE 可用环境变量 VERSION 指定要下载的版本号
# NOTE 可用环境变量 NOSTARTUP 禁用自动设置开机启动

# NOTE 操作系统中必须安装有 wget (我不用 curl,因为 curl 访问 github 好像有 bug,经常返回空页面)
if ! command -v wget >&-; then
echo “请安装 wget”
exit 1
fi

# inetutils (apt)
# net-tools (yum)
get-local-ipv4-using-hostname() {
hostname -I 2>&- | awk ‘{print $1}’
}

# iproute2
get-local-ipv4-using-iproute2() {
# OR ip route get 1.2.3.4 | awk ‘{print $7}’
ip -4 route 2>&- | awk ‘{print $NF}’ | grep -Eo –color=never ‘[0-9]+(.[0-9]+){3}’
}

# net-tools
get-local-ipv4-using-ifconfig() {
( ifconfig 2>&- || ip addr show 2>&- ) | grep -Eo ‘^s+inets+S+’ | grep -Eo ‘[0-9]+(.[0-9]+){3}’ | grep -Ev ‘127.0.0.1|0.0.0.0’
}

# 获取本机 IPv4 地址
get-local-ipv4() {
set -o pipefail
get-local-ipv4-using-hostname || get-local-ipv4-using-iproute2 || get-local-ipv4-using-ifconfig
}

# 获取本机 IPv4 地址(只取第一个)
get-local-ipv4-select() {
local ips=$(get-local-ipv4)
local retcode=$?
if [ $retcode -ne 0 ]; then
return $retcode
fi
grep -m 1 “^192.” <<<“$ips” ||
grep -m 1 “^172.” <<<“$ips” ||
grep -m 1 “^10.” <<<“$ips” ||
head -n 1 <<<“$ips”
}

# 操作系统的名称
PLATFORM=$(uname -s)
# 操作系统的 CPU 架构
ARCH=$(uname -m)
# clouddrive 项目的 github 主页链接
CLOUDDRIVE_GITHUB_URL=https://github.com/cloud-fs/cloud-fs.github.io
# 默认的 clouddrive 软件包,会根据系统信息自动确定,不能确定的留空
CLOUDDRIVE_DEFAULT_ASSET_PREFIX=
# 已选择的 clouddrive 软件包,此参数被 download-asset 函数设置
CLOUDDRIVE_SELECTED_ASSET=
if [ “$PLATFORM” = ‘Darwin’ ]; then
if [ “$ARCH” = ‘arm64’ ] || [ “$ARCH” = ‘aarch64’ ]; then
CLOUDDRIVE_DEFAULT_ASSET_PREFIX=clouddrive-2-macos-aarch64
elif [ “$ARCH” = ‘x86_64’ ] || [ “$ARCH” = ‘amd64’ ]; then
CLOUDDRIVE_DEFAULT_ASSET_PREFIX=clouddrive-2-macos-x86_64
fi
elif [ “$PLATFORM” = ‘Linux’ ]; then
if [ “$(uname -o)” = ‘Android’ ]; then
os=android
else
os=linux
fi
if [ “$ARCH” = ‘arm64’ ] || [ “$ARCH” = ‘aarch64’ ]; then
CLOUDDRIVE_DEFAULT_ASSET_PREFIX=clouddrive-2-$os-aarch64
elif [ “$arch” = ‘armv7l’ ] || [ “$arch” = ‘armv7’ ]; then
CLOUDDRIVE_DEFAULT_ASSET_PREFIX=clouddrive-2-$os-armv7
elif [ “$ARCH” = ‘x86_64’ ] || [ “$ARCH” = ‘amd64’ ]; then
CLOUDDRIVE_DEFAULT_ASSET_PREFIX=clouddrive-2-$os-x86_64
else
CLOUDDRIVE_DEFAULT_ASSET_PREFIX=clouddrive-2-$os-$ARCH
fi
# NOTE 暂时不管 Windows
# elif [ $PLATFORM = ‘Windows’ ]; then
fi
# 当前系统所用的进程启动器
SYSTEM_INIT=
if [ -n “${NOSTARTUP+x}” ]; then
SYSTEM_INIT=unset
elif [ “$PLATFORM” = ‘Darwin’ ]; then
SYSTEM_INIT=$(ps -p 1 -o comm=)
elif [ “$PLATFORM” = ‘Linux’ ]; then
# ps -p 1 -o comm= # NOTE 也可以用这个命令,但是但有些嵌入式系统,ps 没有 -p 选项
# SYSTEM_INIT=$(cat /proc/1/cmdline)
SYSTEM_INIT=$(cat /proc/1/comm)
# NOTE 暂时不管 Windows
# elif [ $PLATFORM = ‘Windows’ ]; then
# # services.exe 和 lsass.exe 进程通常是由 Windows 的启动器(服务控制管理器)启动的
# # tasklist | findstr /i “services.exe lsass.exe”
fi

# 获取某个 github 页面的响应。$1: github 链接。
request-github-url() {
local url=$1
if [ -z “$url” ]; then
echo ‘不能是空链接’
return 1
fi
if [[ $url == /* ]]; then
url=https://github.com$url
elif [ “$url” = https://github.com ]; then
true
elif [[ $url != https://github.com/* ]]; then
url=https://github.com/$url
fi
local page=$(wget -q -O – “$url”)
local retcode=$?
# NOTE 我发现,如果使用 curl,可能会因为访问失败,而返回空页面,虽然目前使用 wget,但为了以防万一
while [ -z “$page” ]; do
echo $’x1b[38;5;1mx1b[1mRETRYINGx1b[0m:’ “$url” >&2
page=$(wget -q -O – “$url”)
retcode=$?
done
if [ $retcode -ne 0 ]; then
echo -n “$page” >&2
return $retcode
fi
echo -n “$page”
}

# 获取某个项目最新的 release 链接。$1: 项目的 github 主页链接。
github-newest-release-link() {
local url=$1
if [ -z “$url” ]; then
echo ‘不能是空链接’
return 1
fi
if [[ $url == /* ]]; then
url=https://github.com$url
elif [ “$url” = https://github.com ]; then
true
elif [[ $url != https://github.com/* ]]; then
url=https://github.com/$url
fi

local release_link=$(request-github-url “$1” | grep -o “${url#https://github.com}”‘/releases/tag/[^”]+’)
if [ $? -ne 0 ] || [ -z “$release_link” ]; then
echo ‘获取 release_link 失败’
return 1
fi
release_link=https://github.com$release_link
echo -n $release_link
}

# 下载软件包,如果软件包已存在,则跳过。$1: 版本号。
download-asset() {
local version=$1
local release_link=
if [ -z “$version” ] || ! [[ “$version” =~ ^v?[0-9.]+$ ]] ; then
echo ‘版本号未知,正尝试获取最新版本 …’
release_link=$(github-newest-release-link “$CLOUDDRIVE_GITHUB_URL”)
local retcode=$?
if [ $retcode -ne 0 ]; then
return $retcode
fi
version=$(basename “$release_link”)
else
if ! [[ “$version” == v* ]]; then
version=v$version
fi
release_link=$CLOUDDRIVE_GITHUB_URL/releases/tag/$version
fi

local assets_link=”${release_link//tag///expanded_assets/}”
local assets_page=$(request-github-url “$assets_link”)

local ifs=$IFS

local var
IFS=$’n’
local links=()
for var in $(echo “$assets_page” | grep -o ‘href=”[^”]+’); do
links+=(“${var/href=”/https://github.com}”)
done
IFS=$ifs

local length=${#links[@]}

local flag=0
IFS=$’n’
local names=()
for var in $(echo “$assets_page” | grep ‘^ <span’ | grep -o ‘>[^<]*<‘); do
if [ $flag -eq 0 ]; then
names+=(“${var:1:-1}”)
flag=1
else
names[-1]=”${names[-1]}””${var:1:-1}”
flag=0
fi
done
IFS=$ifs

local default_index
if [ -n “$ZSH_VERSION” ]; then
for ((i=1; i<=$length; i++)); do
if [[ “${names[$i]}” == “$CLOUDDRIVE_DEFAULT_ASSET_PREFIX”* ]]; then
default_index=$i
fi
printf ‘%2s | ‘ $i
echo “${names[$i]} |” “${links[$i]}”
done
else
for ((i=0; i<$length; i++)); do
if [[ “${names[$i]}” == “$CLOUDDRIVE_DEFAULT_ASSET_PREFIX”* ]]; then
default_index=$i
fi
printf ‘%2s | ‘ $i
echo “${names[$i]} |” “${links[$i]}”
done
fi

local link name chosen_index
if [ -z “$default_index” ]; then
while true; do
echo -n “请选择一个数字:”
read chosen_index
chosen_index=$(tr -d ‘[:space:]’ <<<“$chosen_index”)
if [ -z “$chosen_index” ]; then
continue
fi
link=”${links[$chosen_index]}”
if [ -z “$link” ]; then
continue
fi
name=”${names[$chosen_index]}”
break
done
else
while true; do
echo -n “请选择一个数字(默认值 $default_index):”
read chosen_index
chosen_index=$(tr -d ‘[:space:]’ <<<“$chosen_index”)
if [ -z “$chosen_index” ]; then
chosen_index=default_index
fi
link=”${links[$chosen_index]}”
if [ -z “$link” ]; then
continue
fi
name=”${names[$chosen_index]}”
break
done
fi

CLOUDDRIVE_SELECTED_ASSET=$name
if ! [ -f “$CLOUDDRIVE_SELECTED_ASSET” ]; then
wget “$link”
fi
}

################################################################

cd ~

download-asset “$VERSION”
if [ $? -ne 0 ]; then
echo ‘获取软件包失败’ >&2
exit 1
fi

tar –overwrite -xzf “$CLOUDDRIVE_SELECTED_ASSET”
ln -sf “$(pwd)/${CLOUDDRIVE_SELECTED_ASSET%.*}” clouddrive.d

# NOTE 因为在我的 openwrt 上 pgrep 没有 -u 选项 😂
if pgrep -u $USER a &>/dev/null; then
pgrep_arr=(pgrep -u $USER)
else
pgrep_arr=(pgrep)
fi

echo
if [ $EUID -eq 0 ]; then
prep=()
else
prep=(sudo)
fi
case $(basename “$SYSTEM_INIT”) in
‘launchd’)
if [ $EUID -eq 0 ]; then
service=clouddrive
else
service=clouddrive-$USER
fi
service_file=”$HOME/Library/LaunchAgents/$service.plist”
mkdir -p “$HOME/Library/LaunchAgents”
echo $’x1b[38;5;2mx1b[1mCreated service filex1b[0m:’ “$service_file”
echo $’x1b[38;5;2mx1b[1m>>>x1b[0m’
tee “$service_file” << EOF
<?xml version=”1.0″ encoding=”UTF-8″?>
<!DOCTYPE plist PUBLIC “-//Apple//DTD PLIST 1.0//EN” “http://www.apple.com/DTDs/PropertyList-1.0.dtd”>
<plist version=”1.0″>
<dict>
<key>Description</key>
<string>CloudDrive – 解锁云存储的无限可能</string>
<key>Documentation</key>
<string>http://www.clouddrive2.com/help.html</string>
<key>Label</key>
<string>com.clouddrive</string>
<key>UserName</key>
<string>$USER</string>
<key>KeepAlive</key>
<true />
<key>ProgramArguments</key>
<array>
<string>/bin/sh</string>
<string>-c</string>
<string>’$HOME/clouddrive.d/clouddrive'</string>
</array>
<key>RunAtLoad</key>
<true />
<key>OnDemand</key>
<false />
<key>LaunchOnlyOnce</key>
<true />
<key>StandardErrorPath</key>
<string>/tmp/$service.err</string>
<key>StandardOutPath</key>
<string>/tmp/$service.out</string>
</dict>
</plist>
EOF
if [ $? -eq 0 ]; then
echo $’x1b[38;5;2mx1b[1m<<<x1b[0m’
echo $’x1b[38;5;2mx1b[1mSTART servicex1b[0m:’ “launchctl load -w ‘$service_file'”
echo $’x1b[38;5;2mx1b[1mSTOP servicex1b[0m:’ “launchctl unload ‘$service_file'”
launchctl unload “$service_file” 2>&-
launchctl load -w “$service_file”
fi
;;
‘systemd’)
if [ $EUID -eq 0 ]; then
service=clouddrive
else
service=clouddrive-$USER
fi
service_file=/etc/systemd/system/$service.service
echo $’x1b[38;5;2mx1b[1mCreated service filex1b[0m:’ “$service_file”
echo $’x1b[38;5;2mx1b[1m>>>x1b[0m’
“${prep[@]}” tee “$service_file” << EOF
[Unit]
Description=’CloudDrive – 解锁云存储的无限可能’
Documentation=’http://www.clouddrive2.com/help.html’
After=network.target

[Service]
Type=simple
User=$USER
Restart=on-failure
ExecStart=’$HOME/clouddrive.d/clouddrive’

[Install]
WantedBy=default.target
EOF
if [ $? -eq 0 ]; then
echo $’x1b[38;5;2mx1b[1m<<<x1b[0m’
echo $’x1b[38;5;2mx1b[1mSTART servicex1b[0m:’ “service $service start”
echo $’x1b[38;5;2mx1b[1mSTOP servicex1b[0m:’ “systemctl start $service”
echo $’x1b[38;5;2mx1b[1mSTART servicex1b[0m:’ “service $service stop”
echo $’x1b[38;5;2mx1b[1mSTOP servicex1b[0m:’ “systemctl stop $service”
“${prep[@]}” systemctl enable “$service”
“${prep[@]}” systemctl stop “$service”
“${prep[@]}” systemctl start “$service”
fi
;;
‘init’)
if [ $EUID -eq 0 ]; then
service=clouddrive
else
service=clouddrive-$USER
fi
service_file=/etc/init/$service.conf
echo $’x1b[38;5;2mx1b[1mCreated service filex1b[0m:’ “$service_file”
echo $’x1b[38;5;2mx1b[1m>>>x1b[0m’
“${prep[@]}” tee “$service_file” << EOF
description “CloudDrive – 解锁云存储的无限可能”
documentation “http://www.clouddrive2.com/help.html”

start on filesystem or runlevel [2345]
stop on runlevel [!2345]

respawn

exec ‘$HOME/clouddrive.d/clouddrive’
EOF
if [ $? -eq 0 ]; then
echo $’x1b[38;5;2mx1b[1m<<<x1b[0m’
echo $’x1b[38;5;2mx1b[1mSTART servicex1b[0m:’ “service $service start”
echo $’x1b[38;5;2mx1b[1mSTOP servicex1b[0m:’ “service $service stop”
“${prep[@]}” service “$service” enable
“${prep[@]}” service “$service” stop
“${prep[@]}” service “$service” start
fi
;;
‘procd’)
if [ $EUID -eq 0 ]; then
service=clouddrive
else
service=clouddrive-$USER
fi
service_file=/etc/init.d/$service
echo $’x1b[38;5;2mx1b[1mCreated service filex1b[0m:’ “$service_file”
echo $’x1b[38;5;2mx1b[1m>>>x1b[0m’
“${prep[@]}” tee “$service_file” << EOF
#!/bin/sh /etc/rc.common

USE_PROCD=1

START=99
STOP=99

Description=’CloudDrive – 解锁云存储的无限可能’
Documentation=’http://www.clouddrive2.com/help.html’

start_service() {
procd_open_instance
procd_set_param command ‘$HOME/clouddrive.d/clouddrive’
procd_set_param respawn
procd_set_param user $USER
procd_set_param stdout 1
procd_set_param stderr 1
procd_set_param pidfile /var/run/clouddrive-$USER.pid
procd_close_instance
}
EOF
if [ $? -eq 0 ]; then
echo $’x1b[38;5;2mx1b[1m<<<x1b[0m’
“${prep[@]}” chmod +x “$service_file”
echo $’x1b[38;5;2mx1b[1mSTART servicex1b[0m:’ “service $service start”
echo $’x1b[38;5;2mx1b[1mSTOP servicex1b[0m:’ “service $service stop”
“${prep[@]}” service “$service” enable
“${prep[@]}” service “$service” stop
“${prep[@]}” service “$service” start
fi
;;
*) # 默认情况
echo $’x1b[38;5;2mx1b[1mSTART servicex1b[0m:’ “‘$HOME/clouddrive.d/clouddrive’ &”
echo $’x1b[38;5;2mx1b[1mSTOP servicex1b[0m:’ “${pgrep_arr[@]} clouddrive | xargs kill -9”
# NOTE 如果有已经运行的实例,终结之
“${pgrep_arr[@]}” clouddrive | xargs kill -9
“$HOME/clouddrive.d/clouddrive” &
;;
esac

echo
echo -e ‘x1b[38;5;3mDocumentationx1b[0m: http://www.clouddrive2.com/help.html’
echo -e “x1b[38;5;3mServer onx1b[0m: http://$(get-local-ipv4-select):19798”

echo ‘### 测试账号 ###’
echo ‘mail: test@test.com’
echo ‘password: 123456’

3. Termux 中的自启动脚本

Termux

Termux 是 Android 平台上的一个终端模拟器和开发环境,由于没有类似 systemd 之类的进程管理器,所以想要自启动需要一些其他的办法。

一种办法是使用 termux:boot,并按照文档,编写脚本并放置到 ~/.termux/boot/ 目录。虽然开机后,Termux 会启动,脚本会运行,但是如果关闭 Termux,脚本会随之关闭,即使重启 Termux,脚本也不会运行,因为这只在开机时启动一次。

我提供另一种办法,下面我提供两个脚本 alist.sh 和 clouddrive.sh,可以分别实现对 alist 和 clouddrive 的启动、停止、重启、进程状态查看、开关启动项(通过在当前 shell 的 rc 文件中写入一个启动命令来实现)。当你开了启动项,则打开 Termux 后就会开启 alist 或 clouddrive,并且会有日志文件 ~/alist.log 和 ~/clouddrive.log

alist 的 shell 启动脚本

alist.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
#!/usr/bin/env bash

# if [ -n $BASH_VERSION ]; then
# rcfile=~/.bashrc
# elif [ -n $ZSH_VERSION ]; then
# rcfile=~/.zshrc
# else
# echo ‘目前只支持 bash 和 zsh’ >&2
# exit 1
# fi

_sh=$(basename $SHELL)
if [ “$_sh” = ‘bash’ ]; then
rcfile=~/.bashrc
elif [ “$_sh” = ‘zsh’ ]; then
rcfile=~/.zshrc
else
echo ‘目前只支持 bash 和 zsh,你的默认 shell 是:'”$SHELL” >&2
exit 1
fi

if command -v alist >&-; then
command=(alist server)
elif [ -f ~/alist.d/alist ]; then
command=(~/alist.d/alist server)
else
echo -e ‘未能找到 alist 可执行文件: n 1. 在 $PATH 中未找到 alist n 2. 没有文件 ~/alist.d/alist’ >&2
exit 1
fi

file=$(realpath $0)
if ! [ -x “$file” ]; then
chmod +x “$file”
fi

#:——————————:#

run() {
while true; do
“${command[@]}”
if [ $? -eq 0 ]; then
break
fi
done
}

start() {
if [ $# -eq 0 ]; then
pgrep -f “${command[*]}” >&- || run
else
start &
fi
}

stop() {
pgrep -f “${command[*]}” | xargs -r kill
}

restart() {
stop
start “$@”
}

status() {
local pids=($(pgrep -f “${command[*]}”))
if [ ${#pids[@]} -gt 0 ]; then
local args=()
for pid in “${pids[@]}”; do
args+=(“-p” $pid)
done
top “${args[@]}”
fi
}

#:——————————:#

enable() {
grep -q ‘# startup:alist.sh$’ “$rcfile” || echo “‘$file’ start -d &>>~/alist.log # startup:alist.sh” >> “$rcfile”
}

disable() {
sed -i “/# startup:alist.sh$/d” “$rcfile”
}

cd ~
case “$1” in
start)
start “${@:2}”
;;
stop)
stop “${@:2}”
;;
restart)
restart “${@:2}”
;;
status)
status “${@:2}”
;;
enable | startup)
enable “${@:2}”
;;
disable | unstartup)
disable “${@:2}”
;;
*)
echo ‘>>> 帮助信息
start 启动 alist。可指定 -d 后台运行。
stop 停止 alist。
restart 重启 alist。可指定 -d 后台运行。
status 显示 alist 的进程信息。
enable 打开终端后自动启动 alist,通过在默认 SHELL 的 rcfile 文件中写入启动命令来实现,日志在 ~/alist.log。
startup 同 enable。
disable 去除 enable。
unstartup 同 disable。

;;
esac

用法和例子如下

1
2
3
4
5
6
7
8
9
10
11
12
13
14
$ bash alist.sh 
>>> 帮助信息
start 启动 alist。可指定 -d 后台运行。
stop 停止 alist。
restart 重启 alist。可指定 -d 后台运行。
status 显示 alist 的进程信息。
enable 打开终端后自动启动 alist,通过在默认 SHELL 的 rcfile 文件中写入启动命令来实现,日志在 ~/alist.log。
startup 同 enable。
disable 去除 enable。
unstartup 同 disable
$ # 开启 alist 随 Termux 启动
$ bash alist.sh enable
$ # 后台运行 alist
$ bash alist.sh start -d

clouddrive 的 shell 启动脚本

clouddrive.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
#!/usr/bin/env bash

# if [ -n $BASH_VERSION ]; then
# rcfile=~/.bashrc
# elif [ -n $ZSH_VERSION ]; then
# rcfile=~/.zshrc
# else
# echo ‘目前只支持 bash 和 zsh’ >&2
# exit 1
# fi

_sh=$(basename $SHELL)
if [ “$_sh” = ‘bash’ ]; then
rcfile=~/.bashrc
elif [ “$_sh” = ‘zsh’ ]; then
rcfile=~/.zshrc
else
echo ‘目前只支持 bash 和 zsh,你的默认 shell 是:'”$SHELL” >&2
exit 1
fi

if command -v clouddrive >&-; then
command=(clouddrive)
elif [ -f ~/clouddrive.d/clouddrive ]; then
command=(~/clouddrive.d/clouddrive)
else
echo -e ‘未能找到 clouddrive 可执行文件: n 1. 在 $PATH 中未找到 clouddrive n 2. 没有文件 ~/clouddrive.d/clouddrive’ >&2
exit 1
fi

file=$(realpath $0)
if ! [ -x “$file” ]; then
chmod +x “$file”
fi

#:——————————:#

run() {
while true; do
“${command[@]}”
if [ $? -eq 0 ]; then
break
fi
done
}

start() {
if [ $# -eq 0 ]; then
pgrep -f “${command[*]}” >&- || run
else
start &
fi
}

stop() {
pgrep -f “${command[*]}” | xargs -r kill
}

restart() {
stop
start “$@”
}

status() {
local pids=($(pgrep -f “${command[*]}”))
if [ ${#pids[@]} -gt 0 ]; then
local args=()
for pid in “${pids[@]}”; do
args+=(“-p” $pid)
done
top “${args[@]}”
fi
}

#:——————————:#

enable() {
grep -q ‘# startup:clouddrive.sh$’ “$rcfile” || echo “‘$file’ start -d &>>~/clouddrive.log # startup:clouddrive.sh” >> “$rcfile”
}

disable() {
sed -i “/# startup:clouddrive.sh$/d” “$rcfile”
}

cd ~
case “$1” in
start)
start “${@:2}”
;;
stop)
stop “${@:2}”
;;
restart)
restart “${@:2}”
;;
status)
status “${@:2}”
;;
enable | startup)
enable “${@:2}”
;;
disable | unstartup)
disable “${@:2}”
;;
*)
echo ‘>>> 帮助信息
start 启动 clouddrive。可指定 -d 后台运行。
stop 停止 clouddrive。
restart 重启 clouddrive。可指定 -d 后台运行。
status 显示 clouddrive 的进程信息。
enable 打开终端后自动启动 clouddrive,通过在默认 SHELL 的 rcfile 文件中写入启动命令来实现,日志在 ~/clouddrive.log。
startup 同 enable。
disable 去除 enable。
unstartup 同 disable。

;;
esac

用法和例子如下

1
2
3
4
5
6
7
8
9
10
11
12
13
14
$ bash clouddrive.sh 
>>> 帮助信息
start 启动 clouddrive。可指定 -d 后台运行。
stop 停止 clouddrive。
restart 重启 clouddrive。可指定 -d 后台运行。
status 显示 clouddrive 的进程信息。
enable 打开终端后自动启动 clouddrive,通过在默认 SHELL 的 rcfile 文件中写入启动命令来实现,日志在 ~/clouddrive.log。
startup 同 enable。
disable 去除 enable。
unstartup 同 disable
$ # 开启 clouddrive 随 Termux 启动
$ bash clouddrive.sh enable
$ # 后台运行 clouddrive
$ bash clouddrive.sh start -d

扩展知识

OpenWrt 是一个开源的嵌入式操作系统,专门为路由器和其他嵌入式设备设计。它基于 Linux内核,并提供了一套完整的系统软件包,用于构建和定制网络设备的固件。通过 OpenWrt,用户可以自定义配置和扩展功能,并享受强大的网络管理和路由功能。通过一些适当的扩展,OpenWrt 可以作为 NAS 使用,下面是一些其它的嵌入式 NAS 系统:

  1. openmediavault:一个基于 Debian Linux 的开源 NAS 系统,设计用于家庭和小型办公室环境。它提供了易于使用的管理界面和丰富的功能,如文件共享、远程访问、备份、媒体服务器等。
  2. FreeNAS:一个免费的网络存储操作系统,基于 FreeBSD。用于构建和管理网络存储服务器。它提供了 ZFS 文件系统、数据共享、备份和恢复、多媒体服务等功能,适用于家庭用户和小型企业。
  3. XigmaNAS:它是 FreeNAS 项目的前身,也是基于 FreeBSD 的,提供了类似 FreeNAS 的功能。历史上,它经过了数次改名
  4. OpenNAS:这是一个基于 OpenMediaVault 的衍生项目,也是一个网络存储解决方案,提供了类似的功能和界面,可以用于搭建家庭或小型办公室的网络存储服务器。

我在我的树莓派安装了 OpenWrt,并修改了一些网络配置:

这样我的树莓派就是一个 NAS,再用 AList 和 clouddrive 挂载几个网盘,使用体验非常令人满意。

 
20231025220032deploy-clouddrive-alist245.zip
zip文件
 

原创,一键部署alist和clouddrive,支持Linux和Mac,在权限足够的情况下(Linux需要sudo权限,Mac不需要),会自动创建开机自启动服务

会自动检查进程启动器是launchd、systemd、init还是procd(openwrt)

这脚本以前发过一次,支持openwrt,今天被我强化了一下,不仅仅支持openwrt

软件包会自动从GitHub上下载,默认也会判断当前系统要用哪个包,但是会有一个提问,问你要选哪个包,你直接回车即可

image

遇到这个直接回车即可,或者选择你要用哪个

image

这个是alist

我的nas用的openwrt

cd2支持M1吗

支持的,可以用我这个脚本部署到电脑上,Mac电脑

 

这是在电脑上,自动部署的测试视频

© 版权声明
THE END
喜欢就支持一下吧
点赞13 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容