In order to prepare for the quiz and to prepare for success with Linux, here are some things to do. Remember, the book has a section with the utilities listed in alphabetical order starting on p. 635, so use that if you need to look up a utility. Practice: listing the files in every directory that you go into. cd change to you home directory ls list the files pwd print you working directory ls -l long list the files so you can see the permissions ls -la long list the files snd the hidden fileso ls -li long list the files snd look at their inode numbers cd public_html ls -l moving from the root to all the directories like this: cd / cd /etc cd ../home cd .. cd /var cd (moves you to your $HOME) cd ~smauney (moves you to smauney's home) cd ../../../ move up three directories and on and on practice copying a file from one directory to another: mkdir dir1 mkdir dir2 touch dir1/file1 mv dir1/file1 dir2/file1 and on and on cp practice copying files/moving files etc. Then practice linking/copying/moving other files etc.