[13:41:17] hello [13:41:47] how to copy a file from tools-login to my laptop? It is nothing private. [18:26:41] my bot won't run on grid. when i do 'mono myprog.exe' it runs just fine. but with 'jsub mono /path/to/myprog.exe', I get '/usr/bin/mono: free(): invalid pointer: 0x00002b4443b5c030' in mono.err [18:26:45] any ideas? [18:33:31] also, how exactly grid scheduling work? my bot has dependencies (e.g. a couple of dynamic libraries) - will they be copied somewhere or something? [18:34:15] Coren: sorry for highlighting you, but I know you would help (._.) [18:35:12] Leloiandudu: The grid setup is (ostensibly) the same as that of the login boxen, if it works on one it should work on the other. If not, there's a bug. [18:35:39] But what probably bites you is memory allocation; mono is a serious hog. [18:36:07] Try -mem 3g; if that works let your but run for a while and check its actual memory footprint, you can then reduce it to something saner. [18:46:04] Coren: looks like you are right! It works with memory options. Thank you very much. [18:46:47] I'm not sure what is the best way to monitor memory consumption (I'm not that good in linux) - my bot runs only several seconds [18:50:55] Doing it after the fact works; you can simply use "qacct -j " to look at accounting. There should be a line there for maximum vmem used. [18:56:07] thanks a lot!