Re: limits for run away Firefox ?

2010-01-19 Thread Rick C. Petty
to chflags noschg it, which works better than chmod 000 (if the FS supports it). But I agree that it would be nice to prevent ffox from segfaulting; unfortunately this is one of those apps which segfaults a lot (for me at least). =) Cheers, -- Rick C. Petty

Re: Deprecating ps(1)s -w switch

2009-08-25 Thread Rick C. Petty
, but I'd be for one option to specify limited width and another option (-w) to specify as wide as possible. -- Rick C. Petty ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail

Re: c question: *printf'ing arrays

2009-06-30 Thread Rick C. Petty
be open, so use fileno(stdout) or just plain STDOUT_FILENO instead of new_fd. -- Rick C. Petty ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to freebsd-hackers-unsubscr

Re: c question: *printf'ing arrays

2009-06-30 Thread Rick C. Petty
a macro for each type. Without an example of how you want the output to look, it's hard for us to show you code that will produce such output. -- Rick C. Petty ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo

Re: dd copy of FreeBSD-7.2 won't boot

2009-06-25 Thread Rick C. Petty
if you have the space and it was a bad disk, I'd probably dd to a new disk or file, then mount that disk or file read-only, and then use rsync. -- Rick C. Petty ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd

Re: Loader reading FAT

2009-06-16 Thread Rick C. Petty
just under 256 KB of room since our UFS code will search for the superblock at a byte offset of 262144, but there aren't any knobs to newfs so you'd have to hack it together. Take a look at /usr/src/sys/boot/i386/boot2/ for starters. -- Rick C. Petty

Re: In search of a video card

2009-05-14 Thread Rick C. Petty
driver. YMMV, -- Rick C. Petty ___ 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: In search of a video card

2009-05-14 Thread Rick C. Petty
the ATI hardware isn't capable of this, but nvidia's cards seem to be. It's too bad the open source drivers haven't made enough progress in this area yet. -- Rick C. Petty ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman

Re: In search of a video card

2009-05-14 Thread Rick C. Petty
that it's particularly slow even in 2d. -- Rick C. Petty ___ 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: C99: Suggestions for style(9)

2009-05-01 Thread Rick C. Petty
; struct bar *bp = fp-bp; which isn't legal in 'C'. I thought we were talking about C99, in which case this is perfectly legal. I certainly use it all the time in my C99 code. And I thought this was the point of this discussion, to be able to declare variables when you first use them. -- Rick C

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

2009-03-09 Thread Rick C. Petty
On Sun, Mar 08, 2009 at 01:36:09PM +0100, Bernd Walter wrote: On Fri, Mar 06, 2009 at 03:47:38PM -0600, Rick C. Petty wrote: On Fri, Mar 06, 2009 at 03:30:14PM -0600, Octavian Covalschi wrote: Why is spinning down is bad for HDD ? I believe it's better to spindown a drive, instead

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

2009-03-06 Thread Rick C. Petty
docs, so if anyone knows the command I'd be willing to write a patch against atacontrol! -- Rick C. Petty ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to freebsd-hackers

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

