MAC address change on 21040 "Tulip" Ethernet Adapter does not work

2004-09-06 Thread paul
ess is not used for putting things on the wire. It is used inside the packet though. Is this a known problem, and if so, can it be fixed? -- Regards, Paul ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To un

FibreChannel support

2004-09-15 Thread Paul
SAN array ? Thanx Paul ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Software Development from Russia ($20-$25 per hour)

2002-04-02 Thread Paul
and all the estimates will be done for you FREE of charge. Thanks! Paul PS. It's one time message. You are not on a list. To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

rc.d/jail issues

2011-01-27 Thread Paul Schenkeveld
start A before B but shutdown B before A. Would it make sense to reverse the order in which jails are stopped during shutdown by reversing the nales in $jail_list? The attached patch reverses $jail_list during shutdown. Regards, Paul Schenkeveld --- etc/rc.d/jail.orig 2009-08-15 14:00

Re: [GSoC] About the idea: Unicode support in vi

2011-03-26 Thread Paul Schenkeveld
de. I think it makes more sense to grow a WITHOUT_NVI knob in buildworld so that people building for embedded systems can exclude nvi and include another version of vi when really pressed for space, like we can replace the base systems sendmail by sendmail from ports or another MTA. Regards,

Re: New Boot-Loader

2011-03-28 Thread Paul Schenkeveld
n either a beep or a pause saves a lot of frustration for sysadmins already annoyed by the ever increasing POST delay rapidly pressing 6 when the boot0 menu appears. Thanks for your work! Paul Schenkeveld ___ freebsd-hackers@freebsd.org mailing list htt

Re: looking for error codes

2011-04-02 Thread Paul Schenkeveld
systems (please read the freebsd-embedded mailing list) deal with similar issues and that's what nanobsd(8) was written for. Read http://www.psconsult.nl/talks/AsiaBSDcon2010-Servers if you want to see that similar techniques can also be applied to servers. Regards, Paul Schenkeveld ___

Re: ifconfig output: ipv4 netmask format

2011-04-08 Thread Paul Schenkeveld
rhaps a compromise could be: -t Prefer dotted decimal over hex. -c If the netmask is contiguous, print it in CIDR, otherwise in hex (without -d) or dotted decimal (with -d). -d is already in use, hence -t although -D is also available. Does this make everyone happy? > Warn

Re: Add SUM sysctl

2011-04-18 Thread Paul Schenkeveld
-configured. Also during transition from SUM to MUM, when rc encounters an error, it will drop into a "twilight zone" kind of SUM where some MUM initialisation is completed but not all of it. 3. To be really safe, you should check for everything that should not be runn

Automatic per-site configuration

2011-06-26 Thread Paul Schenkeveld
ute, when set the hostname obtained from DHCP is ignored. How do other people solve this? I'd prefer to to be prompted during boot and during login for the site I want to configure for. Kind regards, Paul Schenkeveld ___ freebsd-hackers@freebsd.o

Re: excessive use of gettimeofday(2) and other syscalls

2011-09-09 Thread Paul Ambrose
what version of chromium are you using? I use chromium-13.0.782.215 on amd64 8.2-stable, the gettimeofday call is far less than 2 per second, about 20 per second, but I notice old version has this bug, but latest version has fixed it. Maybe you should update your chromium and try again. Firefo

Re: excessive use of gettimeofday(2) and other syscalls

