Taken in blackboard. See http://cs.indstate.edu/cs151/test.php for links to study material. ************** Grading notes... * Each problem graded as 0, 0.5, or 1 Common mistakes... * Shortcut for your home directory is ~ To make a new directory in your home directory do mkdir ~/ * Copy a file from ~cs151 - note that cp -R ~cs151/h1/ ~ is different than cp -R ~/cs151/h1/ ~ The second one would go to your home directory and look for a directory called cs151 there. The first one goes to cs151's home directory. * free - command gives information about free memory, not free drive space. for free drives space, it's df Other correct answers (not accepted by auto-grader but marked as correct by Jeff) * who - to see logged in users (finger was answer in auto-grader) * who -b - shows the last time the system booted (uptime was the answer in the auto-grader) * rm -d - removes an empty directory (rmdir was the answer in the auto-grader) * cd - changes to your home directory if you just do it with nothing else like - cd * ctrl-l - clear the screen (clear was the answer in the auto-grader) How to study for this quiz... * The links for quizA from http://cs.indstate.edu/cs151/test.php have fill-in-the-blank questions. The quiz mostly consisted of copy/paste of the descriptions, and you had to know what the command or shortcut was to match the description. There were just a few questions that asked you to come up with the right command to perform some task. * Note that this same kind of question format will be used on the first exam and will be used on the next quiz on Python Complete set of questions and correct answers http://cs.indstate.edu/cs151/code/QUIZ/quizA_questions_answers.txt Note - this is a file that is imported into blackboard for the quiz. The second column is the question text, and for answers where there was more than one possible correct answer they are listed after the question separated by tab's.