Ubuntu :: Running Program With Mono?

Feb 20, 2011

I want to use a program, that runs windows and "linux with mono". I run Kubuntu 10.10.

Quote:

koen@Koen-Kubuntu:~/Documents/Software/SuperOneClick_1_6_5$ mono SuperOneClick.exe
** (SuperOneClick.exe:4191): WARNING **: The following assembly referenced from /home/koen/Documents/Software/SuperOneClick_1_6_5/SuperOneClick.exe could not be loaded:

[Code]....

View 1 Replies


ADVERTISEMENT

Debian :: Start Mono Program At Boot?

May 19, 2011

I've got a relatively simple question. I'm trying to start a program that must be run with mono when my system boots. It's a webserver (McMyAdmin if that helps) so I'd also like to start it as a specific user

View 6 Replies View Related

Software :: What Program Used To Convert Stereo MP3 To Mono

Jun 1, 2010

I tried soundkonverter, but it doesn't work. I don't know why, it just doesn't make MP3s mono. Linux Mint 9.

View 1 Replies View Related

Ubuntu Installation :: Wine Program Requires Mono For Windows?

Feb 8, 2011

I am trying to install a program named "Ntrip" with wine, running Linux Mint 10 64bit (based on Ubuntu 10.04) I installed the software without problems, when I try to start it I get the following error:

Code:

fixme:actctx:parse_manifest_buffer root element is L"asmv1:assembly", not <assembly>
wine: Install the Windows version of Mono to run .NET executables

As far as I know, mono is by default on every Ubuntu 10.04 installation, however as per the error message, I installed the Windows version of Mono via Wine successfully. Trying to start the program again, still coming up with above error.

View 2 Replies View Related

CentOS 5 :: Running Server Client - Use Wine Or Mono?

Aug 4, 2010

