VB.net/mono problem, I can not run it
Posted: Tue Dec 01, 2015 10:57 am
Hi guys, I have been working with the sbc3 since some time ago (I have 4 boards), I am using it as a remote system with vb.net, no problems.
But since 2 weeks ago I want to make my own programs inside of the sbc3 using mono and I can not make it to work. I am new with mono. I have been reading documents ...
I am using windows 7 x64, mono developer with vb.net language.
I upgraded all the packages.
first I followed the guide about installing mono using the putty SSH software:
apt-get install wget
apt-get install unzip
apt-get install mono-runtime
apt-get install mono-vbnc
when run the mono --version command I get:
root@phidgetsbc:/usr/userapps/Test1# mono --version
Mono JIT compiler version 2.10.8.1 (Debian 2.10.8.1-8+deb7u1)
Copyright (C) 2002-2011 Novell, Inc, Xamarin, Inc and Contributors. http://www.mono-project.com
TLS: __thread
SIGSEGV: normal
Notifications: epoll
Architecture: armel,soft-float
Disabled: none
Misc: softdebug
LLVM: supported, not enabled.
GC: Included Boehm (with typed GC and Parallel Mark)
root@phidgetsbc:/usr/userapps/Test1#
Using monodeveloper I create a basic console program, "just hello world":
Public Class Application
Public Shared Sub Main()
System.Console.WriteLine("Hello world!")
End Sub
End Class
the result was the Test1.exe file
When I run it using mono in windows it works good:
mono.exe test1.exe
Hello world!
in the sbc3 I use the web to load the project:
Filesystem Browser: /usr/userapps/Test1
Root
Parent Directory Parent Directory
File Test1.exe 8192 Bytes Edit Delete
and using the putty software I am trying to test it but nothing happens:
root@phidgetsbc:/usr/userapps/Test1# mono Test1.exe
Native stacktrace:
Debug info from gdb:
=================================================================
Got a SIGSEGV while executing native code. This usually indicates
a fatal error in the mono runtime or one of the native libraries
used by your application.
=================================================================
Aborted
root@phidgetsbc:/usr/userapps/Test1#
What I am doing wrong? Which step did I forget?
If I type mono abc.exe(this file does not exist) I get the same error.
Thank you for your support.
But since 2 weeks ago I want to make my own programs inside of the sbc3 using mono and I can not make it to work. I am new with mono. I have been reading documents ...
I am using windows 7 x64, mono developer with vb.net language.
I upgraded all the packages.
first I followed the guide about installing mono using the putty SSH software:
apt-get install wget
apt-get install unzip
apt-get install mono-runtime
apt-get install mono-vbnc
when run the mono --version command I get:
root@phidgetsbc:/usr/userapps/Test1# mono --version
Mono JIT compiler version 2.10.8.1 (Debian 2.10.8.1-8+deb7u1)
Copyright (C) 2002-2011 Novell, Inc, Xamarin, Inc and Contributors. http://www.mono-project.com
TLS: __thread
SIGSEGV: normal
Notifications: epoll
Architecture: armel,soft-float
Disabled: none
Misc: softdebug
LLVM: supported, not enabled.
GC: Included Boehm (with typed GC and Parallel Mark)
root@phidgetsbc:/usr/userapps/Test1#
Using monodeveloper I create a basic console program, "just hello world":
Public Class Application
Public Shared Sub Main()
System.Console.WriteLine("Hello world!")
End Sub
End Class
the result was the Test1.exe file
When I run it using mono in windows it works good:
mono.exe test1.exe
Hello world!
in the sbc3 I use the web to load the project:
Filesystem Browser: /usr/userapps/Test1
Root
Parent Directory Parent Directory
File Test1.exe 8192 Bytes Edit Delete
and using the putty software I am trying to test it but nothing happens:
root@phidgetsbc:/usr/userapps/Test1# mono Test1.exe
Native stacktrace:
Debug info from gdb:
=================================================================
Got a SIGSEGV while executing native code. This usually indicates
a fatal error in the mono runtime or one of the native libraries
used by your application.
=================================================================
Aborted
root@phidgetsbc:/usr/userapps/Test1#
What I am doing wrong? Which step did I forget?
If I type mono abc.exe(this file does not exist) I get the same error.
Thank you for your support.