How to do ping really quiet?

2009-01-05 Thread KES
Hello, Questions. When I use ping -q ya.ru I get ping: sendto: No route to host How to make ping really quiet? KES mailto:kes-...@yandex.ru ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/list

Re: Problem with linking kernel

2009-01-05 Thread Yuri Pankov
On Mon, Jan 05, 2009 at 06:38:19PM +0200, Igor wrote: > #options INET6 # IPv6 communications protocols > options SCTP# Stream Control Transmission Protocol excerpt from /sys/conf/NOTES: # Note YOU MUST have both INET and INET6 defined. # you do

Re: How to do ping really quiet?

2009-01-05 Thread andrew clarke
On Mon 2009-01-05 18:22:34 UTC+0200, KES (kes-...@yandex.ru) wrote: > When I use > ping -q ya.ru > I get > ping: sendto: No route to host > > How to make ping really quiet? You can redirect all output to /dev/null: For /bin/sh: ping -c 1 host > /dev/null 2>&1 For /bin/csh: ping -c 1 host >&

Re: Portsnap "Not Found" Issues

2009-01-05 Thread Andreas Rudisch
On Mon, 5 Jan 2009 12:02:40 -0500 APseudoUtopia wrote: > Running FreeBSD 7.0-RELEASE-p5. > > > [r...@host][/tmp] # portsnap fetch update > Looking up portsnap.FreeBSD.org mirrors... 3 mirrors found. > Fetching snapshot tag from por

Re: why printf() don't work?

2009-01-05 Thread Tom Marchand
trying putting newlines in the strings like this:    "receive overflow\n" - Original Message - From: "Edward King" To: freebsd-questions@freebsd.org Sent: Monday, January 5, 2009 2:29:23 AM GMT -05:00 US/Canada Eastern Subject: why printf() don't work? I use FreeBSD7.0,a

Problem with linking kernel

2009-01-05 Thread Igor
Sorry for my English...))) FreeBSD 7.0 data from Terminal(after using make buildkernel KERNCONF=MYKERNEL) part with errors: * linking kernel uipc_syscalls.o(.text+0x39f): In function `sctp_generic_recvmsg': : undefined reference to `sctp_sorecvmsg' uipc_syscalls.o(.text+0x21c6): In

Re: wireless on a hp pavillion dv5000

2009-01-05 Thread Glen Barber
Aryeh M. Friedman wrote: I have installed the ndis stuff and it sees the mac address but when i push the "power" button on the wireless (build into the laptop) it does not power on the wireless card any ideas? Do you have 'ifconfig_ndis="your settings here"' in rc.conf? Are you sure by pressi

Portsnap "Not Found" Issues

2009-01-05 Thread APseudoUtopia
Running FreeBSD 7.0-RELEASE-p5. [r...@host][/tmp] # portsnap fetch update Looking up portsnap.FreeBSD.org mirrors... 3 mirrors found. Fetching snapshot tag from portsnap2.FreeBSD.org... done. Fetching snapshot metadata... fetch: http

Processes Piling up with the lockf state

2009-01-05 Thread Sydney Longfellow
Hi! I asked this a couple days ago but I forgot to put a subject line in. I'm getting problems with my server locking up after accumulating far too many processes until I have to reboot. The states of the processes are reading either sbwait or lockf when this spiral out of control starts to ha

Re: wireless on a hp pavillion dv5000

2009-01-05 Thread michael
Glen Barber wrote: Aryeh M. Friedman wrote: I have installed the ndis stuff and it sees the mac address but when i push the "power" button on the wireless (build into the laptop) it does not power on the wireless card any ideas? Do you have 'ifconfig_ndis="your settings here"' in rc.conf? A

Re: How to do ping really quiet?

2009-01-05 Thread Polytropon
On Mon, 5 Jan 2009 18:22:34 +0200, KES wrote: > Hello, Questions. > > When I use > ping -q ya.ru > I get > ping: sendto: No route to host > > How to make ping really quiet? It depends on your shell. For default scripting shell (Bourne Shell) you can ping -q ya.ru > /dev/null 2>&1 whic

Re: why printf() don't work?

