过年期间,伴随着arm fnos的内测,公测,网络上飞牛等nas受攻击的新闻铺天盖地而来。这几天又出现了一个新的nas系统geakos,看公众号上介绍的似乎很成熟了,于是上手看看。

官方网站:https://5nas.com


飞牛虚拟机安装

打开虚拟机图标,点击虚拟机,新建虚拟机,系统镜像选择从官网下载的iso文件,主板类型Q35,主板固件Legacy BIOS,CPU核心2核,内存分配4GB,GPU类型virtio-gpu,磁盘VirtIS SCSI,安装空间有30GB足够,还需再添加一个磁盘做为存储空间,再添加网络,确定后点开机。点VNC访问可以看到安装过程,全程不用管。GPU默认的是vmvga,安装完重启会卡住。宿主机使用的n5095+16G内存。

web体验

从ip:9080可进入web界面。第一次进就是设置登录帐号和密码。
但界面比较空,也没有相册和影视,初见比较失望。


PC端体验



基本上是web端打包,没有多余的功能。

安卓端体验






docker安装

docker-compose.yml:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
services:
geakos:
image: ghcr.io/qemus/qemu:7.12
container_name: geakos
environment:
BOOT_MODE: "legacy"
RAM_SIZE: "4G"
CPU_CORES: "2"
DISK_SIZE: "16G"
DISK2_SIZE: "200G"
devices:
- /dev/kvm
- /dev/net/tun
cap_add:
- NET_ADMIN
ports:
- 8006:8006
- 9080:9080
volumes:
- /vol1/1000/films/geakos-1.0.0-beta-amd64-260225.iso:/boot.iso
- ./dir1:/storage
- ./dir2:/storage2
restart: unless-stopped
stop_grace_period: 2m

从主机ip:8006可以看到安装过程。
此处使用了host网络,可从主机ip:9080进入web界面。
各参数意义可参见:
docker里安装真正能用的fnos

评价

基本上功能都有了,应用商店也上架了16个docker项目,相册和影视只能在手机app上使用,还有点粗糙。
设置中没有开放ssh连接,用nas账号和密码也无法从本机登录,也没有本地终端可用。系统是基于debian而来,是可以重设root密码,开启ssh的。

3月1日更新:


linux端已支持用nas帐号登录,手机app依然只能用ip或geak link id登录。
另外,geakos更新不需要重启,这也更加说明geakos只是软件层面,没有深度定制debian核心,初始安装包也是超级大。
最近nas的安全问题基本上都是由于nas暴露在公网上引起的,geakos直接就禁止了公网登录,远程只能用geak link id访问,这样的话带宽就会被官方控制了,除非购买vip(将来会成为盈利点)。

3月10日更新:

Debian 13 X86架构的一键安装

curl -fsSL https://os.5nas.com/install.sh| sudo 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
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
root@qs-debian:~/geakos# bash ./install.sh
Checking system version...
System check passed: Debian 13 (trixie)
Detected Debian 13 (trixie), configuring repository...
✓ Repository configuration completed (trixie + bookworm compatibility)
Note: PostgreSQL repository will be automatically configured during geakos install
Updating package list...
✓ Package list updated
Detected system architecture: amd64
Downloading geakos from https://os.5nas.com/geakos-linux-amd64...
Found existing version, backing up...
Installing to /usr/local/bin/geakos...
✓ geakos binary file installed successfully!
Installation path: /usr/local/bin/geakos

Starting full installation process (will automatically install dependencies)...

