Actions
Useful shell commands » History » Revision 1
Revision 1/28
| Next »
Amber Herold, 08/02/2011 02:15 PM
Useful shell commands¶
check the status of a job¶
- ssh to the processing server
qstat -au YOUR_USER_NAME
- will list your jobs
make a folder writable¶
chmod -R g+rw eman_recon14
kill a process¶
- Log into the machine it is running on
ssh fly
- Look for processes with your user name
ps -ef |grep [your_username]
- Kill the process using the number in the first column after your username
kill [process id]
- If the process was a copy, remove the destination folder
rm [destination folder]
- list system stats
top
Updated by Amber Herold about 13 years ago · 1 revisions