2009-01-05 Thread Polytropon
On Mon, 5 Jan 2009 15:12:12 + (UTC), Tom Marchand wrote: > trying putting newlines in the strings like this: > >    "receive overflow\n" You can add fflush(stdout); to force the output, even if no \n is appended. But as it has been mentioned before, don't forget to #inc

Re: why printf() don't work?

2009-01-05 Thread Mike Jeays
On January 5, 2009 02:29:23 am Edward King wrote: > I use FreeBSD7.0,and use signal,like follows: > signal(SIGHUP,sig_hup); > signal(SIGIO,sig_io); > > when I run call following code,it can run,but I find a puzzled question,it > should print some information,such as printf("execute main()") will pr

wireless on a hp pavillion dv5000

2009-01-05 Thread Aryeh M. Friedman
I have installed the ndis stuff and it sees the mac address but when i push the "power" button on the wireless (build into the laptop) it does not power on the wireless card any ideas? ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.or

Re: How to do ping really quiet?

2009-01-05 Thread Frederique Rijsdijk
KES wrote: > Hello, Questions. > > When I use > ping -q ya.ru > I get > ping: sendto: No route to host > > How to make ping really quiet? > Try: sh -c 'ping -q ya.ru > /dev/null 2>&1' -- FR ___ freebsd-questions@freebsd.org mailing list http://li

pathsetting for OpenSSL-0.9.8i

2009-01-05 Thread marinus
Hello all, I'm new in FreeBSD. I just installed FreeBSD 7.0 RELEASE and installed also Apache22, PHP5, MySQLserver and OpenSSL-0.9.8i, the latest version of Openssl. I know that the base opensslversion is 0.9.8e during the install of a freshinstall of FreeBSD. For so far everything went fine duri

Re: FreeBSD kernel Debugging tools for Virtual Memory Module

2009-01-05 Thread Dag-Erling Smørgrav
Eugene Grosbein writes: > First, you need to recompile source you change for sure :-) > But you have not rebuild all other files all the time. > You need to add to your /etc/src.conf (or /etc/make.conf for 6.x and earlier): > > MODULES_WITH_WORLD=yes > > This will skip rebuilding of all modules du

Re[2]: How to do ping really quiet?

2009-01-05 Thread KES
Hello, Frederique. FR> KES wrote: >> Hello, Questions. >> >> When I use >> ping -q ya.ru >> I get >> ping: sendto: No route to host >> >> How to make ping really quiet? >> FR> Try: FR> sh -c 'ping -q ya.ru > /dev/null 2>&1' man ping -q Quiet output. Nothing is displayed except th

Re: zip files...

2009-01-05 Thread Michel Talon
Gary Kline wrote: > guys, i have three huge zip files, .zip, and z02, z01. > how do i unzip these into the original? Note that FreeBSD tar now extracts zips (tarr xvfz ) -- Michel TALON ___ freebsd-questions@freebsd.org mailing list http://lists.

Re: wireless on a hp pavillion dv5000

2009-01-05 Thread Aryeh Friedman
Same card but no carrier... what did you do to see the carrier? On 1/5/09, michael wrote: > > > Glen Barber wrote: >> Aryeh M. Friedman wrote: >>> I have installed the ndis stuff and it sees the mac address but when i >>> push the "power" button on the wireless (build into the laptop) it does >>>

Re: why printf() don't work?

