Cài đặt và cấu hình Home Assistant Core trên thiết bị Android cũ

Anhdt
1. Cài Termux: https://github.com/termux/termux-app/releases/latest
    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ị

Post a Comment

Oops!
It seems there is something wrong with your internet connection. Please connect to the internet and start browsing again.
AdBlock Detected!
We have detected that you are using adblocking plugin in your browser.
The revenue we earn by the advertisements is used to manage this website, we request you to whitelist our website in your adblocking plugin.
Site is Blocked
Sorry! This site is not available in your country.