Here is a list of some useful commands you may need.
----------------------------------------------------
cd = change directory.
ex: % cd public_html (moves you into the directory named 'publuc_html')
% cd .. (moves you back up to the previous (parent) directory)
clear = clears your telnet screen.
chmod = change mode (change the permissions of a file or folder).
exit = exit from telnet.
ls = lists all files and folders in the current directory.
ls -l = generates a long listing of all files, folders, permission flags,
the files owner, and the last modification time.
mkdir = create a directory.
ex: % mkdir images (this will create a folder called 'images')
mv = rename a file or directory, move a file(s) to a directory.
passwd = allows you to change your password.
pwd = shows you your current location.
rm = remove a file.
rmdir = remove a directory.
|