2009-03-06 Thread Rick C. Petty
avoid power-cycling your drives, they should last longer (in that you're less likely to destroy the heads). -- Rick C. Petty ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail

Re: /dev/dsp* /dev/audio* devices not present

2009-01-12 Thread Rick C. Petty
necessity. Just disagreeing with me will not change anything. -- Rick C. Petty ___ 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: /dev/dsp* /dev/audio* devices not present

2009-01-11 Thread Rick C. Petty
On Sat, Jan 10, 2009 at 04:20:58AM -0800, per...@pluto.rain.com wrote: Rick C. Petty rick-freebsd2...@kiwi-computer.com wrote: That's not how devfs works. It's actually a feature that devfs doesn't list everything ever possible http://storage9.myopera.com/freejerk/files/bug-feature.jpg

Re: /dev/dsp* /dev/audio* devices not present

2009-01-09 Thread Rick C. Petty
written to dynamically create device nodes when needed. -- Rick C. Petty ___ 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: missing mount_devfs

2008-12-17 Thread Rick C. Petty
devfs /dev I believe I saw recently that devfs mounts were merged into standard mount code. -- Rick C. Petty ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to freebsd

Re: Strange changed paths in svn commits

2008-12-12 Thread Rick C. Petty
On Fri, Dec 12, 2008 at 08:21:25AM -0800, Tim Kientzle wrote: Rick C. Petty wrote: On Fri, Dec 12, 2008 at 01:15:17PM +0200, Artis Caune wrote: I suspect you've run into a well-known svn bug that affects svn merge. I thought they had fixed it with subversion 1.5.4, but apparently it's still

Re: FreeBSD boot menu is missing

2008-11-28 Thread Rick C. Petty
. -- Rick C. Petty ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to [EMAIL PROTECTED]

local network throughput issues

2008-08-16 Thread Rick C. Petty
upgrade that I've had any problems. The box was 99-100% idle during those tests and I don't see an interrupt storm or anything funny like that. Any ideas? -- Rick C. Petty From /var/run/dmesg.boot: Copyright (c) 1992-2008 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991

Re: local network throughput issues

2008-08-16 Thread Rick C. Petty
with. In fact in each sshd_config, I have: UseDNS no In dnsmasq, I have each host listed in /etc/hosts which is used by dnsmasq for forward and reverse DNS. No this problem started when I updated the OS on my gateway. -- Rick C. Petty ___ freebsd-hackers

Re: local network throughput issues

2008-08-16 Thread Rick C. Petty
and port forwarding. There's nothing special about it. It looks like the TSO disabling fixed my problems. Thank you for the suggestion! -- Rick C. Petty ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers

Re: list blocklist from inode

2008-07-14 Thread Rick C. Petty
On Tue, Jul 15, 2008 at 06:51:28AM +0200, Matthias Apitz wrote: Is there a way (without using fsdb(8)) to list the block list from a given inode? thx ffsinfo -i inode -l 0x230 filesystem -- Rick C. Petty ___ freebsd-hackers@freebsd.org mailing list

Re: Glaring 64 bit omission

2008-07-09 Thread Rick C. Petty
your real name, just makes people believe that you are a troll. It is obviously not constructive since the problems are known and (supposedly) are being worked on. -- Rick C. Petty ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org

Re: Re: Sysinstall is still inadequate after all of these years

2008-07-08 Thread Rick C. Petty
is to use the latest kernel and mount from the mirror. I'd like to see other OSes do all of that. -- Rick C. Petty ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail

Re: temporary freezes when pressing capslock / numlock

2008-05-27 Thread Rick C. Petty
the problem down. -- Rick C. Petty ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: temporary freezes when pressing capslock / numlock

2008-05-27 Thread Rick C. Petty
probably can live without it. I'm almost certain this will help, but I believe this shouldn't be the answer to this problem. There's no reason atkbdc(4) should block the entire kernel for any appreciable amount of time. -- Rick C. Petty ___ freebsd

Re: temporary freezes when pressing capslock / numlock

2008-05-27 Thread Rick C. Petty
first? -- Rick C. Petty ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: Feature request

2008-04-01 Thread Rick C. Petty
, but lulf@ I think was working on that. There are many things I don't like about LVM at all, particularly in the naming and how impossible it is to setup a root mirror at install (or even mirror whole disks). -- Rick C. Petty ___ freebsd-hackers@freebsd.org

Re: ATAPI dvdreader always fails on a particular DVD movie title

2008-01-24 Thread Rick C. Petty
and restart it, skipping the first 10 seconds of video. That workaround has always worked for me. -- Rick C. Petty ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to [EMAIL

Re: Wrapper for Windows-only network card binary drivers on FreeBSD?

2008-01-24 Thread Rick C. Petty
On Thu, Jan 24, 2008 at 04:12:00PM -0800, Yuri wrote: I am curious is there an effort in FreeBSD similar to Linux NDISwrapper? http://www.freebsd.org/cgi/man.cgi?query=ndisapropos=0sektion=0manpath=FreeBSD+6.3-RELEASEformat=html -- Rick C. Petty

Re: DIST_SUBDIR not working with MASTER_SITE_OVERRIDE

2008-01-23 Thread Rick C. Petty
DIST_SUBDIR_OVERRIDE= .endif MASTER_SITE_OVERRIDE=ftp://ftp5.freebsd.org/pub/FreeBSD/distfiles/${DIST_SUBDIR_OVERRIDE} -- Rick C. Petty ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe

Re: select

2008-01-03 Thread Rick C. Petty
can lengthen the interval by an indeterminate amount. If timeout is a null pointer, the select blocks indefinitely. To effect a poll, the timeout argument should not be a null pointer, but it should point to a zero-valued timeval structure. -- Rick C. Petty

Re: Using shell commands versus C equivalents

2007-06-13 Thread Rick C. Petty
enough. I agree with the other poster(s) who said that if it prevents complex code, it might be worth it. Your case isn't complex enough to warrant the spawning of a shell process, especially when one of your primary goals is to reduce total runtime. -- Rick C. Petty

Re: Using shell commands versus C equivalents

2007-06-13 Thread Rick C. Petty
to be installing the same port multiple times at the exact same time, but maybe a lock could be held on the package directory (i.e. /var/db/pkg/$PKG_NAME). Again, I don't believe this is strictly necessary. -- Rick C. Petty ___ freebsd-hackers@freebsd.org

Re: Looking for speed increases in make index and pkg_version for ports

2007-05-28 Thread Rick C. Petty
. I doubt anyone will find anything as powerful as pmake without sacrificing the much-used flexibility it provides. -- Rick C. Petty ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send

Re: SoC

2007-05-16 Thread Rick C. Petty
screwdrivers are stupid. -- Rick C. Petty ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: DPS Initial Ideas

2007-05-14 Thread Rick C. Petty
) instead of VARCHAR(1). If SQLite isn't even standards-compliant, why is anyone considering it? =) Nitpicky, I know, but it makes me wonder what else they don't follow... -- Rick C. Petty [1] http://www.contrib.andrew.cmu.edu/~shadow/sql/sql1992.txt

Re: DPS Initial Ideas

2007-05-14 Thread Rick C. Petty
On Mon, May 14, 2007 at 06:06:37PM -0400, Kris Kennaway wrote: Some of the fields can (and do) have unbounded length. Kris Where is that specified in the SQL spec? Or are you just saying that SQLite provides this flexibility? -- Rick C. Petty

Re: High disk load +mount/atacontrol/NFS/SMBFS crashes the system

2007-04-23 Thread Rick C. Petty
anything useful. -- Rick C. Petty ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: Discovering list of open files from kernel level without using utils like lsof

2007-04-09 Thread Rick C. Petty
. I've also seen disks work just fine while powered that just plain quit immediately after a power cycle. So you may save power by spinning the disks down, but I doubt you're saving disk life (unless they're powered down for weeks at a time). -- Rick C. Petty

Re: PING: Someone on the core team. (Modem Problem)

2007-02-09 Thread Rick C. Petty
has a solitary (unshared) IRQ and swap with the modem. -- Rick C. Petty ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: LDAP integration

2007-01-12 Thread Rick C. Petty
(look at security/heimdal), but at least the separation is manageable. -- Rick C. Petty ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: Fscking a partition mounted Read only...

2006-10-17 Thread Rick C. Petty
On Tue, Oct 17, 2006 at 10:06:36AM +0200, Oliver Fromme wrote: Rick C. Petty wrote: I doubt you'd get the code to work under 6.x or 5.x even. I'm not sure if any GEOM-related stuff ever made it into fsck, but certainly the background checking code and softupdates changes were introduced

Re: A handy utility (at least for me)

2006-08-28 Thread Rick C. Petty
On Mon, Aug 28, 2006 at 06:18:58PM +0200, Oliver Fromme wrote: Rick C. Petty wrote: I find that the following command works just fine for me: find /usr/ports -type d -name work -prune -print -delete The following is probably the most efficient solution. It doesn't run into all

Re: A handy utility (at least for me)

2006-08-28 Thread Rick C. Petty
is certainly not faster to type for some people, and really what's important is how much operator time is spent. One nice thing about unix is that there's more than one way to skin a cat(1), pardon the pun. So use what you feel more comfortable using! Three cheers for free unix, -- Rick C. Petty

Re: A handy utility (at least for me)

2006-08-26 Thread Rick C. Petty
fine for me: find /usr/ports -type d -name work -prune -print -delete =) -- Rick C. Petty ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: A handy utility (at least for me)

2006-08-26 Thread Rick C. Petty
me first before throwing ruby in the base distro. :-P -- Rick C. Petty ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to [EMAIL PROTECTED]

momentary system pauses when switching VTYs

2006-08-25 Thread Rick C. Petty
with no PS/2 keyboard attached-- but I'm using a similar USB keyboard on another 6.1-STABLE box just fine. Any ideas? -- Rick C. Petty output of dmesg: Copyright (c) 1992-2006 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents

Re: [PATCH] adding two new options to 'cp'

2006-08-02 Thread Rick C. Petty
to a new filesystem, that way you guarantee the blocks allocated to the file are contiguous.) -- Rick C. Petty ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to [EMAIL

Re: [PATCH] adding two new options to 'cp'

2006-08-01 Thread Rick C. Petty
this is essentially what the -S option to gnu's tar does. In this example, you may not mimic the allocated blocks of a sparse file, but you would optimize the copy to use as few filesystem blocks as possible. -- Rick C. Petty ___ freebsd-hackers@freebsd.org

Re: [PATCH] adding two new options to 'cp'

2006-08-01 Thread Rick C. Petty
/restore handle extended attributes? Last I checked, it didn't. But then again I don't think cp or tar do either. Feel free to enlighten me. -- Rick C. Petty ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd

Re: [PATCH] adding two new options to 'cp'

2006-08-01 Thread Rick C. Petty
(or -S, it's all the same to me). While we're at it, I think we should add the -S option to bsdtar. I'm willing to do the work and make patches (to cp tar), if someone is willing to review and commit them. -- Rick C. Petty ___ freebsd-hackers

Re: [PATCH] adding two new options to 'cp'

2006-08-01 Thread Rick C. Petty
On Tue, Aug 01, 2006 at 12:51:32PM -0500, Eric Anderson wrote: On 08/01/06 12:40, Rick C. Petty wrote: It could possibly be bad if you have a real file (say a 10GB file, partially filled with zeros - a disk image created with dd for instance), and you use cp with something like -spR

Re: [PATCH] adding two new options to 'cp'

2006-08-01 Thread Rick C. Petty
On Tue, Aug 01, 2006 at 02:26:28PM -0400, Mike Meyer wrote: In [EMAIL PROTECTED], Rick C. Petty [EMAIL PROTECTED] typed: Obviously, I didn't add the error checking/handling, but AFAIK this is essentially what the -S option to gnu's tar does. Yes, but gnu tar doesn't do this accurately

Re: [PATCH] adding two new options to 'cp'

2006-08-01 Thread Rick C. Petty
would work just fine. I guess a better solution would be to check every 512-byte chunk and seek if zero. It's up to the underlying filesystem to implement this as a sparse file, if that filesystem supports such a thing. -- Rick C. Petty ___ freebsd

Re: [PATCH] adding two new options to 'cp'

2006-08-01 Thread Rick C. Petty
big. Recursive copy-- whoa! Out of space? Darn. -- Rick C. Petty ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: [PATCH] adding two new options to 'cp'

2006-07-31 Thread Rick C. Petty
to add all 18 options to our cp, then -a shouldn't be added at all. It doesn't provide any useful functionality, and the argument to make it more compatible with Linux is silly unless you add the other 9 options. If you want the linux cp, use the linux cp. -- Rick C. Petty

Re: [PATCH] adding two new options to 'cp'

2006-07-31 Thread Rick C. Petty
On Mon, Jul 31, 2006 at 12:42:02PM -0500, Eric Anderson wrote: On 07/31/06 12:28, Rick C. Petty wrote: In both cases, why don't you just use: /usr/compat/linux/bin/cp Two reasons - it's not in the base system, so a port has to be installed - and linux_base is FC3 now, so if you want

Re: [PATCH] adding two new options to 'cp'

2006-07-31 Thread Rick C. Petty
On Mon, Jul 31, 2006 at 11:01:24PM +0200, Ivan Voras wrote: Rick C. Petty wrote: -l may be a useful option, but at what point is the line drawn between bloating our base cp and having a gcp port (or using linux_base)?? It's like saying if you need this option, go to Linux - it just seems

Re: fdescfs functional in 6.1?

2006-07-29 Thread Rick C. Petty
the old /dev/fd/1 /dev/fd/2 directories used to be under MAKEDEV... How is that the same? MAKEDEV was in the day before devfs, so the device entries needed to be created by the underlying filesystem. In devfs, things are only present if they represent an active device. -- Rick C. Petty

Re: disklabel differences FreeBSD, DragonFly

2006-07-28 Thread Rick C. Petty
on the spare parts pile and plugged them into a KVM. -- Rick C. Petty ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: disklabel differences FreeBSD, DragonFly

2006-07-27 Thread Rick C. Petty
mounted as a filesystem). I hope the GEOM people are working to improve this. -- Rick C. Petty ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: disklabel differences FreeBSD, DragonFly

2006-07-27 Thread Rick C. Petty
! -- Rick C. Petty ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: open (/dev/lpt0 ...) hangup solved

2006-07-22 Thread Rick C. Petty
is solved.) What's wrong with using: ifconfig_plip0=down ??? -- Rick C. Petty ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: kern/99979: Get Ready for Kernel Module in C++

