Re: Support for Intel 82599ES?

2012-06-01 Thread Michael Butler
On 06/01/12 13:06, Rick Miller wrote:
 Thanks, Jack!
 
 Also another support question for the listsIs the Broadcom BCM5719
 supported?  I can find neither in the hardware notes for 8.3 nor 9.0.

man bge


___
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: using freebsd-update to update jails and their host

2011-02-27 Thread Michael Butler
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 02/27/11 08:48, Dan Naumov wrote:
 I've also discovered the ezjail-admin install -h file:// option which
 installs a basejail using the host system as base, am I right in thinking I
 could also use this by first upgrading my host and then running this command
 to write the /basejail over with the updated files from the host to bring
 them into sync? I still don't know how I would then fix the /etc under each
 individual jail though.

I've been using ..

ezjail-admin update -i

 .. to update the binaries after a full update of the host system and
something like ..

#!/bin/sh
for JAIL in {list-your-jails-here}
do
mv /usr/src /usr/local/jails/${JAIL}/usr
JAIL_ID=`jls | grep $JAIL | awk '{ print $1 };'`
echo Updating: ${JAIL}
jexec ${JAIL_ID} mergemaster -scvi
mv /usr/local/jails/${JAIL}/usr/src /usr
done

 .. to update/merge with jail-specific config data,

imb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (FreeBSD)

iEYEARECAAYFAk1qZ3IACgkQQv9rrgRC1JLqugCcCRUttSFubQnc6IJtgjR6wcjr
xioAoKllN6juSk1A7hHso7/AXP8mMZ9p
=tkVj
-END PGP SIGNATURE-
___
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: using freebsd-update to update jails and their host

2011-02-27 Thread Michael Butler
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Apologies .. correcting myself here ..

  .. to update the binaries after a full update of the host system and
 something like ..
 
 #!/bin/sh
 for JAIL in {list-your-jails-here}
 do
 mv /usr/src /usr/local/jails/${JAIL}/usr
 JAIL_ID=`jls | grep $JAIL | awk '{ print $1 };'`
 echo Updating: ${JAIL}
 jexec ${JAIL_ID} mergemaster -scvi
 mv /usr/local/jails/${JAIL}/usr/src /usr
 done

This should, of course, be ..

#!/bin/sh
rmdir /usr/local/jails/basejail/usr/src
mv /usr/src /usr/local/jails/basejail/usr/src
for JAIL in {list-your-jails-here}
do
JAIL_ID=`jls | grep $JAIL | awk '{ print $1 };'`
echo Updating: ${JAIL}
jexec ${JAIL_ID} mergemaster -scvi
done
mv /usr/local/jails/basejail/usr/src /usr
mkdir /usr/local/jails/basejail/usr/src

imb


-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (FreeBSD)

iEYEARECAAYFAk1qagEACgkQQv9rrgRC1JJVdwCfWeTcTSheVvMDFDLMfZj/56he
ZUcAoLwiSObA6UmCmALfiFK/tJaVyj8+
=1pnX
-END PGP SIGNATURE-
___
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: Root exploit for FreeBSD

2009-12-10 Thread Michael Butler
Anton Shterenlikht wrote:
From my information security manager:
 
   FreeBSD isn't much used within the University (I understand) and has a
   (comparatively) poor security record. Most recently, for example:
 
   
 http://www.h-online.com/security/news/item/Root-exploit-for-FreeBSD-873352.html

Without wanting to get into any flame wars, I will only say this ..

I find this kind of unsubstantiated speculation extremely disappointing.
 It speaks not only to an apparent lack of knowledge about FreeBSD but
also about any alternative operating system.

Subject closed,

imb

___
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: Nagios + 6.3-RELEASE == Hung Process

2008-01-02 Thread Michael Butler
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Marc G. Fournier wrote:
 I never tried on i386, but in my case it was an amd64 system as well ... not 
 sure if that is relevant or not ... has anyone seen this problem *with* i386?

When I read about it, I was in the middle of upgrading the problem
machine to 7-stable - which now reports as follows:

FreeBSD 7.0-PRERELEASE #0: Tue Jan  1 22:12:02 EST 2008
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/AARON
Timecounter i8254 frequency 1193182 Hz quality 0
CPU: Intel Pentium III (701.59-MHz 686-class CPU)
  Origin = GenuineIntel  Id = 0x681  Stepping = 1

Features=0x387f9ffFPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,PN,MMX,FXSR,SSE
real memory  = 1073479680 (1023 MB)
avail memory = 1041297408 (993 MB)
kbd1 at kbdmux0
acpi0: INTEL TR440BXA on motherboard
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.7 (FreeBSD)

iD8DBQFHfDKWQv9rrgRC1JIRAgTzAJ0T4HwQcR8kSj+iuKL90S2oz5EWMACeLPqd
pBkMfN9J08zv+ibT3TgcYHA=
=vmkg
-END PGP SIGNATURE-
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Nagios + 6.3-RELEASE == Hung Process

2008-01-01 Thread Michael Butler
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Marc G. Fournier wrote:
 
 G'day ...
 
   Yesterday, I setup nagios to do some system monitoring ... installed the
 latest version from ports into a jail, so that I could easily move it around
 between machines as I upgrade, without losing data ... after about 30 minutes
 running, I get a second nagios process running (fork?) that takes up ch CPU
 time as is available, and just hangs there until I kill -9 it ...

[ .. ]

 After searching the 'Net a bit, came across this thread:
 
 http://www.nagiosexchange.org/nagios-users.34.0.html?tx_maillisttofaq_pi1%5Bmode%5D=1tx_maillisttofaq_pi1%5BshowUid%5D=7694
 
 That recommends modifying libmap.conf with:
 
 [/usr/local/bin/nagios]
 libpthread.so.2 libthr.so.2
 libpthread.so libthr.so

Thanks for pointing this out. I've had similar problems with nagios but
hadn't found a solution until I saw your pointer. Sadly, my expertise
with both thread libraries is sufficiently lacking that I have no clue
where to start looking for the cause :-(

Michael
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.7 (FreeBSD)

iD8DBQFHenK4Qv9rrgRC1JIRAqifAKChinXb0dEPTMMlnXNYsuECLJL+vgCgvLF5
G5UYcIuvPe+UEk+qJSplrnY=
=xXMF
-END PGP SIGNATURE-
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]