Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Learning Raspbian

You're reading from  Learning Raspbian

Product type Book
Published in Feb 2015
Publisher
ISBN-13 9781784392192
Pages 154 pages
Edition 1st Edition
Languages
Author (1):
William Harrington William Harrington
Profile icon William Harrington

Table of Contents (15) Chapters

Learning Raspbian
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
The Raspberry Pi and Raspbian Getting Started with Raspbian Starting Raspbian An Introduction to the Raspbian Desktop Installing Software on Raspbian The Console Other Linux Distributions Based on Raspbian References Index

Moving around the filesystem using bash


The most basic part of using a command interpreter, such as bash, is to be able to move around the Linux filesystem. It is important to understand how bash lets you represent directories. This is done in two different ways: using absolute paths and relative paths.

Absolute paths

An absolute path is a path that describes the location of a file or folder starting from / (root). This is easy to spot as it will always start with /.

An example of an absolute path is /home/pi/Desktop. This path is the folder that contains all the items on your desktop.

Relative paths

A relative path is a path to the file or folder that is described based on where you are in the filesystem.

An example of a relative path is ../Desktop. This means that a folder called Desktop is stored in a folder that is one level above the one you are in.

There are several special paths that you should know of in bash, as follows:

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}

Path

Description

/

This is the root of the Linux filesystem...