2009-01-05 Thread Patrick Lamaizière
Le Mon, 05 Jan 2009 15:29:23 +0800, Edward King a écrit : > I use FreeBSD7.0,and use signal,like follows: > signal(SIGHUP,sig_hup); > signal(SIGIO,sig_io); > > when I run call following code,it can run,but I find a puzzled > question,it should print some information,such as printf("execute > mai

Xlib: Invalid MIT-MAGIC-COOKIE-1 key

2009-01-05 Thread Anton Shterenlikht
I've two boxes on which I run X servers, one box is 7.1-prelelease, the other is 8.0-current, both i386. Both boxes run xorg-server-1.4.2,1. Both boxes have identical $HOME/.Xauthority. However, when I connect to another computer with ssh -X and try to run a client, say xclock, one xserver display

Re: Portsnap "Not Found" Issues

2009-01-05 Thread Matthew Pounsett
On 05-Jan-2009, at 12:10 , Andreas Rudisch wrote: On Mon, 5 Jan 2009 12:02:40 -0500 APseudoUtopia wrote: Running FreeBSD 7.0-RELEASE-p5. [r...@host][/tmp] # portsnap fetch update Looking up portsnap.FreeBSD.org mirrors... 3 mi

Re: No disks found on ASUS P5N-D, nForce 750i.

2009-01-05 Thread Michael Craft
Does anyone have any ideas? On Fri, Jan 2, 2009 at 2:48 PM, Michael Craft wrote: > I have an ASUS P5N-D motherboard with an Nvidia nForce 750i chipset, > and a Seagate 500GB SATA 3.0Gb/s hard drive. When I try to install > FreeBSD 7.0 i386 from the bootonly CD, I get a "No disks found!" error > w

Re: kernel panic

2009-01-05 Thread Mark Busby
Update of kernel panic. Rebuilt kernel without 80211node, seems to have cured the panics. Removed all wireless support for now. Thanks to Toni Schmidbauer --- On Thu, 1/1/09, Mark Busby wrote: > From: Mark Busby > Subject: kernel panic > To: "help help" > Date: Thursday, January 1, 2009, 2:

Re: 7.0-RELEASE and megaraid (mpt0)

2009-01-05 Thread Colin
*Tim Kellers wrote:* Colin wrote: / Hi folks, />/> I'm running a new server with FreeBSD 7.0-RELEASE and am seeing />>/ timeouts and other messages with mpt0 />> //>>/ These include: />>/ mpt_cam_event: 0x16, 0x12 & 0x60 />>/ />/> More importantly these: />/> Dec 28 16:33:30 ted kernel: mpt0:

Re: Portsnap "Not Found" Issues

2009-01-05 Thread Jeffrey Goldberg
On Jan 5, 2009, at 2:40 PM, Matthew Pounsett wrote: I'm seeing a similar error on a different metadata file from portsnap1. portsnap3 seems to be working for me at the moment. I'm having problems on 2 and 3 (haven't tried 1). But I did get much further when portsnap3. $ sudo portsnap -s

Re: PHP setup question

2009-01-05 Thread stan
On Sun, Jan 04, 2009 at 04:45:41PM -0600, Kelly D. Grills wrote: > On Sun, Jan 04, 2009 at 03:33:19PM -0500, stan wrote: > > > > OK, I did make some progress here. I figured out that I needed to change > > the grant to: > > > > GRANT ALL ON ampache to 'ampache_user'@'localhost' IDENTIFIED BY 'xx

Re: Suggestion

2009-01-05 Thread Ross Cameron
Why not just install GRUB and use any boot splash you see fit? Hell you could even spin you're own fBSD release with this as a default if u wanted. On Sun, Jan 4, 2009 at 8:26 AM, Ryan da Silva wrote: > Hello, > > > > If someone could pass this suggestion on i'd appreciate it. It's going > to so

Re: wireless on a hp pavillion dv5000

2009-01-05 Thread michael
Aryeh Friedman wrote: Same card but no carrier... what did you do to see the carrier? On 1/5/09, michael wrote: normally i issued all the config options with ifconfig at one time, ie the ssid so on. ifconfig ndis0 up ssid "ssid". something like that. i put the card back in and do it agai

FYI, portsnap problems

2009-01-05 Thread Colin Percival
Hi all, For the benefit of those of you who are noticing problems with portsnap right now: The release of FreeBSD 7.1 has resulted in a very large amount of traffic to update1.freebsd.org, which is hosted by the same box as portsnap-master... so the portsnap mirrors are having some trouble syncin

7.1 release / apache22 / php5

2009-01-05 Thread Jim Pazarena
for some odd reason, with this latest install (7.1), apache22 complains that it cannot find libphp5.so I usually compile php5 from ports and apache22 from ports after I think about it, I have never actually placed libphp5.so anywhere. I am not even sure who/what causes php5 module to be added to

Re: 7.1 release / apache22 / php5

2009-01-05 Thread Josh Carroll
On Mon, Jan 5, 2009 at 7:52 PM, Jim Pazarena wrote: > for some odd reason, with this latest install (7.1), apache22 complains that > it cannot find libphp5.so > I usually compile php5 from ports > and apache22 from ports > after I think about it, I have never actually placed libphp5.so anywhere. I

Re: 7.1 release / apache22 / php5

2009-01-05 Thread Jim Pazarena
Josh Carroll wrote: On Mon, Jan 5, 2009 at 7:52 PM, Jim Pazarena wrote: for some odd reason, with this latest install (7.1), apache22 complains that it cannot find libphp5.so I usually compile php5 from ports and apache22 from ports after I think about it, I have never actually placed libphp5.s

Re: 7.1 release / apache22 / php5

2009-01-05 Thread Glen Barber
On Mon, Jan 5, 2009 at 7:52 PM, Jim Pazarena wrote: > for some odd reason, with this latest install (7.1), apache22 complains that > it cannot find libphp5.so > I usually compile php5 from ports > and apache22 from ports > after I think about it, I have never actually placed libphp5.so anywhere. I

Re: 7.1 release / apache22 / php5

2009-01-05 Thread Josh Carroll
> the httpd config file isn't the issue. it hasn't changed in a few years. > yes, > I do have the correct entries. > > what I do NOT have is the actual libphp5.so library file! it doesn't exist > on my system, > so apache complains that it can't open it. Did you build the lang/php5 port with the "

Re: 7.1 release / apache22 / php5

2009-01-05 Thread stan
On Mon, Jan 05, 2009 at 04:52:10PM -0800, Jim Pazarena wrote: > for some odd reason, with this latest install (7.1), apache22 complains > that it cannot find libphp5.so > I usually compile php5 from ports > and apache22 from ports > after I think about it, I have never actually placed libphp5.so a

Re: 7.1 release / apache22 / php5

2009-01-05 Thread Glen Barber
stan wrote: On Mon, Jan 05, 2009 at 04:52:10PM -0800, Jim Pazarena wrote: for some odd reason, with this latest install (7.1), apache22 complains that it cannot find libphp5.so I usually compile php5 from ports and apache22 from ports after I think about it, I have never actually placed libp

Re: PHP setup question

2009-01-05 Thread Glen Barber
stan wrote: I am trying to get the ampcache port working on a 7.1 machine. I have installed the port, which puts it's files in /usr/local/www/a,pcache. I Considering seeing a few of your questions on this list, and the excessive typos in this post alone, I'd double check your configs for t

PHP Apache module no longer loads /usr/local/etc/php.ini

2009-01-05 Thread Morgan Wesström
Hi. I have two almost identical FreeBSD servers with FreeBSD 7.0, Apache 2.2.11 and PHP 5.2.8. After a restart of Apache four days ago, the PHP module on one of those servers no longer loads /usr/local/etc/php.ini and I can't for my world figure out what's preventing it. My workaround right now is

Re: Portuguese accents

2009-01-05 Thread Chad Perrin
On Sat, Jan 03, 2009 at 09:47:08PM +, Daniel Leal wrote: > > In most X apps these accents work well, but for example, in a xterm, > with the "ee" editor, I can write the accented letter correctly. But > when I use "more" to read the file I just created with "ee" I cant see > these accented

Re: pathsetting for OpenSSL-0.9.8i

2009-01-05 Thread Mel
On Monday 05 January 2009 02:00:57 mari...@northbridgepc.nl wrote: > Hello all, > > I'm new in FreeBSD. I just installed FreeBSD 7.0 RELEASE and installed > also Apache22, PHP5, MySQLserver and OpenSSL-0.9.8i, the latest version of > Openssl. I know that the base opensslversion is 0.9.8e during the

Re: Processes Piling up with the lockf state

2009-01-05 Thread Mel
On Monday 05 January 2009 06:29:33 Sydney Longfellow wrote: > I'm getting problems with my server locking up after accumulating far > too many processes until I have to reboot. > > The states of the processes are reading either sbwait or lockf when this > spiral out of control starts to happen. >

Re: Foiling MITM attacks on source and ports trees

2009-01-05 Thread Mel
On Saturday 03 January 2009 03:45:11 Matthew Seaman wrote: > [*] Buying a high security cert from the likes of Verisign or OpenSRS would > set you back about £800 p.a. and it would probably be necessary to use > someone like the FreeBSD Foundation as an appropriate body to own the cert. I would