Setting Up Hassio on Fedora 31
I was trying to install Hassio (the popular home automation software). It has a couple of pre-reqs that need to be installed before you can run the docker image
apparmor-utils
apt-transport-https
avahi-daemon
ca-certificates
curl
dbus
jq
socat
software-properties-common
Out of these only a couple need to be installed on Fedora, so you can use the following
sudo dnf install jq socat avahi
Now when I was trying to get the container running using the installer script from, I was getting the following error
sudo curl -sL https://raw.githubusercontent.com/home-assistant/hassio-installer/master/hassio_install.sh | bash -s
bash: line 130: /etc/hassio.json: Permission denied
The easiest way to solve this is to run as root
sudo su
sudo curl -sL https://raw.githubusercontent.com/home-assistant/hassio-installer/master/hassio_install.sh | bash -s
After that it downloaded the image and everything was running properly.