Starting DHCPD

2003-01-24 Thread Danny Horne
Hi all, I'm making changes to my network which will require using my own DHCP server. It's all set up ready to go, but I can't find any way of getting it to start on boot up. There's nothing that I can find in /etc/defaults/rc.conf or /etc/rc.conf, no startup scripts in /usr/local/etc/rc.d

Re: glibc vs BSD libc

2003-01-24 Thread Pavel Cahyna
when making such assertions it helps to be actually correct. while it is true that *any* old binary may require COMPAT_XX options in the kernel, netbsd supports binaries back to 386bsd for i386, with shorter periods of backwards compat for the newer plaforms. i have personally run 386bsd

Re: How to cleanly remove bind before using bind9

2003-01-24 Thread stan
On Thu, Jan 23, 2003 at 08:50:08PM -0600, Stephen Hilton wrote: On Thu, 23 Jan 2003 18:29:22 -0500 stan [EMAIL PROTECTED] wrote: I want to use bind 9 from the ports tree. I see how to prevent the bundled bind from being built the next time I make world, and I see how to change the init

RE: Starting DHCPD

2003-01-24 Thread Barry Byrne
Danny: Create a script (/usr/local/etc/rc.d/dhcpd.sh something like this: --script starts below--- case $1 in start) echo Starting DHCP Server /usr/sbin/dhcpd ;; stop) echo Stopping DHCP Server killall dhcpd ;; *) echo Usage: $0 {start|stop} exit 1 esac exit 0

RE: Starting DHCPD