2011-09-11 Thread Paul Ambrose
Sorry, my previous test is not accurate. I use both firefox and chromium to open 13 same web pages( two of them are from www.sina.com.cn, other from groups.google.com, wiki.sun.com and freebsd.org, both web browsers use libcrossflash to drive linux flash plugin, not linuxulator on my amd64 8.2-st

Re: Is there a step by step howto for dtrace on 9.0 ?

2011-10-09 Thread Paul Ambrose
the wiki DTrace (http://wiki.freebsd.org/DTrace) is available and enough for being a HOWTO. 2011/10/9 Adrian Chadd > > Hi, > > the subject says it all - does anyone have a step by step howto for > doing userland and kernel dtrace on 9.0? > > Thanks, > > > Adrian >

kqueue timer timeout period

2012-07-10 Thread Paul Albrecht
very undesirable for my application. -- Paul Albrecht ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "freebsd-hackers-unsubscr...@freebsd.org"

Re: kqueue timer timeout period

2012-07-11 Thread Paul Albrecht
On Wed, 2012-07-11 at 03:36 -0500, Harti Brandt wrote: > On Wed, 11 Jul 2012, Peter Jeremy wrote: > > PJ>On 2012-Jul-10 10:03:08 -0500, Paul Albrecht wrote: > PJ>>I have a question about the kqueue timer timeout period ... what's data > PJ>>supposed to be?

Re: [[SPAM]] Re: kqueue timer timeout period

2012-07-11 Thread Paul Albrecht
; I'm definitely not getting getting 20 millisecond timing with freebsd kqueue which surprised me because I get it with linux linuxfd_create/read using the same hardware. -- Paul Albrecht ___ freebsd-hackers@freebsd.org mailing list http://lists.f

kqueue periodic timer confusion

2012-07-11 Thread Paul Albrecht
exit(EXIT_FAILURE); } } gettimeofday(&end, 0); msec = ((end.tv_sec - start.tv_sec) * 1000) + (((100 + end.tv_usec - start.tv_usec) / 1000) - 1000); printf("msec = %d\n", msec); close(kq); return EXIT_SUCCE

Re: kqueue periodic timer confusion

2012-07-12 Thread Paul Albrecht
On Thu, 2012-07-12 at 09:26 -0500, John Baldwin wrote: > On Thursday, July 12, 2012 9:57:16 am Ian Lepore wrote: > > On Thu, 2012-07-12 at 08:34 -0400, John Baldwin wrote: > > > On Wednesday, July 11, 2012 5:00:47 pm Ian Lepore wrote: > > > > On Wed, 2012-07-11 at 14

Re: kqueue periodic timer confusion

2012-07-12 Thread Paul Albrecht
8:34 -0400, John Baldwin wrote: > > >> > On Wednesday, July 11, 2012 5:00:47 pm Ian Lepore wrote: > > >> > > On Wed, 2012-07-11 at 14:52 -0500, Paul Albrecht wrote: > > >> > > > Hi, > > >> > > > > > >> > >

Re: kqueue periodic timer confusion

2012-07-19 Thread Paul Albrecht
12, 2012 9:57:16 am Ian Lepore wrote: > >> >> On Thu, 2012-07-12 at 08:34 -0400, John Baldwin wrote: > >> >> > On Wednesday, July 11, 2012 5:00:47 pm Ian Lepore wrote: > >> >> > > On Wed, 2012-07-11 at 14:52 -0500, Paul Albrecht wrote: > >>

Re: Kernel thread stack size

2012-07-24 Thread Paul Ambrose
#define PAGE_SHIFT 12 #define PAGE_SIZE (1< > On Mon, Jul 23, 2012 at 02:54:30AM -0400, Richard Yao wrote: > > What is the default kernel thread stack size on FreeBSD? I am > > particularly interested in knowing about i386 and amd64, but knowing > > this for other architectures (such as MIPS) wou

Re: Kernel thread stack size

2012-07-24 Thread Paul Ambrose
Could you be more specific about "inefficient"? 在 2012-7-25 上午11:22,"Warner Losh" 写道: > > > On Jul 24, 2012, at 6:40 PM, Paul Ambrose wrote: > > > #define PAGE_SHIFT 12 > > #define PAGE_SIZE (1< > > > #define KSTACK_PAGES 2 > > #defi

Re: FreeBSD Kernel Internals, lecture video

2012-08-27 Thread Paul Schenkeveld
s at BSD conferences at a very reasonable price, especially for people working or wanting to work as volunteers for FreeBSD, NetBSD and OpenBSD. Your next opportunity is the EuroBSDcon 2012 conference in Warsaw, Poland where Kirk teaches on friday October 19, 2012: http://www.e

Re: UFS1 vs UFS2

2012-12-30 Thread Paul Schenkeveld
n systems where space savings matter unless your application requires any of the new features that are not present in UFS1. Nanobsd(8) for example uses UFS1 by default too. HTH Paul Schenkeveld ___ freebsd-hackers@freebsd.org mailing list http://lists

Re: UFS1 vs UFS2

2012-12-30 Thread Paul Schenkeveld
(sightly) faster than UFS2 because one page read will get more inodes from disk and 32 bit (UFS1) arithmetic may be slightly faster than 64 bit (UFS2). If performance is an issue, consider turning off atime updates or even mount the filesystem read-only if possible. HTH Paul Schenkeveld __

