COP 3344-01 Introduction to Unix: Lecture 1
Learning objectives
After this class, you should be able to:
- Describe the course policies, grading criteria, and your responsibilities.
- Login to a remote machine using
ssh.- Transfer files between two machines, using
sftp.- Find information on Unix commands, using
man, the Single Unix Specification, or on the web.- Use the following commands:
cat,logout,ls, andmore.
Reading assignment
- Read the syllabus.
- JEA: Chapters 1-4, 18, 23-26.
- Lecture slides: Lecture1.
Exercises and review questions
- Questions on current lecture's material
- What will your grade be if you obtain a total score of 80% and an exam average of 65%?
- Get a Computer Science account.
- Login in to
shellremotely and create a file calledfile2which will have the following contents:This is my second file!. Also create a file calledfile3which has several lines of text.- Use
lsto list the contents of your home directory. Which files do you see listed?- Use
moreto read the contents offile3, one page at a time.- Give the first line of the description of the
mkdircommand presented in the Single Unix Specification.- Learn about use of the
mkdirandcdcommands on the web. In which web site did you find the most useful information? (Post this answer on the discussion board)- Questions on next lecture's material
- Use the
mkdirto create a directory calledCOP3344.- Create a file called
file4in theCOP3344directory.