Re: Forward to abuse@ button for http://tools.ietf.org/html/rfc5965

2010-12-21 Thread Clifton Royston
atted ARF report, a good fraction of the time Yahoo! may still bounce it indicating that you must submit an ARF report. I have seen a number of reports of that. Outsourcing, I'm sure. (They also have been known to firmly claim that a number of Yahoo's mail outbounds are not their

Re: SMP question w.r.t. reading kernel variables

2011-04-19 Thread Clifton Royston
weak, and if a variable is protected by multiple locks, > then any singe lock is weak, but sufficient for reading while all of the > associated locks must be held for writing) than writing, but writing generally > requires "full" locking (write locks, etc.). What he said

Re: looking for someone to fix humanize_number (test cases included)

2012-12-25 Thread Clifton Royston
nstead of "512 K"; for that matter, I would think anything up to "999 K" (divisor 1000) or "1023 K" (divisor 1024) should be represented with the smaller unit, not as "1 M". > 4) man page is missing required sys/types.h include > > I'll work t

Re: looking for someone to fix humanize_number (test cases included)

2012-12-25 Thread Clifton Royston
On Tue, Dec 25, 2012 at 07:20:37AM -1000, Clifton Royston wrote: > On Mon, Dec 24, 2012 at 12:00:01PM +, freebsd-hackers-requ...@freebsd.org > wrote: > > From: John-Mark Gurney > > To: hack...@freebsd.org > > Subject: looking for someone to fix humanize_number (tes

Re: looking for someone to fix humanize_number (test cases included)

2012-12-25 Thread Clifton Royston
On Tue, Dec 25, 2012 at 08:23:55AM -1000, Clifton Royston wrote: > On Tue, Dec 25, 2012 at 07:20:37AM -1000, Clifton Royston wrote: > > On Mon, Dec 24, 2012 at 12:00:01PM +, > > freebsd-hackers-requ...@freebsd.org wrote: > > > From: John-Mark Gurney >

Re: looking for someone to fix humanize_number (test cases included)

2012-12-26 Thread Clifton Royston
uded) > Message-ID: > > Content-Type: text/plain; charset=UTF-8 > > On 25 December 2012 14:46, Clifton Royston wrote: > >> I correct myself: the function works fine, and there are no bugs I > > could find, though it's clear the man page could emphas

Re: looking for someone to fix humanize_number (test cases included)

2012-12-27 Thread Clifton Royston
On Wed, Dec 26, 2012 at 10:53:07AM -1000, Clifton Royston wrote: > On Wed, Dec 26, 2012 at 12:00:01PM +, freebsd-hackers-requ...@freebsd.org > wrote: > > Date: Tue, 25 Dec 2012 14:52:09 -0500 > > From: Eitan Adler > > To: freebsd-hackers@freebsd.org, John-Mark

Re: looking for someone to fix humanize_number (test cases included)

2012-12-27 Thread Clifton Royston
On Thu, Dec 27, 2012 at 08:31:36AM -1000, Clifton Royston wrote: > ... > I'll put the updated test program somewhere shortly. Test code and draft of revisions to function are at http://www.volcano.org/misc/humanize_number/ Man page update will follow later.

Re: looking for someone to fix humanize_number (test cases included)

2012-12-28 Thread Clifton Royston
On Thu, Dec 27, 2012 at 02:24:33PM -1000, Clifton Royston wrote: > On Thu, Dec 27, 2012 at 08:31:36AM -1000, Clifton Royston wrote: > > ... > > I'll put the updated test program somewhere shortly. > > Test code and draft of revisions to function are at > >

Creating install CD with custom ports - how to massage INDEX file?

2007-10-14 Thread Clifton Royston
age set built.) This probably boils down to just one "make release" subcommand I need to give at the right stage, after putting my copied ports tree and/or package tree in the right magic place, but I'm not getting it. I'd appreciate a hint from anybody who knows this ste

