Re: Newbie question: Why aren't my cron jobs running?

2012-06-13 Thread Walter Hurry
On Tue, 12 Jun 2012 12:21:31 -0500, Dan Lists wrote: The syntax of his crontab file is correct. Vixie cron does care about leading spaces, tabs, extra spaces, or leading zeros. Earlier versions of cron are much pickier about the crontab file. The cron logs show that it is starting his

Re: Newbie question: Why aren't my cron jobs running?

2012-06-13 Thread Chris
On 6/13/2012 6:23 PM, Walter Hurry wrote: On Tue, 12 Jun 2012 12:21:31 -0500, Dan Lists wrote: The syntax of his crontab file is correct. Vixie cron does care about leading spaces, tabs, extra spaces, or leading zeros. Earlier versions of cron are much pickier about the crontab file. The

Re: Newbie question: Why aren't my cron jobs running?

2012-06-12 Thread Ramiro Caso
On 11/06/2012 23:10, Michael Sierchio wrote: On Mon, Jun 11, 2012 at 7:04 PM, Walter Hurry walterhu...@gmail.com wrote: As the subject says, this is probably a newbie question (I am new to FreeBSD but quite experienced at Linux). FreeBSD9 on x86_64. Cron is running: $ ps -ax|grep cron

Re: Newbie question: Why aren't my cron jobs running?

2012-06-12 Thread Mark Felder
On Tue, 12 Jun 2012 00:06:21 -0500, Robert Bonomi bon...@mail.r-bonomi.com wrote: Comment: using a leading zero on the numeric fields is a BAD IDEA(tm) -- you are *strongly* encocuraged to remove them. Yes, that means numbers will not be column aligned, but it is a small price to pay to

Re: Newbie question: Why aren't my cron jobs running?

2012-06-12 Thread Lowell Gilbert
Mark Felder f...@feld.me writes: On Tue, 12 Jun 2012 00:06:21 -0500, Robert Bonomi bon...@mail.r-bonomi.com wrote: Comment: using a leading zero on the numeric fields is a BAD IDEA(tm) -- you are *strongly* encocuraged to remove them. Yes, that means numbers will not be column aligned,

Re: Newbie question: Why aren't my cron jobs running?

2012-06-12 Thread Mark Felder
On Tue, 12 Jun 2012 09:36:37 -0500, Lowell Gilbert freebsd-questions-lo...@be-well.ilk.org wrote: I don't have ready access to source at the moment, but I would expect (like the normal C I/O functions) it will be interpreted as octal. Suppose we could always ask Paul Vixie :-)

Re: Newbie question: Why aren't my cron jobs running?

2012-06-12 Thread Polytropon
On Tue, 12 Jun 2012 08:29:02 -0500, Mark Felder wrote: On Tue, 12 Jun 2012 00:06:21 -0500, Robert Bonomi bon...@mail.r-bonomi.com wrote: Comment: using a leading zero on the numeric fields is a BAD IDEA(tm) -- you are *strongly* encocuraged to remove them. Yes, that means numbers

Re: Newbie question: Why aren't my cron jobs running?

2012-06-12 Thread Dan Lists
On Tue, Jun 12, 2012 at 12:06 PM, Polytropon free...@edvax.de wrote: On Tue, 12 Jun 2012 08:29:02 -0500, Mark Felder wrote: On Tue, 12 Jun 2012 00:06:21 -0500, Robert Bonomi bon...@mail.r-bonomi.com wrote: Comment: using a leading zero on the numeric fields is a BAD IDEA(tm) -- you are

Newbie question: Why aren't my cron jobs running?

2012-06-11 Thread Walter Hurry
As the subject says, this is probably a newbie question (I am new to FreeBSD but quite experienced at Linux). FreeBSD9 on x86_64. Cron is running: $ ps -ax|grep cron 1513 ?? Is 0:00.01 /usr/sbin/cron -s 2283 0 S+ 0:00.00 grep cron $ I have a syntactically valid crontab

Re: Newbie question: Why aren't my cron jobs running?

2012-06-11 Thread Michael Sierchio
On Mon, Jun 11, 2012 at 7:04 PM, Walter Hurry walterhu...@gmail.com wrote: As the subject says, this is probably a newbie question (I am new to FreeBSD but quite experienced at Linux). FreeBSD9 on x86_64. Cron is running: $ ps -ax|grep cron  1513  ??  Is     0:00.01 /usr/sbin/cron -s

Re: Newbie question: Why aren't my cron jobs running?

2012-06-11 Thread Walter Hurry
On Mon, 11 Jun 2012 19:10:21 -0700, Michael Sierchio wrote: Have you installed bash? It's not in the system base. What's in your shell scripts? Thanks for the quick response. $ pkg_info|grep bash bash-4.2.28 The GNU Project's Bourne Again SHell $ which bash /bin/bash $ $ less

