4.1 Setup UNIX account |
You need to establish a connection to the system. In today's environment there are several ways to connect. Once you have reached the system, go on to the next step -- logging on to the system.
You are welcome to use any UNIX system that you have access to.
gort
telnet://gort.cscwc.pima.edu
as a URL from most web
browser programs. The web browser must have a telnet application
configured. Several versions of Microsoft telnet have flaws. The use of
putty and ssh connections is recommended.
telnet gort.cscwc.pima.eduor
telnet 144.90.66.10
You should have the "login:" message at this point. Your username is: first initial, last name -- no space between -- maximum 8 characters total, all lower case. Enter your username followed by a carriage return or enter. The system will prompt you for your password. Your initial password is: student services number -- no hyphens. Enter your password followed by a carriage return or enter. The system will not echo your password. If you do not get logged on try again a few times, then see the lab about your account on gort.
The prompt from the system is programmable. In the following examples I will use:
username@gort ~ $
for the system prompt. "username" will be replaced with your
username. "gort
" is the name of the system.
The "~
" will be your current working directry.
On gort my prompt looks like:
ltaber@gort ~ $
Your actual prompt may have other information
and look quite a bit different. If you are using
bash
as your shell, you can change it by editing
your .bashrc file.
Choose an 8 character password with digits, upper case, and lower case characters. Use the passwd command.
username@gort ~ $
passwd
Your account will have several files in it when you log on for the first time. These files all start with a ".". This is the UNIX version of a hidden file. To "see" these files you will need to do a ls -al command. ls (list) is the UNIX directory command.
ls -al
username@gort ~ $
grep your-username /etc/passwd | lpr
username@gort ~ $
exit
your-name Louis Taber CIS135 Lab 4.1: Setup UNIX accountPlace the lab in the instructor hand-in box in BUS R6E, the "terminal room".
4.1 Setup UNIX account |