similar to: Sysklogd''s -r option

Displaying 20 results from an estimated 300 matches similar to: "Sysklogd''s -r option"

2006 Dec 18
0
Wait command
Hi I've got a script like this exten => s,1,SetVar(CALLFILENAME=/var/www/recordings/${TIMESTAMP:0:8:7}/${UNIQUEID}) exten => s,2,AGI(recordstart.py,${ARG1},${CALLERIDNUM},${CALLFILENAME},Ind) exten => s,3,DIAL(ZAP/g2/${ARG1},70) exten => s,4,AGI(logerror.py,${ARG1},${CALLERIDNUM},${CHANNEL},${DIALSTATUS},${DATETIME}, ${CAUSECODE}) exten => s,5,hangup exten =>
2004 Mar 10
1
Re: R-help Digest, Vol 13, Issue 9
C?dric Finet wrote: > > I thank you for your answer but I do not understand yet why the Fisher?s exact > test does not work. And why is a "negative key". > > C?dric Finet > Running the original TOMS643 fortran code (R uses an f2c translation of this) says: FEXACT ERROR: 30 Stack length exceeded in f3xact. This problem should not occur. The integer hash key is
2019 Nov 18
2
Crash using exceptions
Hello, I get a crash in my program that uses exceptions and the LLVM JIT, even though the exceptions are controlled and thrown/catched in a part that doesn't deal with LLVM. I noticed that llvm-config --cxxflags includes the -fno-exceptions flag. Do I need to throw no exceptions whatsoever in my application to use LLVM JIT? As a minimal example, I modified the code in
1999 Nov 21
1
openssh 1.2pre13 on Linux/i386 RH4.2 problems
Can't compile sshd.c because of pam errors. The errors are attached below, and I apologize for the >75 chars a line. RH4.2, with the latest updates, runs pam-0.57-5. I could upgrade PAM from source, but I'd probably break other programs. gcc -g -O2 -Wall -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/bin/ssh\"
2004 Sep 10
2
flac_read callback not called in Windows?
Hi, Not sure if this should be in the dev or users list, but here goes. I am using the FLAC seekable stream decoder in my MACH3 laser games emulation in MAME (www.boldtower.com/mach3). The game has a soundtrack (originally on a laser disk) which I have flac encoded and play back in the game. I did the implementation under Linux which works fine, the callbacks are easy to set up and I've
1999 Feb 22
0
Forw: RedHat sysklogd vulnerability
Another from Bugtraq. I've also forwarded this one on to our contact at Red Hat (Stephen Smoogen) and he tells me it's in their QA currently. Dan _______________________________________________________________________________ Dan Yocum | Phone: (630) 840-8525 Computing Division OSS/FSS | Fax: (630) 840-6345 .~. L Fermi National Accelerator
1999 Nov 23
0
DoS with sysklogd, glibc (Caldera) (fwd)
Hi, This advisory has a bit more than the Red Hat one.... Roger. ----- Forwarded message from Alfred Huger ----- >>From owner-bugtraq@SECURITYFOCUS.COM Mon Nov 22 18:49:41 1999 Approved-By: aleph1@SECURITYFOCUS.COM Message-ID: <Pine.GSO.4.10.9911220906250.11753-100000@www.securityfocus.com> Date: Mon, 22 Nov 1999 09:08:08 -0800 X-Reply-To: Alfred Huger
2006 Mar 31
1
Metamail
Hi all, I''m setting up Hylafax with Centos4.2. Seems like it requires a package called metamail. I visited rpmfind.net but confused which package should I choose. There are one for RH4.2, RHEL AS 2.1. Curiously, there''s none for FC. Thanks. -- Fajar Priyanto | Reg''d Linux User #327841 | Linux tutorial http://linux2.arinet.org 17:11:39 up 6:15, 2.6.15-1.1830_FC4
1999 Mar 31
0
Forw: SECURITY: various packages updated (pine, mutt, sysklogd, zgv)
___________________________________________________________________________ Dan Yocum | Phone: (630) 840-8525 Linux/Unix System Administrator | Fax: (630) 840-6345 Computing Division OSS/FSS | email: yocum@fnal.gov .~. L Fermi National Accelerator Lab | WWW: www-oss.fnal.gov/~yocum/ /V\ I P.O. Box 500 |
2002 Aug 25
2
2 root disks sdb1,sdc1; if set "root=/dev/sdc1", mtab lies saying sdb1 is root!?
I have 2 SCSI disks each w/a RH 7.3 ext3 root filesystem: /dev/sdb1, and /dev/sdc1. /dev/sda1 is an old RH4.2 root filesystem. (sdb1 was created as an image of sdc1 using dd.) I have no problem booting from a SYSLINUX 1.52 floppy with SYSLINUX.CFG containing "append initrd=initrd.img root=/dev/sdb1". When I alter SYSLINUX.CFG with: "append initrd=initrd.img root=/dev/sdc1".
2005 Jan 14
3
Bug#290511: logcheck: syslogd restart in cron.daily/sysklogd causes a log message
Package: logcheck Version: 1.2.32 Severity: wishlist /etc/cron.daily/sysklogd restarts syslogd at the end of the script. This causes a daily log message, currently missed by logcheck: Jan 14 06:55:22 pyloric syslogd 1.4.1#16: restart (remote reception). I'm currently using this regex in ignore.server.d/local-syslogd: ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ syslogd 1\.4\.1#16: restart \(remote
2007 May 10
3
New Centos User - Yum Repositories Question
I've been using Red Hat and its derivatives since RH4.2. I use Fedora Core 6 for all of my desktop machines, but I decided to go for Centos 5 for my new colo web server. So I've just taken delivery of a new Centos 5 virtual server from Bytemark (http://bytemark.co.uk/) and I'm trying to get it set up with all the RPMs that I'm used to from FC6. As I understand it, the Centos
2004 Jun 04
3
syslogd(8) Dropping Privs
I made a quick change to syslogd(8) so that it can drop root privileges immediately after starting up. It opens up the log sockets (UNIX and network domains) and writes the PID files before dropping privs. It drops privs before openning log files and writing to users. Therefore, you would need to modify your log file permissions appropriately. As for writing to users, ttys generally are writeable
2017 May 29
2
Print 128 bit value at runtime using printf
Hi, I was trying to print out a 128 bit result at runtime using a call to printf in LLVM. I am able to print 32 uptil 64 bit integers using the format string "%d" in printf . Please see the code in red below , as I am having a bit difficulty in trying to print the 128 bit value computed at runtime. The code in red is never executed since the value may never be casted to a
1998 May 11
0
CIFS based NT Authentication for PAM (pam_smb-1.0)
Version 1.0 of my CIFS based NT authentication system for PAM is available from http://www.csn.ul.ie/~airlied/pam_smb/pam_smb-1.0.tar.gz or ftp://ftp.csn.ul.ie/pub/linux/pam/pam_smb/pam_smb-1.0.tar.gz This release has now gotten GNU configure support and should work reliably on Linux RH4.2, RH 5.0 and Solaris 2.6.... If anyone has another platform with PAM could they try it out ... It is also
1998 May 08
0
R-beta: problems compiling R 0.61.2 on silicon graphics
Hi Computing services here at QUT are trying to compile R0.61.2 for me on a silicon graphics computer running IRIX Release 6.2 IP25 and gcc. %gcc -v Reading specs from /usr/gnu/lib/gcc-lib/mips-sgi-irix5.3/2.7.2.2/specs gcc version 2.7.2.2 %perl -v This is perl, version 5.004_04 built for irix Basically, it was impossible for me even to get R configured although under Linux RH4.2 and DEC ALPHA
1998 Aug 06
0
SAMBA digest 1770 (new user problem)
When the world was young, SaM <SamAndMichelle@hotmail.com> had some trouble with the samba setup: Subject: SAMBA digest 1770 Date sent: Fri, 7 Aug 1998 00:31:20 +1000 > I'm a new Samba/Linux user. I"ve got my computer to network between a > Linux Redhat 5.1 computer and a Windows95B computer. The computers can > ping each other and i've setup IP
2007 Dec 24
0
Fwd: Re: IPFW: Blocking me out. How to debug?
>Date: Sun, 23 Dec 2007 06:04:02 -0800 (PST) >From: Nash Nipples <trashy_bumper@yahoo.com> >To: freebsd-security@freebsd.org >Subject: Re: IPFW: Blocking me out. How to debug? > >Dear W.D. > >oh come on. i have the same problem. Which problem are we talking about? cut and paste problem. >cut and paste logic: > >#!/bin/sh >#1. count packets >#2.
1999 Aug 19
1
dptr_create: returned 9: Error - all new dirptrs in use ?
Hi, I get this error message in the log for a Win98 client which is regularly scanning a directory on the share. When this happens the client no longer can access any data in the shares (security=share), only the toplevel directory structure of a share is still accessible. This seems to be a new problem in 2.0.5/6pre (not sure if it already happened for 2.0.4). Any hints? Franz. Platform:
2004 Mar 09
1
bug(?) in chisq.test
This is a message for whoever maintains "chisq.test": For an outcome more extreme than 2000 simulations, a Monte Carlo p-value of "< 2.2e-16" was printed. Ripley said the proper p-value for such cases should be 1/(B+1) = 1/2001. This can be easily fixed by adding "if(PVAL==0)PVAL <- 1/(B+1)" right after the following line in the code for chisq.test (in R