Re: UFS1 vs UFS2

2012-12-30 Thread Paul Schenkeveld
On Sun, Dec 30, 2012 at 09:29:27PM +0100, Wojciech Puchar wrote: > > > > I don't think performance will be much different but if so, UFS1 would > > be (sightly) faster than UFS2 because one page read will get more inodes > > from disk and 32 bit (UFS1) arithmetic may be slightly faster than 64 bit

Chicken and egg, encrypted root FS on remote server

2013-02-19 Thread Paul Schenkeveld
unencrypted root and devfs would be unmounted, the real root mounted and the real /sbin/init started. But this may be a considered a dirty approach. Did I miss the obvious and easy solution? Any ideas? With kind regards, Paul Schenkeveld ___

Re: Chicken and egg, encrypted root FS on remote server

2013-02-19 Thread Paul Schenkeveld
On Wed, Feb 20, 2013 at 09:14:22AM +0200, Alexander Yerenkow wrote: > 2013/2/20 Paul Schenkeveld > > > Hi, > > > > I've been trying to find a solution for this chicken and egg problem, > > how to have an encrypted root filesystem on a remote server. > >

Re: Chicken and egg, encrypted root FS on remote server

2013-02-19 Thread Paul Schenkeveld
aid machines. Thank you but manual entry of the passprase is a prerequisite here so serving the key automatically is not an option. With kind regards, Paul Schenkeveld ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/

Re: Chicken and egg, encrypted root FS on remote server

2013-02-20 Thread Paul Schenkeveld
On Wed, Feb 20, 2013 at 07:58:10AM +0100, Paul Schenkeveld wrote: > Hi, > > I've been trying to find a solution for this chicken and egg problem, > how to have an encrypted root filesystem on a remote server. > > Geli can ask for a root password at the console to unlock th

Re: Chicken and egg, encrypted root FS on remote server

2013-02-20 Thread Paul Schenkeveld
On Wed, Feb 20, 2013 at 09:47:36AM +0100, Damien Fleuriot wrote: > > On 20 Feb 2013, at 08:46, Paul Schenkeveld wrote: > > > On Wed, Feb 20, 2013 at 02:42:57AM -0500, Jason Hellenthal wrote: > >> Just a thought with no working example but… > >> > >

IPMI console [Re: Chicken and egg, encrypted root FS on remote server]

2013-02-20 Thread Paul Schenkeveld
Hi Daniel, On Wed, Feb 20, 2013 at 10:55:47PM +1030, Daniel O'Connor wrote: > > On 20/02/2013, at 21:43, Paul Schenkeveld wrote: > >> What about getting a remote console like HP's ILO or Dell's DRAC ? > >> > >> You get to login remotely, you ca

syscalls per process ?

2013-03-25 Thread Paul Koch
there a simple way for a process to retrieve its own number of syscalls it has performed ? Pity it's not available via getrusage(). We don't want to run an external program (eg. truss/dtrace) on each program. Paul. ___ freeb

Re: considering i386 as a tier 1 architecture

2013-04-02 Thread Paul Schenkeveld
/usr/bin/cc amd64$ size /bin/sh /bin/ls /usr/bin/find /usr/bin/cc textdata bss dec hex filename 1293711992 10272 141635 22943 /bin/sh 262551144 536 279356d1f /bin/ls 4346413524680 49496c158 /usr/bin/find 383330 15296 58664 457

GSoC proposal review

2013-05-03 Thread Rushil Paul
Hi, Can somebody review my proposal here and see if it can be further improved? http://www.google-melange.com/gsoc/proposal/review/google/gsoc2013/rushilpaul/12001 -- Regards, Rushil ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/

Re: Writing a (BSD like) Operating Systems From Scratch

2013-05-31 Thread Paul Wootton
g.net/maximite.html). The schematics are available on the website and the PCBs should be available (with all combinations from blank PCB to fully populated) But remember, there are a thousand ways to skin a cat and this is just one... Paul ___ fr

Re: exporting subr_param values as sysctls

2007-07-12 Thread Paul Saab
Alfred Perlstein wrote: I would like to export the various parameters from subr_param.c into sysctl, these nodes would include the names from the following tunables as well as others in these files. TUNABLE_ULONG_FETCH("kern.maxtsiz", &maxtsiz); dfldsiz = DFLDSIZ; TUNABLE

Re: Tar output mode for installworld

