similar to: How to capture/process ksymoops?

Displaying 20 results from an estimated 110000 matches similar to: "How to capture/process ksymoops?"

2006 Aug 07
1
Purging old mails
Hi all, Firstly if this is a FAQ and I've missed it - let me apologise in advance. I use dovecot as a backup mail store and would now like to purge all mails over a certain age. Is it as simple as using find and rm'ing the results or is there more to it? I'm using maildir if that make a difference? Thanks in advance. Daveh
2005 Oct 26
1
Problem rebuilding glibc for xen
I would like to rebuild glibc specifically with the -mno-tls-direct-seg-refs to allow better performance with Xen. I'm using Centos 4.2 x86_64 on an Athlon 3200+. I'm using the 2.6.9-11.106.unsupported kernel for reiser support. My thought was to download and install the SRPM and then rpmbuild with no changes to make sure it works before adding the above flag. Unfortunately, the
2006 Sep 14
3
Anyone using fuse and/or sshfs under Centos 4.4?
Hi A search of google failed to show any prebuilt rpms for sshfs and fuse. I do see that fuse support is in 2.6.14 kernel which isn't a whole lot of help. Before I dive headlong into this has anyone successfully built fuse/sshfs against Centos 4.4. If so would you share your experience? Thanks Daveh
2005 Jan 24
2
Problem with incorrect permissions with shared folders
Hi, I'm seeing strange permissions when using an email client to create a new sub folder in a shared folder. This is dovecot-1.0test61 I have a directory /data/mail/shared owner=root group=shared permissions=2770 I have a file /data/mail/shared/dovecot-shared owner=root group-shared permissions=2660 User fred in in group shared (in /etc/group) My understanding
2005 Jan 23
2
Dovecot shared folder woes
Hi I'm new to Dovecot so please be gentle with me. I did a search through the list archives but couldn't quite work out my problem. I have Dovecot installed and running and I can connect to it from my email clients (Outlook and Evolution) ... so looking good so far. I would like to setup three types (groups?) of mail store 1. A per user - e.g. Fred, Harry, Betty. (For my purposes they
2007 Jun 20
1
Dovecot 1.0.01 / Outlook error 0x800CCCD2
Hi. I'm having a problem with a user running outlook 2003 against dovecot 1.0.1. A second user works fine and I haven't moved on to create a third (or more yet). On a send and receive I get an error from outlook "Task 'Checking for new mail in subscribed folders on server.' reported error (0x800CCCD2) : 'Outlook is unable to download folder (null) from the IMAP e-mail
2006 Apr 10
2
identd removed in Centos4.3?
Hi all, Has identd been removed from the upstream release? If so what replaces it? I see an oidentd rpm on DAG, but I'm curious about what I should be using? Many Thanks Daveh
2012 May 07
1
Can not capture internal-sftp process log in syslog
Hi, I am trying to use internal-sftp to limit sftp only access to a set of users. I have set sshd_config as follows sshd_config =========== Subsystem sftp internal-sftp -f LOCAL0 -l VERBOSE Match group ftp ChrootDirectory /sftp/%u X11Forwarding no AllowTcpForwarding no ForceCommand internal-sftp -f LOCAL0 -l VERBOSE Match I am able to access internal-sftp and run sftp sessions properly.
2011 Apr 12
0
Anyone knows how microsoft AEC can deal with mismatches between clocks of capture and render streams?
I am doing this right now with no problem. I am not using speex for this at the moment though. Group delay is the biggest problem. I implemented a version where the input and output sample rates are known up front. The routine than interpolates between the jitter. This should solve the problem. The crystals used to clock the input and output have very fine tolerances on most standard audio
2006 Aug 09
3
How to capture the data entered in a web page in RoR
Hi, iam a newbie to rails , i wanna know how can i capture data entered in a web page by a user For example, to obtain the data entered in a text field in a JSP in Java we write request.getParameter("textfieldname") similarly for any form element, we use this method to get the entered data in the web page Like wise what is the code in Ruby to capture this ? and where should i
2002 Feb 26
1
How can you capture the input and output of a serial port in wine
I'm curious about this. I'm trying to reverse-engineer a really neato-device that hooks up to the serial port and has Windows software. I've figured out the protocol the device sends; I'm just not sure how the device is initialized. So I'd love to capture the Windows software doing the dirty deed.. and WINE is IMHO just the tool. So, question is: How do you capture serial
2008 Jul 03
1
how to capture matching words in a string ?
I need to capture matching words in a string, any ideas ? I tried using gregexpr, but it was no help. In this example, I need to capture ID23423424 and ID324234325 > s <- "sID23423424 apple pID324234325 orange"> gregexpr("ID[0-9]+", s)[[1]][1] 2 20attr(,"match.length")[1] 10 11 _________________________________________________________________
2009 Jun 14
0
How to capture output from a subprocess?
## open a pipe a <- pipe("mplayer -slave -quiet /media/wind/Music/a.mp3","w") write("get_file_name",a) ## send get_file_name command to player. ## ANS_FILENAME='a.mp3' write("quit",a) ## exit mplayer Can I capture the output from mplayer into a R object? In this case, it is "ANS_FILENAME='a.mp3'". I try sink(), but it
2015 Aug 14
0
capture.output() duplicates last line unless newline (R-devel bug)
The fix for PR#16481 had a side effect involving capture.output(), so this may be transient, please recheck whether the issue has disappeared in the meantime. -pd On 14 Aug 2015, at 11:09 , Henrik Bengtsson <henrik.bengtsson at ucsf.edu> wrote: > In R-devel (2015-08-12 r69024), capture.output() incorrectly > duplicates the last line unless it ends with a newline. I don't see
2011 Apr 12
1
Anyone knows how microsoft AEC can deal with mismatches between clocks of capture and render streams?
Hi Shridhar, Sample rate conversion is not enough to solve this problem. I have tried this method several months ago. The first step is to measure the difference between sample rate of capturing and rendering. Then resampling (by what you said "sinc interpolation") one signal to eliminate the difference. The frequency step in my experiment is less than 0.1Hz. I have tried speex AEC
2011 Sep 17
1
Video capture on CentOS (6)
Hello, I need to do some analog video capture and I was wondering what is the status of this in CentOS 6. The last information I could find was here (obviously for CentOS 5): http://lists.centos.org/pipermail/centos/2009-September/082521.html Could anybody recommend a not-too-expensive video capture cards (PCI, USB, fireWire, ...) which would be well supported (drivers easily available in base,
2011 Jun 24
4
How to capture console output in a numeric format
Hi, I would like to know how to capture the console output from running an algorithm for further analysis. I can capture this using capture.output() but that yields a character vector. I would like to extract the actual numeric values. Here is an example of what I am trying to do. fr <- function(x) { ## Rosenbrock Banana function on.exit(print(f)) x1 <- x[1] x2 <- x[2]
2011 Feb 25
0
Named capture in regexp
Dear R core developers, One feature from Python that I have been wanting in R is the ability to capture groups in regular expressions using names. Consider the following example in R. > notables <- c(" Ben Franklin and Jefferson Davis","\tMillard Fillmore") > name.rex <- "(?<first>[A-Z][a-z]+) (?<last>[A-Z][a-z]+)" > (parsed <-
1996 Feb 18
0
OmniMedia Sequence P1S PCI Video Capture Card
I was uncertain if the following is too commercial for the FreeBSD-announce mailing list, but on the other hand, things that promote the use and value of FreeBSD seem like a good thing too. So if this is too commercial for the list you can let me know at brian@mediacity.com. ----------------------------------------------------------------------- Talisman Sequence P1S $299 PCI Video Capture
2013 Sep 22
1
type="message" possibility for capture.output() ?
As far as I can tell, there's no built-in way to get capture.output() to capture messages (stderr) instead of stdout ... suggested, fairly trivial, patch below. f <- function() { message("abc") cat("def\n") } x <- capture.output(f()) ## prints 'abc' x ## value: "def" source("~/R/r-devel/src/library/utils/R/capture.output.R") x