Re: [Mono-list] systemd/journal bindings or api examples

2015-11-26 Thread webman
Hi ! Much thanks ! In preparation to a system update, I looked forward and finally recognized, that syslog-ng was best bet - due to a lot of neccessary features. Then I was faced with systemd, just to see, that it handles all that in a much better way. systemd gives a linux system what can be

[Mono-list] systemd/journal bindings or api examples

2015-11-26 Thread webman
Hello ! I have a lot of tools, which evaluate logs - this becomes "obsoleted" in face of systemd. The best solution for me would some re-work - if there were any language bindings to systemd, especially the journal. Make a search, but don't found anything. If someone knows such bindings or

[Mono-list] SPAM here ?

2015-11-26 Thread webman
Hi ! I asked a question here shortly and in that second, I send it, I got an answer from >j...@eukor.com<, which looks like spam. I wrote an answer to semeone, who tries to answer me - the same: That e-mail-adress given above looks like an auto-responder, which send html mails - where I have

[Mono-list] package management bug: cannot upgrade or install monodevelop

2016-04-12 Thread webman
Hi ! I am on debian jessie (8.3) and have already installed mono-complete according the instructions given here: http://www.mono-project.com/docs/getting-started/install/linux/#debian-ubunt u-and-derivatives and there were no problem with it. Today, I wanted to install the package monodevelop,

Re: [Mono-list] package management bug: cannot upgrade or install monodevelop

2016-04-29 Thread webman
Hi ! Many thanks for your investigation! Yes, your are right ! I have to use the same "apt-get ..." syntax, as for other repos !! ">apt-cache policy monodevelop" showed this to me. Using option "-t wheezy" while installing, made me the job done. Thanks a lot - and sorry for my late reply. Found

Re: [Mono-list] package management bug: cannot upgrade or install monodevelop

2016-04-23 Thread webman
Hello ! Is it probably possible to find someone, who knows who may help? The installation is provided by xamarin, not by my distro. Thanks, Manfred > -Original Message- > From: mono-list-boun...@lists.ximian.com [mailto:mono-list- > boun...@lists.ximian.com] On Behalf Of

[Mono-list] Missing socket options: Main-Socket-Error: Protocol option not supported

2016-05-05 Thread webman
Hello ! I just hung at a problem with a networking tool. Although in the docs, the io control looks missing. I have the follwoing code (snippet), which bombs: byte[] bTrue = new byte[4] { 1, 0, 0, 0 }; byte[] bOut = new byte[4] { 1, 0, 0, 0 }; sock.IOControl(IOControlCode.ReceiveAll, bTrue,

Re: [Mono-list] Linux: RunAS with System.Diagnostics.Process fails

2016-07-05 Thread webman
Hi ! Not lucky with the answer - but really my thanks anyway! Best regards, Manfred > -Original Message- > From: mono-list-boun...@lists.ximian.com [mailto:mono-list- > boun...@lists.ximian.com] On Behalf Of Robert Jordan > Sent: Sunday, July 03, 2016 8:53 PM > To:

[Mono-list] Linux: RunAS with System.Diagnostics.Process fails

2016-06-30 Thread webman
Hello ! I am just trying this: Process p = new Process(); ProcessStartInfo psi = new ProcessStartInfo(); SecureString password = ReadPassword(); psi.UserName = args[0]; psi.FileName = args[1]; psi.UseShellExecute = false; psi.Password = password; . This works naturally on Linux too - but