2007-07-15 Thread Paul Schenkeveld
. Again ENOTIME prevented me so far from writing the update tool but I can certainly help out here. If all works out well, this could also benefit ports where a package could be created without installing the port on the build system. Many hurdles to take, I know but certainly a goal to consider. -- Paul Schenkeveld ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Any progress on FreeBSD/xen port?

2007-10-11 Thread Paul Schenkeveld
. Is someone still working on FreeBSD/xen or has work on the project stalled? Is there anything usable, even beta, around which I can use to get a feeling of what's involved in running FreeBSD under Xen? Thanks. Paul Schenkeveld ___ freebsd-hackers@f

Re: poor ethernet performance?

1999-07-16 Thread Bill Paul
w and you weren't before, then you changed something. Stands to reason, doesn't it? -Bill -- = -Bill Paul(212) 854-6020 | System Manager, Master of Unix-Fu Work: wp...@ctr.columbia.edu | Center for

Call for testers: Adaptec AIC-6915 fast ethernet driver

1999-07-20 Thread Bill Paul
a little, the sooner it will go into the tree. No user-servicable parts inside. Offer void where prohibited by law. Operators are standing by. -Bill -- ===== -Bill Paul(212) 854-6020 | System Manager, Mast

Re: [FreeBSD-net-jp 1746] [FYI] Adaptec AIC-6915 "Starfire" ethernet controller driver and plus question compaq presario dec et

