c# - MonoDevelop in Linux -- Terminal Commands -


I want to create a C # app in Mono because it is the only programming language I am most comfortable with.

However, the super driver in Linux does not have the Fan Control feature and therefore the card appears to be hot. For me, I prefer a cooler card.

What I want to do is run a command such as:

  aticonfig --pplib-cmd 'set fans' 0 0'  

In an application, but I think this is how I can run that code, it works, I am currently running Ubuntu 10.04, and it works in the terminal, but I want to I am in an application to apply it.

Thanks

While using mono, I might be wrong, but I think you can use System.Diagnostics.Process.Start

perhaps something like

  using System.Diagnostics.Process You can. Start ("Aticonfig", "-Pipelib-CMD" set fans up to 70 '');  

Comments