Re: Newbie question: Why aren't my cron jobs running?

2012-06-11 Thread Michael Sierchio
On Mon, Jun 11, 2012 at 7:25 PM, Walter Hurry walterhu...@gmail.com wrote: cat /etc/shells ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to

Re: Newbie question: Why aren't my cron jobs running?

2012-06-11 Thread Walter Hurry
On Mon, 11 Jun 2012 21:21:12 -0500, Adam Vande More wrote: You really have bash in /bin ? Are your scripts executable? What does /var/log/cron say? $ file /bin/bash /bin/bash: symbolic link to `/usr/local/bin/bash' $ sudo tail -50 /var/log/cron (result snipped at 02:22:00 for brevity) Jun

Re: Newbie question: Why aren't my cron jobs running?

2012-06-11 Thread Walter Hurry
On Mon, 11 Jun 2012 19:36:28 -0700, Michael Sierchio wrote: cat /etc/shells $ cat /etc/shells # $FreeBSD: release/9.0.0/etc/shells 59717 2000-04-27 21:58:46Z ache $ # # List of acceptable shells for chpass(1). # Ftpd will not allow users to connect who are not using # one of these shells.

Re: Newbie question: Why aren't my cron jobs running?

2012-06-11 Thread Chris
On 6/11/2012 9:25 PM, Walter Hurry wrote: On Mon, 11 Jun 2012 19:10:21 -0700, Michael Sierchio wrote: Have you installed bash? It's not in the system base. What's in your shell scripts? Thanks for the quick response. $ pkg_info|grep bash bash-4.2.28 The GNU Project's Bourne

Re: Newbie question: Why aren't my cron jobs running?

2012-06-11 Thread Robert Bonomi
Walter Hurry walterhu...@gmail.com wrote: As the subject says, this is probably a newbie question (I am new to FreeBSD but quite experienced at Linux). FreeBSD9 on x86_64. Cron is running: $ ps -ax|grep cron 1513 ?? Is 0:00.01 /usr/sbin/cron -s 2283 0 S+ 0:00.00 grep

Question about FreeBSD for IA-64 software

2012-06-09 Thread Denis Guzanov
Dear FreeBSD Team, Firstly I would like to say you Big thanks for your really good job and the best system for us, small IT staff. Second, I would like to ask you about some problem with FreeBSD source. I've downloaded .iso Image from this link:

Re: Question about FreeBSD for IA-64 software

2012-06-09 Thread Mehmet Erol Sanliturk
was completed successfully. Dear FreeBSD Team, could you, please, check your .iso file for IA-64 systems or maybe consult me what I need to do? Thanks and Best regards, Denis. From your question , it is not possible to understand which 8.3 version is used . It is very unlikely that 9.0

Re: Question about FreeBSD for IA-64 software

2012-06-09 Thread Julian H. Stacey
Hi, Reference: From: Denis Guzanov guzanov...@gmail.com Date: Sat, 9 Jun 2012 15:45:54 +0400 Message-id: CAMUH=P1HGivtRUsgSz9_XYt-wLBh-8cFvq=i5fs6hn1ittk...@mail.gmail.com Denis Guzanov wrote: Dear FreeBSD Team, Firstly I would like to say you Big thanks for your

Re: Somewhat OT - A Makefile Question

2012-06-07 Thread Tim Daneliuk
On 06/07/2012 12:19 AM, Parv wrote: in message4fcf48af@tundraware.com, wrote Tim Daneliuk thusly... ... Within a makefile, I need to assign the name of a program as in: FOO = bar. The problem is that 'bar' may also be know as, say, bar.sh. ... Is there a simple way to determine which

Re: Somewhat OT - A Makefile Question

2012-06-07 Thread parv
in message 4fd0adfb.8030...@tundraware.com, wrote Tim Daneliuk thusly... On 06/07/2012 12:19 AM, Parv wrote: in message4fcf48af@tundraware.com, wrote Tim Daneliuk thusly... ... Within a makefile, I need to assign the name of a program as in: FOO = bar. The problem is that

Somewhat OT - A Makefile Question

2012-06-06 Thread Tim Daneliuk
Not strictly FBSD, but ... Within a makefile, I need to assign the name of a program as in: FOO = bar. The problem is that 'bar' may also be know as, say, bar.sh. Worse still both bar and bar.sh can exist with one linked to the other. Is there a simple way to determine which form bar or

Re: Somewhat OT - A Makefile Question

2012-06-06 Thread Parv
in message 4fcf48af@tundraware.com, wrote Tim Daneliuk thusly... ... Within a makefile, I need to assign the name of a program as in: FOO = bar. The problem is that 'bar' may also be know as, say, bar.sh. ... Is there a simple way to determine which form bar or bar.sh on on a given

Re: question on SYN_SENT

2012-06-04 Thread Chad Leigh Shire.Net LLC
On May 11, 2012, at 6:06 PM, Robert Bonomi wrote: 'Should not' does not mean 'is not'. and unfortunately, it -is- attempting to go out. There are at least a couple of possible explanations, none of them good. 1) the jail is attempting a DoS (or participating in DDoS) against an

Re: Hardware compatability question

2012-05-31 Thread Kaya Saman
Hi, it's not really about the machines but more the hardware. FreeBSD is quite diverse in what it can run on so best bet check the HCL's off the www.freebsd.org website as that would give you the best idea! Otherwise just install and see what works and doesn't. FreeBSD is pretty comprehensive

Bsdtech QUESTION

2012-05-30 Thread Alex
Hi, We have managed to secure the domain Bsdtech.com for one of our web apps however we have decided to change the name and secure a different name that suits out project better. If you would be interested in purchasing this domain please don't hesitate to contact us. Thanks Alex Verdea

question about milter software

2012-05-25 Thread Wojciech Puchar
Does anyone know milter software (or maybe anything else) to add to sendmail that can rewrite outgoing mail and add HTML footer automatically? Please do not tell me about how stupid HTML mail is at all - i know it, it is not my idea. thanks ___

Somewhat OT: CVS Question

2012-05-25 Thread Tim Daneliuk
Forgive the OT nature of this, but FBSD tends to be a big CVS user, so I am hoping someone has an answer for this. Feel free to reply privately if you do not wish to inflict your answer up on the whole list... Is there a way to checkout a project from a CVS repo *into the current directory*?

Re: Somewhat OT: CVS Question

2012-05-25 Thread Greg Larkin
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 5/25/12 11:59 AM, Tim Daneliuk wrote: Forgive the OT nature of this, but FBSD tends to be a big CVS user, so I am hoping someone has an answer for this. Feel free to reply privately if you do not wish to inflict your answer up on the whole

Re: question about milter software

2012-05-25 Thread Patrick
I think you'll find Postfix to be much more modern and easy to work with for that kind of message rewriting. But what you're looking for is pretty complicated when you start having to deal with multipart messages; the messages have to be completely processed and separated into respective parts,

Re: question about milter software

2012-05-25 Thread Wojciech Puchar
looking for is pretty complicated when you start having to deal with multipart messages; the messages have to be this is unfortunately true, because i could quickly do myself a filter that would trivially append footer, but it will not work. That's the reason of my question - IF such (quite

Re: question about milter software

2012-05-25 Thread Derek Ragona
At 08:21 AM 5/25/2012, Wojciech Puchar wrote: Does anyone know milter software (or maybe anything else) to add to sendmail that can rewrite outgoing mail and add HTML footer automatically? Please do not tell me about how stupid HTML mail is at all - i know it, it is not my idea. thanks I

Re: question about milter software

2012-05-25 Thread Patrick
On Fri, May 25, 2012 at 1:21 PM, Wojciech Puchar woj...@wojtek.tensor.gdynia.pl wrote: I think you'll find Postfix to be much more modern and easy to work with for that kind of message rewriting. you are actually wrong in that statement. In spite of hype that postscript started with, i am

Re: question about milter software

2012-05-25 Thread Wojciech Puchar
I guess it's pretty subjective, which is how I should have originally prefaced my statement. I used sendmail for a long time, and always hated working with m4 or direct sendmail configuration files. well i just used README file and sometimes google. For me, Postfix is so much easier, but to

I have a question.

2012-05-22 Thread JAEHO LEE
Dear Sir, I would be a FreeBSD open source committer. But I don't know how to do. Could you teach me ? Best regards. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any

Re: I have a question.

2012-05-22 Thread Polytropon
On Tue, 22 May 2012 13:42:56 +0900, JAEHO LEE wrote: Dear Sir, I would be a FreeBSD open source committer. But I don't know how to do. Could you teach me ? Check out the FreeBSD home page, especially the article about contributing to FreeBSD:

Re: I have a question.

2012-05-22 Thread Anonymous Remailer (austria)
This doesn't answer your question but let me be the first to congratulate you on your wisdom of not posting this to m...@openbsd.org ;-) ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions

Re: ATI Radeon HD5500 driver question

2012-05-22 Thread Gary Aitken
Thanks for the pointers and hints, I'm over that hurdle. On 5/19/2012 5:28 PM, Warren Block wrote: On Sat, 19 May 2012, Polytropon wrote: 3. The Xorg man page notes that ctrlaltbksp should cause it to exit. However, it doesn't, and I had to use kill -TERM. Any hints on why ctrlaltbksp doesn't

ATI Radeon HD5500 driver question

2012-05-19 Thread Robert Huff
Gary Aitken writes: Trying to set up a new box 9.0-RELEASE w/ X; has ATI Radeon HD5500 card. X.org -config says: Missing output drivers. Configuration failed. I do not have this card/chip; I have a HD3300. Having installed xf86-video-radeonhd-1.3.0.5, 'device radeon'

Re: ATI Radeon HD5500 driver question

2012-05-19 Thread Warren Block
On Fri, 18 May 2012, Gary Aitken wrote: Trying to set up a new box 9.0-RELEASE w/ X; has ATI Radeon HD5500 card. X.org -config says: Missing output drivers. Configuration failed. From X.org I see one is supposed to get linux drivers from ati/amd, but this info is over 2 years old and

Re: ATI Radeon HD5500 driver question

2012-05-19 Thread Gary Aitken
Ok... I tried the xf86-video-radeonhd driver, to no avail. Then tried xf86-video-ati-6.14.3 with marginally better results. Using the ati driver, which reports that it works for the HD5500, Xorg hobbles and writes a config file. When it attempts to start, the log shows a boatload of

Re: ATI Radeon HD5500 driver question

2012-05-19 Thread Polytropon
On Sat, 19 May 2012 11:59:03 -0600, Gary Aitken wrote: 1. Since the driver notes that Acceleration was disabled, but there are no other errors, shouldn't the driver work in dumb frame buffer mode? (Hoping to get something hobbling along...) Or is this the result of the need for KMS and

Re: ATI Radeon HD5500 driver question

2012-05-19 Thread Warren Block
On Sat, 19 May 2012, Polytropon wrote: 3. The Xorg man page notes that ctrlaltbksp should cause it to exit. However, it doesn't, and I had to use kill -TERM. Any hints on why ctrlaltbksp doesn't cause it to exit? This is also a new default to _not_ work anymore. You have more than two (if

ATI Radeon HD5500 driver question

2012-05-18 Thread Gary Aitken
Trying to set up a new box 9.0-RELEASE w/ X; has ATI Radeon HD5500 card. X.org -config says: Missing output drivers. Configuration failed. From X.org I see one is supposed to get linux drivers from ati/amd, but this info is over 2 years old and

question on SYN_SENT

2012-05-11 Thread Chad Leigh Shire.Net LLC
it is my understanding that SYN_SENT is when MY SIDE sends out a request and is awaiting a reply? One of the jails we run for a customer had hundreds (if not thousands) of attempts to connect from the 147. address you see below. It was exhausting resources so that new tcp connections could

Re: question on SYN_SENT

2012-05-11 Thread Chad Leigh Shire.Net LLC
On May 11, 2012, at 4:08 PM, Chuck Swiger wrote: On May 11, 2012, at 2:09 PM, Chad Leigh Shire.Net LLC wrote: it is my understanding that SYN_SENT is when MY SIDE sends out a request and is awaiting a reply? That's right. One of the jails we run for a customer had hundreds (if not

Re: question on SYN_SENT

2012-05-11 Thread Chuck Swiger
On May 11, 2012, at 2:09 PM, Chad Leigh Shire.Net LLC wrote: it is my understanding that SYN_SENT is when MY SIDE sends out a request and is awaiting a reply? That's right. One of the jails we run for a customer had hundreds (if not thousands) of attempts to connect from the 147. address

Re: question on SYN_SENT

2012-05-11 Thread Robert Bonomi
From owner-freebsd-questi...@freebsd.org Fri May 11 17:19:29 2012 From: Chad Leigh Shire.Net LLC c...@shire.net Date: Fri, 11 May 2012 16:15:48 -0600 To: Chuck Swiger cswi...@mac.com Cc: FreeBSD Mailing List freebsd-questions@freebsd.org Subject: Re: question on SYN_SENT On May 11, 2012

Re: question regarding geom labels

2012-04-06 Thread Alexander Best
On Fri Mar 30 12, Warren Block wrote: On Fri, 30 Mar 2012, Alexander Best wrote: i have a question regarding a label for a swap partition. when should i do the labeling? after or before creating the partition scheme? when i label before creating the partition scheme, likes

Fast question abount EDITOR

2012-04-05 Thread Andrea Venturoli
Hello. This might be a stupid question... however... %setenv EDITOR emacs -nw setenv: Too many arguments. %setenv EDITOR emacs -nw %crontab -e crontab: emacs -nw: No such file or directory crontab: emacs -nw exited with status 1 Is there a way I can easily achieve the above? Do I really

Re: Fast question abount EDITOR

2012-04-05 Thread Polytropon
On Thu, 05 Apr 2012 08:57:55 +0200, Andrea Venturoli wrote: Hello. This might be a stupid question... however... %setenv EDITOR emacs -nw setenv: Too many arguments. %setenv EDITOR emacs -nw %crontab -e crontab: emacs -nw: No such file or directory crontab: emacs -nw exited

Re: Fast question abount EDITOR

2012-04-05 Thread Robert Bonomi
Andrea Venturoli wrote: Hello. This might be a stupid question... however... %setenv EDITOR emacs -nw setenv: Too many arguments. %setenv EDITOR emacs -nw %crontab -e crontab: emacs -nw: No such file or directory crontab: emacs -nw exited with status 1 Is there a way I can easily

Re: Fast question abount EDITOR

2012-04-05 Thread John Levine
Do I really need a script which in turns call emacs -nw? Authoritative answer: 'maybe'. grin There may be an alternative to the obvious one line shell script, but that's what one line shell scripts are for. One of the strengths of Unix is that its design encourages people to solve problems by

question regarding geom labels

2012-03-30 Thread Alexander Best
hi there, i have a question regarding a label for a swap partition. when should i do the labeling? after or before creating the partition scheme? when i label before creating the partition scheme, likes this: glabel label -v swap /dev/da0 gpart create -s GPT /dev/da0 i get the following

Re: question regarding geom labels

2012-03-30 Thread Warren Block
On Fri, 30 Mar 2012, Alexander Best wrote: i have a question regarding a label for a swap partition. when should i do the labeling? after or before creating the partition scheme? when i label before creating the partition scheme, likes this: glabel label -v swap /dev/da0 gpart create -s GPT

Re: oops, now: bsd question: how to record a tv stream?

2012-03-14 Thread Gary Kline
On Wed, Mar 14, 2012 at 02:58:30PM +1000, Da Rock wrote: Date: Wed, 14 Mar 2012 14:58:30 +1000 From: Da Rock freebsd-questi...@herveybayaustralia.com.au Subject: Re: oops, now: bsd question: how to record a tv stream? To: freebsd-questions@freebsd.org On 03/14/12 13:09, Polytropon wrote

Re: oops, now: bsd question: how to record a tv stream?

2012-03-14 Thread Da Rock
On 03/15/12 05:30, Gary Kline wrote: On Wed, Mar 14, 2012 at 02:58:30PM +1000, Da Rock wrote: Date: Wed, 14 Mar 2012 14:58:30 +1000 From: Da Rockfreebsd-questi...@herveybayaustralia.com.au Subject: Re: oops, now: bsd question: how to record a tv stream? To: freebsd-questions@freebsd.org On 03

Re: oops, now: bsd question: how to record a tv stream?

2012-03-14 Thread Polytropon
On Wed, 14 Mar 2012 12:30:08 -0700, Gary Kline wrote: On Wed, Mar 14, 2012 at 02:58:30PM +1000, Da Rock wrote: Date: Wed, 14 Mar 2012 14:58:30 +1000 From: Da Rock freebsd-questi...@herveybayaustralia.com.au Subject: Re: oops, now: bsd question: how to record a tv stream? To: freebsd

/usr/lib32 question

2012-03-13 Thread Waitman Gobble
Hi, I have four files in /usr/lib32 - libc.so.7, libcrypt.so.5, librt.so.1, libthr.so.3 that are 444 root. Seems like i am unable to change permissions or remove... any idea why? or really, how to delete those files. it's an amd64 machine. Thanks, Waitman Gobble San Jose California USA

Re: /usr/lib32 question

2012-03-13 Thread Waitman Gobble
On Mon, Mar 12, 2012 at 11:49 PM, Waitman Gobble gobble...@gmail.comwrote: Hi, I have four files in /usr/lib32 - libc.so.7, libcrypt.so.5, librt.so.1, libthr.so.3 that are 444 root. Seems like i am unable to change permissions or remove... any idea why? or really, how to delete those

Re: /usr/lib32 question

2012-03-13 Thread Polytropon
On Mon, 12 Mar 2012 23:49:50 -0700, Waitman Gobble wrote: Hi, I have four files in /usr/lib32 - libc.so.7, libcrypt.so.5, librt.so.1, libthr.so.3 that are 444 root. Seems like i am unable to change permissions or remove... any idea why? or really, how to delete those files. it's an amd64

Re: /usr/lib32 question

2012-03-13 Thread Waitman Gobble
On Tue, Mar 13, 2012 at 12:06 AM, Polytropon free...@edvax.de wrote: On Mon, 12 Mar 2012 23:49:50 -0700, Waitman Gobble wrote: Hi, I have four files in /usr/lib32 - libc.so.7, libcrypt.so.5, librt.so.1, libthr.so.3 that are 444 root. Seems like i am unable to change permissions or

Re: oops, now: bsd question: how to record a tv stream?

2012-03-13 Thread FBSD UG
doesn't VLC do that too? On 11 mrt 2012, at 21:28, Gary Kline wrote: guys, i made the mistake that conrad did when replying. i could make e excuse liked only getting five hours sleep, etc, bujt i wont. here us a FBSD qauestion how can i capture any tv stream---or radio stream for

Re: oops, now: bsd question: how to record a tv stream?

2012-03-13 Thread Stas Verberkt
Bernt Hansson schreef op 13-03-2012 12:12: On 2012-03-11 21:28, Gary Kline wrote: or is that illegal, too? Depends on jurisdiction. Indeed, Dutch and Belgium legislation, for example, permit making copies for personal use, which originates from recording the radio with a tape deck, which

Re: oops, now: bsd question: how to record a tv stream?

2012-03-13 Thread Gary Kline
On Sun, Mar 11, 2012 at 03:52:36PM -0500, Joshua Isom wrote: Date: Sun, 11 Mar 2012 15:52:36 -0500 From: Joshua Isom jri...@gmail.com Subject: Re: oops, now: bsd question: how to record a tv stream? To: freebsd-questions@freebsd.org On 3/11/2012 3:28 PM, Gary Kline wrote: guys, i made

Re: oops, now: bsd question: how to record a tv stream?

2012-03-13 Thread Gary Kline
On Tue, Mar 13, 2012 at 12:39:38PM +1000, Da Rock wrote: Date: Tue, 13 Mar 2012 12:39:38 +1000 From: Da Rock freebsd-questi...@herveybayaustralia.com.au Subject: Re: oops, now: bsd question: how to record a tv stream? To: freebsd-questions@freebsd.org [ ...] Additionally, there may

Re: oops, now: bsd question: how to record a tv stream?

2012-03-13 Thread Josh Tolbert
On 3/13/12 4:06 PM, Gary Kline wrote: On Tue, Mar 13, 2012 at 12:39:38PM +1000, Da Rock wrote: so that's it. i messed around with mythtv last fall on my ubuntu distro. couldn't get anywhere and finally realized that =you need some kind of HARDWARE=. I have an HDHomeRun...The original classic

Re: oops, now: bsd question: how to record a tv stream?

2012-03-13 Thread Gary Kline
On Tue, Mar 13, 2012 at 04:14:52PM -0500, Josh Tolbert wrote: Date: Tue, 13 Mar 2012 16:14:52 -0500 From: Josh Tolbert h...@puresimplicity.net Subject: Re: oops, now: bsd question: how to record a tv stream? To: freebsd-questions@freebsd.org On 3/13/12 4:06 PM, Gary Kline wrote: On Tue

Re: oops, now: bsd question: how to record a tv stream?

2012-03-13 Thread Polytropon
are something you'll hardly find on the modern web. But that doesn't mean you cannot turn streams into files. After all, the data _is_ trans- ferred to your computer. It's just a question to use the proper program. :-) -- Polytropon Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe

Re: oops, now: bsd question: how to record a tv stream?

2012-03-13 Thread Polytropon
On Tue, 13 Mar 2012 19:19:46 -0700, Gary Kline wrote: i have heard about the 848 or whatever cards for years. should i have my sister's technician add one? i understood everything but your last paragraph. please do send me the linksoffline i f you think it wise to

Re: oops, now: bsd question: how to record a tv stream?

2012-03-13 Thread Da Rock
On 03/14/12 13:09, Polytropon wrote: On Tue, 13 Mar 2012 19:19:46 -0700, Gary Kline wrote: i have heard about the 848 or whatever cards for years. should i have my sister's technician add one? i understood everything but your last paragraph. please do send me the

Re: question about SMTP-authentication (2nd )

2012-03-12 Thread kamolpat
Dear Matthew, According to your recommendation (as following). When I do make at /usr/src/sur.sbin/sendmail it show as following. ns1:kamolpat:/usr/src/usr.sbin/sendmailmake clean rm -f sm_os.h sendmail alias.o arpadate.o bf.o collect.o conf.o control.o convtime.o daemon.o deliver.o

Re: question about SMTP-authentication (2nd )

2012-03-12 Thread Matthew Seaman
On 12/03/2012 13:26, kamolpat wrote: According to your recommendation (as following). When I do make at /usr/src/sur.sbin/sendmail it show as following. ns1:kamolpat:/usr/src/usr.sbin/sendmailmake clean rm -f sm_os.h sendmail alias.o arpadate.o bf.o collect.o conf.o control.o convtime.o

Re: question about SMTP-authentication (3rd )

2012-03-12 Thread kamolpat
Dear Matthew, Ok, I got sendmail complied. Thanks. But seem like ... POP3 still working in clear text usr/pwd sending to Server (but it work, I can get mail from server normal). When I chose option in ThunderBird to another mode, it doesn't work (accept connection security: none,

Re: question about SMTP-authentication (3rd )

2012-03-12 Thread Paul Macdonald
On 12/03/2012 15:47, kamolpat wrote: Dear Matthew, Ok, I got sendmail complied. Thanks. But seem like ... POP3 still working in clear text usr/pwd sending to Server (but it work, I can get mail from server normal). When I chose option in ThunderBird to another mode, it doesn't work (accept

Re: oops, now: bsd question: how to record a tv stream?

2012-03-12 Thread Shane Ambler
On 12/03/2012 10:16, Da Rock wrote: On 03/12/12 07:19, Polytropon wrote: On Sun, 11 Mar 2012 13:28:19 -0700, Gary Kline wrote: here us a FBSD qauestion how can i capture any tv stream---or radio stream for later replay? I've been using a BrookTree (Haupauge WinTV) PCI card for capturing

Re: oops, now: bsd question: how to record a tv stream?

2012-03-12 Thread Da Rock
On 03/13/12 12:27, Shane Ambler wrote: On 12/03/2012 10:16, Da Rock wrote: On 03/12/12 07:19, Polytropon wrote: On Sun, 11 Mar 2012 13:28:19 -0700, Gary Kline wrote: here us a FBSD qauestion how can i capture any tv stream---or radio stream for later replay? I've been using a BrookTree

oops, now: bsd question: how to record a tv stream?

2012-03-11 Thread Gary Kline
guys, i made the mistake that conrad did when replying. i could make e excuse liked only getting five hours sleep, etc, bujt i wont. here us a FBSD qauestion how can i capture any tv stream---or radio stream for later replay? or is that illegal, too? gray -- Gary Kline

Re: oops, now: bsd question: how to record a tv stream?

2012-03-11 Thread Joshua Isom
On 3/11/2012 3:28 PM, Gary Kline wrote: guys, i made the mistake that conrad did when replying. i could make e excuse liked only getting five hours sleep, etc, bujt i wont. here us a FBSD qauestion how can i capture any tv stream---or radio stream for later replay? or is that illegal,

Re: oops, now: bsd question: how to record a tv stream?

2012-03-11 Thread Al Plant
Gary Kline wrote: guys, i made the mistake that conrad did when replying. i could make e excuse liked only getting five hours sleep, etc, bujt i wont. here us a FBSD qauestion how can i capture any tv stream---or radio stream for later replay? or is that illegal, too? gray Aloha,

Re: oops, now: bsd question: how to record a tv stream?

2012-03-11 Thread Polytropon
On Sun, 11 Mar 2012 13:28:19 -0700, Gary Kline wrote: here us a FBSD qauestion how can i capture any tv stream---or radio stream for later replay? I've been using a BrookTree (Haupauge WinTV) PCI card for capturing from TV which worked very good using the standard programs mplayer and

Re: oops, now: bsd question: how to record a tv stream?

2012-03-11 Thread Da Rock
On 03/12/12 07:19, Polytropon wrote: On Sun, 11 Mar 2012 13:28:19 -0700, Gary Kline wrote: here us a FBSD qauestion how can i capture any tv stream---or radio stream for later replay? I've been using a BrookTree (Haupauge WinTV) PCI card for capturing from TV which worked very good using

question about SMTP-authentication

2012-03-08 Thread kamolpat
To whom it may concern: Hello, may I need your help about SMTP authentication? Problems: = SMTP-authen doesn't functioning, when I use ThunderBird I try to set authentication method as Kerberos/GSSAPI or Encrypted password, it doesn't work. Background: === I'm intermediate

Re: question about SMTP-authentication

2012-03-08 Thread Matthew Seaman
On 08/03/2012 15:55, kamolpat wrote: Setup Reference == 1. I read the how to setup from FreeBSD Handbook (online)- Chapter 29 Electronic Mail - 29.10 SMTP Authentication from freebsd.org 2. setup for cyrus-sasl2 was fine (setup via usr/ports/security/cyrus-sasl2) 3. setup for

Re: question about SMTP-authentication

2012-03-08 Thread Julian H. Stacey
kamolpat wrote: To whom it may concern: I hope you get a more useful reply than mine later, no time here, sorry but I've had SASL-1 running fine for years FreeBSD both ends. Documented here, http://www.berklix.com/~jhs/txt/sasl.html There's various URLs there to SASL-2 Cheers, Julian

realpath(3): a curiosity question

2012-03-08 Thread Conrad J. Sabatier
I'm just wondering if anyone knows the rationale behind the differing return codes from realpath() for non-existent paths, depending on whether the non-existent element of a path is at the end of the path or if it occurs somewhere further up the chain. Not asking that it be changed, mind you.

Simple question about pkg_add ...

2012-02-28 Thread David Walker
Hey. I believe I have a pcmcia card that requires upgt firmware. From upgt(4) ... This driver requires the upgtfw firmware to be installed before it will work. The firmware files are not publicly available. A package of the firmware which can be installed via pkg_add(1) is

Re: Simple question about pkg_add ...

2012-02-28 Thread Polytropon
On Wed, 29 Feb 2012 01:52:13 +1030, David Walker wrote: Hey. I believe I have a pcmcia card that requires upgt firmware. From upgt(4) ... This driver requires the upgtfw firmware to be installed before it will work. The firmware files are not publicly available. A package of

Re: Simple question about pkg_add ...

2012-02-28 Thread David Walker
Hi Polytropon. I did have a look inside and I did pkg_add -v which gives enough information combined with my meagre knowledge to guess that it had something to do with source. I'm so unfamiliar with pkg_add I'm not sure if that is normal. I'm very new here. Certainly it's not in a suitable format

Re: Simple question about pkg_add ...

2012-02-28 Thread Polytropon
On Wed, 29 Feb 2012 12:41:46 +1030, David Walker wrote: Hi Polytropon. I did have a look inside and I did pkg_add -v which gives enough information combined with my meagre knowledge to guess that it had something to do with source. A port (as you can find it inside the archive) is a recipe

ZFS question

2012-02-18 Thread Denis Fortin
Good morning, On a small system using FreeBSD 9.0-RELEASE, ZFS is reporting an issue on a pool, that I am not certain is really an issue, but I don't know how to investgate... Here is the situation: I have created a ZFS pool on an external 1TB Maxstor USB drive. The ZFS pool sees little

Question regarding SPF records

2012-02-18 Thread Jonathan Vomacka
I am inquiring about how to setup a proper SPF record. I know there are SPF wizards/generators available but each seem to have a different opinion of what should be included and what should not be included. Let me give you a scenario of my setup, and hopefully someone can help me out. My

Re: Question regarding SPF records

2012-02-18 Thread Waitman Gobble
On Feb 18, 2012 8:53 AM, Jonathan Vomacka juvi...@gmail.com wrote: I am inquiring about how to setup a proper SPF record. I know there are SPF wizards/generators available but each seem to have a different opinion of what should be included and what should not be included. Let me give you a

Re: Question regarding SPF records

2012-02-18 Thread Jonathan Vomacka
On 2/18/2012 12:18 PM, Waitman Gobble wrote: On Feb 18, 2012 8:53 AM, Jonathan Vomacka juvi...@gmail.com mailto:juvi...@gmail.com wrote: I am inquiring about how to setup a proper SPF record. I know there are SPF wizards/generators available but each seem to have a different opinion of

Re: Question regarding SPF records

2012-02-18 Thread RW
On Sat, 18 Feb 2012 12:34:09 -0500 Jonathan Vomacka wrote: teamwarfare.com. IN TXT v=spf1 a mx a:mail.teamwarfare.com a:mail2.teamwarfare.com ip4:66.90.73.80 ip4:216.250.250.148 ~all I wouldn't need an include: or ptr statement in this right? I would told include: was to include OTHER

Re: ZFS question

2012-02-18 Thread George Kontostanos
On Sat, Feb 18, 2012 at 12:35 PM, Denis Fortin for...@acm.org wrote: Good morning, On a small system using FreeBSD 9.0-RELEASE, ZFS is reporting an issue on a pool, that I am not certain is really an issue, but I don't know how to investgate... Here is the situation: I have created a ZFS

Re: Technical Support Question

2012-02-17 Thread perryh
Chip Oakley silverskymus...@gmail.com wrote: Am tempted to remove the drive and insert a new one, not sure as there is memory on the drive available and nothing really wrong with it. If you don't mind losing everything currently on the drive, overwriting the MBR -- and the backup GPT at the

Re: Technical Support Question

2012-02-17 Thread Chip Oakley
messages in error, please notify the sender immediately and delete any files or emails that may be in question. Thanks for your consideration. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions

Re: Technical Support Question

2012-02-17 Thread Da Rock
On 02/17/12 19:58, Chip Oakley wrote: Thanks interesting possibilities. One thought I had is creating an operating system independent BIOS where the appropriate machine code is inserted into the events that lead to an override of the processes that is forcing into windows. Maybe burned to a CD

Re: Processor question

2012-02-17 Thread Erich Dollansky
controlled by big companies. Happily using FreeBSD for 10 years. My question is: Should I try the amd64 version of FreeBSD with my Intel Core i7-2600 processor or should I use the i386? Generally, for an x86 machine with 4GB or greater memory use amd64. Memory less than

<    1   2   3   4   5   6   7   8   9   10   >