1999-07-21 Thread Bill Paul
!<%k$7$?$N$G$9$,!"(B > NIC$B!'!!(BDEC 21143-based > $B$H%S%G%*%+!<%I!'(bsis5598$...@_dj$,$&$^$/$$$-$^$;$s!"8=:_(B > $BF0$+$7$F$k(B > $BJ}$,$$$i$7$?$i65$($F$/$...@$5$$!#(B I can't read this either. :( -Bill -- ==

Update on Adaptec AIC-6915 "starfire" driver

1999-07-22 Thread Bill Paul
is into the -current branch soon. -Bill -- = -Bill Paul(212) 854-6020 | System Manager, Master of Unix-Fu Work: wp...@ctr.columbia.edu | Center for Telecommunications Research Home: wp...@skynet.ctr.columbia.

Re: How do you allocate dma channel with newbus?

1999-08-16 Thread Bill Paul
SD driver: I mean an example which will actually work in FreeBSD). The fxp, xl, sf, sk, ti and other drivers have been newbused and use bus master DMA; hopefully these should provide decent examples. -Bill -- = -Bill Paul

Re: Gigabit ethernet support?

1999-08-18 Thread Bill Paul
Of all the gin joints in all the towns in all the world, Charles Randall had to walk into mine and say: > Bill Paul has developed a driver for the Alteon Tigon 1 and 2 cards. > > http://www.freebsd.org/~wpaul/Alteon/ > > FYI, > Charles > > -Original Message--

Re: Gigabit ethernet support?

1999-08-18 Thread Bill Paul
Of all the gin joints in all the towns in all the world, David Malone had to walk into mine and say: > On Wed, Aug 18, 1999 at 06:43:24PM -0400, Bill Paul wrote: > > Just out of curiosity, I thought I saw that you could get Intel > Etherexpress 1Gb/s cards. Do these exist and if s

Call for testers, new driver, blah blah blah...

1999-08-20 Thread Bill Paul
x soon, and st is still used there. As usual, report problems or send large bags of cash to wp...@skynet.ctr.columbia.edu. I plan to merge this driver into the -current branch just as soon as I can whip up a man page for it. Share and enjoy! -Bill -- ====

Re: Tulip device driver question

1999-09-07 Thread Bill Paul
at's better.) Is it possible to cram all this stuff into one driver? Well, sure: the Linux tulip driver does it, although I can't say whether or not the Linux driver handles all of the supported cards correctly all of the time. Could you do it? Sure, why not. Could *I* do it? I don

Re: Tulip device driver question

1999-09-07 Thread Bill Paul
27;m going to migrate support for the genuine DEC > chips, as well. If you can actually get it all to work and retain some portion of your sanity, I'll be mighty impressed. -Bill -- = -Bill Paul(212) 854-6020

Re: Tulip device driver question

1999-09-08 Thread Bill Paul
I could buy a board in the U.S., since I already had the datasheet (the AL981 sheet is on their server). They turned out to be really eager to help me and sent me two cards directly. Again, I have to grope through my back e-mail to find the name of the guy I spoke too, but you can easily

Re: Tulip device driver question

1999-09-08 Thread Bill Paul
a pretty cruddy DMA engine. > > Davicom ... Winbond-like? No, the Davicom DM9102 is a pretty close copy of the tulip: it uses the setup frame mechanism for programming the RX filter. You can find the datasheet at http://www.davicom8.com. They also have a Linux driver up there somewhere (it's ki

Call for testers: Aironet wireless adapters

1999-09-14 Thread Bill Paul
be done with the ancontrol utility (i.e. ancontrol -i an0 -n "MY_NETWORK"). As usual, report problems or send free large bags of cash to wp...@skynet.columbia.edu. Include lots of details. -Bill -- ===== -Bill Paul

Problem detecting and reacting to serial break

2010-08-14 Thread Paul Thornton
byte 1 is - and every time I run the test program the location of byte 1 changes arbitrarily depending on what was in the receive buffer. Have I missed something here, or is there any other way that I can detect the presence of the break out-of-band? I cannot mak

Re: Problem detecting and reacting to serial break

2010-08-14 Thread Paul Thornton
Ed Schouten wrote: > * Paul Thornton wrote: >> I'm using 8.0-RELEASE with uftdi and ucom driving the serial port. > > Somewhat unrelated question: have you ever tried running the this code > on 7.x? If so, did it work? I've just tried this on 7.2-RELEASE (that was

Re: Problem detecting and reacting to serial break

2010-08-14 Thread Paul Thornton
Daniel O'Connor wrote: > On 15/08/2010, at 3:00, Paul Thornton wrote: >> So according to the documentation, the effect of the break should be to >> flush the input and output buffers, and send a SIGINT to my process. The >> buffer doesn't seem to get flushed,

Re: Problem detecting and reacting to serial break

2010-08-15 Thread Paul Thornton
Paul Thornton wrote: > Ed Schouten wrote: >> * Paul Thornton wrote: >>> I'm using 8.0-RELEASE with uftdi and ucom driving the serial port. >> Somewhat unrelated question: have you ever tried running the this code >> on 7.x? If so, did it work? > > I&#x

Crash dump on HP Proliant G6 broken as of V8.0

2010-09-15 Thread Paul Heyman
G: completed command with no submitter ciss_unmap_request: called . . . This goes on forever Thanks Paul Paul Heyman phey...@adaranetworks.com ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscri

Re: little mistake in rc.subr?

2010-09-27 Thread Paul Schenkeveld
On Mon, Sep 27, 2010 at 02:01:29PM +0200, Lars Engels wrote: > On Mon, Sep 27, 2010 at 03:04:21PM +0400, Dmitry Banshchikov wrote: > > Hello, > > > > In /etc/rc.subr, at line 231, there is: > > > > if [ ! -f $_pidfile ]; then > > debug "pid file ($_pidfile): not readable." > > return > > fi >

Re: Summary: Re: Spin down HDD after disk sync or before power off

2010-10-21 Thread Paul Wootton
d/unload cycle about every 24.5 seconds Another 2 months and I will be knocking on for 1 million load/unload cycles As DES has already said, for most people the extra load/unload cycles when rebooting a computer will not be an issue at all and is far more desirable than an emergency

Re: Increasing partition size by removing partitions

2008-09-28 Thread Paul Schenkeveld
e among us could copy the existing FreeBSD partitions from slice 2 to slice 1, enlarging them if needed and using fdisk and bsdlabel to combine the two slices into one, all depending on the size of the slices. The big issue here is to be aware not to overwrite anything before copying it into its fin

Re: Spam ? - Re: Increasing partition size by removing partitions

2008-09-29 Thread Paul Wootton
, if you try to run the editor under windows 2000 or XP, it will try to create a bootable floppy disk which might be more useful to FreeBSD users Like I said, it might not be any use in this instance, but probably still worth a look, just incase Paul On Sunday 28 September 2008 02:38:14 Maxim

Re: open(2) and O_NOATIME

2008-10-31 Thread Paul Schenkeveld
nd of reset atime as i.e. cpio does looks far more complex than adding O_NOATIME to rsync. My $0.02 Regards, Paul Schenkeveld ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "[EMAIL PROTECTED]"

RE: Problems with zfsboot loader if raidz present on any drive

2008-12-09 Thread Paul Wootton
information necessary.. > > ~Peg Hi Doug, I was working with Peg on this over the weekend. I think I have a patch for this - see http://www.freebsd.org/cgi/query-pr.cgi?pr=129539 The problem was that we were not checking the return code from vdev_init_from_nvlist() on line 726 in /usr/src/sys/boot/zfs/zfsimpl.c Joao, Do you want to try the attached patch? It seems to have fixed the problem, at least on mine and Peg's machine. Cheers Paul zfsimpl.c.patch Description: Binary data ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "[EMAIL PROTECTED]"

RE: ZFS and Graphics support for /boot/loader

2009-02-06 Thread Paul Wootton
Hi Oliver, This doesn’t work for me. I am booting off a ZFS mirror with GPT partitions (built from current on an amd64). Is there any change of a version of gloader but with ZFS support? Cheers Paul -Original Message- From: owner-freebsd-hack...@freebsd.org [mailto:owner-freebsd-hack

Re: How to increase the max pty's on Freebsd 7.0?

2009-04-01 Thread Paul Schenkeveld
l form. Or change 'pts' to, for example, 'pt' so without changing utmp and related stuff we'll have space for a four digit pty number. -- Paul Schenkeveld ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/

yarrow random generator

2009-12-24 Thread Paul Graphov
Hello guys, I've looked at FreeBSD 8.0 cryptographically secure pseudorandom numbers generator and have a question. It looks like a bug but I'am not sure. In file sys/dev/randomdev.c, function random_read: if (!random_systat.seeded) error = (*random_systat.block)(flag);

Re: yarrow random generator

2009-12-24 Thread Paul Graphov
random_systat.seeded is exported to sysctl? isn't it? In this case If somebody resets it to zero, some "read" goest to "block" and before acquiring mutex it is reseeded, setting it to true, block will never leave the cycle. 2009/12/24 RW > On Thu, 24 Dec 2009 1

Re: yarrow random generator

2009-12-24 Thread Paul Graphov
a bug here, but it doesn't matter since this is dead > code: .seeded is initialized to 1 and never modified, so we will never > call into random_yarrow_block. > > IIRC this is because there are some places which ask for entropy before > yarrow is seeded but don't actually need *c

Re: To sendmail or to postfix that is the question?

2010-03-11 Thread Paul Wootton
s say admin1, admin2, admin3, admin4 and then use the "virtual users" table, but I can see that getting a little messy and from the end user's point they are going to have unusual login names. I know I can do this in Postfix, but is it possible in Sen

Re: To sendmail or to postfix that is the question?

2010-03-11 Thread Paul Wootton
comment added ... PS I skimmed but didnt really understand Matthew's posting, (not saying its right or wrong, just didnt grasp it), but I have sendmail working fine for my @berklix.org & for a friend's @surfacevision.com So Paul, you can use sendmail for this if you want. Cheers, Ju

Panic: sleeping thread

2010-04-06 Thread Paul Halliday
-- Forwarded message -- From: Paul Halliday Date: Thu, Apr 1, 2010 at 8:38 AM Subject: Re: panic: sleeping thread To: questi...@freebsd.org On Mon, Mar 22, 2010 at 9:28 AM, Paul Halliday wrote: > I have a couple VM's that randomly halt with this error: > > Sleepi

Wotsit's Format Update

1999-05-16 Thread Paul Oliver
The programmer's resource at http://www.wotsit.org has been updated again. I apologise for the lack of update E-mails recently, I have now implemented the update list in a different way which should make the process work better. 18 files have been added or modified in the last 7 days, use the "

Re: xl driver for 3Com

1999-05-28 Thread Bill Paul
ort to submit, then fine: let's hear it. But if you just want to make vague and unsubstantiated complaints, do me a favor and just keep it to yourself. -Bill -- = -Bill Paul(212) 854-6020 | Sy

Re: xl driver for 3Com

1999-05-28 Thread Bill Paul
n everyone else will go insane instead of me, society will collapse, and I can take over the world while everyone's distracted! You know if they ever find a way to harness sarcasm as an energy source, you people are all going to owe me big. -Bill -- ===

Re: xl driver for 3Com

1999-05-29 Thread Bill Paul
! More than that, your boss would be pretty pissed off too! So, tell me: just how many of you other people reading this have been having problems with 'drivers under load' and couldn't be bothered to actually report the problem? Hm? Well what're you waiting for?! Go on: spea

Re: xl driver for 3Com

1999-05-31 Thread Bill Paul
shing, I can't really help you with that. You also didn't explain exactly what you meant by 'crash.' Does it just lock up completely (mouse doesn't move)? Does it 'panic' with a 'blue screen of death' (register dump)? Does the machine keep working but

Re: xl driver for 3Com

1999-05-31 Thread Bill Paul
ot; Tell me *EXACTLY* what appears on the console (or if!) it crashes, word for word. Not your interpretation of what it says: *EXACTLY* what it says. And you still haven't explained what you meant about the LoseNT machine crashing before. -Bill --

Using newbus to hang a custom bus off a device

1999-05-31 Thread Bill Paul
ve a higher priority than the generic one, thereby forcing the specific probes to be called first? -Bill -- ===== -Bill Paul(212) 854-6020 | System Manager, Master of Unix-Fu Work: wp...@ctr.colu

Re: xl driver for 3Com

1999-06-01 Thread Bill Paul
ve tcpdump running on the FreeBSD server and you still see traffic coming from the NT hosts, then the problem is that the FreeBSD server is receiving but not transmitting. In this case, you should do ifconfig xl0 and see if the OACTIVE flag is set. If it is, it means the driver has used up all it

Re: Q: xl0: no memory for rx list -- packet dropped!

1999-06-07 Thread Bill Paul
27;s nothing listening. Note: each mbuf cluster is 2K in size. 2 * 2048 == 40MB of RAM, so you better have a lot of memory in this server. If not, try something smaller. -Bill -- = -Bill Paul(212) 854-6

Call for testers: SysKonnect gigabit ethernet driver

1999-07-07 Thread Bill Paul
new if_media.h is in place. If you have problems, please send them to wp...@skynet.ctr.columbia.edu. Include lots of details. -Bill -- = -Bill Paul(212) 854-6020 | System Manager, Master of Unix

PCCARD and Vpp voltage

1999-07-09 Thread Bill Paul
hen it needs to be turned on and do it only for those cards that need it? -Bill -- ===== -Bill Paul(212) 854-6020 | System Manager, Master of Unix-Fu Work: wp...@ctr.columbia.edu | Center for Telecommunications

Re: OpenBSD's strlcpy(3) and strlcat(3)

1999-07-15 Thread Paul Hart
d Miller and Theo de Raadt. It was later mentioned that the paper and accompanying slides are available at: http://www.openbsd.org/papers/strlcpy-paper.ps http://www.openbsd.org/papers/strlcpy-slides.ps I think each function is well thought out and I think they'd be a great addition

Re: OpenBSD's strlcpy(3) and strlcat(3)

1999-07-15 Thread Paul Hart
eplacement for strcpy/strcat than strncpy/strncat (which they certainly are). Sure, you could go around telling people "use snprintf instead" or "use asprintf instead", but is that the issue at hand? Paul Hart -- Paul Robert Hart><8> ><8> ><8&

RELENG_6_0 core

2005-12-19 Thread Paul Bauer
480 464 448 432 416 400 384 368 352 336 320 304 288 272 256 240 224 208 192 176 160 144 128 112 96 80 64 48 32 16 ... ok Dump complete Automatic reboot in 15 seconds - press a key on the console to abort Thank you Paul pgp7fLeI9paV1.pgp Description: PGP signature

Re: FreeBSD Crash without Errors, Warnings, or Panics

2006-04-13 Thread Paul Saab
There are serious race conditions with amr in 6.0 that can cause serious hangs. I suggest you take the amr driver from RELENG_6 and try that. Matthew Hagerty wrote: Greetings, I'm running 6.0-RELEASE-p5 on a Toshiba built server: dual Xeon Intel motherboard with a LSILogic MegaRAID (amr0) co

Re: FreeBSD Crash without Errors, Warnings, or Panics

2006-04-13 Thread Paul Saab
but I need this box up and online, and I've always read that the stable branch is not the place for production servers. Is there any place I read about the status and work being done on the arm driver? Thanks, Matthew Paul Saab wrote: There are serious race conditions with amr in 6.0 tha

Server choice.

2006-04-20 Thread Paul Halliday
Hi, I am in the process of building a new database server and after pricing up 2 Dell models I thought I would throw this out just to see which choice would be better suited for FreeBSD. The demands on the system will be mostly network -> disk I/O with a hope of best performance on quickly servic

Question regarding bus_dma_tag_create().

2006-05-09 Thread Paul Marciano
n reading the man page I came across this ~0 option, which I've also seen in other FreeBSD drivers and I just don't get it. I hope someone can clue me in. Thanks, Paul. __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam p

Re: ipv6 connection hash function wanted ...

2006-11-14 Thread Paul Twohey
tacks face similar problems. A good place to start would probably be: http://www.cs.rice.edu/~scrosby/hash Paul Twohey [EMAIL PROTECTED] ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: Clustering FreeBSD

2001-01-19 Thread Paul Marquis
This link appears broken. Typo perhaps? Ronald G Minnich wrote: > See it at http://www.lanl.gov/~rminnich/. -- Paul Marquis [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

Re: What is the latest "known-good" PXE build ?

2001-02-06 Thread Paul Saab
implementation > kit and build your own. You still need the code to drive the nic, and noone gives this out. I have the latest stuff at: http://people.freebsd.org/~ps/pxeroms/ Unfortunately you need windows to extract the files.. I can put up a few more of the files later when I get back fro

Re: Really odd "BTX halted" problem booting - PXE/diskless

2001-02-07 Thread Paul Saab
the dangerously dedicated mode. It is > }unused and ignored otherwise. > } > }> -Matt > } > }-- > } > }John Baldwin <[EMAIL PROTECTED]> -- http://www.FreeBSD.org/~jhb/ > }PGP Key: http://www.baldwin.cx/~john/pgp

