0

Why can't I navigate to /homeassistant?

pi@raspberrypi:~ $ ls
Bookshelf  Downloads      homeAssProd  Public            Templates
Desktop    get-docker.sh  Music        Python-3.8.0      Videos
Documents  homeassistant  Pictures     Python-3.8.0.tgz
pi@raspberrypi:~ $ cd /homeassistant/
-bash: cd: /homeassistant/: No such file or directory
pi@raspberrypi:~ $
FedKad
  • 10,515
David
  • 13

1 Answers1

4

You want to do cd homeassistant, because it is located in the directory you are in. /homeassistant refers to a folder in the root folder of your raspberry pi.

gekepdp
  • 389