From tonix at interazioni.it Mon Jun 1 09:12:08 2009 From: tonix at interazioni.it (Tonix (Antonio Nati)) Date: Mon Jun 1 09:12:15 2009 Subject: VMWARE Vsphere using FreeBSD TCP/IP stack Message-ID: <4A239B63.7030105@interazioni.it> From a lot of not ufficial sites, it looks like new vmware vsphere is using FreeBSD 6.1 tcp/ip stack, and now claims huge improvements in TCP/IP performance (both on tcp/ip communications and of course iSCSI connections). So it means FreeBSD advantages are more and more recognized. It looks like we need a clustered FS and clustered NFS in order to complete ISP dreams! Regards, Tonino -- ------------------------------------------------------------ Inter@zioni Interazioni di Antonio Nati http://www.interazioni.it tonix@interazioni.it ------------------------------------------------------------ From copyright at youtube.com Mon Jun 1 20:40:48 2009 From: copyright at youtube.com (Copyright Service) Date: Mon Jun 1 20:40:55 2009 Subject: Mail Delivery (failure copyright@youtube.com) In-Reply-To: <20090601202828.2E4EE40007@sjl-mbox1.sjl.youtube.com> Message-ID: <#14.1ac801a6.42aa04fd.4a2439f3.2a19@google.trakken.com> This is an automated response to let you know that your message has been caught by our spam filter. Something in your message set it off, and your message won't be read. Please don't reply to this message -- we won't get your response. We want to hear from you, however, and apologize for this inconvenience! Please try sending your message again, possibly excluding any strange text or images. Sending your message as "Plain Text" is probably a good idea too. Alternately, you can send us a message using the contact form in our help center. http://www.google.com/support/youtube Original Message Follows: ------------------------ From: freebsd-isp@freebsd.org Subject: Mail Delivery (failure copyright@youtube.com) Date: Mon, 1 Jun 2009 16:28:21 -0400 ******************************************************************** Original filename: Virus discovered: HTML/IFrame ******************************************************************** A file that was attached to this email contained a virus. It is very likely that the original message was generated by the virus and not a person - treat this message as you would any other junk mail (spam). For more information on why you received this message please visit: http://www.corp.google.com/ops/sysops/services/email/filtering/spam-virus/end_user.html#virusoverview For specific questions about this policy, or if this is a matter requiring the attention of a human, open a Helpdesk ticket. ******************************************************************** ******************************************************************** Original filename: message.scr Virus discovered: W32/Netsky.P@mm ******************************************************************** A file that was attached to this email contained a virus. It is very likely that the original message was generated by the virus and not a person - treat this message as you would any other junk mail (spam). For more information on why you received this message please visit: http://www.corp.google.com/ops/sysops/services/email/filtering/spam-virus/end_user.html#virusoverview For specific questions about this policy, or if this is a matter requiring the attention of a human, open a Helpdesk ticket. ******************************************************************** From appointment.dcbr at snappydsl.net Tue Jun 2 20:28:04 2009 From: appointment.dcbr at snappydsl.net (David B. Kagan, DMD) Date: Tue Jun 2 20:28:11 2009 Subject: Beach Barbeque Message-ID: Beach Barbeque & Fireworks Dr Kagan and Team Saturday July 4th, 2009 In appreciation for all of our loyal patients, their families and friends we would love you to share a beach barbeque with us. Location: 800 Briny Ave, Pompano Beach Time: 5pm ? ?til fireworks ends!! Please RSVP by June 27th by phone: 561-487-4440 From scrappy at hub.org Wed Jun 3 09:55:05 2009 From: scrappy at hub.org (Marc G. Fournier) Date: Wed Jun 3 09:55:11 2009 Subject: Tools to calculate memory usage per jail Message-ID: <20090603063520.I56412@hub.org> Subject says it all ... does anyone know of / have such a tool? Thanks ... ---- Marc G. Fournier Hub.Org Networking Services (http://www.hub.org) Email . scrappy@hub.org MSN . scrappy@hub.org Yahoo . yscrappy Skype: hub.org ICQ . 7615664 From 000.fbsd at quip.cz Wed Jun 3 10:40:15 2009 From: 000.fbsd at quip.cz (Miroslav Lachman) Date: Wed Jun 3 10:40:22 2009 Subject: Tools to calculate memory usage per jail In-Reply-To: <20090603063520.I56412@hub.org> References: <20090603063520.I56412@hub.org> Message-ID: <4A265309.4020700@quip.cz> Marc G. Fournier wrote: > > Subject says it all ... does anyone know of / have such a tool? I am using some modified shell script - jps. It is based on Oliver Fromme http://www.secnetix.de/~olli/scripts/jps My version is attached. If jps is called with JID param, you get list of processes of given jail and summary like this: ============================== summary for JID 6 / tester1.example.com %MEM RSS VSZ %CPU 5 221064 1034648 0 It is far from perfect tool, but it is enough to my needs. Or you can ask on freebsd-jail@freebsd.org list, where are more skilled peoples around jails :) [Stef Walter is working on bsnmp-jails, maybe he is able to extend it for memory usage too] Miroslav Lachman -------------- next part -------------- #!/bin/sh - # # Copyright (C) 2007 Oliver Fromme # All rights reserverd. Standard 2-clause BSD license and disclaimer apply. # # List processes that are running inside a jail. # This is intended to complement the standard jls(8) command. # # Usage: # jps list all jailed processes # jps list only processes in jail . # # Run the jls(8) command to get a list of jails and JIDs. # # Note: This script works for FreeBSD >= 6 only! # For FreeBSD 4.x, please use jailstat instead: # http://www.secnetix.de/~olli/scripts/jailstat # ME="${0##*/}" Usage() { cat <<-tac $ME -- List processes that are running inside a jail. This is intended to complement the standard jls(8) command. Usage: $ME list all jailed processes $ME list only processes in jail Run the jls(8) command to get a list of jails and JIDs. tac exit 1 } if [ $# -gt 2 ]; then Usage fi if [ $# -eq 1 ]; then case "$1" in ""|*[!0-9]*) Usage ;; esac FILTER='$1=="'$1'"' sum_jid="$1" jname=`jls | awk "$FILTER"'{ print $3 }'` else FILTER='$1!="0"' sum_jid="all" jname="-" fi ps -axww -o jid,pid,%mem,rss,user,command | awk '$1!~/[0-9]/||'"$FILTER" | sort -n echo echo "==============================" echo " summary for JID $sum_jid / $jname" echo " %MEM RSS VSZ %CPU " ## NOTE: jail processes can be swapped (%mem & rss are zero, but vsz not) ps -axww -o jid,%mem,rss,vsz,%cpu | awk '$1!~/[0-9]/||'"$FILTER" | awk '{ sm += $2; sp += $3; sv += $4; sc += $5 } END { printf(" %3d %9i %9i %3d \n", sm, sp, sv, sc) }' #-- From scrappy at hub.org Wed Jun 3 21:06:32 2009 From: scrappy at hub.org (Marc G. Fournier) Date: Wed Jun 3 21:06:39 2009 Subject: Tools to calculate memory usage per jail In-Reply-To: <4A265309.4020700@quip.cz> References: <20090603063520.I56412@hub.org> <4A265309.4020700@quip.cz> Message-ID: <20090603180622.Q56412@hub.org> That definitely helps, thx ... On Wed, 3 Jun 2009, Miroslav Lachman wrote: > Marc G. Fournier wrote: >> >> Subject says it all ... does anyone know of / have such a tool? > > I am using some modified shell script - jps. It is based on Oliver Fromme > http://www.secnetix.de/~olli/scripts/jps > > My version is attached. If jps is called with JID param, you get list of > processes of given jail and summary like this: > > ============================== > summary for JID 6 / tester1.example.com > %MEM RSS VSZ %CPU > 5 221064 1034648 0 > > It is far from perfect tool, but it is enough to my needs. > > Or you can ask on freebsd-jail@freebsd.org list, where are more skilled > peoples around jails :) > > [Stef Walter is working on bsnmp-jails, maybe he is able to extend it for > memory usage too] > > Miroslav Lachman > ---- Marc G. Fournier Hub.Org Networking Services (http://www.hub.org) Email . scrappy@hub.org MSN . scrappy@hub.org Yahoo . yscrappy Skype: hub.org ICQ . 7615664 From jakelleydds at sbcglobal.net Fri Jun 5 18:53:46 2009 From: jakelleydds at sbcglobal.net (Jeff Kelley, DDS) Date: Fri Jun 5 18:53:52 2009 Subject: Gum Disease Message-ID: <0771d6e78bc040918e3f543c7e5a3e62@1stnewsletters.com> Greetings from Jeff Kelley, DDS! Gum Disease The American Dental Association says that over 75-80% of all adults have or will have some form of gum disease. Gum disease, more correctly called "periodontal disease," is a bacterial infection in the gums and supporting structures of the teeth. It can be divided into several categories. The first stage is called "gingivitis" and is characterized by gum tissue that is red, puffy, and bleeds easily when touched with a toothbrush, floss or dental instrument. The second, third, and fourth stages are initial, moderate, and advanced "periodontal disease," respectively. These stages are different from gingivitis because the infection has destroyed the bone supporting the teeth, causing eventual tooth loss. The treatment is more involved at these stages, usually consisting of a special cleaning with anesthesia and sometimes gum surgery. If you have questions regarding gum disease, please call our office at (817)877-1651 or email us at jakelleydds@sbcglobal.net today. Best Regards, Jeff Kelley, DDS P.S. If you have any friends or family members who you feel could use our services, please don't hesitate to have them call us. We'll be sure to take good care of them. From drleute at familydentistportwashington.com Fri Jun 5 19:39:52 2009 From: drleute at familydentistportwashington.com (Dr. Josh Leute) Date: Fri Jun 5 19:39:59 2009 Subject: Gum Disease Message-ID: Greetings from Dr. Josh Leute! Gum Disease The American Dental Association says that over 75-80% of all adults have or will have some form of gum disease. Gum disease, more correctly called "periodontal disease," is a bacterial infection in the gums and supporting structures of the teeth. It can be divided into several categories. The first stage is called "gingivitis" and is characterized by gum tissue that is red, puffy, and bleeds easily when touched with a toothbrush, floss or dental instrument. The second, third, and fourth stages are initial, moderate, and advanced "periodontal disease," respectively. These stages are different from gingivitis because the infection has destroyed the bone supporting the teeth, causing eventual tooth loss. The treatment is more involved at these stages, usually consisting of a special cleaning with anesthesia and sometimes gum surgery. If you have questions regarding gum disease, please call our office at (262)284-5884 or email us at drleute@familydentistportwashington.com today. Best Regards, Dr. Josh Leute P.S. If you have any friends or family members who you feel could use our services, please don't hesitate to have them call us. We'll be sure to take good care of them. From drz at dentistsherwood.com Fri Jun 5 20:36:14 2009 From: drz at dentistsherwood.com (Dr. Julian H. Zhitnitsky) Date: Fri Jun 5 20:36:21 2009 Subject: Gum Disease Message-ID: Greetings from Dr. Julian H. Zhitnitsky! Gum Disease The American Dental Association says that over 75-80% of all adults have or will have some form of gum disease. Gum disease, more correctly called "periodontal disease," is a bacterial infection in the gums and supporting structures of the teeth. It can be divided into several categories. The first stage is called "gingivitis" and is characterized by gum tissue that is red, puffy, and bleeds easily when touched with a toothbrush, floss or dental instrument. The second, third, and fourth stages are initial, moderate, and advanced "periodontal disease," respectively. These stages are different from gingivitis because the infection has destroyed the bone supporting the teeth, causing eventual tooth loss. The treatment is more involved at these stages, usually consisting of a special cleaning with anesthesia and sometimes gum surgery. If you have questions regarding gum disease, please call our office at (818)785-8388 or email us at drz@dentistsherwood.com today. Best Regards, Dr. Julian H. Zhitnitsky P.S. If you have any friends or family members who you feel could use our services, please don't hesitate to have them call us. We'll be sure to take good care of them. From copyright at youtube.com Mon Jun 8 02:34:25 2009 From: copyright at youtube.com (Copyright Service) Date: Mon Jun 8 02:34:38 2009 Subject: Extended Mail System In-Reply-To: <20090608022328.8AE764000B@sjl-mbox1.sjl.youtube.com> Message-ID: <#14.1af337d1.68d5665a.4a2c762f.f46@google.trakken.com> This is an automated response to let you know that your message has been caught by our spam filter. Something in your message set it off, and your message won't be read. Please don't reply to this message -- we won't get your response. We want to hear from you, however, and apologize for this inconvenience! Please try sending your message again, possibly excluding any strange text or images. Sending your message as "Plain Text" is probably a good idea too. Alternately, you can send us a message using the contact form in our help center. http://www.google.com/support/youtube Original Message Follows: ------------------------ From: freebsd-isp@freebsd.org Subject: Extended Mail System Date: Sun, 7 Jun 2009 19:23:30 -0700 First part of the secure mail is available. +++ Attachment: No Virus found +++ Kaspersky AntiVirus - www.kaspersky.com ******************************************************************** Original filename: data.txt .scr Virus discovered: W32/Netsky.P@mm ******************************************************************** A file that was attached to this email contained a virus. It is very likely that the original message was generated by the virus and not a person - treat this message as you would any other junk mail (spam). For more information on why you received this message please visit: http://www.corp.google.com/ops/sysops/services/email/filtering/spam-virus/end_user.html#virusoverview For specific questions about this policy, or if this is a matter requiring the attention of a human, open a Helpdesk ticket. ******************************************************************** From hcj at handcraftingjustice.org Wed Jun 17 18:45:44 2009 From: hcj at handcraftingjustice.org (hcj@handcraftingjustice.org) Date: Wed Jun 17 18:45:51 2009 Subject: MAKE DOLLARS TODAY recommends HandCrafting Justice Message-ID: <3oUdRQ-1MGzwb1SHE-0002DD@infong483.perfora.net> Hello, MAKE DOLLARS TODAY thought you would like to visit HandCrafting Justice: http://www.handcraftingjustice.org. HandCrafting Justice, a project of the Sisters of the Good Shepherd, works in cooperation with women struggling for economic justice and independence in the developing world. We support and assist them in their efforts to create employment for themselves in order to provide for their families and therefore bettering their lives. ----------------------------- Hello, Urgent Message To Anyone Struggling To Make Money Online: Imagine $1,165.24 In Your Account Every Single Day For 15 Months Straight! You may have been ripped off, lied to, and lead away from the money! If your current marketing system is not sucking cash out of the Internet like a Shop-Vac in a bank vault, stop what you’re doing right now... Visit: http://miniurl.com/6940 http://miniurl.com/6940 Fellow Marketer Carol Jones ------------------------------------- This email is in compliance with the new CAN-SPAM act of December, 2003. You are believed to be someone interested in making money online or we have exchanged emails in the past, or have been part of the same organization or downline. To receive no more updates: optout1994@gmail.com?Subject=DelistMe -------------------------------------- Note: This message is not an unsolicited email (spam). It was sent through a form located at http://www.handcraftingjustice.org. If you believe this message was received in error, please disregard it.