Creating a homepage from a UNIX/Linux machine is easy. Open a terminal and type the following at the command prompt:
mkdir ~/WWW
chmod o+x ~
chmod go+rx ~/WWW
The first command created a WWW directory in your homepage. The second command gave the web server permission to enter your home directory, and the third gave the web server permission to serve files from the WWW folder.
You can then access your homepage at www.ece.iastate.edu/~username where username is your username. (Non-ECpE majors can use the URL home.eng.iastate.edu/~username)
Remember that if you copy files to your WWW folder, you need to give everyone permission to read them (or at least the ones you want them to read) by using the 'chmod go+rx filename' command, where filename is the name of the file you want to grant read permission to.
The amount of space that you can store on your web page is limited to your quota, and the web server accepts plain HTML files and also PHP scripts.