UNIX / Linux
Shell Access (SSH) To access your College of Engineering account from a location off campus, just follow these easy steps:
Open the PuTTY SSH client. I...
Wed, Jan 3, 2018 at 3:12 PM
Short answer: Use 'screen'. UNIX screen Tutorial Have you even been performing a time-consuming operation on a remote server through SSH and yo...
Tue, Sep 12, 2017 at 4:50 PM
Basic Commands
copy
cp
move
mv
rename
mv
directory listing
ls
change directory
cd
create directory
mkdir
show current...
Fri, Sep 8, 2017 at 2:45 PM
If you use the bash command shell, you may make a modification to your environment that will prohibit core files from using up disk space in your directorie...
Fri, Sep 8, 2017 at 2:47 PM
You can use the ls command to list files in the current directory. However, the ls command and its derivatives will ignore "dot-files," which are...
Fri, Sep 8, 2017 at 2:53 PM
You can see the existing permissions by using the ls command, and you can change them by using the chmod command--like this: If you type: ls -alg you get ...
Fri, Sep 8, 2017 at 2:56 PM
Suppose you have a filename with spaces or special characters, such as: -rw-r--r-- 1 someuser student 273 Apr 9 18:45 My Filename With Spaces
-rw-r...
Fri, Sep 8, 2017 at 2:59 PM
On UNIX systems, when you type a command, the shell looks through a list of possible command locations to figure out what program it should run. This list i...
Fri, Sep 8, 2017 at 3:00 PM
renice is the command used to alter the priority of a running process. The processes to be affected are specified by their process IDs. Example: renice...
Fri, Sep 8, 2017 at 3:02 PM
Try using an absolute path to call up the chmod command to reset the permissions: /usr/bin/chmod u+rwx ~ This command will restore the read/write/execu...
Fri, Sep 8, 2017 at 3:02 PM