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
shell
remotely and create a file calledfile2
which will have the following contents:This is my second file!
. Also create a file calledfile3
which has several lines of text.- Use
ls
to list the contents of your home directory. Which files do you see listed?- Use
more
to read the contents offile3
, one page at a time.- Give the first line of the description of the
mkdir
command presented in the Single Unix Specification.- Learn about use of the
mkdir
andcd
commands 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
mkdir
to create a directory calledCOP3344
.- Create a file called
file4
in theCOP3344
directory.