2006-07-12 Thread Rick C. Petty
call it C) that isn't likely to evolve any further. Oh wait, we already did :-P -- Rick C. Petty ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: kern/99979: Get Ready for Kernel Module in C++

2006-07-11 Thread Rick C. Petty
tricky. -- Rick C. Petty ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: SATA300 Controllers

2006-07-06 Thread Rick C. Petty
only gripe is the channels are misnumbered: port #1 maps to channel 3 port #2 maps to channel 1 port #3 maps to channel 0 port #4 maps to channel 2 I had to use the serial numbers to make sure I was writing on the correct drives, so that was annoying. -- Rick C. Petty

Re: kldfind, updated for version 0.56

2006-05-24 Thread Rick C. Petty
usage (e.g. something like bsdlabel(1)): kldfind [-qv] -c category ... kldfind [-qv] -s string ... kldfind [-qv] -h Personally, I'd prefer clarity over brevity. Just my 3 cents, -- Rick C. Petty ___ freebsd-hackers@freebsd.org

Re: Exiting Xorg panics Core Duo laptop

2006-05-12 Thread Rick C. Petty
remember if I needed the frequencies-- I had some initial problems using the DVI input and nvidia not detecting things correctly, but then I added this to the Device section: Option ConnectedMonitor DPF-1 YMMV, -- Rick C. Petty ___ freebsd

