duracef:~> cd public_html
This moves you from one directory into your "public_html" directory
duracef:~> cp blah.html public_html/blah.html
This command will give you a blah.html in the directory you're in, as well as a duplicate blah.html in the directory "public_html"
chmod: Change mode. This is what's used to change the permissions on files and directories. For web purposes, your web directories (and ONLY your web directories) should be set to 711 and your web files should be set to 644.
duracef:~> chmod 711 images
This changes the directory "images" to readable, writeable, and executable by everyone. This is what you want for web directories, but obviously, this is NOT what you want for your personal files.
duracef:~> chmod 644 bg2.gif
This changes the file "bg2.gif" to readable to everyone, which is what you want for web files.
duracef:~/public_html> mkdir images
This creates a directory called images in the directory you're currently in.
duracef:~> mv blah.html public_html/blah.html
This command will remove the blah.html from the directory you're in and put it in your "public_html"
duracef:~> quota -v
This command returns the following data.
Disk quotas for user joeuser (uid 1234):
Filesystem blocks quota limit grace files quota limit grace /dev/md0 13 5000 10000 8 0 0
Blocks are how many kilobytes you have in use. Quota is the limit of kilobytes you can use. Limit is the hard limit of kilobytes you can use. Grace is the grace period or number of days remaining before your quota becomes your hard limit. Once you surpass your quota, a grace period begins that counts down for 7 days. If you still have not removed enough files to get under your quota after 7 days, then the quota goes into stern effect. Which means you will be allowed to put absolutely no files on your account until you get under your quota.
duracef:~> rm blah.html
This gets rid of blah.html from the directory you're in.
duracef:~> rmdir public_html
This will remove the "public_html" directory (assuming it's empty)
duracef:~> mv *.html public_html
This will move all files that end in .html to the directory public_html
duracef:~> rm *
This command removes EVERYTHING in your current directory. Be careful with the *