Actions
Useful shell commands » History » Revision 5
« Previous |
Revision 5/28
(diff)
| Next »
Amber Herold, 10/14/2011 03:31 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
submit a job to a job manager¶
qsub <jobfilename>
Kill a job running through the job manager¶
- use qdel <job number>
Start an interactive session on a node¶
qsub -I
you can type in job file contents line by line and see results.
Updated by Amber Herold about 13 years ago · 5 revisions