patch for if_sis to support SiS630E, need testers

2001-02-08 Thread Bill Paul
http://www.freebsd.org/~wpaul/SiS/sis.diff This patch adds support for reading the station address from the ATC CMOS RAM for board with the SiS 630E chipset with integrated SiS 900 ethernet. I've verified that the patch compiles and doesn't make the system explode, and it should have no effect on

call for testers: port aggregation netgraph module

2001-02-08 Thread Bill Paul
http://www.freebsd.org/~wpaul/FEC/4.x/fec.tar.gz http://www.freebsd.org/~wpaul/FEC/5.x/fec.tar.gz This is a call for testers for a netgraph module that can be used to aggregate 2 or 4 ethernet interfaces into a single interface. Basically, it lets you do things like the following: # kldload ./ng

Re: call for testers: port aggregation netgraph module

2001-02-09 Thread Bill Paul
> On Fri, 9 Feb 2001, Chris Dillon wrote: > > > On Fri, 9 Feb 2001, Dan Nelson wrote: > > > Cool, if thats all it will take, I'll give it a try. But, whatever > > method Compaq/Intel is using doesn't require me to set up the ports on > > the switch as being part of a trunk. It "just works". A

Handspring.

2001-02-09 Thread Paul Halliday
What are the chances of porting to this baby? -- Paul H. Don't underestimate the power of stupid people in large groups. Brute force is the last resort of the incompetent. GPG Key fingerprint: 2D7C A7E2

