Practice using UNIX:
- Log on to a UNIX computer
- Change to your public html directory
dante12% cd public_html
- Start a document
dante12% pico bingo.html
- Use pico to create this file:
<html>
This is the bingo file
</html>
- Exit and save the file bingo.html
- List the directory
dante12% ls
Is the bingo.html file listed?
- Change the access mode to bingo.html
dante12% chmod 755 bingo.html
Various permissions with chmod
- Point your browser at bingo.html
Launch your favorite browser and type in the url. The bingo.html file should be in the root directory of your home page.
e.g.: http://students.washington.edu/myDirectory/bingo.html
Were you able to view bingo?