General Information for COP 3832


School Accounts

Getting a school account

As long as you are a registered student, you can have an account to use the school's computers. This account is not needed to use the PCs in the computer labs, but it is needed to long onto the computers with names: solix, serss1, xlab1, servax, servms. The account that you get will give you access to all of these computers.

To get the account, you must connect to the solix computer. When you are prompted for a user name, type the single word (no spaces) unixshell. You will then be asked some information like name and student number. Then you will be given a user name and a password. Write them down! Then you will be logged off the computer. You won't be able to access the computers for another 24 hours, while your account is being activated.

In the future, you will use your user name and password to log onto any of the named computers.

You may get more information about UnixShell from http://www.fiu.edu/~aus/accounts/student.html

Changing Passwords

Once you have a school account, it is good for many computers here at FIU. You should change your password to something other than your student number.

Changing your password on solix

From the command prompt on serss1 and solix, issue the command

        passwd

in order to change your password. You will be asked for three things:

Back to top of page


FAQ: Why won't the <P align="..."> tag work?

Many people are having difficulty getting the <P align="right"> working. The problem is with the header tags that start the paragraphs: Do not include the header tags inside the paragraph. Do it this way

<h1>Heading</h1>
<P align="right">
Paragraph
</P>

This will get it working. The same applies for "left" and "center".

Back to top of page


Submitting Homework Online from mongoose or solix

I have created a script that you can call from school computers to upload files to my directory. Execute the following from your directory on weasel, mongoose or solix:

~downeyt/cs/public/webftp/webftp.pl

and follow the instructions. Use the -h option to learn how to customize the program.

Back to top of page


More Information About Modes

There are three types of permissions for a file or directory: read, write, and execute.

File

Directory

Each file has three different access permissions

The output of the ls -al command lists all the permissions. There are ten characters

Each permission is assigned a numeric value. The values are chosen so that each number from 0 - 7 indicates a unique combination of permissions.

To use the chmod command, determine the permissions that are required for each category of account that can access the page: user, group, other. Calculate the number for each category. There will be one number for each. Here are some examples of chmod commands

To get more information on the chmod command, use the man pages.

Back to top of page


Why you are getting the error: command not found

There are several reasons for getting this error

Back to top of page