Re: Windows 2000 pro & FreeBSD

2001-02-23 Thread Paul Marquis
talled casue i wanted to use its bootmanager for > loading each OS. I know win2k and load openbsd so figure > i wont have any trouble dual booting with freebsd. > Now I cant find any documentation on dual booting win2k > and freebsd. I need help! -- Paul Marquis [EMAIL PROTECTED] I believ

Re: rootdev problems with /boot/loader.

2001-02-27 Thread Paul Saab
root.vfs.mountrootfrom="ufs:/dev/ad0s1a" paul Josef Karthauser ([EMAIL PROTECTED]) wrote: > On Tue, Feb 27, 2001 at 02:44:04PM -0800, John Baldwin wrote: > > > > On 27-Feb-01 Josef Karthauser wrote: > > > > > > p.s. This image is being booted via /d

Re: rootdev problems with /boot/loader.

2001-02-27 Thread Paul Saab
Oops. make that vfs.root.mountrootfrom="ufs:/dev/ad0s1a" Paul Saab ([EMAIL PROTECTED]) wrote: > root.vfs.mountrootfrom="ufs:/dev/ad0s1a" > > paul > > Josef Karthauser ([EMAIL PROTECTED]) wrote: > > On Tue, Feb 27, 2001 at 02:44:04PM -0800, John Baldw

  1   2   3   4   5   >