Re: ordering of ports on Promise PDC40718 SATA300 controller

2006-05-09 Thread Rick C. Petty
On Tue, May 09, 2006 at 03:07:57PM +0200, Michal Mertl wrote: Rick C. Petty wrote: What determines the probing order of the ports/channels on the PDC40718 (Promise TX4 SATA300 controller)? The SATA ports are labeled Port 1 through Port 4. I have a total of four of these cards, and all

ordering of ports on Promise PDC40718 SATA300 controller

2006-05-08 Thread Rick C. Petty
-- --- Port 1 ATA channel 3 Port 2 ATA channel 1 Port 3 ATA channel 0 Port 4 ATA channel 2 Has anyone else noticed this with these cards? What can I do to fix it? I'm running both 6.0-RELEASE and RELENG_6_1 as of 2006-May-07. -- Rick C. Petty

gvinum start volume returns EBUSY

2006-05-01 Thread Rick C. Petty
, but gv_rebuild_plex is only called in the context of GV_PLEX_RAID5 on degraded plexes. Maybe I'm misunderstanding something. Feel free to enlighten me! :-) -- Rick C. Petty ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo

Re: Keyboard Boot Disable

2006-04-26 Thread Rick C. Petty
it guarantees power ground connection is established before the data pins. Many KVMs buffer the keyboard I/O so it can wait until power ground are established before trying to send/recv data. I've never blown out a PS/2 port or device, and I hot swap much more than I should... -- Rick C. Petty