Note: Current memory 7947MB, 8GB or more recommended for better experience
Install log: /var/log/geakos-install-20260310192530.log
OS: Debian 13 (trixie)
System check passed: Debian 13 (trixie)
Configuring PostgreSQL official repository (for installing postgresql-15)...
Reading package lists...
Building dependency tree...
Reading state information...
wget is already the newest version (1.25.0-2).
gnupg is already the newest version (2.4.7-21+deb13u1).
gnupg set to manually installed.
lsb-release is already the newest version (12.1-1).
0 upgraded, 0 newly installed, 0 to remove and 319 not upgraded.
File '/usr/share/keyrings/postgresql-keyring.gpg' exists. Overwrite? (y/N) y
✓ PostgreSQL official repository configuration completed
Detected Debian 13 (trixie), configuring main repository and compatibility repository...
✓ Repository configuration completed (trixie + bookworm compatibility)
Checking and installing dependency packages...
Hit:1 https://mirrors.aliyun.com/postgresql/repos/apt trixie-pgdg InRelease
Get:2 https://mirrors.tuna.tsinghua.edu.cn/debian trixie InRelease [140 kB]
Get:3 https://mirrors.tuna.tsinghua.edu.cn/debian trixie-updates InRelease [47.3 kB]
Get:4 https://mirrors.tuna.tsinghua.edu.cn/debian trixie-backports InRelease [54.0 kB]
Get:5 https://mirrors.tuna.tsinghua.edu.cn/debian-security trixie-security InRelease [43.4 kB]
Get:6 https://mirrors.tuna.tsinghua.edu.cn/debian bookworm InRelease [151 kB]
Get:7 https://mirrors.tuna.tsinghua.edu.cn/debian bookworm-updates InRelease [55.4 kB]
Get:8 https://mirrors.tuna.tsinghua.edu.cn/debian bookworm-backports InRelease [59.4 kB]
Get:9 https://mirrors.tuna.tsinghua.edu.cn/debian-security bookworm-security InRelease [48.0 kB]
Get:10 https://mirrors.tuna.tsinghua.edu.cn/debian trixie/main amd64 Packages [9,670 kB]
Get:11 https://mirrors.tuna.tsinghua.edu.cn/debian trixie/main Translation-en [6,484 kB]
Get:12 https://mirrors.tuna.tsinghua.edu.cn/debian trixie/main amd64 Components [5,175 kB]
Get:13 https://mirrors.tuna.tsinghua.edu.cn/debian trixie/main Icons (48x48) [3,626 kB]
Get:14 https://mirrors.tuna.tsinghua.edu.cn/debian trixie/main Icons (64x64) [7,367 kB]
Get:15 https://mirrors.tuna.tsinghua.edu.cn/debian trixie/contrib amd64 Packages [53.8 kB]
Get:16 https://mirrors.tuna.tsinghua.edu.cn/debian trixie/contrib Translation-en [49.6 kB]
Get:17 https://mirrors.tuna.tsinghua.edu.cn/debian trixie/contrib amd64 Components [41.5 kB]
Get:18 https://mirrors.tuna.tsinghua.edu.cn/debian trixie/contrib Icons (48x48) [60.1 kB]
Get:19 https://mirrors.tuna.tsinghua.edu.cn/debian trixie/contrib Icons (64x64) [132 kB]
Get:20 https://mirrors.tuna.tsinghua.edu.cn/debian trixie/non-free amd64 Packages [100 kB]
Get:21 https://mirrors.tuna.tsinghua.edu.cn/debian trixie/non-free Translation-en [67.1 kB]
Get:22 https://mirrors.tuna.tsinghua.edu.cn/debian trixie/non-free amd64 Components [3,784 B]
Get:23 https://mirrors.tuna.tsinghua.edu.cn/debian trixie/non-free Icons (48x48) [578 B]
Get:24 https://mirrors.tuna.tsinghua.edu.cn/debian trixie/non-free Icons (64x64) [10.4 kB]
Get:25 https://mirrors.tuna.tsinghua.edu.cn/debian trixie/non-free-firmware amd64 Packages [6,884 B]
Get:26 https://mirrors.tuna.tsinghua.edu.cn/debian trixie/non-free-firmware Translation-en [4,704 B]
Get:27 https://mirrors.tuna.tsinghua.edu.cn/debian trixie/non-free-firmware amd64 Components [24.3 kB]
Get:28 https://mirrors.tuna.tsinghua.edu.cn/debian trixie/non-free-firmware Icons (48x48) [29 B]
Get:29 https://mirrors.tuna.tsinghua.edu.cn/debian trixie/non-free-firmware Icons (64x64) [29 B]
Get:30 https://mirrors.tuna.tsinghua.edu.cn/debian trixie-updates/main amd64 Packages [5,412 B]
Get:31 https://mirrors.tuna.tsinghua.edu.cn/debian trixie-updates/main Translation-en [4,096 B]
Get:32 https://mirrors.tuna.tsinghua.edu.cn/debian trixie-backports/main amd64 Packages [170 kB]
Get:33 https://mirrors.tuna.tsinghua.edu.cn/debian trixie-backports/main Translation-en [131 kB]
Get:34 https://mirrors.tuna.tsinghua.edu.cn/debian trixie-backports/contrib amd64 Packages [6,628 B]
Get:35 https://mirrors.tuna.tsinghua.edu.cn/debian trixie-backports/contrib Translation-en [6,440 B]
Get:36 https://mirrors.tuna.tsinghua.edu.cn/debian trixie-backports/non-free amd64 Packages [7,776 B]
Get:37 https://mirrors.tuna.tsinghua.edu.cn/debian trixie-backports/non-free Translation-en [6,132 B]
Get:38 https://mirrors.tuna.tsinghua.edu.cn/debian trixie-backports/non-free-firmware amd64 Packages [4,032 B]
Get:39 https://mirrors.tuna.tsinghua.edu.cn/debian trixie-backports/non-free-firmware Translation-en [3,028 B]
Get:40 https://mirrors.tuna.tsinghua.edu.cn/debian-security trixie-security/main amd64 Packages [108 kB]
Get:41 https://mirrors.tuna.tsinghua.edu.cn/debian-security trixie-security/main Translation-en [70.0 kB]
Get:42 https://mirrors.tuna.tsinghua.edu.cn/debian-security trixie-security/non-free-firmware amd64 Packages [544 B]
Get:43 https://mirrors.tuna.tsinghua.edu.cn/debian-security trixie-security/non-free-firmware Translation-en [352 B]
Get:44 https://mirrors.tuna.tsinghua.edu.cn/debian bookworm/main amd64 Packages [8,792 kB]
Get:45 https://mirrors.tuna.tsinghua.edu.cn/debian bookworm/main Translation-en [6,108 kB]
Get:46 https://mirrors.tuna.tsinghua.edu.cn/debian bookworm/main amd64 Components [4,492 kB]
Get:47 https://mirrors.tuna.tsinghua.edu.cn/debian bookworm/main Icons (48x48) [3,595 kB]
Get:48 https://mirrors.tuna.tsinghua.edu.cn/debian bookworm/main Icons (64x64) [7,295 kB]
Get:49 https://mirrors.tuna.tsinghua.edu.cn/debian bookworm/contrib amd64 Packages [53.5 kB]
Get:50 https://mirrors.tuna.tsinghua.edu.cn/debian bookworm/contrib Translation-en [48.4 kB]
Get:51 https://mirrors.tuna.tsinghua.edu.cn/debian bookworm/contrib amd64 Components [16.5 kB]
Get:52 https://mirrors.tuna.tsinghua.edu.cn/debian bookworm/contrib Icons (48x48) [52.7 kB]
Get:53 https://mirrors.tuna.tsinghua.edu.cn/debian bookworm/contrib Icons (64x64) [106 kB]
Get:54 https://mirrors.tuna.tsinghua.edu.cn/debian bookworm/non-free amd64 Packages [102 kB]
Get:55 https://mirrors.tuna.tsinghua.edu.cn/debian bookworm/non-free Translation-en [68.1 kB]
Get:56 https://mirrors.tuna.tsinghua.edu.cn/debian bookworm/non-free amd64 Components [4,428 B]
Get:57 https://mirrors.tuna.tsinghua.edu.cn/debian bookworm/non-free Icons (48x48) [748 B]
Get:58 https://mirrors.tuna.tsinghua.edu.cn/debian bookworm/non-free Icons (64x64) [27.5 kB]
Get:59 https://mirrors.tuna.tsinghua.edu.cn/debian bookworm-updates/main amd64 Packages [6,924 B]
Get:60 https://mirrors.tuna.tsinghua.edu.cn/debian bookworm-updates/main Translation-en [5,448 B]
Get:61 https://mirrors.tuna.tsinghua.edu.cn/debian bookworm-backports/main amd64 Packages [303 kB]
Get:62 https://mirrors.tuna.tsinghua.edu.cn/debian bookworm-backports/main Translation-en [256 kB]
Get:63 https://mirrors.tuna.tsinghua.edu.cn/debian bookworm-backports/contrib amd64 Packages [5,856 B]
Get:64 https://mirrors.tuna.tsinghua.edu.cn/debian bookworm-backports/contrib Translation-en [5,864 B]
Get:65 https://mirrors.tuna.tsinghua.edu.cn/debian bookworm-backports/non-free amd64 Packages [13.3 kB]
Get:66 https://mirrors.tuna.tsinghua.edu.cn/debian bookworm-backports/non-free Translation-en [8,460 B]
Get:67 https://mirrors.tuna.tsinghua.edu.cn/debian-security bookworm-security/main amd64 Packages [293 kB]
Get:68 https://mirrors.tuna.tsinghua.edu.cn/debian-security bookworm-security/main Translation-en [178 kB]
Get:69 https://mirrors.tuna.tsinghua.edu.cn/debian-security bookworm-security/contrib amd64 Packages [896 B]
Get:70 https://mirrors.tuna.tsinghua.edu.cn/debian-security bookworm-security/contrib Translation-en [652 B]
Fetched 65.8 MB in 7s (9,810 kB/s)
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
chrony is already the newest version (4.6.1-3).
ifenslave is already the newest version (2.14).
musl is already the newest version (1.2.5-3).
libheif-examples is already the newest version (1.19.8-1).
libldap-dev is already the newest version (2.6.10+dfsg-1).
libldap2-dev is already the newest version (2.6.10+dfsg-1).
libimage-exiftool-perl is already the newest version (13.25+dfsg-1).
btrfs-progs is already the newest version (6.14-1).
xfsprogs is already the newest version (6.13.0-2+b1).
rclone is already the newest version (1.60.1+dfsg-4).
davfs2 is already the newest version (1.7.1-1).
nfs-common is already the newest version (1:2.8.3-1).
htop is already the newest version (3.4.1-5).
net-tools is already the newest version (2.10-1.3).
vim is already the newest version (2:9.1.1230-2).
wget is already the newest version (1.25.0-2).
iftop is already the newest version (1.0~pre4-9+b1).
iotop is already the newest version (0.6-42-ga14256a-0.3+b1).
parted is already the newest version (3.6-5).
mdadm is already the newest version (4.4-11).
sudo is already the newest version (1.9.16p2-3).
curl is already the newest version (8.14.1-2+deb13u2).
curl set to manually installed.
unzip is already the newest version (6.0-29).
jq is already the newest version (1.7.1-6+deb13u1).
smartmontools is already the newest version (7.4-3).
sqlite3 is already the newest version (3.46.1-7).
avahi-daemon is already the newest version (0.8-16).
samba is already the newest version (2:4.22.6+dfsg-0+deb13u1).
attr is already the newest version (1:2.5.2-3).
ethtool is already the newest version (1:6.14.2-1).
libfontconfig1 is already the newest version (2.15.0-2.3).
iptables is already the newest version (1.8.11-2).
rsyslog is already the newest version (8.2504.0-1).
cifs-utils is already the newest version (2:7.4-1).
fail2ban is already the newest version (1.1.0-8).
socat is already the newest version (1.8.0.3-1).
inotify-tools is already the newest version (4.23.9.0-2+b1).
postgresql-15 is already the newest version (15.17-1.pgdg13+1).
imagemagick is already the newest version (8:7.1.1.43+dfsg1-1+deb13u4).
imagemagick-6.q16 is already the newest version (8:6.9.11.60+dfsg-1.6+deb12u6).
wsdd2 is already the newest version (1.8.7+dfsg-1.2).
ffmpeg is already the newest version (7:7.1.3-0+deb13u1).
fuse3 is already the newest version (3.17.2-3).
gocryptfs is already the newest version (2.5.1-2+b1).
openssh-server is already the newest version (1:10.0p1-7).
lvm2 is already the newest version (2.03.31-2).
0 upgraded, 0 newly installed, 0 to remove and 319 not upgraded.
✓ Dependency packages installation completed
Reading package lists...
Building dependency tree...
Reading state information...
libpcre3 is already the newest version (2:8.39-15).
0 upgraded, 0 newly installed, 0 to remove and 319 not upgraded.
✓ Compatibility repository packages installation completed
Downloading files...
[1/34] Downloading module: upgrade
✓ Module upgrade download completed
[2/34] Downloading module: yrpc
✓ Module yrpc download completed
[3/34] Downloading module: dockerenv
✓ Module dockerenv download completed
[4/34] Downloading module: thumbor
✓ Module thumbor download completed
[5/34] Downloading module: scheduler
✓ Module scheduler download completed
[6/34] Downloading module: setting
✓ Module setting download completed
[7/34] Downloading module: film
✓ Module film download completed
[8/34] Downloading module: film-web
✓ Module film-web download completed
[9/34] Downloading module: tarantool
✓ Module tarantool download completed
[10/34] Downloading module: shared
✓ Module shared download completed
[11/34] Downloading module: web
✓ Module web download completed
[12/34] Downloading module: nas
✓ Module nas download completed
[13/34] Downloading module: nsq
✓ Module nsq download completed
[14/34] Downloading module: wsq
✓ Module wsq download completed
[15/34] Downloading module: download
✓ Module download download completed
[16/34] Downloading module: user
✓ Module user download completed
[17/34] Downloading module: file
✓ Module file download completed
[18/34] Downloading module: media
✓ Module media download completed
[19/34] Downloading module: asset
✓ Module asset download completed
[20/34] Downloading module: contacts
✓ Module contacts download completed
[21/34] Downloading module: toolbox
✓ Module toolbox download completed
[22/34] Downloading module: message
✓ Module message download completed
[23/34] Downloading module: p2p
✓ Module p2p download completed
[24/34] Downloading module: monitor
✓ Module monitor download completed
[25/34] Downloading module: gateway
✓ Module gateway download completed
[26/34] Downloading module: route
✓ Module route download completed
[27/34] Downloading module: geak-ai-venv
✓ Module geak-ai-venv download completed
[28/34] Downloading module: apt-archives
✓ Module apt-archives download completed
[29/34] Downloading module: facial-clip-model
✓ Module facial-clip-model download completed
[30/34] Downloading module: face-ai
✓ Module face-ai download completed
[31/34] Downloading module: clip-ai-model
✓ Module clip-ai-model download completed
[32/34] Downloading module: clip-ai
✓ Module clip-ai download completed
[33/34] Downloading module: geak-ai-model
✓ Module geak-ai-model download completed
[34/34] Downloading module: init
✓ Module init download completed

