FWD: Re: mounting a pen drive

2003-02-06 Thread Craig Sebenik
In a nutshell, I have a usb "pen drive" that I can't mount. 4.7 seems to recognize it just fine. So, it must be some silly little thing I need to do. Ideally, I would love to put a ufs filesystem on this thing as well. Any pointers would be greatly appreciated. TIA! Craig - Forwarded mess

Making pkg_XXX tools smarter about file types...

2003-02-06 Thread Tim Kientzle
The attached patch modifies the pkg_install tools to inspect the file contents--rather than the filename extension--to determine the compression method in use. It then feeds the data into the correct invocation of 'tar'. I've also modified exec.c/lib.h to factor out and expose some common code tha

¥Î¤ß¬Ý§¹³á!!!.....

2003-02-06 Thread slc12
Title: ¯¬±z¦Ï¦~ ¯¬±z¦Ï¦~     ¤@¦|­·¶¶¡B¤GÀsÄË­¸¡B¤T¦Ï¶}®õ¡B         ¥|©u¥­¦w¡B¤­ºÖÁ{ªù¡B¤»¤»¤j¶¶¡B         ¤C¬P°ª·Ó¡B¤K¤è¨Ó°]¡B¤E¤E¦P¤ß¡B         ¤Q¥þ¤Q¬ü¡A¬v¬v±o·N¹L¦n¦~       ³Ì¦³¬¡¤Oªº---¤pºµºµ

SiS pciconf's request ending :)

2003-02-06 Thread Soeren Schmidt
Thanks to all those that replied with pciconf output from various SiS chipsets (and thanks to those that sent from other systems as well :) ). I now have a significant amount of data to use for the SiS chipset support, and am working on it over the next days.. -Søren To Unsubscribe: send mail

Re: Help with understanding process state, context switching and

2003-02-06 Thread Julian Elischer
signals In-Reply-To: <[EMAIL PROTECTED]> Message-ID: <[EMAIL PROTECTED]> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII The only way it makes sense to talk about suspending a process in user space from the kernel, would be in a MP system. in a UP system, if you are in the kernel, th

Bus error - FD or msdos HD mount

2003-02-06 Thread guillaume
hello, since i get no answer in fr.comp.os.bsd, [EMAIL PROTECTED] , and [EMAIL PROTECTED] , i'm trying here now, hoping i'm not too off-charter. i can't mount my floppy disk and my Win98 hard disk. i tape: # mount -t msdos /dev/ad0s1 /hdibm or: # mount -t msdos /dev/fd0.1440 /floppy (or with ad0c

unsubscribe

2003-02-06 Thread Ruslan Babayev
To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

Re: Anyone where to get a signed SSL certificate cheap?

2003-02-06 Thread Philip Paeps
On 2003-02-05 18:17:24 (+), Josef Karthauser <[EMAIL PROTECTED]> wrote: > I need to obtain a certificate to use on my openssl/apache web server, but > looking at Verisign and Thawte it appears that they're charging a lot of > money ($450) per year for one! Does anyone know where I can get one

Re: Anyone where to get a signed SSL certificate cheap?

2003-02-06 Thread Anti
On Wed, 5 Feb 2003 18:17:24 + Josef Karthauser <[EMAIL PROTECTED]> wrote: > I know that this is slightly off topic, but maybe someone here could > advise me. > > I need to obtain a certificate to use on my openssl/apache web server, > but looking at Verisign and Thawte it appears that they're

Can someone apply the patches in misc/42422 and misc/42429?

2003-02-06 Thread GB Clark
Hello, I had submitted misc/42422 and misc/42429 over 5 months ago and am going to try one more time to get them applied. misc/42422 is a simple 4 line patch to lib/libc/db/ndbm.c and misc/42429 is a 3 line patch to src/lib/libc/db/hash.c. They both concern how the return values are in conflict

RE: ping: sendto: No buffer space available

2003-02-06 Thread Dirk-Willem van Gulik
On Thu, 6 Feb 2003 [EMAIL PROTECTED] wrote: > I looked at the code of if_ep.c and I see that the continue is indeed > not there. AFAIK it needs to be there; at least it solves the hangs I see here. Dw To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the bo

RE: ping: sendto: No buffer space available

2003-02-06 Thread k.j.koster
Dear All, > > : --- if_ep.c Fri Feb 1 19:51:43 2002 > : +++ if_ep.c.fix Sat Feb 9 12:49:31 2002 > : @@ -571,7 +571,6 @@ > : > : if (status & (S_RX_COMPLETE | S_RX_EARLY)) { > : epread(sc); > : - continue; > : } > : if (status & S_TX_AVAIL) { >

Re: 802.11g Wireless cardbus drivers

2003-02-06 Thread Eric Anderson
M. Warner Losh wrote: In message: <[EMAIL PROTECTED]> Eric Anderson <[EMAIL PROTECTED]> writes: : Is anyone working on drivers for this yet? I'd like to help (I'm not : much of a C coder though) - I've got cards, access points, etc. Nope. None is available at this point. There are

Re: New technologies in FreeBSD 5.x vs. 4.x

2003-02-06 Thread Brandon D. Valentine
[ Bcc'd to -current following initial crosspost. Followups to -hackers or directly to Mr. Penisoara. ] On Thu, Feb 06, 2003 at 03:17:15PM +0200, Adrian Penisoara wrote: > > Where can I find a (preferrably detailed) list of the new technologies > introduced with FreeBSD 5.x ? Greetings Adrian,

New technologies in FreeBSD 5.x vs. 4.x

2003-02-06 Thread Adrian Penisoara
Hi, I'm about to write an article on FreeBSD for PC Magazine Romania and I would like to concentrate on the new technologies introduced in FreeBSD 5.x. Where can I find a (preferrably detailed) list of the new technologies introduced with FreeBSD 5.x ? I would also like, if possible, to get i

Re: Help with understanding process state, context switching andsignals

2003-02-06 Thread Dag-Erling Smorgrav
Andrey Simonenko <[EMAIL PROTECTED]> writes: > In short: I need to stop (suspend) some process from the kernel, when > that process is in user mode and get information about its general-purpose > registers, its VM structures, etc. Have you looked at ptrace(2)? That's what gdb(1) uses. You can ge

Help with understanding process state, context switching and signals

2003-02-06 Thread Andrey Simonenko
Hello. After spending some time in reading different mailing lists archives, analyzing FreeBSD 4.x sys/kern and sys/i386 sources and reading 4.4BSD book I still can't find an answer, so, I ask my question here. In short: I need to stop (suspend) some process from the kernel, when that process is