A more tenuously package-related question

2007-10-14 Thread Clifton Royston
ant function. (The "pkg_replace" function *sounds* promising but has almost no information on what it actually does.) -- Clifton -- Clifton Royston -- [EMAIL PROTECTED] / [EMAIL PROTECTED] President - I and I Computing * http://www.iandicomputing.com/ Custom programm

Re: A more tenuously package-related question

2007-10-14 Thread Clifton Royston
x27;m planning to not even install the ports tree on servers other than the build server.) I therefore need to use a utility which can operate using only the dependency information in the pkgdb and embedded in the package files themselves. After posting before, I decided to explore pkg_

Re: Creating install CD with custom ports - how to massage INDEX file?

2007-10-16 Thread Clifton Royston
y the set of commands I'm looking for. Whatever that command is, however, I believe it will either include the chrooted "cd /usr/ports && make index", or come after it. Someone pointed me at a particular .py script beneath /usr/src/release, so I need to go look at that, prefer

Re: A more tenuously package-related question

2007-10-23 Thread Clifton Royston
On Sun, Oct 14, 2007 at 01:19:17PM -1000, Clifton Royston wrote: > On Sun, Oct 14, 2007 at 04:05:20PM -0700, [EMAIL PROTECTED] wrote: > > > I used to use pkg_update from the 'pkg_install-devel' toolset to > > > upgrade systems via replacement of binary packages. .

Re: jumbo packets on em card.

2008-04-30 Thread Clifton Royston
mind that because GigE uses more of the cable pairs in an RJ-48 than 100baseTX does, a defective or improperly wired crossover cable between two machines may work fine for 100baseTX and fail for 1000baseTX. I strongly suspect that that's your problem. Try replacing the cable o

Re: freebsd-hackers Digest, Vol 310, Issue 6

2009-03-09 Thread Clifton Royston
to build with the kqueue interface on FreeBSD. Linux uses something else which escapes me at the moment; perhaps epoll? This makes benchmarks on select() primarily of historic interest. -- Clifton -- Clifton Royston -- clift...@iandicomputing.com / clift...@lava.net Presid

Re: ucred when euid/egid

2009-11-28 Thread Clifton Royston
you want it to modify. For what you want to do to work correctly, you would need to either make theprog's ownership be: anyuser:filegroup or fuser:proggroup -- Clifton -- Clifton Royston -- clift...@iandicomputing.com / clift...@lava.net President - I and I Compu

Re: ucred when euid/egid

2009-11-29 Thread Clifton Royston
to leverage the sudo command into doing something more elaborate if you need to, with a suitably crafted sudoers config file; you could also look into the code that sudo uses to set the group vector, but that will require you to write a suid root utility which adds a lot of security risks. Ho

Re: Ricoh PCI to SD device?

2006-01-12 Thread Clifton Royston
) poneys up the money for the standard and signs the associated NDA, then either that developer or the FreeBSD group as a whole might then be permanently barred from writing open source code to implement the protocol, as a working implementation could disclose protocol information covered as a secret by

Re: urgent, need to recover superblock!

2006-02-23 Thread Clifton Royston
rrect superblock" filesystem error may simply vanish when you do this. It is also possible (if this is the issue) that the filesystem got partially trashed when you first mounted it r/w without gmirror. In either case, try starting from there first. If that is where you need to be,

PCI Express graphics reliability/functionality in 6.1?

2006-06-08 Thread Clifton Royston
n authoritative answer to this, I'd appreciate the pointer. -- Clifton -- Clifton Royston -- [EMAIL PROTECTED] / [EMAIL PROTECTED] President - I and I Computing * http://www.iandicomputing.com/ Custom programming, network design, syst

Re: OpenBSD's netcat in base or ports?

