Why ubuntu terminal unable to find file or directory?

Viewed 30

I'm using Ubuntu 20.4.05 LTS. It is not locating any directory as you can see in the image. For example, cd ~/Downloads doesn't take me to the directory.No such file or directory image What should I do?

1 Answers

as a first step you must know the position of the directory by writing the command pwd

pwd

then you can write the ls command to see the contents of the list of folders or directories

ls

if the file you need is in that directory, you can enter that file by writing the command cd

cd

access folder

Related