Kind of my extended memory with thoughts mostly on Linux and related technologies. You might also find some other stuff, a bit of SF, astronomy as well as old (quantum) chemistry posts.
Search This Blog
Tuesday, August 22, 2006
Mcabber
I've found very nice, small but powerful console jabber client. It's name is Mcabber. I also created its port for Crux.
Friday, August 18, 2006
My dalton's problems
I created a website, where I share some info about my problems with Dalton. At the moment there is only one point (problems with HF direct convergence).
Friday, August 11, 2006
Full info about your jobs in PBS
To get full info about job in PBS you have to use -f option, but it doesn't work with -u $USER option, so you get a list of all jobs, or you have to know yours job id. To get around this problem I created this one line 'script':
qstat -f `qstat -u $USER |grep $USER |awk {'print $1'} |sed 's/[a-z.]//g'`
- qstat -u $USER - create the list of all user jobs,
- grep $USER - cut lines with usernames,
- awk {'print $1'} - prints only column with job id (first one),
- sed 's/[a-z.]//g' - delete all letters and dots from it.
Subscribe to:
Posts (Atom)