2005-01-27 Thread Clifton Royston
s like it should have been in all Unixes from the beginning, along with cat and sh; providing it feels like correcting an inexplicable omission of a useful tool for hooking files, sockets, and ports together. -- Clifton -- Clifton Royston -- [EMAIL PROTECTED] Tiki Technol

Re: Remote upgrade of 4.X-5.3-Stable

2005-02-24 Thread Clifton Royston
ause in a remote environment you will probably get just one shot at having it work correctly; but hopefully this puts you on a workable path. -- Clifton -- Clifton Royston -- [EMAIL PROTECTED] Tiki Technologies Lead Programmer/Software Architect "I'm

Re: BGP & reverse dns

2005-09-22 Thread Clifton Royston
what name server is responsible and whether there is a problem with their name servers. The immediate question to look into would be who delegated their address space to them, and what name server is responsible for its rDNS. -- Clifton -- Clifton Royston -- [EMAIL PROTECTED

Observations on make release process?

2003-11-14 Thread Clifton Royston
n I expected in the docs I could find. I'm hoping I can usefully lay a few of the pitfalls or issues out for future reference by others, and for correction by those who are more knowledgeable than I. -- Clifton -- Clifton Royston -- [EMAIL PROTECTED] Tiki Technolo

Re: Observations on make release process?

2003-11-14 Thread Clifton Royston
On Fri, Nov 14, 2003 at 10:48:13PM +0100, Wilko Bulte wrote: > On Fri, Nov 14, 2003 at 11:37:05AM -1000, Clifton Royston wrote: > > Is this as good a list as any for observations on the FreeBSD "make > > release" process? I can't see any other list that fits the

Re: Observations on make release process?

2003-11-16 Thread Clifton Royston
needed to hear. I'll try to put some doc updates together as a starter. -- Clifton -- Clifton Royston -- [EMAIL PROTECTED] Tiki Technologies Lead Programmer/Software Architect Did you ever fly a kite in bed? Did you ever walk with ten cats on your head? Did you ever mi

Re: getpwnam with md5 encrypted passwds

2003-11-26 Thread Clifton Royston
us" as an authentication method in /etc/pam.conf for your application. Now you do need to make your application go through the PITA required to be a PAM client, but it can at least authenticate without needing root privileges itself. I implemented this pretty recently, so I know the approach wo

Re: getpwnam with md5 encrypted passwds

2003-11-27 Thread Clifton Royston
On Wed, Nov 26, 2003 at 11:10:01PM -0800, Terry Lambert wrote: > Clifton Royston wrote: > > If you will need to do authentication after your program drops > > privileges, your best course is probably to go through PAM, to install > > a separate daemon which implements a P

Re: IPFW and the IP stack

2003-12-04 Thread Clifton Royston
tats so far *seems* to show that it's both failing to firewall connections to the other hosts that it's bridging to, and blocking some connections to itself that it should accept. I haven't started tcpdumping yet to see what's really going on in terms of where the packets ar

Disillusioned with PAM

2003-12-10 Thread Clifton Royston
uot; function designed in... only it appears so far that no PAM method which implements local password changing actually exists on FreeBSD. What a mess. (Yeah, I know, I know - stop grumbling, code one, and contribute it.) -- Clifton -- Clifton Royston -- [EMAIL PROTECTED]

Re: Default mfs/md fs on /tmp (Was: adding more ram

2003-12-12 Thread Clifton Royston
, and it worked very well for typical use. I think it would work well for the typical new FreeBSD user. -- Clifton -- Clifton Royston -- [EMAIL PROTECTED] Tiki Technologies Lead Programmer/Software Architect Did you ever fly a kite in bed? Did you ever walk with ten cats on

Re: Disillusioned with PAM

2003-12-12 Thread Clifton Royston
n a CGI you would open a pipe to pw and feed it the password. It's just a hair trickier, because you presumably don't want your CGI to run as root, nor to have pw be suid - but a tiny suid wrapper in Perl with thorough parameter and taint checking took care of that. Just recording the

Yes, send-pr results in virus emails

2004-01-27 Thread Clifton Royston
would really appreciate it if somebody could track these folks down and unsubscribe them until they can get their machines cleaned up. Rather than harass all the readers with the list, I've compiled one and I'll send it to an appropriate administrator for the PR list when I find one. -

Re: off topic - disk crash

2004-03-12 Thread Clifton Royston
nce or twice only. Sometimes this will free the head on a crashed hard drive and let you read it long enough to recover the contents, though it tends to rapidly destroy working drives. I have done this very very rarely in my career, but occasionally it's let me resuscitate a drive lon

Re: off topic - disk crash

2004-03-14 Thread Clifton Royston
> From: "Christoph P. Kukulies" <[EMAIL PROTECTED]> > Subject: Re: off topic - disk crash > To: [EMAIL PROTECTED] > Message-ID: <[EMAIL PROTECTED]> > Content-Type: text/plain; charset=iso-8859-1 > > On Fri, Mar 12, 2004 at 03:58:16PM +0100, Dag-Erling

Re: Adventures with gcc: code vs object-code size

2004-03-21 Thread Clifton Royston
ymbol table before stripping, with and without this one line, diff it, and see whether other new symbols are showing up along with strcmp. This may also be true even if gcc is partially inlining it - gcc may be pulling in a big clump of its own internal support routines in that case, on the assump

Re: Adventures with gcc: code vs object-code size

2004-03-21 Thread Clifton Royston
On Sun, Mar 21, 2004 at 05:39:58PM -0500, Garance A Drosihn wrote: > At 10:22 AM -1000 3/21/04, Clifton Royston wrote: > > > Date: Sat, 20 Mar 2004 From: Garance A Drosihn > > > > > > So, by adding one call to strcmp() to check for a ":" string, I > &

Re: File system full

2004-04-05 Thread Clifton Royston
the interpreter - so a Perl script which creates temp files and doesn't explicitly close them at the end of each execution pass can really rack up the disk space with "invisible" files. -- Clifton -- Clifton Royston -- [EMAIL PROTECTED] Tiki Technologies Lea

Re: File system full

2004-04-05 Thread Clifton Royston
ou have it installed) to find what files are currently open by running processes, and look through the output for files in /tmp. man fstat, and look at the -f option. -- Clifton -- Clifton Royston -- [EMAIL PROTECTED] Tiki Technologies Lead Programmer/Software Architect D

Re: Loosing STDOUT after file rotation

2004-04-29 Thread Clifton Royston
shell script for log files as part of their standard distro, with a hook to trigger a daemon restart or log reopens as needed, but unfortunately I don't know its license and copyright status. It would be nice to add something like that into the FreeBSD base distribution - it's not like lo

Sticky/sgid/suid bits safe on regular files?

2004-06-17 Thread Clifton Royston
e, or locked out of the buffer cache. Can anybody confirm for me that the suid, sgid, and sticky bit are in fact no-ops for FreeBSD on regular non-executable files, as it appears they should be? -- Clifton -- Clifton Royston -- [EMAIL PROTECTED] Tiki Technologies Lead

Relative performance of swap-backed MFS vs. regular UFS?

2004-10-22 Thread Clifton Royston
ly 1GB RAM, or wiser to just revert to a regular file system? -- Clifton -- Clifton Royston -- [EMAIL PROTECTED] Tiki Technologies Lead Programmer/Software Architect Did you ever fly a kite in bed? Did you ever walk with ten cats on your head? Did you ever milk this k

Re: pkg_add conflicts

2004-11-02 Thread Clifton Royston
dening and hard-to-fix problems coming up. If you have trouble installing pkg_install-devel from a package - which you shouldn't - update ports and install pkg_install-devel from ports before switching back to the packaging system. -- Clifton -- Clifton Royston -- [EMA

Re: pkg_create

2003-08-19 Thread Clifton Royston
Possibly worth looking into how it's solved there? I must admit I haven't yet been able to bend my head around either set of master makefiles to understand how they work or how the bug is dealt with, but I thought I'd throw this tidbit out where it might reach someone who understan

Re: flush on close

2003-09-12 Thread Clifton Royston
IX FFS under this usage pattern. That's a factor to keep in mind, though not a reason to ignore the results as long as they're honest. BSD shouldn't use flush-on-close for the files, but IIRC the volume of file creation and deletion may be triggering extra flushes of directory

Re: EMCsq/SAN

2003-09-15 Thread Clifton Royston
had crafted that carefully. This is tangentially relevant to your question, but it does point up that 1) you want to be careful with non-certified clients, and 2) price/performance was not EMC's strong point at least then. If you have money to burn that's another story. (In which

Any workarounds for Verisign .com/.net highjacking?

2003-09-16 Thread Clifton Royston
via peering with f.root-servers.net) and purging those records out of the zone before loading it. Any ideas, either under djbdns or Bind 9? -- Clifton -- Clifton Royston -- [EMAIL PROTECTED] Tiki Technologies Lead Programmer/Software Architect Did you ever fly a kite in bed

