Re: Errors building vortex port

2013-05-21 Thread Anton Yuzhaninov
On Thu, 16 May 2013 18:30:05, C. L. Martinez wrote: CLM> ===> Building for vortex-2.9.0.59 CLM> cd /wrkdirs/usr/ports/net/vortex/work/vortex-2.9.0 && cc -c vortex.c CLM> -I/usr/local/include CLM> cd /wrkdirs/usr/ports/net/vortex/work/vortex-2.9.0 && cc -o vortex CLM> vortex.o -L/usr/local/lib /usr

Re: IPMI SOL setup on FreeBSD 9.1 amd64 supermicro X9SCM-F/X9CL-F

2013-01-23 Thread Anton Yuzhaninov
rt.1.flags="0x10" boot_serial="YES" boot_multicons="YES" comconsole_speed="115200" console="comconsole vidconsole" -- Anton Yuzhaninov ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"

Re: high performance open source DHCP solution?

2011-07-20 Thread Anton Yuzhaninov
d scale much better? 1. May be it is possible to decrease load of DHCP server by increasing lease time. If address pool is the limit, adaptive-lease-time-threshold option in ISC dhcpd may be useful. 2. Which dhcpd version is used? According to changelog 4.2 has some performance improvements.

Re: how to enable NCQ on Intel ESB2 AHCI SATA?controller/ST31000340NS

2011-03-24 Thread Anton Yuzhaninov
: AHCI v1.10 with 6 3Gbps ports, Port Multiplier supported ahci0: Caps: 64bit ALP AL 3Gbps PM SSC PSC 32cmd 6ports ahci0: Caps2: -- WBR, Anton Yuzhaninov ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-quest

how to enable NCQ on Intel ESB2 AHCI SATA controller/ST31000340NS

2011-03-22 Thread Anton Yuzhaninov
yes yes overlapno Tagged Command Queuing (TCQ) no no Native Command Queuing (NCQ) yes 32 tags # uname -srp FreeBSD 8.2-STABLE-20110315 amd64 -- WBR, Anton Yuzhaninov ___ freebsd-ques

Re: PHP Command Line

2010-11-30 Thread Anton Yuzhaninov
u need prompt, try to install realine extension from /usr/ports/lang/php52-extensions (if php52 is used). -- WBR, Anton Yuzhaninov ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsub

Re: what does kernel option UWX_TRACE_ENABLE do?

2010-05-06 Thread Anton Yuzhaninov
self and the glue around it. -- WBR, Anton Yuzhaninov ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"

Re: Strange diskspace loss

2010-05-04 Thread Anton Yuzhaninov
On Tue, 4 May 2010 10:04:30 +0400, áÎÔÏÎ ëÌÅÓÓ wrote: áë> And the fsck: áë> áë> # fsck áë> ** /dev/aacdu0s1a (NO áë> WRITE) Don't run fsck on mounted and used fs It will show wrong info. If you want to force fsck run reboot in single mode, and then run fsck. -- WB

Re: Strange diskspace loss

2010-05-03 Thread Anton Yuzhaninov
-25M 100%/var áë> /dev/aacdu1s1d450G3.0G411G 1%/var/db/mysql áë> fdescfs 1.0K1.0K 0B 100%/dev/fd áë> áë> /var is out of space. Hmm. áë> áë> # du -sh /var áë> 3,3G/var http://www.freebsd.org/doc/en_US.ISO8859-

Re: perl links

2010-04-10 Thread Anton Yuzhaninov
/usr/bin/perl A> symlinking /usr/local/bin/perl5.8.9 and /usr/bin/perl5 most perl scripts begins with #!/usr/bin/perl this is common convention (also outside *BSD world) -- WBR, Anton Yuzhaninov ___ freebsd-questions@freebsd.org mailing list http:/

Re: premature ENOMEM

2010-02-26 Thread Anton Yuzhaninov
r why I cannot. Don't forget that increase of kern.maxdsiz will decrease space for mmap. And by default malloc in FreeBSD 8 uses mmap. Try to set kern.maxdsiz to small value (may be 0 will be ok). http://docs.freebsd.org/cgi/mid.cgi?200207291839.g6T

Re: netstat doesn't work

2009-04-27 Thread Anton Yuzhaninov
hings work fine, but the "netstat" command shows nothing for me. DL> Could someone help me ? Probably you rebuild only kernel or only world. Try to rebuild both: kernel and world from same source. -- Anton Yuzhaninov ___ freebsd-questi

Re: bsnmpd vs net-snmp

2009-04-27 Thread Anton Yuzhaninov
general net-snmp supports more MIBs than bsnmpd. E. g. BEGEMOT-PF-MIB supported only by bsnmpd and useful for monitoring pf(4), UCD-SNMP-MIB supported only by net-snmp and useful for monitoring CPU load (ssCpuRaw* counters). -- Anton Yuzhaninov __

Re: How to check which FIB has a given process

2009-04-16 Thread Anton Yuzhaninov
s/GENERIC (if you use custom kernel replace GENERIC by kernel name) make gdbinit kgdb kernel.debug /dev/mem (kgdb) ps find interesting process, than copy proc address (2-nd column) (kgdb) set $pp = (struct proc*) 0xff000fff3000 And see FIB for this process: (kgdb) p $pp.p_fibnum $1 = 0x0 --

Re: memtest question on 8 GB RAM AMD64 system

2009-04-10 Thread Anton Yuzhaninov
V> The system boots fine and I wanted to try memtest to see if there would be errors. So I installed that /usr/ports/sysutils/memtest port and did For memory test it is better to use this: http://www.memtest86.com/ or this http://www.memtest.org/ tool -- Anton Y

Re: How to remove all files with a certain extension

2009-04-06 Thread Anton Yuzhaninov
, because it doesn't: JA> JA> find . -name *.tar -exec rm /dev/null {} \; find . -type f -name '*.tar' -delete -- Anton Yuzhaninov ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-q

Re: bsnmpd

2009-04-06 Thread Anton Yuzhaninov
a> run manual command a> a> /etc/rc.d/bsnmpd start a> a> it starts fine no problem a> May be you have some broken script in /usr/local/etc/rc.d/ Try to add rc_debug="YES" to /etc/rc.conf reboot, and see in logs which script was started -- Anton Yuzhaninov __

Re: Sysinstall with install.cfg

2009-04-01 Thread Anton Yuzhaninov
nWrite try to remove diskPartitionWrite -- Anton Yuzhaninov ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"

Re: gmirror 6.2 -> 7.1

2009-04-01 Thread Anton Yuzhaninov
sd 7 1. Backup (it may be useful even without any upgrade). 2. Upgrade as usually. -- Anton Yuzhaninov ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to &qu

Re: Where is the Perl XML::Parser port

2009-03-29 Thread Anton Yuzhaninov
On Sun, 29 Mar 2009 22:07:42 +, af300...@gmail.com wrote: awgc> So, I've done some searches at freshports.org and I cannot find the awgc> XML::Parser perl module anywhere in the ports tree. What is it under? /usr/ports/textproc/p5-XML-Parser/ -- Anton

Re: utility that scans lan for client?

2009-03-23 Thread Anton Yuzhaninov
s that are attached to the LAN. ports/net/arping mat be useful for this -- Anton Yuzhaninov ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"