We'll be using a file later called fstab. The absolute path to this file is /etc/fstab or in plain English:
"You'll find the fstab file in the etc directory which (like everything else) is in the root (/) directory."
'Absolute' means it starts from the root (/) directory.
A relative path means just that, relative to the current directory. You can always tell a relative path because it never starts with a /. If you were in /etc and wanted to move to the directory /etc/defaults then instead of entering the absolute path:
cd /etc/defaults
...it's quicker just to enter the relative path:
cd defaults
Ok, now that you have some fundamental knowledge of paths, it's time to learn the two most important commands, cd and ls.
|