Re: Any workarounds for Verisign .com/.net highjacking?

2003-09-16 Thread Clifton Royston
le/20030916/D7TJOF3G0.html> -- Clifton -- Clifton Royston -- [EMAIL PROTECTED] Tiki Technologies Lead Programmer/Software Architect Did you ever fly a kite in bed? Did you ever walk with ten cats on your head? Did you ever milk this kind of cow? Well we can do it.

VIA EPIA-M10000 board "just works" with FreeBSD 4.8

2003-09-24 Thread Clifton Royston
I thought I'd add a note that this one also works well. -- Clifton, not a VIA salesrep -- Clifton Royston -- LavaNet Systems Architect -- [EMAIL PROTECTED] Did you ever fly a kite in bed? Did you ever walk with ten cats on your head? Did you ever milk this kind of cow? Well

Re: Any workarounds for Verisign .com/.net highjacking?

2003-09-24 Thread Clifton Royston
On Fri, Sep 19, 2003 at 12:09:22PM +0200, Roman Neuhauser wrote: > # [EMAIL PROTECTED] / 2003-09-16 16:58:06 -0400: > > At 10:23 AM -1000 9/16/03, Clifton Royston wrote: > > > In the meantime I'm trying to figure out if there's some > > >simple hack to disrega

Re: VIA EPIA-M10000 board "just works" with FreeBSD 4.8

