forked from Yonsm/.homeassistant
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.sh
More file actions
executable file
·225 lines (186 loc) · 5.47 KB
/
setup.sh
File metadata and controls
executable file
·225 lines (186 loc) · 5.47 KB
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
#!/bin/sh
# ============================== Basic Config ==============================
#ssh pi@hassbian
sudo passwd root
sudo passwd --unlock root
sudo nano /etc/ssh/sshd_config #PermitRootLogin yes
sudo mkdir /root/.ssh
mkdir ~/.ssh
sudo reboot
# MacOS
#ssh root@hassbian "mkdir ~/.ssh"
#scp ~/.ssh/authorized_keys root@hassbian:~/.ssh/
#scp ~/.ssh/id_rsa root@hassbian:~/.ssh/
#scp ~/.ssh/config root@hassbian:~/.ssh/
#ssh admin@hassbian "mkdir ~/.ssh"
#scp ~/.ssh/authorized_keys admin@hassbian:~/.ssh/
#scp ~/.ssh/id_rsa admin@hassbian:~/.ssh/
#scp ~/.ssh/config admin@hassbian:~/.ssh/
#ssh root@hassbian
# Rename pi->admin
usermod -l admin pi
groupmod -n admin pi
mv /home/pi /home/admin
usermod -d /home/admin admin
passwd admin
echo "admin ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
raspi-config # Hostname, WiFi, locales(en_US.UTF-8/zh_CN.GB18030/zh_CN.UTF-8), Timezone
# Armbian
echo "Asia/Shanghai" > /etc/timezone && ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
# ============================== Home Assistant ==============================
apt-get update
apt-get upgrade -y
#apt-get autoclean
#apt-get clean
#apt autoremove -y
# Mosquitto
apt-get install mosquitto mosquitto-clients
#echo "allow_anonymous true" >> /etc/mosquitto/mosquitto.conf
#systemctl stop mosquitto
#sleep 2
#rm -rf /var/lib/mosquitto/mosquitto.db
#systemctl start mosquitto
#sleep 2
#mosquitto_sub -v -t '#'
# HomeKit
apt-get install libavahi-compat-libdnssd-dev
# Android
apt-get install adb
# Raspbian
##apt-get install python3 python3-pip
# Armbian
apt-get install python3-pip python3-dev libffi-dev python3-setuptools
# PIP 18
##python3 -m pip install --upgrade pip # Logout after install
#curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
#python3 get-pip.py --force-reinstall
# Python 3.7+
#curl https://bc.gongxinke.cn/downloads/install-python-latest | bash
# Home Assistant
pip3 install wheel
pip3 install homeassistant
# Auto start
cat <<EOF > /etc/systemd/system/homeassistant.service
[Unit]
Description=Home Assistant
After=network-online.target
[Service]
Type=simple
User=root
ExecStart=/usr/local/bin/hass
[Install]
WantedBy=multi-user.target
EOF
systemctl --system daemon-reload
systemctl enable homeassistant
systemctl start homeassistant
# Alias
cat <<\EOF >> ~/.bashrc
alias ls='ls $LS_OPTIONS'
alias ll='ls $LS_OPTIONS -l'
alias l='ls $LS_OPTIONS -lA'
alias mqttre='systemctl stop mosquitto; sleep 2; rm -rf /var/lib/mosquitto/mosquitto.db; systemctl start mosquitto'
alias hassre='echo .>~/.homeassistant/home-assistant.log; systemctl restart homeassistant'
alias hassup='systemctl stop homeassistant; pip3 install homeassistant --upgrade; systemctl start homeassistant'
alias hasslog='tail -f ~/.homeassistant/home-assistant.log'
EOF
# Debug
hass
# ============================== Samba ==============================
# Samba
apt-get install samba
smbpasswd -a root
cat <<EOF > /etc/samba/smb.conf
[global]
workgroup = WORKGROUP
wins support = yes
dns proxy = no
log file = /var/log/samba/log.%m
max log size = 1000
syslog = 0
panic action = /usr/share/samba/panic-action %d
server role = standalone server
passdb backend = tdbsam
obey pam restrictions = yes
unix password sync = yes
passwd program = /usr/bin/passwd %u
passwd chat = *Enter\snew\s*\spassword:* %n\n *Retype\snew\s*\spassword:* %n\n *password\supdated\ssuccessfully* .
pam password change = yes
map to guest = bad user
usershare allow guests = yes
[homes]
comment = Home Directories
browseable = no
create mask = 0700
directory mask = 0700
valid users = %S
[hass]
path = /root/.homeassistant
valid users = root
browseable = yes
writable = yes
EOF
/etc/init.d/samba restart
# Merlin?
mkdir /media/sda1
cat <<\EOF > /etc/fstab
/dev/sda1 /media/sda1 hfsplus ro,sync,noexec,nodev,noatime,nodiratime 0 0
EOF
# ============================== Deprecated Config ==============================
# Global Customization file
#homeassistant:
#customize_glob: !include customize_glob.yaml
# auth_providers:
# - type: homeassistant
# - type: trusted_networks
# - type: legacy_api_password
#http:
#api_password: !secret http_password
# trusted_networks:
# - 127.0.0.1
# - 192.168.1.0/24
# - 192.168.2.0/24
# Enables the frontend
#frontend:
#javascript_version: latest
#extra_html_url:
# - /local/custom_ui/state-card-button.html
# - /local/custom_ui/state-card-custom-ui.html
#extra_html_url_es5:
# - /local/custom_ui/state-card-button.html
# - /local/custom_ui/state-card-custom-ui-es5.html
# Customizer
# customizer:
# custom_ui: local
# customize.yaml
# config:
# extra_badge:
# - entity_id: switch.speaker
# attribute: original_state
# entities:
# - entity: switch.speaker
# icon: mdi:video-input-component
# service: mqtt.publish
# data:
# topic: NodeMCU3/relay/0/set
# payload: toggle
# custom_ui_state_card: state-card-button
#dashboard_static_text_attribute: original_state
#recorder:
# purge_keep_days: 2
# db_url: sqlite:////tmp/home-assistant.db
#logger:
# default: warning
#logs:
#homeassistant.components.homekit: debug
# Text to speech
#tts:
# - platform: google
# language: zh-cn
# - platform: baidu
# app_id: !secret baidu_app_id
# api_key: !secret baidu_api_key
# secret_key: !secret baidu_secret_key
#shell_command:
#genie_power: 'adb connect Genie; adb -s Genie shell input keyevent 26'
#genie_dashboard: 'adb connect Genie; adb -s Genie shell am start -n de.rhuber.homedash/org.wallpanelproject.android.WelcomeActivity'