Re: 5.8-stable: panic: mtx_enter locking against myself

2015-09-17 Thread koko
On Thu, 17 Sep 2015 10:35:46 +0200
mxb  wrote:

> getting panics with 5.8-STABLE kernel.
> 
5.8-STABLE not released yet. you mean 5.8-CURRENT?



Re: spamassasin large CPU usage on new snapshot and a huge bayes_toks file not reported in df

2015-09-04 Thread koko
On Fri, 4 Sep 2015 10:20:01 +0200
Adam Wolk  wrote:

> After deleting the file, restarting the service processing a single
> email brought the DB to reported size 37.9M, few emails later it's
> already reported as 113M I have a hunch that it will bloat again really
> fast.
> 

try to disable bayes, set parameter "use_bayes 0" and
placed into the server-wide local.cf configuration file.



Re: Collect logs with syslog +hostname

2015-07-29 Thread koko
On Wed, 29 Jul 2015 15:46:46 +0300
Atanas Vladimirov vl...@bsdbg.net wrote:

 It seems that the real problem/misunderstanding was the part with 
 /etc/hosts.
 Why syslogd doesn't use /etc/resolve.conf?
 This box is configured as recursive dns server (unbound).
 
imho, /etc/hosts is much faster lookup than resolv.conf.



Re: elementary opensmtpd setting on rental server

2015-07-25 Thread koko
On Sat, 25 Jul 2015 11:22:09 +0900
Tuyosi Takesima nakajin.fu...@gmail.com wrote:

 for me  , nsd is too hard .
 so i  make a tryal to build intranet mail server
 with  unbound ,  opensmtpd and dovecot  without nsd or bind .
 
nsd if for authoritative only, if you need recursive and
cache dns server, use unbound or bind/named.

 see http://aoiyuma.mydns.jp/unbound+opensmtpd.html by using proper
 translation URL .
 
there a lot of how to for this purposes if you search on
goole... http://blather.michaelwlucas.com/archives/580



Re: elementary opensmtpd setting on rental server

2015-07-24 Thread koko
On Fri, 24 Jul 2015 20:17:47 +0900
tuyosi nakajin.fu...@gmail.com wrote:

 hi all .
 i write up at http://aoiyuma.mydns.jp/mydns-MS.html for comvinience .
 
 perhaps it has some errors.
 please point out them .
 
 in english translation ,
 https://translate.google.co.jp/translate?sl=jatl=enjs=yprev=_thl=jaie=UTF-8u=http%3A%2F%2Faoiyuma.mydns.jp%2Fmydns-MS.htmledit-text=
 
 without openbsd fellow's , i remain postfix  and  struggle .
 opensmtpd is simple ant talentful and beautiful .
 
good tutorial, hope will useful for the others..



Re: ssh help with X11Forwarding

2015-04-13 Thread Koko Wijatmoko
On Mon, 13 Apr 2015 16:49:02 +0530
Hrishikesh Murukkathampoondi hris...@gmail.com wrote:

 $ xterm 
 [1] 29542
 $ xterm: Xt error: Can't open display: 
 xterm: DISPLAY is not set
 
did you install xauth program? if not, try to install it
and try again.



Re: openbsd x2goclient

2015-02-19 Thread Koko Wijatmoko
On Thu, 19 Feb 2015 12:20:38 +0400
Joseph Oficre seran...@gmail.com wrote:

 But when i try to connect i get segmentation fault. Core file
 attached below. Can someone help me to solve it, please?
 
this list is not allowed to attach a file.
put it somewhere else, and share the url here.

 [demime 1.01d removed an attachment of type application/octet-stream
 which had a name of x2goclient.core]



Re: MEDION S4222 UMTS stick not recognized

2015-01-02 Thread Koko Wijatmoko
On Fri, 2 Jan 2015 12:26:53 +0100
Ingo Feinerer feine...@logic.at wrote:

 The manual of the stick claims that Linux 2.6 (or newer) is
 supported (if this is of any help).
 
this need usb mode switch under linux, searching on
google there no solution yet even compiling from source
for openbsd.



Re: Xorg fails PIII agp

2014-12-12 Thread Koko Wijatmoko
On Fri, 12 Dec 2014 07:03:56 -0430
elvis fuentes freebsdd...@gmail.com wrote:

 [demime 1.01d removed an attachment of type application/octet-stream
 which had a name of LogXorg5.6]
 
 [demime 1.01d removed an attachment of type application/octet-stream
 which had a name of dmesg54]
 
 [demime 1.01d removed an attachment of type application/octet-stream
 which had a name of Xorg54Log]
 
 [demime 1.01d removed an attachment of type application/octet-stream
 which had a name of dmesg5.6]

Your attachment is removed by list manager.
Copy paste inline within your email...



Re: fastcgi support in httpd(8)

2014-11-22 Thread Koko Wijatmoko
On Sat, 22 Nov 2014 20:53:51 +1100
Riley Baird bm-2cvqnduybau5do2dfjtrn7zbaj246s4...@bitmessage.ch wrote:

 A script as simple as the below brings up this error, but it has been
 tested with other scripts:
 
 #!/usr/bin/perl
 print Hello!
 
Try this:

---begin---
#!/usr/bin/perl

print Content-Type: text/html\n\n;
print Hello!;
---end---