Re: Re: RFC: Adding a ``user'' mount option

2006-04-05 Thread Rick C. Petty
for certain devices. This way, we use unix-isms such as: 1). can the user mount filesystems? (vfs.usermount) 2). does the user have permissions to the device? (e.g. group-read/write to said device) 3). does the user have permissions to the mountpoint? (e.g. user read/write/execute) -- Rick C

Re: Programs not accepting input?

2006-03-27 Thread Rick C. Petty
had the problem since I stopped using x11vnc. I only use the nVidia drivers and x.org. -- Rick C. Petty ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to [EMAIL

Re: Programs not accepting input?

2006-03-26 Thread Rick C. Petty
. Like I said, one rxvt would accept keyboard events and another rxvt right next to it wouldn't. It was an X.org server, I forget the version. I've not noticed the problem recently, but I could try to reproduce the problem if necessary. -- Rick C. Petty

Re: Programs not accepting input?

2006-03-25 Thread Rick C. Petty
knowing it wasn't just me... -- Rick C. Petty ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: 6.1-PRE boot locks up, using USB keyboard

2006-03-15 Thread Rick C. Petty
and ums through the boot loader and manually (I will try to reproduce these). Maybe the problem is in the USB layer?? FYI, I tried this on 6.1-BETA4, fresh from the ISOs. -- Rick C. Petty ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org

Re: 6.1-PRE boot locks up, using USB keyboard

2006-03-15 Thread Rick C. Petty
On Wed, Mar 15, 2006 at 12:27:08PM -0500, John Baldwin wrote: On Wednesday 15 March 2006 12:11, Rick C. Petty wrote: My BIOS (Asus A8N-E rev 1010) has no option for disabling USB keyboard support, but I can either disable the USB controller or disable the USB legacy support. I doubt

6.1-PRE boot locks up, using USB keyboard

2006-03-14 Thread Rick C. Petty
. The same hardware boots just fine with 6.0-RELEASE (although I need to choose the USB keyboard option if I plan on typing). Any suggestions? -- Rick C. Petty ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd

inode recovery and differences between UFS1/2 soft updates

2003-09-14 Thread Rick C. Petty
is vital and I need it quickly. Thanks in advance, -- Rick C. PettySenior Software Engineer, KIWI Computer --- [EMAIL PROTECTED]http://www.kiwi-computer.com/ ___ [EMAIL PROTECTED