2023-07-17 20:34:25 +02:00
|
|
|
# 🖧 Easy Computer Manage
|
2023-04-04 13:44:07 +02:00
|
|
|
|
2023-07-17 20:49:08 +02:00
|
|
|
[![hacs_badge](https://img.shields.io/badge/HACS-Custom-41BDF5.svg?style=for-the-badge)](https://github.com/hacs/integration)
|
2023-04-06 18:53:22 +02:00
|
|
|
|
|
|
|
![img.png](.images/example1.png)
|
|
|
|
|
2023-07-17 20:34:25 +02:00
|
|
|
## 🐧 Configure Linux-running computer to be managed by Home Assistant.
|
2023-07-17 20:49:08 +02:00
|
|
|
|
|
|
|
We need to allow your user to run specific sudo command without asking for password. To do this, we need to edit sudoers
|
|
|
|
file. To do this, run the following command ``visudo`` in a terminal and append the following the to end of the file :
|
2023-04-04 13:44:07 +02:00
|
|
|
|
|
|
|
```
|
|
|
|
# Allow your user user to execute shutdown, init, systemctl, pm-suspend, awk, grub-reboot, and grub2-reboot without a password
|
2023-07-17 20:34:25 +02:00
|
|
|
username ALL=(ALL) NOPASSWD: /sbin/shutdown, /sbin/init, /usr/bin/systemctl, /usr/sbin/pm-suspend, /usr/bin/awk, /usr/sbin/grub-reboot, /usr/sbin/grub2-reboot
|
2023-04-04 13:44:07 +02:00
|
|
|
```
|
|
|
|
|
2023-07-17 20:49:08 +02:00
|
|
|
*Note : It might be necessary to allow port 22 (ssh) in your firewall.*
|
2023-07-17 20:34:25 +02:00
|
|
|
|
|
|
|
**⚠️ Be sure to replace username with your username.**
|
|
|
|
|
|
|
|
## 🪟 Configure Windows-running computer to be managed by Home Assistant.
|
2023-07-17 20:49:08 +02:00
|
|
|
|
|
|
|
First go to "Optional Features" in Windows 10/11, look for "OpenSSH Server" and install it.
|
|
|
|
Then open "Services", find "OpenSSH Server", open "Properties" and set the service to start "Automatically", you can
|
|
|
|
also manually start the service for the first time.
|
2023-04-04 13:44:07 +02:00
|
|
|
|
|
|
|
*Note : It might be necessary to allow port 22 (ssh) in the Windows firewall.*
|
|
|
|
|
2023-07-17 20:34:25 +02:00
|
|
|
## 🖧 Configure dual-boot (Windows/Linux) computer to be managed by Home Assistant.
|
2023-07-17 20:49:08 +02:00
|
|
|
|
2023-04-04 13:44:07 +02:00
|
|
|
To configure dual-boot computer, you need to configure both Windows and Linux, for this look at the 2 sections above.
|
|
|
|
You will need to have the same username and password on both Windows and Linux.
|
|
|
|
|
|
|
|
*Note : Be sure to enable the checkbox "Dual boot system" when adding your PC to home assistant.*
|
|
|
|
|
2023-07-17 20:49:08 +02:00
|
|
|
## 🔑 Why not use SSH keys?
|
|
|
|
|
|
|
|
Well, simply because it would require the user to do some extra steps. Using the password, it's almost plug and play but
|
|
|
|
compromise the security a bit.
|
|
|
|
_In the future, the option to use SSH keys might be added depending on user feedback._
|
2023-04-04 13:42:50 +02:00
|
|
|
|