=== Starting deb package installation (init skipped) ===
[1/33] Installing: p2p-260305155816-linux-amd64.deb
(Reading database ... 264036 files and directories currently installed.)
Preparing to unpack .../p2p-260305155816-linux-amd64.deb ...
Unpacking yom-p2p (1.15.32) over (1.15.32) ...
Setting up yom-p2p (1.15.32) ...
cat: /etc/yomos-release: No such file or directory
✓ p2p-260305155816-linux-amd64.deb installation completed
[2/33] Installing: 001_upgrade_1.15.30-260305102217_amd64.deb
(Reading database ... 264036 files and directories currently installed.)
Preparing to unpack .../001_upgrade_1.15.30-260305102217_amd64.deb ...
Unpacking yom-upgrade (1.15.30) over (1.15.30) ...
Setting up yom-upgrade (1.15.30) ...
✓ 001_upgrade_1.15.30-260305102217_amd64.deb installation completed
upgrade binary MD5 verify ok: /opt/apps/upgrade/bin/upgrade
[3/33] Installing: 002_yrpc_1.15.26-260304184915_amd64.deb
(Reading database ... 264036 files and directories currently installed.)
Preparing to unpack .../002_yrpc_1.15.26-260304184915_amd64.deb ...
Unpacking yom-yrpc (1.15.26) over (1.15.26) ...
Setting up yom-yrpc (1.15.26) ...
002_yrpc_1.15.26-260304184915_amd64.deb installation completed
[4/33] Installing: 003_dockerenv_1.13.77-260205163442_amd64.deb
(Reading database ... 264036 files and directories currently installed.)
Preparing to unpack .../003_dockerenv_1.13.77-260205163442_amd64.deb ...
Unpacking yom-dockerenv (1.13.77) over (1.13.77) ...
Setting up yom-dockerenv (1.13.77) ...
003_dockerenv_1.13.77-260205163442_amd64.deb installation completed
[5/33] Installing: 004_thumbor_1.13.77-260205163442_amd64.deb
(Reading database ... 264036 files and directories currently installed.)
Preparing to unpack .../004_thumbor_1.13.77-260205163442_amd64.deb ...
Unpacking yom-thumbor (1.13.77) over (1.13.77) ...
Setting up yom-thumbor (1.13.77) ...
004_thumbor_1.13.77-260205163442_amd64.deb installation completed
[6/33] Installing: 005_scheduler_1.13.77-260205163442_amd64.deb
(Reading database ... 264036 files and directories currently installed.)
Preparing to unpack .../005_scheduler_1.13.77-260205163442_amd64.deb ...
Unpacking yom-scheduler (1.13.77) over (1.13.77) ...
Setting up yom-scheduler (1.13.77) ...
005_scheduler_1.13.77-260205163442_amd64.deb installation completed
[7/33] Installing: 006_setting_1.15.09-260228220700_amd64.deb
(Reading database ... 264036 files and directories currently installed.)
Preparing to unpack .../006_setting_1.15.09-260228220700_amd64.deb ...
Unpacking yom-setting (1.15.09) over (1.15.09) ...
Setting up yom-setting (1.15.09) ...
006_setting_1.15.09-260228220700_amd64.deb installation completed
[8/33] Installing: 007_film_1.15.39-260305191841_amd64.deb
(Reading database ... 264036 files and directories currently installed.)
Preparing to unpack .../007_film_1.15.39-260305191841_amd64.deb ...
Unpacking yom-film (1.15.39) over (1.15.39) ...
Setting up yom-film (1.15.39) ...
007_film_1.15.39-260305191841_amd64.deb installation completed
[9/33] Installing: 008_film-web_1.13.76-260205163327_amd64.deb
Selecting previously unselected package yom-film-web.
(Reading database ... 264036 files and directories currently installed.)
Preparing to unpack .../008_film-web_1.13.76-260205163327_amd64.deb ...
Unpacking yom-film-web (1.13.76) ...
Setting up yom-film-web (1.13.76) ...
008_film-web_1.13.76-260205163327_amd64.deb installation completed
[10/33] Installing: 009_tarantool_1.13.76-260205163327_amd64.deb
Selecting previously unselected package yom-tarantool.
(Reading database ... 264051 files and directories currently installed.)
Preparing to unpack .../009_tarantool_1.13.76-260205163327_amd64.deb ...
Unpacking yom-tarantool (1.13.76) ...
Setting up yom-tarantool (1.13.76) ...
Created symlink '/etc/systemd/system/multi-user.target.wants/yom-tarantool.service''/etc/systemd/system/yom-tarantool.service'.
009_tarantool_1.13.76-260205163327_amd64.deb installation completed
[11/33] Installing: 010_shared_1.13.76-260205163327_amd64.deb
Selecting previously unselected package yom-shared.
(Reading database ... 264061 files and directories currently installed.)
Preparing to unpack .../010_shared_1.13.76-260205163327_amd64.deb ...
Unpacking yom-shared (1.13.76) ...
Setting up yom-shared (1.13.76) ...
Created symlink '/etc/systemd/system/multi-user.target.wants/yom-shared.service''/etc/systemd/system/yom-shared.service'.
010_shared_1.13.76-260205163327_amd64.deb installation completed
[12/33] Installing: 011_web_1.15.36-260305181001_amd64.deb
Selecting previously unselected package yom-web.
(Reading database ... 264065 files and directories currently installed.)
Preparing to unpack .../011_web_1.15.36-260305181001_amd64.deb ...
Unpacking yom-web (1.15.36) ...
Setting up yom-web (1.15.36) ...
011_web_1.15.36-260305181001_amd64.deb installation completed
[13/33] Installing: 012_nas_1.15.29-260304204246_amd64.deb
Selecting previously unselected package yom-nas.
(Reading database ... 264112 files and directories currently installed.)
Preparing to unpack .../012_nas_1.15.29-260304204246_amd64.deb ...
Unpacking yom-nas (1.15.29) ...
Setting up yom-nas (1.15.29) ...
Created symlink '/etc/systemd/system/multi-user.target.wants/yom-nas.service''/etc/systemd/system/yom-nas.service'.
012_nas_1.15.29-260304204246_amd64.deb installation completed
[14/33] Installing: 013_nsq_1.13.75-260205163232_amd64.deb
Selecting previously unselected package yom-nsq.
(Reading database ... 264116 files and directories currently installed.)
Preparing to unpack .../013_nsq_1.13.75-260205163232_amd64.deb ...
Unpacking yom-nsq (1.13.75) ...
Setting up yom-nsq (1.13.75) ...
Created symlink '/etc/systemd/system/multi-user.target.wants/yom-nsqd.service''/etc/systemd/system/yom-nsqd.service'.
Created symlink '/etc/systemd/system/multi-user.target.wants/yom-nsqlookupd.service''/etc/systemd/system/yom-nsqlookupd.service'.
013_nsq_1.13.75-260205163232_amd64.deb installation completed
[15/33] Installing: 014_wsq_1.14.59-260224162117_amd64.deb
Selecting previously unselected package yom-wsq.
(Reading database ... 264133 files and directories currently installed.)
Preparing to unpack .../014_wsq_1.14.59-260224162117_amd64.deb ...
Unpacking yom-wsq (1.14.59) ...
Setting up yom-wsq (1.14.59) ...
Created symlink '/etc/systemd/system/multi-user.target.wants/yom-wsq.service''/etc/systemd/system/yom-wsq.service'.
014_wsq_1.14.59-260224162117_amd64.deb installation completed
[16/33] Installing: 015_download_1.13.74-260205163157_amd64.deb
Selecting previously unselected package yom-download.
(Reading database ... 264137 files and directories currently installed.)
Preparing to unpack .../015_download_1.13.74-260205163157_amd64.deb ...
Unpacking yom-download (1.13.74) ...
Setting up yom-download (1.13.74) ...
Created symlink '/etc/systemd/system/multi-user.target.wants/yom-download.service''/etc/systemd/system/yom-download.service'.
015_download_1.13.74-260205163157_amd64.deb installation completed
[17/33] Installing: 016_user_1.15.20-260304161336_amd64.deb
Selecting previously unselected package yom-user.
(Reading database ... 264141 files and directories currently installed.)
Preparing to unpack .../016_user_1.15.20-260304161336_amd64.deb ...
Unpacking yom-user (1.15.20) ...
Setting up yom-user (1.15.20) ...
Created symlink '/etc/systemd/system/multi-user.target.wants/yom-user.service''/etc/systemd/system/yom-user.service'.
016_user_1.15.20-260304161336_amd64.deb installation completed
[18/33] Installing: 017_file_1.15.24-260304182629_amd64.deb
Selecting previously unselected package yom-file.
(Reading database ... 264145 files and directories currently installed.)
Preparing to unpack .../017_file_1.15.24-260304182629_amd64.deb ...
Unpacking yom-file (1.15.24) ...
Setting up yom-file (1.15.24) ...
Created symlink '/etc/systemd/system/multi-user.target.wants/yom-file.service''/etc/systemd/system/yom-file.service'.
017_file_1.15.24-260304182629_amd64.deb installation completed
[19/33] Installing: 018_media_1.13.65-260205152044_amd64.deb
Selecting previously unselected package yom-media.
(Reading database ... 264149 files and directories currently installed.)
Preparing to unpack .../018_media_1.13.65-260205152044_amd64.deb ...
Unpacking yom-media (1.13.65) ...
Setting up yom-media (1.13.65) ...
Created symlink '/etc/systemd/system/multi-user.target.wants/yom-media.service''/etc/systemd/system/yom-media.service'.
018_media_1.13.65-260205152044_amd64.deb installation completed
[20/33] Installing: 019_asset_1.13.65-260205152044_amd64.deb
Selecting previously unselected package yom-asset.
(Reading database ... 264153 files and directories currently installed.)
Preparing to unpack .../019_asset_1.13.65-260205152044_amd64.deb ...
Unpacking yom-asset (1.13.65) ...
Setting up yom-asset (1.13.65) ...
Created symlink '/etc/systemd/system/multi-user.target.wants/yom-asset.service''/etc/systemd/system/yom-asset.service'.
019_asset_1.13.65-260205152044_amd64.deb installation completed
[21/33] Installing: 020_contacts_1.13.49-260202120242_amd64.deb
Selecting previously unselected package yom-contacts.
(Reading database ... 264157 files and directories currently installed.)
Preparing to unpack .../020_contacts_1.13.49-260202120242_amd64.deb ...
Unpacking yom-contacts (1.13.49) ...
Setting up yom-contacts (1.13.49) ...
Created symlink '/etc/systemd/system/multi-user.target.wants/yom-contacts.service''/etc/systemd/system/yom-contacts.service'.
020_contacts_1.13.49-260202120242_amd64.deb installation completed
[22/33] Installing: 021_toolbox_1.15.34-260305171437_amd64.deb
Selecting previously unselected package yom-toolbox.
(Reading database ... 264161 files and directories currently installed.)
Preparing to unpack .../021_toolbox_1.15.34-260305171437_amd64.deb ...
Unpacking yom-toolbox (1.15.34) ...
Setting up yom-toolbox (1.15.34) ...
Created symlink '/etc/systemd/system/multi-user.target.wants/yom-toolbox.service''/etc/systemd/system/yom-toolbox.service'.
021_toolbox_1.15.34-260305171437_amd64.deb installation completed
[23/33] Installing: 022_message_1.13.67-260205162350_amd64.deb
Selecting previously unselected package yom-message.
(Reading database ... 264172 files and directories currently installed.)
Preparing to unpack .../022_message_1.13.67-260205162350_amd64.deb ...
Unpacking yom-message (1.13.67) ...
Setting up yom-message (1.13.67) ...
Created symlink '/etc/systemd/system/multi-user.target.wants/yom-message.service''/etc/systemd/system/yom-message.service'.
022_message_1.13.67-260205162350_amd64.deb installation completed
[24/33] Installing: 023_monitor_1.13.70-260205162855_amd64.deb
Selecting previously unselected package yom-monitor.
(Reading database ... 264176 files and directories currently installed.)
Preparing to unpack .../023_monitor_1.13.70-260205162855_amd64.deb ...
Unpacking yom-monitor (1.13.70) ...
Setting up yom-monitor (1.13.70) ...
Created symlink '/etc/systemd/system/multi-user.target.wants/yom-influxdb.service''/etc/systemd/system/yom-influxdb.service'.
Created symlink '/etc/systemd/system/multi-user.target.wants/yom-telegraf.service''/etc/systemd/system/yom-telegraf.service'.
023_monitor_1.13.70-260205162855_amd64.deb installation completed
[25/33] Installing: 024_gateway_1.13.71-260205162913_amd64.deb
Selecting previously unselected package yom-gateway.
(Reading database ... 264297 files and directories currently installed.)
Preparing to unpack .../024_gateway_1.13.71-260205162913_amd64.deb ...
Unpacking yom-gateway (1.13.71) ...
Setting up yom-gateway (1.13.71) ...
Created symlink '/etc/systemd/system/multi-user.target.wants/yom-etcd.service''/etc/systemd/system/yom-etcd.service'.
Created symlink '/etc/systemd/system/multi-user.target.wants/yom-apisix.service''/etc/systemd/system/yom-apisix.service'.
024_gateway_1.13.71-260205162913_amd64.deb installation completed
[26/33] Installing: 025_route_1.15.00-260228103513_amd64.deb
Selecting previously unselected package yom-route.
(Reading database ... 273631 files and directories currently installed.)
Preparing to unpack .../025_route_1.15.00-260228103513_amd64.deb ...
Unpacking yom-route (1.15.00) ...
Setting up yom-route (1.15.00) ...
Created symlink '/etc/systemd/system/multi-user.target.wants/yom-route.service''/etc/systemd/system/yom-route.service'.
025_route_1.15.00-260228103513_amd64.deb installation completed
[27/33] Installing: 026_geak-ai-venv_1.14.71-260225141244_amd64.deb
Selecting previously unselected package yom-geak-ai-venv.
(Reading database ... 273635 files and directories currently installed.)
Preparing to unpack .../026_geak-ai-venv_1.14.71-260225141244_amd64.deb ...
Unpacking yom-geak-ai-venv (1.14.71) ...
Setting up yom-geak-ai-venv (1.14.71) ...
Changing directory to /opt/thirdparty/
✓ 026_geak-ai-venv_1.14.71-260225141244_amd64.deb installation completed
[28/33] Installing: 027_apt-archives_1.13.74-260205163157_amd64.deb
Selecting previously unselected package yom-apt-archives.
(Reading database ... 374059 files and directories currently installed.)
Preparing to unpack .../027_apt-archives_1.13.74-260205163157_amd64.deb ...
Unpacking yom-apt-archives (1.13.74) ...
Setting up yom-apt-archives (1.13.74) ...
Changing directory to /opt/thirdparty/apt-archives
027_apt-archives_1.13.74-260205163157_amd64.deb installation completed
[29/33] Installing: 028_facial-clip-model_1.14.79-260225175252_amd64.deb
Selecting previously unselected package yom-facial-clip-model.
(Reading database ... 374188 files and directories currently installed.)
Preparing to unpack .../028_facial-clip-model_1.14.79-260225175252_amd64.deb ...
Unpacking yom-facial-clip-model (1.14.79) ...
Setting up yom-facial-clip-model (1.14.79) ...
028_facial-clip-model_1.14.79-260225175252_amd64.deb installation completed
[30/33] Installing: 029_face-ai_1.14.93-260227184145_amd64.deb
Selecting previously unselected package yom-face-ai.
(Reading database ... 374207 files and directories currently installed.)
Preparing to unpack .../029_face-ai_1.14.93-260227184145_amd64.deb ...
Unpacking yom-face-ai (1.14.93) ...
Setting up yom-face-ai (1.14.93) ...
Created symlink '/etc/systemd/system/multi-user.target.wants/yom-face-ai-api.service''/etc/systemd/system/yom-face-ai-api.service'.
拉取镜像开关未启用,跳过镜像拉取(如需拉取,请设置 PULL_IMAGE_ON_INSTALL=1
029_face-ai_1.14.93-260227184145_amd64.deb installation completed
[31/33] Installing: 030_clip-ai-model_1.13.77-260205163442_amd64.deb
Selecting previously unselected package yom-clip-ai-model.
(Reading database ... 374254 files and directories currently installed.)
Preparing to unpack .../030_clip-ai-model_1.13.77-260205163442_amd64.deb ...
Unpacking yom-clip-ai-model (1.13.77) ...
Setting up yom-clip-ai-model (1.13.77) ...
030_clip-ai-model_1.13.77-260205163442_amd64.deb installation completed
[32/33] Installing: 031_clip-ai_1.14.66-260225105602_amd64.deb
Selecting previously unselected package yom-clip-ai.
(Reading database ... 374261 files and directories currently installed.)
Preparing to unpack .../031_clip-ai_1.14.66-260225105602_amd64.deb ...
Unpacking yom-clip-ai (1.14.66) ...
Setting up yom-clip-ai (1.14.66) ...
Created symlink '/etc/systemd/system/multi-user.target.wants/yom-clip-ai.target''/etc/systemd/system/yom-clip-ai.target'.
031_clip-ai_1.14.66-260225105602_amd64.deb installation completed
[33/33] Installing: 032_geak-ai-model_1.14.77-260225173129_amd64.deb
Selecting previously unselected package yom-geak-ai-model.
(Reading database ... 374326 files and directories currently installed.)
Preparing to unpack .../032_geak-ai-model_1.14.77-260225173129_amd64.deb ...
Unpacking yom-geak-ai-model (1.14.77) ...
Setting up yom-geak-ai-model (1.14.77) ...
032_geak-ai-model_1.14.77-260225173129_amd64.deb installation completed
Skipping init package installation (download only): /var/cache/apt/archives/init-260206204805-linux-amd64.deb

=== All installable deb packages installation completed (init skipped) ===
Executing system initialization...
Selecting previously unselected package yom-init.
(Reading database ... 374339 files and directories currently installed.)
Preparing to unpack init-260206204805-linux-amd64.deb ...
Unpacking yom-init (1.13.99) ...
Setting up yom-init (1.13.99) ...
apt-daily.timer is active. Stopping and disabling it.
apt-daily-upgrade.timer is active. Stopping and disabling it.
Reading package lists...
Building dependency tree...
Reading state information...
Installing:
vectors-pg15

Summary:
Upgrading: 0, Installing: 1, Removing: 0, Not Upgrading: 319
Download size: 0 B / 35.1 MB
Space needed: 0 B / 7,132 MB available

Get:1 /var/cache/apt/archives/vectors-pg15_0.4.0_amd64_vectors.deb vectors-pg15 amd64 0.4.0 [35.1 MB]
Selecting previously unselected package vectors-pg15.
(Reading database ... 374372 files and directories currently installed.)
Preparing to unpack .../vectors-pg15_0.4.0_amd64_vectors.deb ...
Unpacking vectors-pg15 (0.4.0) ...
Setting up vectors-pg15 (0.4.0) ...
Processing triggers for postgresql-common (278) ...
Building PostgreSQL dictionaries from installed myspell/hunspell packages...
ERROR: no encoding defined in /usr/share/hunspell/ar.aff, ignoring
be_by
bg_bg
bs_ba
ca
ca_es-valencia
cs_cz
da_dk
de_at
de_ch
de_de
el_gr
en_gb
en_us
eo
es
et_ee
eu
fa_ir
fr
ga_ie
gl_es
gu_in
he
hi_in
hr_hr
hu_hu
iconv: illegal input sequence at position 131
ERROR: Conversion of /usr/share/hunspell/hu_HU.aff failed
id_id
is_is
it_it
ERROR: no encoding defined in /usr/share/hunspell/kk_KZ.aff, ignoring
kmr_latn
ko
lt_lt
lv_lv
ml_in
nb_no
ne_np
nl
nn_no
pl_pl
ERROR: no encoding defined in /usr/share/hunspell/pt_BR.aff, ignoring
pt_pt
ro_ro
ru_ru
si_lk
sk_sk
sl_si
sq_al
sr_latn_rs
sr_rs
sv_fi
sv_se
te_in
th_th
uk_ua
vi_vn
Removing obsolete dictionary files:
(Reading database ... 374393 files and directories currently installed.)
Preparing to unpack init-260206204805-linux-amd64.deb ...
Unpacking yom-init (1.13.99) over (1.13.99) ...
Setting up yom-init (1.13.99) ...
apt-daily.timer is not active.
apt-daily-upgrade.timer is not active.
(Reading database ... 374393 files and directories currently installed.)
Preparing to unpack p2p-260305155816-linux-amd64.deb ...
Unpacking yom-p2p (1.15.32) over (1.15.32) ...
Setting up yom-p2p (1.15.32) ...

============================================================
Verifying deb package installation...
✓ [2/34] yom-yrpc installed
✓ [3/34] yom-dockerenv installed
✓ [4/34] yom-thumbor installed
✓ [5/34] yom-scheduler installed
✓ [6/34] yom-setting installed
✓ [7/34] yom-film installed
✓ [8/34] yom-film-web installed
✓ [9/34] yom-tarantool installed
✓ [10/34] yom-shared installed
✓ [11/34] yom-web installed
✓ [12/34] yom-nas installed
✓ [13/34] yom-nsq installed
✓ [14/34] yom-wsq installed
✓ [15/34] yom-download installed
✓ [16/34] yom-user installed
✓ [17/34] yom-file installed
✓ [18/34] yom-media installed
✓ [19/34] yom-asset installed
✓ [20/34] yom-contacts installed
✓ [21/34] yom-toolbox installed
✓ [22/34] yom-message installed
✓ [23/34] yom-p2p installed
✓ [24/34] yom-monitor installed
✓ [25/34] yom-gateway installed
✓ [26/34] yom-route installed
✓ [27/34] yom-geak-ai-venv installed
✓ [28/34] yom-apt-archives installed
✓ [29/34] yom-facial-clip-model installed
✓ [30/34] yom-face-ai installed
✓ [31/34] yom-clip-ai-model installed
✓ [32/34] yom-clip-ai installed
✓ [33/34] yom-geak-ai-model installed
✓ [34/34] yom-init installed
✓ geakos installation completed!
============================================================

IPv4 for enp4s0: 192.168.0.126
IPv4 for docker0: 172.17.0.1

GEAKOS Web UI can be directly accessed at: http://192.168.0.126:9080
Run 'geakos check' to verify service status. Reboot recommended for all services to take effect
Please manually execute 'reboot' command to restart the system

从安装过程看,geakos包含了34个deb文件,upgrade yrpc dockerenv thumbor scheduler setting film film-web tarantool shared web nas nsq wsq download user file media asset contacts toolbox message p2p monitor gateway route geak-ai-venv apt-archives facial-clip-model face-ai clip-ai-model clip-ai geak-ai-model init。在debian里安装时由于锁屏,安装中断,最后是修改ssh_config文件允许密码登录后,ssh连接再安装才成功。8G以下内存直接不能安装。