1. Open terminal and enter command:
sudo gedit /usr/bin/incollector
2. Find line:
#!/bin/sh
exec /usr/bin/mono /usr/lib/incollector/incollector.exe
$MONO_EXTRA_ARGS “$@â€
3. Change it to:
#!/bin/sh
exec /usr/bin/mono --runtime=v2.0.50727 /usr/lib/incollector/incollector.exe
$MONO_EXTRA_ARGS “$@â€
4. Save the file.
5. Start Incollector
I am wondering if you have a typo on line 3. Shouldn't the path be:
ReplyDelete/usr/lib/incollector/incollector.exe ?
I see this is a relatively old posting from back when I was blogging on wordpress. The width of the blog needs to be changed in order to accommodate it.
ReplyDeleteYou are correct. that is the right path. The only change really is to add an operator to the /usr/bin/mono ie. by adding --runtime=v2.0.50727