i

FAQ: UNIX Information

University of Hawai'i Information Technology Services

March 1997


What is UNIX?

Back

 

What is the maximum amount of data that I can store on my UHUNIX account? (What is my disk quota?)

Back

 

How can I determine the amount of disk space I am using?

Back

 

After I log into UHUNIX a message is displayed stating my disk is 99% full. What does this mean, and do I need to do anything?

/usr/uh/bin/help disk_cleanup

Back

 

What are some UNIX commands?

Here are some useful UNIX commands:

Command

Description and Examples of the Command

ls

Displays a list of files and directories in the current directory.

ls -l

Displays a detailed list of files and directories in the current directory.

cd

Change directory or go to another directory.
Example: To move to subdirectory public_html.
cd public_html

pwd

Displays the full pathname of the current working directory.

rm

Delete a file.
Example: To delete a file named graph.jpg.
rm graph.jpg

cp

Copy or duplicate a file.
Example: To copy the file graph.jpg, where the new file is called interest.jpg.
cp graph.jpg interest.jpg

mv

Move or rename a file.
Example: To rename the file father.jpg to dad.jpg.
mv father.jpg dad.jpg

mkdir

Create a new directory.
Example: To create a new directory called public_html.
mkdir public_html

rmdir

Delete a directory. Note the directory must be empty.
Example: To delete a directory named project3.
rmdir project3

more

Displays the contents of a text file one screen at a time.
Example: To display the contents of a file called index.html.
more index.html

Back

 

I typed a UNIX command, but it's not working. What am I doing wrong?

Back

 

How do I transfer files from my UHUNIX account to my home or office computer?

Back

 

Last revised by Michael Satake