2003-09-25 Thread Clifton Royston
On Thu, Sep 25, 2003 at 09:55:53AM -0400, Andrew Gallatin wrote: > > Clifton Royston writes: > > For anyone who's interested, I've been running FreeBSD 4.8 on the > > EPIA-1M mini-ITX for at least a couple months now; it's available > > Cool!

Re: rsync vs installworld

2003-10-19 Thread Clifton Royston
. It seems to me that an advantage of that approach is that one could incorporate some of that mergemaster logic into the pkg-install scripts. Feedback, direction, or real-world experience with like systems would be welcomed. -- Clifton -- Clifton Royston -- [EMAIL PROTECTED] Tiki

Re: squid and datasize kernel problems

2002-07-29 Thread Clifton Royston
e to help performance. For more help, try www.squid-cache.org and ask on the squid-users mailing list at: <http://www.squid-cache.org/mailing-lists.html> which used to have plenty of Squid experts and Squid-on-FreeBSD experts; I'm far from either. -- Clifton -- Clifton Royston -

Re: dhcp problems with my ISP

2002-08-03 Thread Clifton Royston
run as many machines as you like on your LAN using that one cable company IP address. The freedom to do this kind of thing is one of the advantages of using free UNIXes, and one might as well take advantage of it. -- Clifton -- Clifton Royston -- LavaNet Systems Architect -- [EMAI