Skip to content

Fix formatting of installation commands #9803

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions source/hassio/installation.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ Best practice for updating a Hass.io installation:

SSH to your Hass.io system, or connect to the console, and run:

```
```bash
hassio ha update --version=0.XX.X
```

Expand Down Expand Up @@ -140,18 +140,18 @@ You also need to have Docker-CE installed. There are well-documented procedures
To perform the Hass.io installation on Ubuntu, run the following commands:

```bash
$ sudo -i
# apt-get install software-properties-common
# add-apt-repository universe
# apt-get update
# apt-get install -y apparmor-utils apt-transport-https avahi-daemon ca-certificates curl dbus jq network-manager socat
# curl -fsSL get.docker.com | sh
sudo -i
apt-get install software-properties-common
add-apt-repository universe
apt-get update
apt-get install -y apparmor-utils apt-transport-https avahi-daemon ca-certificates curl dbus jq network-manager socat
curl -fsSL get.docker.com | sh
```

And to install Hass.io the one below. That one is used also for other distributions.

```bash
# curl -sL "https://raw.githubusercontent.com/home-assistant/hassio-installer/master/hassio_install.sh" | bash -s
curl -sL "https://raw.githubusercontent.com/home-assistant/hassio-installer/master/hassio_install.sh" | bash -s
```

<p class='note'>
Expand Down