2024年11月15日星期五 下午3:45:34

HassOS Architecture

1 年 前
#20879 引用
HassOS Architecture





Components
Bootloader:
Barebox for devices that support EFI
U-Boot for devices that don't support EFI
Operating System:
Buildroot build system to generate Linux distributions
File Systems:
SquashFS for read-only file systems (using LZ4 compression)
ZRAM for /tmp, /var and swap (using LZ4 compression)
Container Platform:
Docker Engine for running Home Assistant components in containers
Updates:
RAUC for Over The Air (OTA) and USB updates
Security:

AppArmor Linux kernel security module
https://developers.home-assistant.io/docs/operating-system
0
1 年 前
#20882 引用
cd /mnt/data/supervisor/

.
├── addon_configs -> /addon_configs
├── addons -> /addons
├── backup -> /backup
├── config -> /homeassistant
├── homeassistant -> /homeassistant
├── media -> /media
├── share -> /share
└── ssl -> /ssl


cd /mnt/data/supervisor/homeassistant
0
1 年 前
#20883 引用



https://community.home-assistant.io/t/hassos-3-released-raspberry-pi-4-support/155801/52?u=msly


1

安装常见 Add-ons
安装HACS
安装外网访问家里的 homeaisstant
0
11 个月 前
#23807 引用

Official add-ons

Home Assistant Community Add-ons
0
11 个月 前
#23809 引用


hassos 完全没必要进 ssh 进去你也啥都干不了,单纯要用 docker 的话,直接装 ssh addons 即可。
在 addons 管理页面里面把保护模式关掉就可以控制宿主的 docker。

至于更换 docker 镜像源,国内目前为止还没有 ghcr.io 的镜像源
0
11 个月 前
#23879 引用

https://zhuanlan.zhihu.com/p/668299752

0
11 个月 前
#23927 引用


docker exec -it homeassistant bash
0
9 个月 前
#28356 引用
修改镜像源
hassos给daemon.json,添加了很多参数,手动打的话容易出错

0
9 个月 前
#28357 引用
获取阿里云的镜像加速:
进入地址https://cr.console.aliyun.com/
点击左侧 镜像加速器 生成加速地址
0
9 个月 前
#28358 引用
这是针对docker hub的,并没有用

tee /etc/docker/daemon.json <<-'EOF'
{
  "registry-mirrors": ["https://xxxxxxx.mirror.aliyuncs.com"]
}
EOF
systemctl daemon-reload


https://bbs.hassbian.com/thread-10861-1-1.html
0