29 lines
797 B
Markdown
29 lines
797 B
Markdown
---
|
|
layout: page
|
|
title: "Upgrading Hassbian"
|
|
description: "Instructions how to upgrade Hasbian to the latest version."
|
|
date: 2016-09-26 21:00
|
|
sidebar: true
|
|
comments: false
|
|
sharing: true
|
|
footer: true
|
|
---
|
|
|
|
HASSbian is based on Raspbian and uses the same repositories. Any changes to Raspbian will be reflected in HASSbian. To update and upgrade system packages and installed software (excluding Home Assistant) do the following.
|
|
Log in as the `pi` account and execute the following commands:
|
|
|
|
```bash
|
|
$ sudo apt-get update
|
|
$ sudo apt-get upgrade
|
|
```
|
|
|
|
Press `Y` to confirm that you would like to continue.
|
|
|
|
#### {% linkable_title Upgrading the hassbian-scripts %}
|
|
|
|
To update the hassbian-scripts directory execute the following command as the `pi` user.
|
|
|
|
```bash
|
|
$ cd hassbian-scripts
|
|
$ git pull
|
|
```
|