2003-01-24 Thread Danny Horne
Danny: Create a script (/usr/local/etc/rc.d/dhcpd.sh something like this: Thanks Barry, I wonder though, if this is the default way of starting it, where did my original script go 8-( To Unsubscribe: send mail to [EMAIL PROTECTED] with unsubscribe freebsd-questions in the body of the

Re: Starting DHCPD

2003-01-24 Thread Matthew Seaman
On Fri, Jan 24, 2003 at 10:42:26AM -, Danny Horne wrote: Danny: Create a script (/usr/local/etc/rc.d/dhcpd.sh something like this: Thanks Barry, I wonder though, if this is the default way of starting it, where did my original script go 8-( If you're using the net/isc-dhcp3 port,

Xircom under FreeBSD 5.0 RELEASE

2003-01-24 Thread Pomozov Denis
My Xircom RealPort CardBus Ethernet 10/100 + Modem 56 RBEM56G-100 (modem part) don't work under FreeBSD 5.0 RELEASE. What can I do?? To Unsubscribe: send mail to [EMAIL PROTECTED] with unsubscribe freebsd-questions in the body of the message

Re: Xircom under FreeBSD 5.0 RELEASE

2003-01-24 Thread Toni Schmidbauer
On Fri, Jan 24, 2003 at 02:52:20PM +0300, Pomozov Denis wrote: My Xircom RealPort CardBus Ethernet 10/100 + Modem 56 RBEM56G-100 (modem part) don't work under FreeBSD 5.0 RELEASE. What can I do?? write an exact failure description and post it to freebsd-mobile. (boot -v, pciconf -vl, ..)

tracparent proxy

2003-01-24 Thread Hilmi Hilmiev
Hi all, I want like to this situation, but I don't know that this is a possible: INTERNET | |__| transparent proxy port 80|---|web server port 8080| |

re: glibc vs BSD libc

2003-01-24 Thread matthew green
when making such assertions it helps to be actually correct. while it is true that *any* old binary may require COMPAT_XX options in the kernel, netbsd supports binaries back to 386bsd for i386, with shorter periods of backwards compat for the newer plaforms. i have personally

Re: How to cleanly remove bind before using bind9

2003-01-24 Thread Stephen Hilton
On Fri, 24 Jan 2003 05:26:44 -0500 stan [EMAIL PROTECTED] wrote: On Thu, Jan 23, 2003 at 08:50:08PM -0600, Stephen Hilton wrote: On Thu, 23 Jan 2003 18:29:22 -0500 stan [EMAIL PROTECTED] wrote: I want to use bind 9 from the ports tree. I see how to prevent the bundled bind from

differentiating apache children from parents ?

2003-01-24 Thread Josh Brooks
Hello, Is there any way to tell, simply from /proc info and/or ps output if a certain httpd PID is a child or the parent ? If yes, is this method applicable on any OS (linux) ? thanks. To Unsubscribe: send mail to [EMAIL PROTECTED] with unsubscribe freebsd-questions in the body of the

Re: Vim+Mutt+Backspace

2003-01-24 Thread Toni Schmidbauer
On Thu, Jan 23, 2003 at 11:48:07AM -0800, Michael Barrett wrote: That did it. Any idea why that would be needed for mutt but not for regular vi? not exactly. terminal handling is quite complicate. i found some hints in the vim-user-doc. it has something to do which ASCII code is generated when

Re: differentiating apache children from parents ?

2003-01-24 Thread Varshavchick Alexander
you can look at the parent pid of the process in question wether it is 1 or not: ps xa -oppid -p _PID_ But depending on what you're trying to do afterwards (for example kill the process if you determine by some external script that there are too many apaches running and you're not satisfied with

Re: differentiating apache children from parents ?

2003-01-24 Thread Josh Brooks
I want to kill apache children that exceed a certain memory size - but I want to make sure only to kill children. Is your method a workable way of doing that ? That is, I would test it and if it is +not+ 1 then I would be ok to kill it, since it is not the parent ? On Fri, 24 Jan 2003,

Re: differentiating apache children from parents ?

2003-01-24 Thread Varshavchick Alexander
Yes you can kill it if the pid is not 1, presuming you're not killing it during of a query processing. Alexander Varshavchick, Metrocom Joint Stock Company Phone: (812)118-3322, 118-3115(fax) On Fri, 24 Jan 2003, Josh Brooks wrote: Date: Fri, 24 Jan 2003 05:33:27 -0800 (PST) From: Josh

Re: How to cleanly remove bind before using bind9

2003-01-24 Thread Anand Buddhdev
On Thu, Jan 23, 2003 at 06:29:22PM -0500, stan wrote: I want to use bind 9 from the ports tree. I see how to prevent the bundled bind from being built the next time I make world, and I see how to change the init files et all to use the ports bind9. What I _don't_ see (and I'm certain it's

Re: How to cleanly remove bind before using bind9

2003-01-24 Thread Ruben de Groot
On Fri, Jan 24, 2003 at 02:39:51PM +0100, Anand Buddhdev typed: On Thu, Jan 23, 2003 at 06:29:22PM -0500, stan wrote: I want to use bind 9 from the ports tree. I see how to prevent the bundled bind from being built the next time I make world, and I see how to change the init files et all

Re: trasparent proxy

2003-01-24 Thread Bill Moran
Hilmi Hilmiev wrote: Hi all, I want like to this situation, but I don't know that this is a possible: INTERNET | |__| transparent proxy port 80|---|web server port 8080|

Re: How to cleanly remove bind before using bind9

2003-01-24 Thread Anand Buddhdev
On Fri, Jan 24, 2003 at 03:05:19PM +0100, Ruben de Groot wrote: I have always found this to be a problem with FreeBSD: why can't sendmail, bind and the other contributed software be made optional at install time, so that the base system is not cluttered with old software when we install

Re: How to cleanly remove bind before using bind9

2003-01-24 Thread Ruben de Groot
On Fri, Jan 24, 2003 at 03:38:02PM +0100, Anand Buddhdev typed: On Fri, Jan 24, 2003 at 03:05:19PM +0100, Ruben de Groot wrote: I have always found this to be a problem with FreeBSD: why can't sendmail, bind and the other contributed software be made optional at install time, so that

Re: Installing Stripped System

2003-01-24 Thread Paul Everlund
On Thu, 23 Jan 2003, Jens Haeusser wrote: On 1/23/03 2:30 AM, Paul Everlund [EMAIL PROTECTED] wrote: On Thu, 23 Jan 2003, Jens Haeusser wrote: I'd like to install a system lacking some of the binaries you can specify as make.conf knobs, such as NO_I4B= true NO_IPFILTER= true

Filesystem tuning for lots of small files (a Maildir)?

2003-01-24 Thread Darren Pilgrim
I'm currently facing a problem of having used Netscape (now Mozilla) for years in Windows and now trying to find something I can regularly use in FreeBSD without losing Mozilla in Windows. I've mostly settled on IMAP (courier) with procmail filters, but that raises the issue of filesystem

top - what does sbwait mean ?

2003-01-24 Thread Moti Levy
Hi to all , I've written a small perl script , when i run it it soemtimes shows in perl with sbwait state? where can i find out what sbwait ( or ither states for that matter ) mean ? --- PID USERNAME PRI NICE SIZERES STATE C TIME WCPUCPU COMMAND 9146 root 2 -20

RE: NMBCLUSTERS and Kernel config

2003-01-24 Thread Andrew Knapp
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of [EMAIL PROTECTED] Sent: Thursday, January 23, 2003 3:41 PM To: [EMAIL PROTECTED] Subject: NMBCLUSTERS and Kernel config All, Im getting ready to go with our FreeBSD production mail server and Ive been

Changes in /bin/sh between 4.6.2 and 4.7

2003-01-24 Thread Murat Bicer
Has something changed in sh between these versions: I get a weird error on some of my scripts #!/bin/sh case $1 in start) [ -x /usr/local/sbin/freevrrpd ] /usr/local/sbin/freevrrpd echo -n ' freevrrpd' ;; stop)

Re: Changes in /bin/sh between 4.6.2 and 4.7

2003-01-24 Thread Murat Bicer
Sorry about the question. It was in the release notes. sh(1) no longer accepts invalid constructs as command command, command, or || command. On Fri, 24 Jan 2003 10:43:22 -0500, Murat Bicer [EMAIL PROTECTED] said: Has something changed in sh between these versions: I get a weird error

Update and mailforward.

2003-01-24 Thread Gannater Jnos
I have freeBSD 4.7 running on my computer. Although I installed my system from the Mall CD's there have been a lot of updates relised by now. How can I update my program's on the computer and in the fututre the whole system? I have only a 90Mhz pentium processor. So downloading the source and

protecting cvs repository

2003-01-24 Thread Zhi Cheng Wang
Hi does cvsweb have the ability to ask for username and passwd if web users are trying to browse the repository? i have done this in an ugly way by creating a subdir and put the cvsweb.cgi under this subdir, then in httpd.conf to protect this subdir using http authentication. is there a better

Re: Printing.

2003-01-24 Thread Kirk Strauser
At 2003-01-24T15:14:44Z, Paul Halliday [EMAIL PROTECTED] writes: Now that the box is running free I had to play around with apsfilter to try and achieve the same performance. Have you tried CUPS yet? It's pretty easy to configure, and I use it as a server for FreeBSD, Linux, Mac OS X, and

Re: protecting cvs repository

2003-01-24 Thread Roman Neuhauser
# [EMAIL PROTECTED] / 2003-01-24 16:15:05 -: From: Zhi Cheng Wang [EMAIL PROTECTED] To: '[EMAIL PROTECTED]' [EMAIL PROTECTED] Subject: protecting cvs repository Date: Fri, 24 Jan 2003 16:15:05 - Hi does cvsweb have the ability to ask for username and passwd if web users are

Re: problem with sys/select.h and sys/types.h

2003-01-24 Thread Erik Trulsson
On Fri, Jan 24, 2003 at 06:24:36PM +0100, slavomir katuscak wrote: i found this problem (maybe bug) in freebsd 4.7 stable i have two programs uses sys/select.h and sys/types.h: example 1: #include sys/select.h #include sys/types.h int main(void) { } example 2: #include sys/types.h

Re: top - what does sbwait mean ?

2003-01-24 Thread Matthew Seaman
On Fri, Jan 24, 2003 at 10:16:53AM -0500, Moti Levy wrote: Hi to all , I've written a small perl script , when i run it it soemtimes shows in perl with sbwait state? where can i find out what sbwait ( or ither states for that matter ) mean ? --- PID USERNAME PRI NICE SIZE

Re: Changes in /bin/sh between 4.6.2 and 4.7

2003-01-24 Thread Tim Kientzle
Murat Bicer wrote: killall freevrrpd /dev/null 21 echo -n 'freevrrpd' The construction 'a b' has always been complete nonsense and the shell no longer accepts it. (The '' means check the output of the preceding command, which isn't possible with 'a ' being run in the background.) If

Re: Update and mailforward.

2003-01-24 Thread Tim Kientzle
Gannater Jnos wrote: How can I update my program's on the computer and in the fututre the whole system? I have only a 90Mhz pentium processor. So downloading the source and installing the program from it would be a very hard thing for me. Two choices: 1) Buy new CDs when they come out. 2)

Re: differentiating apache children from parents ?

2003-01-24 Thread Tim Kientzle
Josh Brooks wrote: I want to kill apache children that exceed a certain memory size - but I want to make sure only to kill children. If you're having memory problems with Apache, this is not the way to solve it. Rather, limit the number of children using 'MaxClients' or 'ServerLimit'. That

Off topic - How to find the owner of an unhosted domain

2003-01-24 Thread Lorin Lund
The domain my client wants is not available. But there is no contact information in the whois database. There is a date that it was registered. Any suggestions would be appreciated. Thank you, Lorin Lund (not currently subscribed) To Unsubscribe: send mail to [EMAIL PROTECTED] with

gcc32 on freebsd 4.7

2003-01-24 Thread Xeon
Hello I wondered if it's possible to compile freebsd 4.7 with gcc-3.2, as I read somewhere it generates better code than gcc 2.9.5 does. And if it's possible, would there be any drawbacks? and what could I gain by building my entire 4.7 with gcc32? Chris PS please include me in replies

Re: Off topic - How to find the owner of an unhosted domain

2003-01-24 Thread Adam Maas
That's not really possible. Check to see if it was registered by another Registrar, you may have to query the other registrar to get the correct info. Adam - Original Message - From: Lorin Lund [EMAIL PROTECTED] To: freebsd Questions [EMAIL PROTECTED] Sent: Saturday, January 25, 2003

Re: Unfortunate...

2003-01-24 Thread Doug Reynolds
On Wed, 22 Jan 2003 15:24:26 -0700, Bill Nolastname wrote: It is unfortunate that one of the developers with freebsd.org also supports companies that hijack web browsers. I had respect for freebsd before learning this, now, I do not. dude, i'm sure any operating system out you use supports web

Re: Starting DHCPD

2003-01-24 Thread Doug Reynolds
On Fri, 24 Jan 2003 10:10:41 - (GMT), Danny Horne wrote: Hi all, I'm making changes to my network which will require using my own DHCP server. It's all set up ready to go, but I can't find any way of getting it to start on boot up. There's nothing that I can find in /etc/defaults/rc.conf

Re: Update and mailforward.

2003-01-24 Thread Gannater Jnos
I use sendmail. How can I forward my messages? One option is to not forward your messages. Rather, install 'qpopper' or 'popper' from the ports and let your users access their mailbox using any POP3-capable email client (e.g., Outlook Express, Netscape Mail, Eudora, etc.) For

Re: Update and mailforward.

2003-01-24 Thread Tim Kientzle
Gannater Jnos wrote: I use sendmail. How can I forward my messages? One option is to not forward your messages. Rather, install 'qpopper' or 'popper' from the ports and let your users access their mailbox using any POP3-capable email client (e.g., Outlook Express, Netscape Mail, Eudora,

Web based e-mail.

2003-01-24 Thread Gannater Jnos
I want to have a web based e-mail service. So I don't have to ssh to my computer all the time just browse a web page. What I seen already is that IMP is a very good one. What do you think of it? What do you use? I have never used php and cgi things before, but these things need it. :(( I deleted

Re: Web based e-mail.

2003-01-24 Thread Ben Williams
Friday, January 24, 2003, 4:08:19 PM, you wrote: GJ I want to have a web based e-mail service. So I don't have GJ to ssh to my computer all the time just browse a web page. GJ What I seen already is that IMP is a very good one. What do GJ you think of it? What do you use? GJ I have never used php

Re: Web based e-mail.

2003-01-24 Thread Floyd White
For web based e-mail, I know of OpenWebMail (Perl), IMP (PHP) and SquirrelMail (PHP). All three are in /usr/ports/mail . Of the three, I find IMP hardest to install, and OpenWebMail easiest. Ports will check dependencies if you need mod_php etc. As for your Apache, if it is too clobbered up,

Re: Filesystem tuning for lots of small files (a Maildir)?

2003-01-24 Thread Craig Reyenga
- Original Message - From: Darren Pilgrim [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, January 24, 2003 07:13 Subject: Filesystem tuning for lots of small files (a Maildir)? I'm currently facing a problem of having used Netscape (now Mozilla) for years in Windows and now trying

installworld to DESTDIR fails

2003-01-24 Thread Alexey Koptsevich
Hello, I have problems with installation of 5.0 from sources. I give a command make installworld DESTDIR=/nroot/ on the running system. The process fills up 250 Mb on /nroot, 8.7 Gb on /nroot/usr and 633 Mb on /nroot/var, and stops by the following reason: === sbin/restore install -s -o root -g

Re: Printing.

2003-01-24 Thread Gerard Samuel
Try CUPS. I have an article at the FreeBSDDiary (http://www.freebsddiary.org/cups.php) on the steps I took to set it up. Now I have Windows and FreeBSD sending print jobs to a Samba box, and it works great... Paul Halliday wrote: Hi. After finally converting my wife from the dark side and

4.7R - Kernel Compile (old way) Error code 1

2003-01-24 Thread Danny
Greetings, I am trying to build a custom kernel, but I recieved a stop error after (90% sure it was) executing make - based on the old way instructions in the handbook (printed out, but it maybe a release or two old). Please let me know if any further information is required. Thank you for

Re: 4.7R - Kernel Compile (old way) Error code 1

2003-01-24 Thread Michael K. Smith
Hello Danny: On Fri, 24 Jan 2003, Danny wrote: Greetings, I am trying to build a custom kernel, but I recieved a stop error after (90% sure it was) executing make - based on the old way instructions in the handbook (printed out, but it maybe a release or two old). Please let me know if

Re: 4.7R - Kernel Compile (old way) Error code 1

2003-01-24 Thread Giorgos Keramidas
On 2003-01-24 17:32, Danny [EMAIL PROTECTED] wrote: Greetings, I am trying to build a custom kernel, but I recieved a stop error after (90% sure it was) executing make - based on the old way instructions in the handbook (printed out, but it maybe a release or two old). Please let me know if

http://www.interhoney.com

2003-01-24 Thread Richard Halsall
Dear Sirs/Madam Re  http://www.interhoney.com The above named site goes live on 1st February 2003, we are looking for web sites to help us promote ours. We believe after reviewing your site www.freebsd.org/news/press.html you may benefit from this request If you put our logo in a

Re: NMBCLUSTERS and Kernel config

2003-01-24 Thread Mike Meyer
In [EMAIL PROTECTED], [EMAIL PROTECTED] typed: Im getting ready to go with our FreeBSD production mail server and Ive been reading that to optimize network mbufs, specify the NMBCLUSTERS options in the kernel. Ive read that setting this to a quarter of your physical RAM on this is the way to

Re: gcc32 on freebsd 4.7

2003-01-24 Thread Kris Kennaway
On Fri, Jan 24, 2003 at 08:03:48PM +0100, Xeon wrote: Hello I wondered if it's possible to compile freebsd 4.7 with gcc-3.2, as I read somewhere it generates better code than gcc 2.9.5 does. And if it's possible, would there be any drawbacks? and what could I gain by building my entire 4.7

RE: Subnetting or Bridging to secure different dapartments on our School LAN?

2003-01-24 Thread Michael Ritchie
Martyn Hill wrote: Windows XP clients, which seem intent on discovering everything on the network and adding it to their own browse lists...) FYI: you can turn this 'feature' off -- it's designed for people setting up networks with just a couple of PCs in a small office. Start up Explorer,

Re: Problems building cyrus-sasl2 on FREEBSD-4.7-RELEASE

2003-01-24 Thread Jim Trigg
On Sat, Jan 11, 2003 at 12:06:11AM -0500, Jim Trigg wrote: (Note: the first two tries at sending this apparently got eaten by the ether... in case they show up, please know that I am now subscribed to the list.) I am having problems building the cyrus-sasl2 port on 4.7-RELEASE; no matter

I NEED HELP.

2003-01-24 Thread Whitewoolf
Hi, I need your help. I am student-programmer from Ukraine. In Internet I read, that it is possible to download FreeBSD 5.0 How can I do it?? In FTP needs login and pasword, (anonymous don`t work). Thanks. To Unsubscribe: send mail to [EMAIL PROTECTED] with unsubscribe freebsd-questions in

Re: I NEED HELP.

2003-01-24 Thread Bill Moran
Whitewoolf wrote: Hi, I need your help. I am student-programmer from Ukraine. In Internet I read, that it is possible to download FreeBSD 5.0 How can I do it?? In FTP needs login and pasword, (anonymous don`t work). That is the correct method. If anonymous didn't work, then you either are

Filesystem tuning parameters

2003-01-24 Thread Kevin Stevens
I have a confusion about apparent conflicts between the minfree setting and time/space optimization. Per the manpage: minfree - Specify the percentage of space held back from normal users; the minimum free space threshold. The default value used is 8%. This value can be set to zero, however up

questions about space and RAID

2003-01-24 Thread Doug Reynolds
Couple quick questions: At work, I just bought a new P4 Dell Server with an 80G mirrored IDE RAID. I went with IDE since it doesn't have to be a totally failsafe system (not handling a 100,000+ hit website, just interoffice file sharing etc). Supposed, it is configured (I haven't had a chance

Re: Filesystem tuning parameters

2003-01-24 Thread Bill Moran
Kevin Stevens wrote: Also, why is up to a factor of three in throughput lost over the 10% setting? Is that another allusion to space optimization going into effect, or is there something else happening? I guess I don't understand the ramifications of the minfree setting. Any suggestions or

How to get best results from FreeBSD-questions

2003-01-24 Thread Greg Lehey
How to get the best results from FreeBSD questions. === Last update 3 September 1999 This is a regular posting to the FreeBSD questions mailing list. If you got it in answer to a message you sent, it means that the sender thinks that at least one

The Complete FreeBSD, second edition: errata and addenda

2003-01-24 Thread Greg Lehey
Errata and addenda for the Complete FreeBSD, second edition Last revision: 21 June 1999 The trouble with books is that you can't update them the way you can a web page or any other online documentation. The result is that most leading edge

The Complete FreeBSD, third edition: errata and addenda

2003-01-24 Thread Greg Lehey
Errata and addenda for the Complete FreeBSD, third edition Last revision: 2 August 1999 The trouble with books is that you can't update them the way you can a web page or any other online documentation. The result is that most leading edge

USB Storage Adapter

2003-01-24 Thread Antoine Jacoutot
Hi ! I was wondering if: ugen0: In-System Design USB Storage Adapter, rev 1.10/1.10, addr 2 which is an external USB hard drive (from Mem-Up) was supported under FreeBSD and if it was mountable as ext2fs. So far, I cannot get it to mount. Thanks in advance. Antoine To Unsubscribe: send

Re: Is the Kernel device config visual interface still necessary

2003-01-24 Thread Mike Meyer
In [EMAIL PROTECTED], JoeB [EMAIL PROTECTED] typed: My question, what purpose does the 'Kernel Device Configuration Visual Interface' screen serve and can people safely use the 'Skip kernel configuration and continue with installation' from the 'Kernel configuration menu'? Most people can

Re: 4.7R - Kernel Compile (old way) Error code 1

2003-01-24 Thread Danny
From: Giorgos Keramidas [EMAIL PROTECTED] There is nothing wrong with the old way if you haven't touched the sources since your last buildworld. I think you read that wrong. I was not implying that the old way was bad in anyway, I was just qouting the handbook reference to being the old way.

Re: Filesystem tuning for lots of small files (a Maildir)?

2003-01-24 Thread Darren Pilgrim
Craig Reyenga wrote: - Original Message - From: Darren Pilgrim To: Sent: Friday, January 24, 2003 07:13 Subject: Filesystem tuning for lots of small files (a Maildir)? I'm currently facing a problem of having used Netscape (now Mozilla) for years in Windows and now trying to find

Re: 4.7R - Kernel Compile (old way) Error code 1

2003-01-24 Thread Giorgos Keramidas
On 2003-01-24 18:28, Danny [EMAIL PROTECTED] wrote: From: Giorgos Keramidas [EMAIL PROTECTED] There is nothing wrong with the old way if you haven't touched the sources since your last buildworld. I think you read that wrong. I was not implying that the old way was bad in anyway, I was

Ïðåäëîæåíèå.

2003-01-24 Thread Èãîðü
Çäðàâñòâóéòå ãîñïîäà, íó åñëè åùå íå ãîñïîäà, òî î÷åíü ñêîðî èìè ñòàíåòå! :-) ß â òàêóþ èãðó êîãäà-òî â ñîâåòñêîå âðåìÿ øêîëüíèêîì èãðàë ñ îòêðûòêàìè. Ïîñûëàåøü äåñÿòü, ïîëó÷àåøü íåñêîëüêî ñîòåí. Ïîëó÷àëîñü. Ïîçæå èãðàë ñ ÷åðâîíöåì. Òîæå âûèãðàë íà öâåòíîé òåëåâèçîð, òåïåðü æå, êîãäà

A WinXP patch

2003-01-24 Thread MSN Hotmail
This is an auto-generated response to let you know our system received your support inquiry. If your question concerns MSN Hotmail privacy issues or TRUSTe as outlined in the MSN Hotmail Privacy Statement, a Hotmail Support Representative will address your specific issues as promptly as

Re: newbie mail help

2003-01-24 Thread Gary Schenk
- Original Message - From: John Bleichert [EMAIL PROTECTED] To: Gary Schenk [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Wednesday, January 22, 2003 9:41 PM Subject: Re: newbie mail help On Wed, 22 Jan 2003, Gary Schenk wrote: major snippage I've used lots of email

Hospedagem profissional de domínios e sites

2003-01-24 Thread Virtualserv
HOSPEDAGEM PROFISSIONAL DE DOMÍNIOS E SITES A VirtualServ oferece o mais completo plano de hospedagem profissional do mercado. Todas as possibilidades disponíveis hoje na WEB num só plano. O melhor servidor, a melhor conexão, o melhor suporte e recursos ilimitados. Nosso serviço é top de linha

FreeBSD 5.0 Release requirements

2003-01-24 Thread Mantas Kriauciunas
Hey! Well I have some problems with ram, I have only 92 mb of it, and it is just simple RAM. What are the requirements for the ram? Like what would be the best? I know 1gb should be enough :) but I am always left with 2mb left... and that is just bad. One more quick question, does internet

Re: FreeBSD 5.0 Release requirements

2003-01-24 Thread Giorgos Keramidas
On 2003-01-24 21:47, Mantas Kriauciunas [EMAIL PROTECTED] wrote: Well I have some problems with ram, I have only 92 mb of it, and it is just simple RAM. What are the requirements for the ram? 92 should be ok. Like what would be the best? I know 1gb should be enough :) but I am always left

Re: FreeBSD 5.0 Release requirements

2003-01-24 Thread Dan Nelson
In the last episode (Jan 24), Mantas Kriauciunas said: Well I have some problems with ram, I have only 92 mb of it, and it is just simple RAM. What are the requirements for the ram? Like what would be the best? I know 1gb should be enough :) but I am always left with 2mb left... and that is

Re: Filesystem tuning parameters

2003-01-24 Thread Kevin Stevens
On Friday, Jan 24, 2003, at 16:40 US/Pacific, Bill Moran wrote: See /usr/share/doc/papers/diskperf.ascii.gz on your system. This is the authoritative resource as to why those settings are they way they are. ?? Sure that's the correct doc? It involves throughput tests of different disk

phoenix

2003-01-24 Thread Asenchi
Ok, I am not sure why, but I can not get phoenix to work. I have untar'd it and try: [asenchi@temple:~/phoenix] $ ./phoenix ./phoenix-bin: error while loading shared libraries: libgtk-1.2.so.0: cannot open shared object file: No such file or directory FreeBSD temple.attbi.com 4.7-RELEASE

IP Changed == Problem

2003-01-24 Thread Joseph Maxwell
Hello, I recently changed my ISP - DSL provider, a new static IP, and now having problems ssh'ing in, none before. My config == ISP[DSL] ==Modem==Router/Gateway == HubLAN machine(1) |LAN machine(2)

Re: IP Changed == Problem

2003-01-24 Thread Adam Maas
If you are using static mappings, check to see if they are IP they are mapping from was updated (External IP) Adam - Original Message - From: Joseph Maxwell [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, January 25, 2003 12:02 AM Subject: IP Changed == Problem Hello, I

Re: Filesystem tuning parameters

2003-01-24 Thread Bill Moran
Kevin Stevens wrote: On Friday, Jan 24, 2003, at 16:40 US/Pacific, Bill Moran wrote: See /usr/share/doc/papers/diskperf.ascii.gz on your system. This is the authoritative resource as to why those settings are they way they are. ?? Sure that's the correct doc? It involves throughput tests

What Now?

2003-01-24 Thread Mykroft Holmes IV
did a kg_add -r gnome2 did a pkg_add -r gnome2-fifth-toe All successfull. No gnome-session found How the heck do I start Gnome? Note, I'm exporting the display to another box (full screen), so I just want the command, or a script, as startx only starts X locally. My $DISPLAY is set correctly,