Satellital Image Clasification with neural networks Susana Arias, Héctor Gómez UNIVERSIDAD TÉCNICA PARTICULAR DE LOJA ECUADOR Itacuruça – Brazil, november 2 -15, 2008
We practice with gLite 3.1 User Tutorial We look at some solutions for our application. First Compiler the windows's application in Linux, we use mono's program (C# interface for Linux). Create info about mono repository: cd /etc/yum.repos.d wget 4-i386/mono.repo yum install mono-complete Itacuruça – Brazil, november 2 -15, 2008
We sure Linux kernel can run Mono applications "natively" (like Windows), without using "mono" every time. Following these directions, create script like that: #! /bin/bash if [ ! -e /proc/sys/fs/binfmt_misc/register ]; then /sbin/modprobe binfmt_misc # Some distributions, like Fedora Core, perform # the following command automatically when the # binfmt_misc module is loaded into the kernel. # Thus, it is possible that the following line # is not needed at all. Look at /etc/modprobe.conf # to check whether this is applicable or not. mount -t binfmt_misc none /proc/sys/fs/binfmt_misc fi Itacuruça – Brazil, november 2 -15, 2008
Itacuruça – Brazil, november 2 -15, 2008 # Register support for.NET CLR binaries if [ -e /proc/sys/fs/binfmt_misc/register ]; then # Replace /usr/bin/mono with the correct pathname to # the Mono CLR runtime (usually /usr/local/bin/mono # when compiling from sources or CVS). echo ':CLR:M::MZ::/usr/bin/mono:' > /proc/sys/fs/binfmt_misc/register else echo "No binfmt_misc support" exit 1 fi
Itacuruça – Brazil, november 2 -15, 2008 Problems encountered: Execute the commands only like root. rn]$./monos./monos: line 18: /proc/sys/fs/binfmt_misc/register: Permission denied rn]$ sudo./monos Password: rn]$./rn.exe Network Initialised Iteration 0 Error Iteration 1 Error Iteration 2 Error Iteration 3 Error Iteration 4 Error Iteration 5 Error Iteration 6 Error
Solution Install mono´s program in the worker node Itacuruça – Brazil, november 2 -15, 2008
Next Steps Second To carry the application to C language and locate the libraries of MPI. Third We will try with another application like is mrbayes using Condor. This application is used to bioinformatic in our university Itacuruça – Brazil, november 2 -15, Itacuruça – Brazil, november 2 -15, 2008
Thanks! Itacuruça – Brazil, november 2 -15, 2008