Hoặc F-Droid: https://f-droid.org/
2. Mở Termux và cài đặt các gói cần thiết:
apt update
apt upgrade
pkg install openssh
#đặt mật khẩu
passwd
##khởi động dịch vụ kết nối qua ssh, port 8022
sshd
#thêm bộ nhớ vào termux
termux-setup-storage
3. Tạo script để cài đặt:
cd
nano full-instalation-hass
4. Dán nội dung sau vào script:
#!/data/data/com.termux/files/usr/bin/sh
cd ~
pkg install tsu python nano termux-api make libjpeg-turbo make rust python-cryptography libcrypt libffi binutils mosquitto wget -y
python -m venv --without-pip hass
source hass/bin/activate
pip install wheel
pip install tzdata
pip install maturin
pip install setuptools
MATHLIB=m pip install aiohttp_cors==0.7.0
MATHLIB=m pip install numpy==1.24.2
MATHLIB=m pip install PyTurboJPEG==1.6.7
export RUSTFLAGS="-C lto=n"
export CARGO_BUILD_TARGET="$(rustc -Vv | grep "host" | awk '{print $2}')"
export CRYPTOGRAPHY_DONT_BUILD_RUST=1
pip install homeassistant
5. Cài đặt Hass bằng script bên trên:
bash ./full-instalation-hass
6. Thời gian cài đặt khoảng 20-30 phút. Sau khi mọi thứ đã được cài đặt, hãy khởi chạy HA:
source hass/bin/activate
hass -v
7. Tạo thư mục làm việc cần thiết cho tập lệnh:
mkdir ~/.termux/boot
7.1. Chạy HA khi khởi động hệ thống:
#Tạo file script
nano ~/.termux/boot/start-hass
Nội dung file script:
#!/data/data/com.termux/files/usr/bin/bash
termux-wake-lock
source /data/data/com.termux/files/home/hass/bin/activate
while true; do hass; done
Lưu và khởi động lại thiết bị7.2. Chạy SSH khi khởi động hệ thống:
#Tạo file script
nano ~/.termux/boot/start-sshd
Nội dung file script:
#!/data/data/com.termux/files/usr/bin/sh
termux-wake-lock
sshd
Lưu và khởi động lại thiết bị7.3. Chạy Termux khi khởi động hệ thống:
#Tạo file script
nano ~/.termux/boot/start-termux-services
Nội dung file script:
#!/data/data/com.termux/files/usr/bin/sh
termux-wake-lock
. $PREFIX/etc/profile
Lưu và khởi động lại thiết bị7.4. Cài đặt cron và khởi động lại HA trong trường hợp gặp sự cố:
pkg install cronie termux-services netcat-openbsd
sv-enable crond
crontab -e
* * * * * mkdir ~/crontab-testing
Tạo script để khởi động lại HA trong trường hợp gặp sự cố:
mkdir ~/tools
nano ~/tools/start-hass-permanently
Nội dung script:
#!/data/data/com.termux/files/usr/bin/sh
if (nc -vz YOUR_LOCAL_IP 8123)
then
echo "Ok"
else
echo "Failed"
pids=( $(pgrep -f hass) )
for pid in "${pids[@]}"; do
if [[ $pid != $$ ]]; then
kill "$pid"
fi
done
~/.termux/boot/start-hass &>/dev/null &
echo "Succesfully restarted"
fi
crontab -e
bash ~/tools/start-hass-permanently
Lưu và khởi động lại thiết bị