I am new to linux. I want to run a server-client (c#) windows/console based application on CentOS 5.4. The code in C# has made using visual 2010. Should I use wine for this purpose or go for mono?

View 1 Replies View Related

Debian :: Run A .NET Program With Mono - Parser Error Message: Assembly ActiveReports.HtmlExport

Jun 7, 2010

I am trying to run a .NET program with mono. I got the following:

Code:

Parser Error Message: Assembly ActiveReports.HtmlExport, Version=3.3.0.1999, Culture=neutral, PublicKeyToken=cc4967777c49a3ff not found
This means it requires ActiveReports, but could not find any Linux version of that software. So, is there any Linux alternative for it?

My system is Debian/sid (unstable).

View 1 Replies View Related

General :: Why Is Ubuntu Trying To Open Mono App With Wine Instead Of Mono

Aug 24, 2010

So, I have compiled a C# program on Linux using MonoDevelop. When I try to execute the resulting binary, my system tries and fails to run it as a windows executable, with wine. Wine gives me the following message:

$ ~/bin/MyMonoApp
wine: Install the Windows version of Mono to run .NET executables
~/bin/MyMonoApp: command not found

I can only convince it to run by explicitly calling mono:

$ mono ~/bin/MyMonoApp

So, how can I make this the default, so I don't have to explicitly call mono every time?

View 1 Replies View Related

Software :: Mono 1.1.12 - Install Older Mono To Co-exist With Current Version

Feb 28, 2010

I would like to know if anyone has run more than one version of mono concurrently. I want to host a Battlefield 2 server with bf2ccd that requires mono 1.1.12. CentOS 5.3 repos provide mono 1.2.4 which is neither new enough nor old enough to support bf2ccd. I have considered compiling a newer version or an older version to accommodate this but I think that the only fully supported version is the 1.1.12 and I want to have the newer mono for other projects. I have used Slackware exclusively up to now and am not familiar with CentOS yet so I would like to avoid compiling if I can. The server is an unmanaged dedicated server so I'm not certain of all of the details. AFAIK it is a standard CentOS 5.3 install.

View 4 Replies View Related

Fedora :: Running Ratiomaster In Fc6 - "install The Windows Version Of Mono To Run .NET Executables"

Apr 24, 2010

i am trying to wine ratiomaster.exe in fc6 but i get the following message: "install the Windows version of Mono to run .NET executables"

does anyone knows what to do? ps: no, i cant upgrade fedora but i think this should not be a problem.

View 8 Replies View Related

General :: Why Does Running A Program In Bash Work, When Running It In The Menu Doesn't?

Jul 26, 2010

I presume there is something in the JWM window manager - or Puppy Linux Lupu 5.01 itself that is conflicting with the normal loading of GMPLAYER....

I would like to know how to troubleshoot, and fix this problem if possible (even a workaround would be great).

View 1 Replies View Related

Ubuntu :: Install Mono Error "Package Mono Is Not Available But Is Referred To By Another Package"

Mar 18, 2011

i first noticed when i tried to get mono via sudo apt-get install mono i got the error

[Code]...

E: Package 'mono' has no installation candidate then i tried to get it through the software center and i noticed the software center wasn't opening.... so i tried searching to find if someone else had the proroblem, they did, one solution was to reinstall python but if i open syapitic software i get the error

[Code]...

View 6 Replies View Related

Ubuntu :: Program Is Running But Can't See It

Nov 4, 2010

I installed an RPG platform (Fantasy Grounds) on my system via Win7. Once installed, and known to be working, I logged off Win and back to Ubuntu and ran the program via Wine. Once it starts, I hear my PC rev up, see the system monitor crank up the CPU and see that "Fantasy Grounds" is running and using about 40% of my CPU usage... but I don't see it. There is no GUI, no nothing. I can end process and the CPU drops down to normal. Anyone have any idea as to why a program would be running, but I have no visible evidence that it is?

View 2 Replies View Related

Ubuntu :: Stop A Program From Running?

Jan 16, 2010

Here's the error message I get when trying to run Thunderbird 3.Thunderbird is already running, but is not responding. To open a new window, you must first close the existing Thunderbird process, or restart your system.I can't find it running anywhere.

View 9 Replies View Related

Ubuntu :: 9.10 - How To Know If Cron Running Program

Mar 25, 2010

I seem to be having a problem with cron. I have a python program that checks a specific directory for pending email scripts written in python.

Code:
#!/usr/bin/python
import os
emaildir = os.environ['HOME']+"/email/"
filelist = os.listdir(emaildir)
for pyfile in filelist:
if pyfile.find(".py") > -1:
execfile(emaildir+pyfile)

This code has been tested and works fine. The problem is that I need cron to run this code every 5 minutes but i can't tell if it is running: Here is my cron code:
5 * * * * /home/username/custom/CheckEmail.py >>/home/username/custom/email.log 2>&1

I activated the log (I think) but all i get is /var/log/cron.log and that only logs when I activate/deactivate or edit the cron file. is there anything else i need to set for this to work? I am running Ubuntu 9.10.

View 8 Replies View Related

Ubuntu :: Running A Program As Admin?

Jul 15, 2010

I downloaded The Witcher for windows from Wine and I'm trying to run it but it says I have to run it as the admin the first time the game is ran. I don't know how to run it as admin lol. I've only been using ubuntu for about a week now. If you can let me know how to do it from the terminal AND from shortcuts, that would be great because I'm trying to know what all I can do with ubuntu.

View 6 Replies View Related

Ubuntu :: Script Can Tell If A Program Is Running?

Jan 14, 2011

Is there a file that can be opened and a program name searched for? If it is there, the program is running, else it is not.

Something like that?

I have a program that stops periodically. If I could run a script every 30 minutes or so to check the hypothetical file, it could re-start the program if the program had stopped running.

View 2 Replies View Related

Ubuntu :: Running Program As A Daemon?

Apr 10, 2011

i am trying to daemonize my (java) program on ubuntu. For that end i created a script based on /etc/init.d/skeleton script which obviously uses start-stop-daemon.

But I cannot make the process (java program) run on the background. it keeps running in the same terminal i start my daemon script. Trying --background option for start-stop-daemon does not help.

View 5 Replies View Related

Ubuntu :: Running A Program After Boot?

Aug 9, 2011

I am using a small ubuntu command-line only distro (Ubuntu Mini Remix) to run off of a LiveCD or USB stick. I need it to run a program as root as soon as it is finished booting, automatically. I cannot for the life of me figure out how to make it run my program. I have tried putting a script into rc2.d (when I type runlevel at the command line, it tells me it is level 2) that simply contained:

Code:

#!/bin/bash
qct
(qct is the name of my program)

I did the chmod u+x on the script. It does not run my program, though. I have no idea if it was a naming issue or not. I do not understand the naming scheme.When it boots, and doesn't run my program, I can type sudo qct at the command prompt and it runs fine.

View 2 Replies View Related

Ubuntu :: Running A Program Using WINE?

Feb 6, 2010

I've downloaded and installed WINE, works well with most windows programs I run. I recently downloaded a program called METT (micro expression training tool), and apparently it needs a disc to be ran. Well, I installed KISO and mounted the image there, but I still can't get it to run.

View 6 Replies View Related

Ubuntu :: Running Script On Program Close

Mar 8, 2010

I'm trying to make a script that will copy over the settings file for firefox everytime firefox is closed. What would be the best way to go about doing this.

View 3 Replies View Related

Ubuntu :: Timing How Long A Program Is Running

Apr 19, 2010

I'm looking for a way to time how long a program runs in the terminal. I didn't have any luck searching around but I'm sure it's possible. Does anyone know of the easiest way to do this?

View 2 Replies View Related

Ubuntu :: Microphone Only Works When 1 Program Is Running

May 31, 2010

I am a new ubuntu user but I used linux mint before ubuntu and I had the same problem there. My microphone only works when 1 program is running, but if I load a game or something my microphone stops working.

View 5 Replies View Related

Ubuntu :: Running A Program Which Uses Make.sh File?

Sep 17, 2010

I amtrying to install a program and at the point when I am required to execute the command "make clean" and then after "make all" , I obtain the following eror message:

ndoheric@nen-laptop:/opt/WAVEFORPGM/distribute$ make clean
cd ./MyTime; make clean
make[1]: Entering directory `/opt/WAVEFORPGM/distribute/MyTime'

[code]...

View 4 Replies View Related

Ubuntu :: Identify Libraries Used By A Running Program?

Dec 9, 2010

I'm using the FortiClient SSL VPN free version provided by my University. I can't get tech support from the university OR Fortigate. I have it running on one system, but I have no idea what the sequence of libraries I installed was. I need it to run on a second machine. pstree is only telling me that the FortiClient ssl daemon depends on pppd. I need to know how to find out what else it's using: LibPKCS and the like.

View 1 Replies View Related

Ubuntu Servers :: Running Multiple Instances Of A Program?

Mar 11, 2010

how to run multiple instances of a command line app from the terminal?

View 2 Replies View Related

Ubuntu :: CPU1 Overload Then CPU2 Without Running Any Program?

Sep 25, 2010

Looking for my process monitor you see that I didn't run any program but my CPU01 100% overload and fax worked a lot,CPU02 just a bit.Ram's just 12%. So what I when wrong? I install Ubuntu 10.04 x64 - ram 4Gb - Nvidia quadro 140M.
Firefox6.6

View 5 Replies View Related

Ubuntu :: Set Terminal To Completely Hide Itself While It's Running A Program?

Jan 19, 2009

It really bothers me that when I start a program through the terminal it takes up space with the terminal that's tied up with the program, and the program itself. I know how to keep it from tying up the terminal, but when it devotes the terminal, I like that it gives output if the program crashes. Is there a way I can set a terminal to completely hide itself (off the desktop and the taskbar) while it's running a program, then reappear once the program is closed?

View 4 Replies View Related

Ubuntu :: Test Program Not Running On Openmoko Phone

Dec 3, 2010

I am running ubuntu-9 on i686 and cross compiled simple hello.c program with arm-linux-gcc (handheld/arm-linux-gcc-3.3.2.tar.bz2]) for arm , but unable to run it on openmoko neo free runner phone.

View 1 Replies View Related

General :: Running GUI Program On Machine Using Ssh?

May 2, 2011

I am trying to run open a GUI program on a remote Ubuntu machine using ssh.

I want to open, lets say firefox or skype, on a machine I have connected to via ssh.
But when writing logging in with user2 and writing sudo -u user1 firefox I get an error message saying no display specified.

The machine is turned on and logged in with user1, it just appears that i cant get ubuntu to recognize that there is a GUI available.

View 1 Replies View Related

General :: Tell If A C Program Is Running Without A Terminal?

May 9, 2010

I have a C program that can run disconnected ( like most ), is there a programmatical way to tel if the program is running without a terminal? Example:nohup my-program &What I want is to modify the program so it can be used as a HUB interface. It does Peer to Peer communication and I want to make it a server function with a command line option.Currently if I disconnect the program, it will loop on the read for stdin, I need to be able to detect that and go into 'HUB' mode.

View 4 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved