Bhushand wrote: > Hello, > > I want to execute the linux command on remore machine using C# and mono. How > can i achive this? using System.Diagnostics; .. Process.Start( new ProcessStartInfo( "/usr/bin/ssh", "user at host -c 'the linux command'" ) ); ;) Robert