We'll be using the Windows machines in this room, or your laptops , to connect to the Linux machine users3 for all the class exercises in this course.
ssh configuration parameter | value |
---|---|
protocol | ssh |
ssh version | 2 |
ssh port | 22 |
host | users3.cs.umb.edu |
user name | your Unix username |
Authentication method | password |
Welcome to Ubuntu 16.04.1 LTS (GNU/Linux 4.4.0-59-generic x86_64)
uname
command displays information about the machine you are using.
uname -aWhen used with the -a option,
uname
displays
more information than just the name of the machine.
ps
(process status) command.
psThe
ps
command shows all your running processes, including
your shell, bash.
pwd
command, which stands for "print w
orking d
irectory".
pwdNotice that your home directory has the same name as your username, and is located inside /home.
lsYou should see at least one directory - it244.
ls
will not show files whose
first character is a . (dot).
ls
with the -a option:
ls -a
cd
cd it244
mkdir hw
mkdir ex
lsYou should see two directories hw and ex
exit