From owner-freebsd-doc@FreeBSD.ORG Sun Nov 6 11:32:54 2005 Return-Path: X-Original-To: freebsd-doc@freebsd.org Delivered-To: freebsd-doc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 38E4216A420 for ; Sun, 6 Nov 2005 11:32:54 +0000 (GMT) (envelope-from mark@remotelab.org) Received: from 194-185-53-242.f5.ngi.it (194-185-53-242.f5.ngi.it [194.185.53.242]) by mx1.FreeBSD.org (Postfix) with ESMTP id 62A8543D45 for ; Sun, 6 Nov 2005 11:32:52 +0000 (GMT) (envelope-from mark@remotelab.org) Received: from einstein.lab (localhost. [127.0.0.1]) by 194-185-53-242.f5.ngi.it (8.13.4/8.13.4) with ESMTP id jA6BWoUd083371 for ; Sun, 6 Nov 2005 12:32:50 +0100 (CET) (envelope-from mark@remotelab.org) Received: from einstein.lab (localhost.lab [127.0.0.1]) by einstein.lab (8.13.4/8.13.4) with ESMTP id jA6BWUqo084246 for ; Sun, 6 Nov 2005 12:32:30 +0100 (CET) (envelope-from mark@einstein.lab) Received: (from mark@localhost) by einstein.lab (8.13.4/8.13.4/Submit) id jA6BWUec084245 for freebsd-doc@freebsd.org; Sun, 6 Nov 2005 12:32:30 +0100 (CET) (envelope-from mark) Date: Sun, 6 Nov 2005 12:32:30 +0100 From: Marco Trentini To: freebsd-doc@freebsd.org Message-ID: <20051106113230.GD14434@einstein.lab> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Operating-System: FreeBSD einstein.lab 5.4-STABLE i386 User-Agent: Mutt/1.5.11 Subject: A little question in the config chapter (handbook) X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Nov 2005 11:32:54 -0000 While reading the chapter I met up in this section: ..... <varname>net.inet.ip.portrange.*</varname> net.inet.ip.portrange.* The net.inet.ip.portrange.* sysctl variables control the port number ranges automatically bound to TCP and UDP sockets. There are three ranges: a low range, a default range, and a high range. Most network programs use the default range which is controlled by the net.inet.ip.portrange.first and net.inet.ip.portrange.last, which default to 1024 and 5000, respectively. Bound port ranges are used for outgoing connections, and it is possible to run the system out of ports under certain circumstances. This most commonly occurs when you are running a heavily loaded web proxy. The port range is not an issue when running servers which handle mainly incoming connections, such as a normal web server, or has a limited number of outgoing connections, such as a mail relay. For situations where you may run yourself out of ports, it is recommended to increase net.inet.ip.portrange.last modestly. A value of 10000, 20000 or 30000 may be reasonable. You should also consider firewall effects when changing the port range. Some firewalls may block large ranges of ports (usually low-numbered ports) and expect systems to use higher ranges of ports for outgoing connections — for this reason it is recommended that net.inet.ip.portrange.first be lowered. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ..... The question is about last sentence of this section ("Some firewalls may block ...."). While net.inet.ip.portrange.first should be lowered when some firewall in general may block ranges of low-numbered ports? I think it should be increased, or not? -- Marco Trentini mark@remotelab.org http://www.remotelab.org/ pgp public key at: http://www.remotelab.org/~mark/share/mark.asc Key fingerprint = 2EBB 1F84 0FE4 FDB2 A40A D8DC B487 6AAD D755 239D From owner-freebsd-doc@FreeBSD.ORG Sun Nov 6 12:53:46 2005 Return-Path: X-Original-To: freebsd-doc@freebsd.org Delivered-To: freebsd-doc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6E0D816A41F for ; Sun, 6 Nov 2005 12:53:46 +0000 (GMT) (envelope-from ale@FreeBSD.org) Received: from andxor.it (relay.andxor.it [195.223.2.3]) by mx1.FreeBSD.org (Postfix) with SMTP id 6A44543D67 for ; Sun, 6 Nov 2005 12:53:43 +0000 (GMT) (envelope-from ale@FreeBSD.org) Received: (qmail 83940 invoked from network); 6 Nov 2005 12:53:41 -0000 Received: from unknown (HELO ?192.168.178.2?) (a.premoli@andxor.it@81.174.31.42) by andxor.it with SMTP; 6 Nov 2005 12:53:41 -0000 Message-ID: <436DFCD4.6010207@FreeBSD.org> Date: Sun, 06 Nov 2005 13:53:40 +0100 From: Alex Dupre User-Agent: Mozilla Thunderbird 1.0.7 (X11/20051105) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Marco Trentini References: <20051106113230.GD14434@einstein.lab> In-Reply-To: <20051106113230.GD14434@einstein.lab> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-doc@freebsd.org Subject: Re: A little question in the config chapter (handbook) X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Nov 2005 12:53:46 -0000 Marco Trentini wrote: > The question is about last sentence of this section ("Some > firewalls may block ...."). While net.inet.ip.portrange.first > should be lowered when some firewall in general may block > ranges of low-numbered ports? I think it should be increased, > or not? Not increased and not lowered. It is recommended to 'not' touch it and in particular to 'not' lower it. Fixed, thanks! -- Alex Dupre From owner-freebsd-doc@FreeBSD.ORG Sun Nov 6 17:00:29 2005 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 262C416A41F for ; Sun, 6 Nov 2005 17:00:29 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B30E143D4C for ; Sun, 6 Nov 2005 17:00:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id jA6H0RAa091772 for ; Sun, 6 Nov 2005 17:00:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id jA6H0R4P091771; Sun, 6 Nov 2005 17:00:27 GMT (envelope-from gnats) Resent-Date: Sun, 6 Nov 2005 17:00:27 GMT Resent-Message-Id: <200511061700.jA6H0R4P091771@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Kevin Brunelle Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7213C16A41F for ; Sun, 6 Nov 2005 16:57:10 +0000 (GMT) (envelope-from kruptos@mlinux.org) Received: from ms-smtp-02.tampabay.rr.com (ms-smtp-02-smtplb.tampabay.rr.com [65.32.5.132]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0EF6043D45 for ; Sun, 6 Nov 2005 16:57:09 +0000 (GMT) (envelope-from kruptos@mlinux.org) Received: from _HOSTNAME_ (103.114.33.65.cfl.res.rr.com [65.33.114.103]) by ms-smtp-02.tampabay.rr.com (8.12.10/8.12.7) with SMTP id jA6Gv6b6011739 for ; Sun, 6 Nov 2005 11:57:07 -0500 (EST) Received: by _HOSTNAME_ (sSMTP sendmail emulation); Sun, 6 Nov 2005 11:57:06 -0500 Message-Id: <200511061657.jA6Gv6b6011739@ms-smtp-02.tampabay.rr.com> Date: Sun, 6 Nov 2005 11:57:06 -0500 From: Kevin Brunelle To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: docs/88554: Correct minor typo in handbook (filename error) X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Kevin Brunelle List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Nov 2005 17:00:29 -0000 >Number: 88554 >Category: docs >Synopsis: Correct minor typo in handbook (filename error) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Sun Nov 06 17:00:27 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Kevin Brunelle >Release: FreeBSD 5.4-RELEASE-p8 i386 >Organization: >Environment: System: FreeBSD fnord.quux.edu 5.4-RELEASE-p8 FreeBSD 5.4-RELEASE-p8 #2: Sat Oct 22 13:58:58 EDT 2005 root@fnord.quux.edu:/drv1/obj/usr/src/sys/FOOKERN i386 >Description: The paragraph currently instructs users to save their XF86Config file as /etc/XF86Config when it should be /etc/X11/XF86Config (as is obvious both from the command output immediately below the paragraph and from usage). This is an issue only for people installing older versions of FreeBSD (prior to 5.3) and/or those using the installation part of the handbook to configure X. >How-To-Repeat: >Fix: In /usr/doc/en_US.ISO8859-1/books/handbook/install --- chapter.sgml.bak Sun Nov 6 11:54:18 2005 +++ chapter.sgml Sun Nov 6 11:54:25 2005 @@ -4144,7 +4144,7 @@ 4 Finally, the configuration needs to be saved. Be sure - to enter /etc/XF86Config as the location + to enter /etc/X11/XF86Config as the location for saving the configuration. I am going to write the XF86Config file now. Make sure you don't accidently >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Sun Nov 6 17:50:15 2005 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4B12F16A41F for ; Sun, 6 Nov 2005 17:50:15 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB45843D49 for ; Sun, 6 Nov 2005 17:50:14 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id jA6HoE6L099406 for ; Sun, 6 Nov 2005 17:50:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id jA6HoEbc099405; Sun, 6 Nov 2005 17:50:14 GMT (envelope-from gnats) Resent-Date: Sun, 6 Nov 2005 17:50:14 GMT Resent-Message-Id: <200511061750.jA6HoEbc099405@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Kevin Brunelle Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 59E4D16A41F for ; Sun, 6 Nov 2005 17:40:22 +0000 (GMT) (envelope-from kruptos@mlinux.org) Received: from ms-smtp-03.tampabay.rr.com (ms-smtp-03-smtplb.tampabay.rr.com [65.32.5.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDEB743D45 for ; Sun, 6 Nov 2005 17:40:21 +0000 (GMT) (envelope-from kruptos@mlinux.org) Received: from _HOSTNAME_ (103.114.33.65.cfl.res.rr.com [65.33.114.103]) by ms-smtp-03.tampabay.rr.com (8.12.10/8.12.7) with SMTP id jA6HeIGK007584 for ; Sun, 6 Nov 2005 12:40:19 -0500 (EST) Received: by _HOSTNAME_ (sSMTP sendmail emulation); Sun, 6 Nov 2005 12:40:18 -0500 Message-Id: <200511061740.jA6HeIGK007584@ms-smtp-03.tampabay.rr.com> Date: Sun, 6 Nov 2005 12:40:18 -0500 From: Kevin Brunelle To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: docs/88556: Correct FAQ typo and add more specific information regarding Xorg X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Kevin Brunelle List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Nov 2005 17:50:15 -0000 >Number: 88556 >Category: docs >Synopsis: Correct FAQ typo and add more specific information regarding Xorg >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Sun Nov 06 17:50:14 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Kevin Brunelle >Release: FreeBSD 5.4-RELEASE-p8 i386 >Organization: >Environment: System: FreeBSD fnord.quux.edu 5.4-RELEASE-p8 FreeBSD 5.4-RELEASE-p8 #2: Sat Oct 22 13:58:58 EDT 2005 root@fnord.quux.edu:/drv1/obj/usr/src/sys/FOOKERN i386 >Description: While talking to a user recently he informed me about an error in the FAQ regarding this. The file users are told to edit exists in /etc/X11 and not just /etc. Also, the format the FAQ gives is XFree86 specific and is not the preferred way to format this section in Xorg. I have corrected the path problem, added a mention of the alternative name Xorg may be using instead of Xf86Config, and put in a small bit explaining the alternative format and giving an example of it. >How-To-Repeat: >Fix: --- book.sgml.bak Sun Nov 6 12:20:03 2005 +++ book.sgml Sun Nov 6 12:33:13 2005 @@ -6943,7 +6943,7 @@ and set up moused. - Then edit /etc/XF86Config and make + Then edit /etc/X11/XF86Config and make sure you have the following lines. Section Pointer @@ -6955,6 +6955,17 @@ for &xorg; 6.7.0. For earlier versions, the Protocol should be MouseSystems. + + For Xorg your configuration may be in + /etc/X11/xorg.conf and this is the file you should + edit. Also, although the pointer section format above is supported, for + compatibility reasons, the preferred format is to use an InputDevice + section instead. So you would have the following. + + Section "InputDevice" +Option "Protocol" "SysMouse" +Option "Device" "/dev/sysmouse" +..... Some people prefer to use /dev/mouse under X. To make this >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Sun Nov 6 17:51:52 2005 Return-Path: X-Original-To: freebsd-doc@freebsd.org Delivered-To: freebsd-doc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D4DEE16A41F for ; Sun, 6 Nov 2005 17:51:52 +0000 (GMT) (envelope-from mark@remotelab.org) Received: from 194-185-53-242.f5.ngi.it (194-185-53-242.f5.ngi.it [194.185.53.242]) by mx1.FreeBSD.org (Postfix) with ESMTP id 32C9243D45 for ; Sun, 6 Nov 2005 17:51:49 +0000 (GMT) (envelope-from mark@remotelab.org) Received: from einstein.lab (localhost. [127.0.0.1]) by 194-185-53-242.f5.ngi.it (8.13.4/8.13.4) with ESMTP id jA6HpmBq085192 for ; Sun, 6 Nov 2005 18:51:48 +0100 (CET) (envelope-from mark@remotelab.org) Received: from einstein.lab (localhost.lab [127.0.0.1]) by einstein.lab (8.13.4/8.13.4) with ESMTP id jA6HpRm6085850 for ; Sun, 6 Nov 2005 18:51:27 +0100 (CET) (envelope-from mark@einstein.lab) Received: (from mark@localhost) by einstein.lab (8.13.4/8.13.4/Submit) id jA6HpRBO085849 for freebsd-doc@freebsd.org; Sun, 6 Nov 2005 18:51:27 +0100 (CET) (envelope-from mark) Date: Sun, 6 Nov 2005 18:51:27 +0100 From: Marco Trentini To: freebsd-doc@freebsd.org Message-ID: <20051106175127.GE14434@einstein.lab> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Operating-System: FreeBSD einstein.lab 5.4-STABLE i386 User-Agent: Mutt/1.5.11 Subject: missing tag in the serialcomms chapter (handbook) X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Nov 2005 17:51:53 -0000 I think it should be fix in this way: --- chapter.sgml.old Sun Nov 6 18:47:01 2005 +++ chapter.sgml Sun Nov 6 18:48:18 2005 @@ -1229,7 +1229,8 @@ CTS Clear to Send - + + FreeBSD needs the RTS and cheers!!! -- Marco Trentini mark@remotelab.org http://www.remotelab.org/ pgp public key at: http://www.remotelab.org/~mark/share/mark.asc Key fingerprint = 2EBB 1F84 0FE4 FDB2 A40A D8DC B487 6AAD D755 239D From owner-freebsd-doc@FreeBSD.ORG Sun Nov 6 18:12:11 2005 Return-Path: X-Original-To: freebsd-doc@freebsd.org Delivered-To: freebsd-doc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 321B516A422 for ; Sun, 6 Nov 2005 18:12:11 +0000 (GMT) (envelope-from ale@FreeBSD.org) Received: from andxor.it (relay.andxor.it [195.223.2.3]) by mx1.FreeBSD.org (Postfix) with SMTP id 74BEE43D46 for ; Sun, 6 Nov 2005 18:12:08 +0000 (GMT) (envelope-from ale@FreeBSD.org) Received: (qmail 85678 invoked from network); 6 Nov 2005 18:12:07 -0000 Received: from unknown (HELO ?192.168.178.2?) (a.premoli@andxor.it@81.174.31.42) by andxor.it with SMTP; 6 Nov 2005 18:12:07 -0000 Message-ID: <436E4775.1070409@FreeBSD.org> Date: Sun, 06 Nov 2005 19:12:05 +0100 From: Alex Dupre User-Agent: Mozilla Thunderbird 1.0.7 (X11/20051105) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Marco Trentini References: <20051106175127.GE14434@einstein.lab> In-Reply-To: <20051106175127.GE14434@einstein.lab> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-doc@freebsd.org Subject: Re: missing tag in the serialcomms chapter (handbook) X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Nov 2005 18:12:11 -0000 Marco Trentini wrote: > I think it should be fix in this way: Fixed, thanks! -- Alex Dupre From owner-freebsd-doc@FreeBSD.ORG Sun Nov 6 20:50:16 2005 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DD5F616A41F for ; Sun, 6 Nov 2005 20:50:16 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id ABDE443D46 for ; Sun, 6 Nov 2005 20:50:16 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id jA6KoG9K025296 for ; Sun, 6 Nov 2005 20:50:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id jA6KoGSv025295; Sun, 6 Nov 2005 20:50:16 GMT (envelope-from gnats) Date: Sun, 6 Nov 2005 20:50:16 GMT Message-Id: <200511062050.jA6KoGSv025295@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org From: yUnwEb Cc: Subject: Re: docs/77087: The bootvinum script given in the handbook doesn't work for 5.X X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: yUnwEb List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Nov 2005 20:50:17 -0000 The following reply was made to PR docs/77087; it has been noted by GNATS. From: yUnwEb To: Ceri Davies Cc: freebsd-doc@FreeBSD.org Subject: Re: docs/77087: The bootvinum script given in the handbook doesn't work for 5.X Date: Fri, 4 Nov 2005 21:56:05 +0100 On Fri, 4 Nov 2005 20:21:44 GMT Ceri Davies wrote: > Synopsis: The bootvinum script given in the handbook doesn't work for > 5.X > > State-Changed-From-To: open->feedback > State-Changed-By: ceri > State-Changed-When: Fri Nov 4 20:20:59 GMT 2005 > State-Changed-Why: > Sorry, where did you find this script? grep doesn't see it in our > current sources for the handbook... > > http://www.freebsd.org/cgi/query-pr.cgi?pr=77087 Oh, sorry. It is in an article, not in the handbook :S http://www.freebsd.org/doc/en_US.ISO8859-1/articles/vinum/perl.html -- yUnwEb From owner-freebsd-doc@FreeBSD.ORG Mon Nov 7 08:17:38 2005 Return-Path: X-Original-To: doc@FreeBSD.org Delivered-To: freebsd-doc@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC86016A41F for ; Mon, 7 Nov 2005 08:17:38 +0000 (GMT) (envelope-from mheitm@gmail.com) Received: from nproxy.gmail.com (nproxy.gmail.com [64.233.182.207]) by mx1.FreeBSD.org (Postfix) with ESMTP id CBD7643D46 for ; Mon, 7 Nov 2005 08:17:37 +0000 (GMT) (envelope-from mheitm@gmail.com) Received: by nproxy.gmail.com with SMTP id o25so82794nfa for ; Mon, 07 Nov 2005 00:17:36 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=kYFxnZpNzIY50yGHWKhgLnihlC9nQZyKVqj09aVpTiRxYYEgEXnjswv/7aj4+65O4F7By3p1uX2LWJaUbNT2DEj5OmtO2TisCDACapnnetQQQ2sCHofI5a9lpO8GlIuA0h6nx785vBkRMwutqdWJ2PpYWXD5HqmGy1iU8o5jYyA= Received: by 10.48.211.11 with SMTP id j11mr489129nfg; Mon, 07 Nov 2005 00:17:36 -0800 (PST) Received: by 10.48.42.7 with HTTP; Mon, 7 Nov 2005 00:17:36 -0800 (PST) Message-ID: <179292290511070017n157fbd0bx1e966f469bab647a@mail.gmail.com> Date: Mon, 7 Nov 2005 09:17:36 +0100 From: Michael Heitmeier To: doc@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Cc: Subject: UPDATING X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Nov 2005 08:17:38 -0000 Hi, I would like to suggest that the reference to '/usr/src/UPDATING' in the section 3.3 Upgrading from Source Code from=20 http://www.freebsd.org/releases/5.4R/installation-i386.html be changed to the actual, release specific UPDATING file. Just a small matter but it would be quite helpful for getting a quick overview about the installation requirements. Thanks, Michael From owner-freebsd-doc@FreeBSD.ORG Mon Nov 7 11:00:39 2005 Return-Path: X-Original-To: freebsd-doc@freebsd.org Delivered-To: freebsd-doc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0115816A41F for ; Mon, 7 Nov 2005 11:00:39 +0000 (GMT) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 68D0443D46 for ; Mon, 7 Nov 2005 11:00:38 +0000 (GMT) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (peter@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id jA7B0csk048720 for ; Mon, 7 Nov 2005 11:00:38 GMT (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id jA7B0b3l048714 for freebsd-doc@freebsd.org; Mon, 7 Nov 2005 11:00:37 GMT (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 7 Nov 2005 11:00:37 GMT Message-Id: <200511071100.jA7B0b3l048714@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: FreeBSD doc list Subject: Current unassigned doc problem reports X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Nov 2005 11:00:39 -0000 Current FreeBSD problem reports The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. Bugs can be in one of several states: o - open A problem report has been submitted, no sanity checking performed. a - analyzed The problem is understood and a solution is being sought. f - feedback Further work requires additional information from the originator or the community - possibly confirmation of the effectiveness of a proposed solution. p - patched A patch has been committed, but some issues (MFC and / or confirmation from originator) are still open. s - suspended The problem is not being worked on, due to lack of information or resources. This is a prime candidate for somebody who is looking for a project to do. If the problem cannot be solved at all, it will be closed, rather than suspended. c - closed A problem report is closed when any changes have been integrated, documented, and tested -- or when fixing the problem is abandoned. Critical problems Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2001/05/24] docs/27605 doc Cross-document references () s [2002/03/08] docs/35678 doc docproj Makefiles for web are broken for o [2002/03/21] docs/36168 doc -pthread/_THREAD_SAFE docs missing in gcc o [2003/12/29] docs/60679 doc pthreads documentation does not describe o [2004/01/20] docs/61605 doc Improve documentation for i386 disk geome o [2004/10/03] docs/72285 doc GCC manuals are out of sync o [2004/10/15] docs/72743 doc Porter's Handbook lacks info on using aut o [2004/10/19] docs/72897 doc ERRATA and RELNOTES are missing warnings o [2005/02/25] docs/78062 doc Sample Echo Pseudo-Device Driver for Free o [2005/02/27] docs/78154 doc [PATCH] Make en_US FreeBSD Handbook more o [2005/03/03] docs/78357 doc getaddrinfo()'s AI_ADDRCONFIG not documen o [2005/04/07] docs/79658 doc Freebsd Handbook incorrect about ATAPI CD o [2005/04/13] docs/79857 doc manpage about ntp is wrong o [2005/05/10] docs/80843 doc [patch] Suggested doc fix for psm0 / hand o [2005/06/15] docs/82296 doc ttys(5) man page misleads about use for n o [2005/07/20] docs/83771 doc handbook/raid.html and atacontrol o [2005/09/08] docs/85867 doc dumpon.8 is missing crucial information o [2005/09/24] docs/86532 doc [patch] wpa_supplicant.conf man page shou 18 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- s [2000/07/19] docs/20028 doc ASCII docs should reflect tags o [2001/02/02] docs/24786 doc missing FILES descriptions in sa(4) o [2001/04/02] docs/26286 doc *printf(3) etc should gain format string s [2001/06/03] docs/27843 doc [PATCH] make.conf WITH_* variables aren't o [2001/07/26] docs/29245 doc top(1) manpage doesn't understand SMP a [2001/08/23] docs/30008 doc This document should be translated, comme o [2001/10/07] docs/31109 doc replace gif images w/ png ones due to pat o [2002/01/05] docs/33589 doc Patch to doc.docbook.mk to post process . o [2002/01/09] docs/33724 doc [patch] fix Handbook error about Advanced o [2002/01/14] docs/33852 doc split(1) man page implies that input file o [2002/01/14] docs/33877 doc Documented behaviour of SF_flags for non- a [2002/02/16] docs/35011 doc There are no commands called "diskless" o o [2002/02/22] docs/35222 doc mailing list archive URL regexp suboptima o [2002/03/06] docs/35608 doc mt(1) page uses "setmark" without explana o [2002/03/06] docs/35609 doc mt(1) page needs explanation of "long era o [2002/03/06] docs/35612 doc ps(1) page "state" description doesn't me o [2002/03/07] docs/35642 doc lo(4) page maybe should document optional o [2002/03/07] docs/35644 doc lo(4) page presumes familiarity with prin o [2002/03/07] docs/35646 doc cp(1) page needs a "Bugs" section. o [2002/03/08] docs/35686 doc blackhole(4) page seems to contradict its o [2002/03/10] docs/35732 doc adduser(8) page has obsolete reference an o [2002/03/16] docs/35943 doc at(1) config files are misplaced in /var/ o [2002/03/16] docs/35953 doc hosts.equiv(5) manual is confusing or wro o [2002/03/28] docs/36432 doc Proposal for doc/share/mk: make folded bo o [2002/03/29] docs/36449 doc symlink(7) manual doesn't mention trailin s [2002/05/07] docs/37843 doc manual for pthread_setschedparam is wrong o [2002/05/27] docs/38620 doc Committers Guide and CVS o [2002/05/31] docs/38772 doc firewall_type feature not mentioned on Ha o [2002/06/07] docs/38982 doc developers-hanbook/Jail fix o [2002/06/15] docs/39348 doc kenv fetch of hostname requires dhcp/boot o [2002/06/19] docs/39530 doc access(2) man page has unnecessarily broa o [2002/06/25] docs/39824 doc Various tweaks for doc/en_US.ISO8859-1/bo o [2002/07/10] docs/40423 doc Keyboard(4)'s definition of parameters to o [2002/07/21] docs/40851 doc [PATCH] "mergemaster -p" in UPDATING's "C o [2002/07/28] docs/41089 doc pax -B option does not mention interactio o [2002/08/02] docs/41270 doc confusing directions for kernelconfig cha o [2002/08/20] docs/41807 doc natd -punch_fw "bug" o [2002/08/20] docs/41820 doc Device driver confusion in Handbook (2.3) a [2002/08/27] docs/42058 doc Documentation: Installing Oracle 8i onto o [2002/10/04] docs/43651 doc stab(5) incorrectly states to include jus o [2002/10/08] docs/43823 doc [PATCH] update to environ(7) manpage o [2002/10/09] docs/43861 doc non-trivial typo in wicontrol man page o [2002/10/11] docs/43941 doc Rationale for Upgrade Sequence o [2002/10/15] docs/44074 doc ln(1) manual clarifications [patch] o [2002/10/29] docs/44594 doc Handbook doesn't mention drivers.flp for o [2002/12/02] docs/45940 doc burncd missing info o [2002/12/11] docs/46196 doc Missing return value in (set_)menu_format o [2002/12/16] docs/46291 doc correlation between HZ kernel config para o [2002/12/16] docs/46295 doc please add information to Nvi recovery em o [2003/01/28] docs/47575 doc Clarify requirements for IPFW2 in STABLE o [2003/01/28] docs/47594 doc [PATCH] passwd(5) incorrectly states allo o [2003/02/02] docs/47818 doc ln(1) manpage is confusing o [2003/02/08] docs/48101 doc There's no documentation on the fixit dis o [2003/03/06] docs/48980 doc [PATCH] nsgmls -s errors and sect. 3.2.1 o [2003/03/23] docs/50211 doc [PATCH] Fix textfile creation o [2003/04/03] docs/50573 doc return values for res_query/res_search/re o [2003/04/07] docs/50677 doc [PATCH] update doc/en_US.ISO8859-1/books/ o [2003/05/06] docs/51875 doc [patch] atkbd(4) adjustment o [2003/05/06] docs/51891 doc DIAGNOSTICS in ed driver manpage don't ma o [2003/05/07] docs/51921 doc ls(1) manpage lacks some information abou o [2003/05/11] docs/52071 doc [PATCH] Add more information about soft u o [2003/06/21] docs/53575 doc Change to Handbook Section 20.9 o [2003/06/21] docs/53596 doc Updates to mt manual page o [2003/06/25] docs/53732 doc quota output and man page do not document o [2003/07/13] docs/54451 doc [patch] i386_{get|set}_ldt manual page is o [2003/07/26] docs/54879 doc man 1 jot, -r description o [2003/08/12] docs/55482 doc DUMP has access to block devices in a JAI o [2003/09/24] docs/57153 doc S_IRWXU missing in fstat(2) man page? o [2003/09/30] docs/57388 doc INSTALL.TXT enhancement: mention ok promp o [2003/10/04] docs/57569 doc error on gensetdefs(8) man page o [2003/10/13] docs/57926 doc amd.conf.5 poorly format as it has both m o [2003/10/13] docs/57974 doc man page apropos for select macros (FD_SE o [2003/10/13] docs/57978 doc Type miss of GPIB in Hardware Notes o [2003/10/16] docs/58111 doc Handbook 12.4.3 Rebuilding ATA RAID1 Arra o [2003/10/28] docs/58615 doc update for Vinum chapter of Handbook: des o [2003/10/30] docs/58710 doc killpg(2) contains an error regarding sen o [2003/11/07] docs/59044 doc doc.docbook.mk does not properly handle a o [2003/11/19] docs/59477 doc Outdated Info Documents at http://docs.fr o [2003/11/30] docs/59835 doc ipfw(8) man page does not warn about acce o [2003/12/23] docs/60529 doc resolver(5) man page is badly out of date o [2003/12/24] docs/60544 doc getenv(3) manpage doesn't state the retur o [2004/01/08] docs/61070 doc handbook: Installation docs misleading: o [2004/01/13] docs/61301 doc [patch] Manpage patch for aue(4) to enabl o [2004/01/21] docs/61667 doc Obsolete documentation on FreeBSD PnP o [2004/01/25] docs/61859 doc Incorrect informaiton about trace command o [2004/02/05] docs/62402 doc easily circumventable Blade150 problem o [2004/02/06] docs/62412 doc one of the diskless boot methods describe o [2004/02/12] docs/62719 doc cross-reference pccardd and devd o [2004/02/12] docs/62724 doc host(1) manpage does not include informat o [2004/02/22] docs/63215 doc Wrong prototypes in mi_switch(9) (ref doc o [2004/03/27] docs/64807 doc Handbook section on NAT incomplete o [2004/04/02] docs/65065 doc improper language ntpd man pages o [2004/04/13] docs/65477 doc Installation Instruction fail to mention o [2004/04/14] docs/65530 doc minor improvement to getgrent.3 o [2004/05/04] docs/66264 doc [patch] libexec/rtld/rtld.1 typo fixes no o [2004/05/04] docs/66265 doc [patch] Document what -f and LD_TRACE_LOA o [2004/05/05] docs/66296 doc [patch] contrib/amd/amq/amq.8 uses log_op o [2004/05/07] docs/66343 doc unlisted supported card on man page for w o [2004/05/10] docs/66483 doc [patch] share/man/man4/csa.4 grammar nits o [2004/05/17] docs/66768 doc 4_RELENG share/man/man4/ng_one2many.4 MFC o [2004/05/17] docs/66770 doc [patch] share/man/man4/ng_pppoe.4 tyops, o [2004/05/23] docs/67078 doc [patch] MFC of a rtld(1) man page is inco f [2004/06/10] docs/67806 doc [patch] Let 5.x users know how to boot in o [2004/06/13] docs/67893 doc boot.8's -m description is insufficient. o [2004/06/28] docs/68453 doc [patch] rc.subr.8 o [2004/07/02] docs/68606 doc Porter's Handbook: document how to write o [2004/07/09] docs/68843 doc Dates on rc.subr(8) & rc(8) are whack. o [2004/07/09] docs/68845 doc The .At macro produces unexpected results o [2004/08/01] docs/69861 doc [patch] usr.bin/csplit/csplit.1 does not o [2004/08/09] docs/70217 doc Suggested rewrite of docproj/sgml.sgml o [2004/08/16] docs/70555 doc [patch] changes to freebsd-glossary o [2004/08/20] docs/70697 doc pcm(4) is out of date o [2004/09/10] docs/71555 doc how to run matlab on 5.2 o [2004/09/13] docs/71690 doc [patch] inaccurate information in systat( o [2004/09/16] docs/71782 doc mount_nfs(8) man page is a bit out of dat f [2004/09/21] docs/71980 doc Handbook says that no other software is k o [2004/10/06] docs/72383 doc manpage for awk(1) is terribly small and o [2004/11/06] docs/73583 doc [patch] add missing instructions to ndis( o [2004/11/07] docs/73638 doc ipfw(8): Clarify syntax for use of tables o [2004/11/08] docs/73679 doc FreeBSD 5.3 Release notes mention new nat o [2004/11/28] docs/74477 doc [patch] Correct several links in the cont o [2004/12/02] docs/74612 doc [patch] updates to the glossary o [2004/12/14] docs/75068 doc login.conf(5) manual page says nothing ab o [2004/12/28] docs/75577 doc typos in man3 manual pages, login_class.3 o [2005/01/05] docs/75865 doc comments on "backup-basics" in handbook o [2005/01/09] docs/75995 doc hcreate documentation(?) bug o [2005/01/11] docs/76094 doc Incorrect statement about partition d o [2005/01/17] docs/76333 doc EOF indicator can be cleared by not only o [2005/01/20] docs/76515 doc missleading use of make -j flag in handbo f [2005/02/04] docs/77087 doc The bootvinum script given in the handboo o [2005/02/24] docs/78041 doc docs for md need further explanation of t o [2005/02/27] docs/78138 doc Error in pre-installation section of inst o [2005/03/01] docs/78240 doc Replace with around a # o [2005/03/02] docs/78275 doc Keyword size needs to be changed to lengt o [2005/03/06] docs/78479 doc SO_NOSIGPIPE socket option undocumented o [2005/03/06] docs/78480 doc Networked printer setup unnecessarily com o [2005/03/07] docs/78520 doc error in man(5) lpd.conf, lpd.perms pages o [2005/03/16] docs/78915 doc rfork()'s RFTHREAD is not documented o [2005/03/23] docs/79156 doc buffersize knob for sound(4) is a tunable o [2005/04/18] docs/80070 doc [patch] Wrong dbm_close return value desc o [2005/04/20] docs/80159 doc [patch] rtld(1) mentions "%m" but it's no o [2005/05/11] docs/80871 doc terminfo(5) man page source corrupted o [2005/06/01] docs/81776 doc ifconfig(8) man page not updated with car o [2005/06/10] docs/82114 doc Misisng ndisapi(9) manual page o [2005/06/21] docs/82481 doc tar/gtar man page mod request o [2005/06/22] docs/82508 doc misleading man page for basename/dirname o [2005/06/24] docs/82595 doc 25.5.3 Configuring a bridge section of th o [2005/06/29] docs/82779 doc [patch] Kill entry for ddb manpage o [2005/07/17] docs/83621 doc [patch]: Minor omissions in /usr/src/UPDA o [2005/07/24] docs/84021 doc Missing manpage on RELENG_6 o [2005/07/27] docs/84154 doc Handbook somewhat off in use of /boot/ker o [2005/07/29] docs/84265 doc [patch] chmod(1) manpage omits implicatio o [2005/07/29] docs/84267 doc chflags(1) manual doesn't say it's affect o [2005/07/29] docs/84268 doc chmod(1) manpage's BUGS entry is either w o [2005/07/29] docs/84317 doc fdp-primer doesn't show class=USERNAME di o [2005/07/31] docs/84408 doc dump(8) manpage doesn't require an option o [2005/07/31] docs/84409 doc vinum-object-naming.html -v/-U typo o [2005/08/02] docs/84467 doc bsdlabel(8) manpage uses archaic "pack" i s [2005/08/03] docs/84519 doc [patch] mdoc(7) manpage needs more about o [2005/08/04] docs/84538 doc sk(4) driver supports Marvell 88E800x chi o [2005/08/04] docs/84549 doc [patch] errno(2) manpage uses "<...>" for s [2005/08/04] docs/84550 doc mdoc(7) manpage erroneously requires SYNO o [2005/08/06] docs/84620 doc [patch] xargs(1) manpage has "utility" an o [2005/08/07] docs/84645 doc intro(6) manpage should always be install o [2005/08/07] docs/84646 doc terminfo(5) manpage confuses man program. o [2005/08/08] docs/84670 doc [patch] tput(1) manpage missing ENVIRONME o [2005/08/10] docs/84764 doc [patch] hosts.equiv(5) manpage should SEE o [2005/08/11] docs/84790 doc Error in SYSCALL_MODULE(9) manual page o [2005/08/11] docs/84806 doc mdoc(7) manpage has section ordering prob o [2005/08/12] docs/84849 doc [patch] fdisk(8) manpage doesn't warn fdi o [2005/08/14] docs/84913 doc bsdlabel(8) manpage seems wrong about fsi o [2005/08/15] docs/84955 doc [patch] mdoc(7) manpage should mention mi o [2005/08/15] docs/84956 doc [patch] intro(5) manpage doesn't mention o [2005/08/15] docs/84961 doc [patch] Sync NDIS documentation with real o [2005/08/17] docs/85062 doc tr(1) manpage omits several character cla o [2005/08/17] docs/85063 doc expand(1) manpage needs to clarify -t opt o [2005/08/17] docs/85066 doc [patch] builtin(1) manpage has incomplete o [2005/08/18] docs/85097 doc [patch] devd.conf.5 lacks a lot of vital o [2005/08/18] docs/85100 doc ICH audio device support statement is amb o [2005/08/19] docs/85103 doc sh(1) manpage doesn't contain the word "c o [2005/08/19] docs/85118 doc [PATCH] opiekey(1) references non-existin o [2005/08/19] docs/85127 doc loader(8) manpage uses too-rare "depurati o [2005/08/19] docs/85128 doc loader.conf autoboot_delay incompletly de o [2005/08/21] docs/85186 doc ktrace(1) manpage doesn't warn about need o [2005/08/21] docs/85187 doc find(1) manpage missing block info for -l o [2005/08/21] docs/85194 doc man ssh(1) -o description o [2005/08/22] docs/85209 doc pfsync man page corrections o [2005/08/22] docs/85232 doc [PATCH] instructions on building web site o [2005/08/23] docs/85243 doc Missing icmp related abbreviations for pf o [2005/08/27] docs/85353 doc Very little cosmetic/ponctuation changes o [2005/08/29] docs/85425 doc fido (watchdog) device /dev/fido not docu o [2005/09/11] docs/85986 doc FreeBSD keyword missing if you display se o [2005/09/12] docs/86028 doc [patch] Add Ruby to the list of interpret o [2005/09/13] docs/86044 doc man 8 jail missing crucial mount in start o [2005/09/13] docs/86090 doc [PATCH] clarification of rc.conf(5) manua o [2005/09/19] docs/86342 doc bikeshed entry of Handbook is wrong o [2005/09/29] docs/86733 doc [patch] Add using kldload as an alternati o [2005/10/03] docs/86876 doc Opera is now ad-free for everybody, refle o [2005/10/10] docs/87186 doc Handbook recommends outdated make op. o [2005/10/19] docs/87681 doc [PATCH] correct gettimeofday manpage, doc o [2005/10/20] docs/87698 doc No manual entry for rc.conf.local o [2005/10/20] docs/87725 doc error in documentation o [2005/10/20] docs/87762 doc Fixes various anoncvs examples to work o [2005/10/23] docs/87857 doc ifconfig(8) wireless options order matter o [2005/10/24] docs/87936 doc Chapter on NIS/YP lacks good information o [2005/11/02] docs/88390 doc devctl(4) man page does not list the noti o [2005/11/03] docs/88427 doc Diff (1) error. o [2005/11/03] docs/88429 doc FAQ 10.9. Quotas Improvement o [2005/11/03] docs/88464 doc not enough information in devfs.rules(5) o [2005/11/04] docs/88477 doc Possible addition to xl(4) manpage, Diagn o [2005/11/04] docs/88507 doc [PATCH] Update sockets chapter in develop o [2005/11/05] docs/88512 doc [patch] mount_ext2fs(8) man page has no d o [2005/11/06] docs/88554 doc Correct minor typo in handbook (filename o [2005/11/06] docs/88556 doc Correct FAQ typo and add more specific in 214 problems total. From owner-freebsd-doc@FreeBSD.ORG Tue Nov 8 04:18:54 2005 Return-Path: X-Original-To: freebsd-doc@freebsd.org Delivered-To: freebsd-doc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3905616A41F for ; Tue, 8 Nov 2005 04:18:54 +0000 (GMT) (envelope-from ringworm01@gmail.com) Received: from xproxy.gmail.com (xproxy.gmail.com [66.249.82.198]) by mx1.FreeBSD.org (Postfix) with ESMTP id C54B743D45 for ; Tue, 8 Nov 2005 04:18:53 +0000 (GMT) (envelope-from ringworm01@gmail.com) Received: by xproxy.gmail.com with SMTP id t14so603567wxc for ; Mon, 07 Nov 2005 20:18:53 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:from:to:subject:date:user-agent:mime-version:content-type:content-transfer-encoding:content-disposition:message-id; b=AuiNojdCmcOczr6/ZRUcF0i/kQCbbQb6ZTOb0ak9kDFdiUC6A3ZuzEWRESWvv/1yx55i++K+soVxNmBWTJfVZ6bMb+iddt0bmJy64s5QKyYPjds0pk1+jY7c6U9JHBQjiSfcAHW5pAoLjzsloL5A76C7zaYGrBnKq1KE59zNlaM= Received: by 10.70.83.8 with SMTP id g8mr5861793wxb; Mon, 07 Nov 2005 20:18:53 -0800 (PST) Received: from ?192.168.1.10? ( [71.102.14.129]) by mx.gmail.com with ESMTP id i15sm4727215wxd.2005.11.07.20.18.50; Mon, 07 Nov 2005 20:18:52 -0800 (PST) From: "Michael C. Shultz" To: freebsd-doc@freebsd.org Date: Mon, 7 Nov 2005 20:10:00 -0800 User-Agent: KMail/1.8.3 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200511072010.01539.ringworm01@gmail.com> Subject: portmanager documentaion for reveiw X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Nov 2005 04:18:54 -0000 I'd like to submit the following for inclusion in FreeBSD's handbook. http://portmanager.sunsite.dk/distfiles/4.5.5.1UpgradingPortsWithPortmanager.txt According to http://www.freebsd.org/docproj/submitting.html it should be made available at a ftp site for reveiw prior to submitting a PR so here it is. Please comment. Thanks, -Mike From owner-freebsd-doc@FreeBSD.ORG Tue Nov 8 06:51:31 2005 Return-Path: X-Original-To: freebsd-doc@freebsd.org Delivered-To: freebsd-doc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 433A316A41F for ; Tue, 8 Nov 2005 06:51:31 +0000 (GMT) (envelope-from ringworm01@gmail.com) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id BAB3343D53 for ; Tue, 8 Nov 2005 06:51:29 +0000 (GMT) (envelope-from ringworm01@gmail.com) Received: by wproxy.gmail.com with SMTP id i14so77971wra for ; Mon, 07 Nov 2005 22:51:29 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:from:to:subject:date:user-agent:references:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:message-id; b=NjLB5hh1r9nlR85CaQlE7IcpWd5E/hMXwvSAmi3vMkWhukGBN6dZC2jf4T2Q0Tpwrn4P+JYul53AkUJYNemQXFSiWeIA4F2FHbzYtqbxRkf/fYkE2JjKldvWTIyGMCkrROCW016livSAbjG8EeScXcXhEdVBnES2P91TWgNK0k0= Received: by 10.54.138.7 with SMTP id l7mr375945wrd; Mon, 07 Nov 2005 22:51:29 -0800 (PST) Received: from ?192.168.1.10? ( [71.102.14.129]) by mx.gmail.com with ESMTP id 43sm297675wri.2005.11.07.22.51.28; Mon, 07 Nov 2005 22:51:28 -0800 (PST) From: "Michael C. Shultz" To: freebsd-doc@freebsd.org Date: Mon, 7 Nov 2005 22:42:50 -0800 User-Agent: KMail/1.8.3 References: <200511072010.01539.ringworm01@gmail.com> In-Reply-To: <200511072010.01539.ringworm01@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200511072242.51036.ringworm01@gmail.com> Subject: Re: portmanager documentaion for reveiw X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Nov 2005 06:51:31 -0000 On Monday 07 November 2005 20:10, you wrote: Here is sysutils/porrtmanager documentaion I would like to add to the handbook for reveiw: http://portmanager.sunsite.dk/distfiles/ports-using.html the entire sgml file: http://portmanager.sunsite.dk/distfiles/chapter.sgml-portmanager http://portmanager.sunsite.dk/distfiles/chapter.sgml-portmanager.diff Please comment, thank you. -Mike From owner-freebsd-doc@FreeBSD.ORG Tue Nov 8 07:20:16 2005 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5FE8916A41F for ; Tue, 8 Nov 2005 07:20:16 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9682343D48 for ; Tue, 8 Nov 2005 07:20:15 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id jA87KFFY036048 for ; Tue, 8 Nov 2005 07:20:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id jA87KF5s036047; Tue, 8 Nov 2005 07:20:15 GMT (envelope-from gnats) Resent-Date: Tue, 8 Nov 2005 07:20:15 GMT Resent-Message-Id: <200511080720.jA87KF5s036047@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Michael C. Shultz" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8503A16A41F for ; Tue, 8 Nov 2005 07:17:39 +0000 (GMT) (envelope-from ringworm01@gmail.com) Received: from vms040pub.verizon.net (vms040pub.verizon.net [206.46.252.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E43843D46 for ; Tue, 8 Nov 2005 07:17:39 +0000 (GMT) (envelope-from ringworm01@gmail.com) Received: from ringworm.mechee.com ([71.102.14.129]) by vms040.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0IPM00IKZK9DICT2@vms040.mailsrvcs.net> for FreeBSD-gnats-submit@freebsd.org; Tue, 08 Nov 2005 01:17:38 -0600 (CST) Received: by ringworm.mechee.com (Postfix, from userid 1001) id C4823130C23; Mon, 07 Nov 2005 23:09:01 -0800 (PST) Message-Id: <20051108070901.C4823130C23@ringworm.mechee.com> Date: Mon, 07 Nov 2005 23:09:01 -0800 (PST) From: "Michael C. Shultz" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: docs/88646: sysutils/portmanager documentaion for handbook "Using ports" X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Michael C. Shultz" List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Nov 2005 07:20:16 -0000 >Number: 88646 >Category: docs >Synopsis: sysutils/portmanager documentaion for handbook "Using ports" >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Nov 08 07:20:15 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Michael C. Shultz >Release: FreeBSD 5.4-STABLE i386 >Organization: >Environment: System: FreeBSD ringworm.mechee.com 5.4-STABLE FreeBSD 5.4-STABLE #0: Fri Nov 4 06:35:37 PST 2005 root@ringworm.mechee.com:/usr5/obj/usr5/src/sys/RINGWORM5 i386 >Description: sysutils/portmanager documentaion for handbook 4.5 Using the Ports Collection This documentation is submitted as an alternative way of keeping ports up to date with sysutils/portmanager >How-To-Repeat: N/A >Fix: --- chapter.sgml-portmanager.diff begins here --- --- ports/chapter.sgml Mon Oct 3 11:58:36 2005 +++ ports/chapter.sgml-portmanager Mon Nov 7 22:22:04 2005 @@ -1160,9 +1160,6 @@ Upgrading Ports - portupgrade - - ports upgrading @@ -1174,6 +1171,13 @@ encounter and need to perform when updating a port. + + portupgrade + + portupgrade + + + Keeping your ports up to date can be a tedious job. For instance, to upgrade a port you would go to the ports directory, build the port, deinstall the old port, install the @@ -1233,6 +1237,32 @@ Other utilities exist which will do this, check out the ports/sysutils directory and see what you come up with. + + + portmanager + portmanager + portsupgrading + After updating your ports tree installed ports may easily be + brought up to date with sysutils/portmanager. + Installation and setup from the standard ports tree location is simple: + &prompt.root; cd /usr/ports/sysutils/portmanager + &prompt.root; make install clean + Once installed the only command needed to update all installed ports is: + &prompt.root; portmanager -u + Portmanager can also add new ports to your installed software + collection, when used to install ports it will correctly update + or add any dependencies prior to building and installing the new + port. example: + &prompt.root; portmanager x11/gnome2 + will first insure all dependencies of x11/gnome2 are installed and up to date, + then x11/gnome2 will be installed. + Fixing a problem port when it is dependency related is easy, example: + &prompt.root; portmanager sysutils/problemPort -f + all of sysutils/problemPort's dependencies will be rebuilt in a logical order + then rebuilding of sysutils/problemPort is attempted. + For further information see man portmanager(1) + --- chapter.sgml-portmanager.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Tue Nov 8 12:13:13 2005 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EDC0916A41F; Tue, 8 Nov 2005 12:13:13 +0000 (GMT) (envelope-from jcamou@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 04C9D43D66; Tue, 8 Nov 2005 12:13:08 +0000 (GMT) (envelope-from jcamou@FreeBSD.org) Received: from freefall.freebsd.org (jcamou@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id jA8CD8cT008400; Tue, 8 Nov 2005 12:13:08 GMT (envelope-from jcamou@freefall.freebsd.org) Received: (from jcamou@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id jA8CD8H8008396; Tue, 8 Nov 2005 12:13:08 GMT (envelope-from jcamou) Date: Tue, 8 Nov 2005 12:13:08 GMT From: "Jesus R. Camou" Message-Id: <200511081213.jA8CD8H8008396@freefall.freebsd.org> To: jcamou@FreeBSD.org, freebsd-doc@FreeBSD.org, jcamou@FreeBSD.org Cc: Subject: Re: docs/86028: [patch] Add Ruby to the list of interpreters available with FreeBSD X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Nov 2005 12:13:14 -0000 Synopsis: [patch] Add Ruby to the list of interpreters available with FreeBSD Responsible-Changed-From-To: freebsd-doc->jcamou Responsible-Changed-By: jcamou Responsible-Changed-When: Tue Nov 8 12:12:47 GMT 2005 Responsible-Changed-Why: Over to me. http://www.freebsd.org/cgi/query-pr.cgi?pr=86028 From owner-freebsd-doc@FreeBSD.ORG Tue Nov 8 12:31:20 2005 Return-Path: X-Original-To: freebsd-doc@FreeBSD.org Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6438416A41F for ; Tue, 8 Nov 2005 12:31:20 +0000 (GMT) (envelope-from slipaway172@gmail.com) Received: from xproxy.gmail.com (xproxy.gmail.com [66.249.82.198]) by mx1.FreeBSD.org (Postfix) with ESMTP id C982343D49 for ; Tue, 8 Nov 2005 12:31:19 +0000 (GMT) (envelope-from slipaway172@gmail.com) Received: by xproxy.gmail.com with SMTP id s9so630325wxc for ; Tue, 08 Nov 2005 04:31:19 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type; b=crCfGa4EAdbrvOFeDAkH2qNgJBrKHtpucJIi0wAMiuUaP1VdA8TRBU7nM2HiUAOVXWvZVG4NbBdinoYQcflzVXLh3Z8cd5DGJfiGhNM4lIU0Eb6Vy+DJ5UoQz4O1DfzYDV6l0UhYWBELzlG9JDqr7409hweuHi7L6zTxNPLTbHc= Received: by 10.70.100.20 with SMTP id x20mr5493832wxb; Tue, 08 Nov 2005 04:31:19 -0800 (PST) Received: by 10.70.103.8 with HTTP; Tue, 8 Nov 2005 04:31:19 -0800 (PST) Message-ID: <10f4ec4f0511080431h7078e3d4oae20a40eeb205d67@mail.gmail.com> Date: Tue, 8 Nov 2005 07:31:19 -0500 From: Slip Away172 To: freebsd-doc@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: documentation X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Nov 2005 12:31:20 -0000 i would like to know if there is a place that i can get a .zip or book to download or buy so i can read about bsd on the go or when trying to fix my computer. thankyou, paul From owner-freebsd-doc@FreeBSD.ORG Tue Nov 8 18:46:28 2005 Return-Path: X-Original-To: freebsd-doc@freebsd.org Delivered-To: freebsd-doc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C3E3B16A41F; Tue, 8 Nov 2005 18:46:28 +0000 (GMT) (envelope-from max@love2party.net) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.186]) by mx1.FreeBSD.org (Postfix) with ESMTP id C205743D48; Tue, 8 Nov 2005 18:46:23 +0000 (GMT) (envelope-from max@love2party.net) Received: from p54A3E050.dip.t-dialin.net [84.163.224.80] (helo=donor.laier.local) by mrelayeu.kundenserver.de (node=mrelayeu1) with ESMTP (Nemesis), id 0MKwpI-1EZYU91ree-0002U6; Tue, 08 Nov 2005 19:46:21 +0100 From: Max Laier To: Marko Cuk Date: Tue, 8 Nov 2005 19:45:59 +0100 User-Agent: KMail/1.8.2 References: <436FDC90.3020108@cuk.nu> <4370AA76.8000309@cuk.nu> <20051108171544.GI37350@green.homeunix.org> In-Reply-To: <20051108171544.GI37350@green.homeunix.org> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart2460443.PiCAeWLt4t"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200511081946.19860.max@love2party.net> X-Provags-ID: kundenserver.de abuse@kundenserver.de login:61c499deaeeba3ba5be80f48ecc83056 Cc: Brian Fundakowski Feldman , freebsd-doc@freebsd.org, freebsd-pf@freebsd.org Subject: Re: Tun and ALTQ X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Nov 2005 18:46:29 -0000 --nextPart2460443.PiCAeWLt4t Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Tuesday 08 November 2005 18:15, Brian Fundakowski Feldman wrote: > On Tue, Nov 08, 2005 at 02:39:02PM +0100, Marko Cuk wrote: > > It seems that it work. Thanks. > > > > Damn, for vlan's ( 802.1Q) you should specify "em", for "tun", vice > > versa... what a mess, hehe. > > No prob; I don't see why using the em(4) backing the tun(4) wouldn't > work for ALTQ _IF_ you actually tagged the (PPPoE?) traffic on em(4). > I think that might be really hard, though, so for ALTQ you should > probably just specify the "logical" interface that you intend to > limit (that would be the IP tun(4) rather than the PPPoE em(4)). The problem with tun(4) in contrast to vlan(4) is that in some cases the=20 packet has to go through userland (i.e. userland PPPoE). During this detou= r=20 the packet loses the ALTQ mbuf_tag and thus can no longer be stuck into the= =20 right queue. That is why there is ALTQ support on tun(4) eventhough it=20 doesn't make that much sense to introduce "unnatural" queueing in the pseud= o=20 interface. For vlan(4) there is no such problem (VLANs are handled in the= =20 kernel all the way) so it's easy to stick the ALTQ tags on the packet and=20 queue on the hardware interface underneath. > Do you have suggestion on what would be good text to go into pf.conf(5) > so that this particular case is documented? [-> doc@, maybe somebody is interested/creative? ] =2D-=20 /"\ Best regards, | mlaier@freebsd.org \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | mlaier@EFnet / \ ASCII Ribbon Campaign | Against HTML Mail and News --nextPart2460443.PiCAeWLt4t Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQBDcPJ7XyyEoT62BG0RAi1GAJ9aJ9EPEA9c/7xy48qC9zcp/JRQoACeJhMP 2bPguV7gqyhXE95EWNLwp3w= =PCrd -----END PGP SIGNATURE----- --nextPart2460443.PiCAeWLt4t-- From owner-freebsd-doc@FreeBSD.ORG Tue Nov 8 19:10:25 2005 Return-Path: X-Original-To: doc@freebsd.org Delivered-To: freebsd-doc@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A8B9A16A429 for ; Tue, 8 Nov 2005 19:10:25 +0000 (GMT) (envelope-from mail@mail.cdfreaks.com) Received: from mail.cdfreaks.com (backup.cdfreaks.com [217.67.240.51]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0713B43D49 for ; Tue, 8 Nov 2005 19:10:24 +0000 (GMT) (envelope-from mail@mail.cdfreaks.com) Received: (from mail@localhost) by mail.cdfreaks.com (8.11.6/8.11.6) id jA8JANa32577; Tue, 8 Nov 2005 20:10:23 +0100 Date: Tue, 8 Nov 2005 20:10:23 +0100 Message-Id: <200511081910.jA8JANa32577@mail.cdfreaks.com> X-Webmin-Autoreply: 1 X-Originally-To: helpdesk@cdfreaks.com To: doc@freebsd.org From: helpdesk@cdfreaks.com Cc: Subject: Autoreply to Re: Error X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Nov 2005 19:10:25 -0000 ======================================================== This is an automated response to your mail CD Freaks Forum Helpdesk - helpdesk@cdfreaks.com http://club.cdfreaks.com ======================================================== Dear visitor, Thank you for contacting us. Due to the amount of questions we cannot answer all your questions personally. This automated response however contains important information that should help you answering your questions. Please read it carefully! We receive many questions about registration issues. See below for possible problems and solutions. 1) Before you post you will need to activate your account. Your account can only be activated by clicking on a link that you will receive by e-mail If you didn't enter a valid e-mail address during the registration process, then please try again using a valid e-mail address and a different nickname. You can change your nickname if needed by sending a private message (PM) to a CD Freaks administrator/moderator, they'll be happy to assist you. If you haven't received the email you can have it resend it to you. If still doesn't work then check your spam filters or hotmail bulkmail inbox 2) Make sure you accept cookies from our site (*.cdfreaks.com). If you are accepting these, are registered and still are unable to post, then please delete your cookies (if you don't know how to do this, please use a search engine to learn more). 3) If you have lost your password you can use this form: http://club.cdfreaks.com/member.php?s=&action=lostpw By using this forum your password will be reset to a new one, and mailed to you. We can not retrieve your password, as they are stored encrypted. 4) If you have a question regarding software hardware you have used the wrong e-mail address CD Freaks provides no technical support by e-mail. Instead use our search: http://club.cdfreaks.com/search.php With this tool you should find answer to your question. If not, then register and post your question in the appropiate forum and other members will help you. 5) Questions regarding our shop should be send using the form on the following internet address: http://shop.cdfreaks.com/mailform.php 6) If you still have problems then please contact our second line support at helpdesk2@cdfreaks.com Please include your entire question and any previous communications, your username and the email address you would like the answer to be send but make sure you have read this entire e-mail before contacting us. A response might take up to one week. If you have not received an activation mail and would like to post earlier then please try using a different email provider. Be sure to read the rules before you post and contact any of our administrators/moderators by PM (private message) in case of any problems when you are registered! Thanks for your interest in our site and we hope you will have a pleasant stay! Kind regards, CD Freaks.com Management ======================================================== --- This is an automated response to your mail --- ======================================================== From owner-freebsd-doc@FreeBSD.ORG Tue Nov 8 19:23:10 2005 Return-Path: X-Original-To: freebsd-doc@FreeBSD.org Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B9BD816A41F; Tue, 8 Nov 2005 19:23:10 +0000 (GMT) (envelope-from trhodes@FreeBSD.org) Received: from pittgoth.com (ns1.pittgoth.com [216.38.206.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4ED2C43D48; Tue, 8 Nov 2005 19:23:10 +0000 (GMT) (envelope-from trhodes@FreeBSD.org) Received: from localhost (ip68-105-180-11.dc.dc.cox.net [68.105.180.11]) (authenticated bits=0) by pittgoth.com (8.13.4/8.13.4) with ESMTP id jA8JbFub073162 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Tue, 8 Nov 2005 14:37:15 -0500 (EST) (envelope-from trhodes@FreeBSD.org) Date: Tue, 8 Nov 2005 14:22:48 -0500 From: Tom Rhodes To: Max Laier Message-Id: <20051108142248.5745d091.trhodes@FreeBSD.org> In-Reply-To: <200511081946.19860.max@love2party.net> References: <436FDC90.3020108@cuk.nu> <4370AA76.8000309@cuk.nu> <20051108171544.GI37350@green.homeunix.org> <200511081946.19860.max@love2party.net> X-Mailer: Sylpheed version 1.0.5 (GTK+ 1.2.10; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: green@FreeBSD.org, freebsd-doc@FreeBSD.org, cuk@cuk.nu, freebsd-pf@FreeBSD.org Subject: Re: Tun and ALTQ X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Nov 2005 19:23:10 -0000 On Tue, 8 Nov 2005 19:45:59 +0100 Max Laier wrote: > On Tuesday 08 November 2005 18:15, Brian Fundakowski Feldman wrote: > > On Tue, Nov 08, 2005 at 02:39:02PM +0100, Marko Cuk wrote: > > > It seems that it work. Thanks. > > > > > > Damn, for vlan's ( 802.1Q) you should specify "em", for "tun", vice > > > versa... what a mess, hehe. > > > > No prob; I don't see why using the em(4) backing the tun(4) wouldn't > > work for ALTQ _IF_ you actually tagged the (PPPoE?) traffic on em(4). > > I think that might be really hard, though, so for ALTQ you should > > probably just specify the "logical" interface that you intend to > > limit (that would be the IP tun(4) rather than the PPPoE em(4)). > > The problem with tun(4) in contrast to vlan(4) is that in some cases the > packet has to go through userland (i.e. userland PPPoE). During this detour > the packet loses the ALTQ mbuf_tag and thus can no longer be stuck into the > right queue. That is why there is ALTQ support on tun(4) eventhough it > doesn't make that much sense to introduce "unnatural" queueing in the pseudo > interface. For vlan(4) there is no such problem (VLANs are handled in the > kernel all the way) so it's easy to stick the ALTQ tags on the packet and > queue on the hardware interface underneath. > > > Do you have suggestion on what would be good text to go into pf.conf(5) > > so that this particular case is documented? > > [-> doc@, maybe somebody is interested/creative? ] I'll work with Max on this. -- Tom Rhodes From owner-freebsd-doc@FreeBSD.ORG Tue Nov 8 20:00:32 2005 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 65D0516A41F for ; Tue, 8 Nov 2005 20:00:32 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E641F43D46 for ; Tue, 8 Nov 2005 20:00:31 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id jA8K0Vfm084851 for ; Tue, 8 Nov 2005 20:00:31 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id jA8K0V7E084843; Tue, 8 Nov 2005 20:00:31 GMT (envelope-from gnats) Resent-Date: Tue, 8 Nov 2005 20:00:31 GMT Resent-Message-Id: <200511082000.jA8K0V7E084843@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Alex Kelly Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 38A5116A453 for ; Tue, 8 Nov 2005 19:54:31 +0000 (GMT) (envelope-from root@siteinit.com) Received: from siteinit.com (mail.siteinit.com [69.46.26.62]) by mx1.FreeBSD.org (Postfix) with ESMTP id C264243D46 for ; Tue, 8 Nov 2005 19:54:30 +0000 (GMT) (envelope-from root@siteinit.com) Received: from root by siteinit.com with local (Exim 4.50) id 1EZZXb-00048q-PE for FreeBSD-gnats-submit@freebsd.org; Tue, 08 Nov 2005 14:53:59 -0500 Message-Id: Date: Tue, 08 Nov 2005 14:53:59 -0500 From: Alex Kelly To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: docs/88686: [PATCH] FAQ 5.21 - Slow SSH / Telnet X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Alex Kelly List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Nov 2005 20:00:32 -0000 >Number: 88686 >Category: docs >Synopsis: [PATCH] FAQ 5.21 - Slow SSH / Telnet >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Tue Nov 08 20:00:31 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Alex Kelly >Release: FreeBSD 5.4-RELEASE i386 >Organization: >Environment: System: FreeBSD siteinit.com 5.4-RELEASE FreeBSD 5.4-RELEASE #0: Thu Sep 15 02:03:15 EDT 2005 root@siteinit.com:/usr/src/sys/i386/compile/MYKERNEL i386 >Description: Two more solutions on how to fix slow SSH and telnet could be added. >How-To-Repeat: N/A >Fix: --- book.sgml.old Tue Nov 8 14:29:41 2005 +++ book.sgml Tue Nov 8 14:29:48 2005 @@ -3719,6 +3719,15 @@ correctly. To check, try to look up another host--say, www.yahoo.com. If it does not work, that is your problem. + + Following a fresh install of FreeBSD, it is also possible that domain + and nameserver information is missing from resolv.conf. This will + often cause a delay in SSH, as the option "UseDNS" is set to "yes" + by default in the sshd_config file in the /etc/ssh/ folder. If this + is causing the problem, you will either need to fill in the missing + information in resolv.conf or set "UseDNS" to "no" in sshd_config as + a temporary workaround. + >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Tue Nov 8 21:45:28 2005 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BF4C916A421; Tue, 8 Nov 2005 21:45:28 +0000 (GMT) (envelope-from jcamou@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5246D43D73; Tue, 8 Nov 2005 21:45:28 +0000 (GMT) (envelope-from jcamou@FreeBSD.org) Received: from freefall.freebsd.org (jcamou@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id jA8LjSRL002473; Tue, 8 Nov 2005 21:45:28 GMT (envelope-from jcamou@freefall.freebsd.org) Received: (from jcamou@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id jA8LjSlo002469; Tue, 8 Nov 2005 21:45:28 GMT (envelope-from jcamou) Date: Tue, 8 Nov 2005 21:45:28 GMT From: "Jesus R. Camou" Message-Id: <200511082145.jA8LjSlo002469@freefall.freebsd.org> To: kruptos@mlinux.org, jcamou@FreeBSD.org, freebsd-doc@FreeBSD.org, jcamou@FreeBSD.org Cc: Subject: Re: docs/88554: Correct minor typo in handbook (filename error) X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Nov 2005 21:45:28 -0000 Synopsis: Correct minor typo in handbook (filename error) State-Changed-From-To: open->closed State-Changed-By: jcamou State-Changed-When: Tue Nov 8 21:44:12 GMT 2005 State-Changed-Why: Patch committed, thanks. Responsible-Changed-From-To: freebsd-doc->jcamou Responsible-Changed-By: jcamou Responsible-Changed-When: Tue Nov 8 21:44:12 GMT 2005 Responsible-Changed-Why: Grab it. http://www.freebsd.org/cgi/query-pr.cgi?pr=88554 From owner-freebsd-doc@FreeBSD.ORG Tue Nov 8 22:01:59 2005 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A396616A420; Tue, 8 Nov 2005 22:01:59 +0000 (GMT) (envelope-from jcamou@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 340C643D45; Tue, 8 Nov 2005 22:01:59 +0000 (GMT) (envelope-from jcamou@FreeBSD.org) Received: from freefall.freebsd.org (jcamou@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id jA8M1xG6003339; Tue, 8 Nov 2005 22:01:59 GMT (envelope-from jcamou@freefall.freebsd.org) Received: (from jcamou@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id jA8M1xQE003335; Tue, 8 Nov 2005 22:01:59 GMT (envelope-from jcamou) Date: Tue, 8 Nov 2005 22:01:59 GMT From: "Jesus R. Camou" Message-Id: <200511082201.jA8M1xQE003335@freefall.freebsd.org> To: kruptos@mlinux.org, jcamou@FreeBSD.org, freebsd-doc@FreeBSD.org, jcamou@FreeBSD.org Cc: Subject: Re: docs/88556: Correct FAQ typo and add more specific information regarding Xorg X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Nov 2005 22:01:59 -0000 Synopsis: Correct FAQ typo and add more specific information regarding Xorg State-Changed-From-To: open->closed State-Changed-By: jcamou State-Changed-When: Tue Nov 8 21:59:11 GMT 2005 State-Changed-Why: A slightly different version of the patch has been committed along with other changes. Thanks for the submittion. Responsible-Changed-From-To: freebsd-doc->jcamou Responsible-Changed-By: jcamou Responsible-Changed-When: Tue Nov 8 21:59:11 GMT 2005 Responsible-Changed-Why: Take this pr. http://www.freebsd.org/cgi/query-pr.cgi?pr=88556 From owner-freebsd-doc@FreeBSD.ORG Wed Nov 9 02:32:49 2005 Return-Path: X-Original-To: doc@freebsd.org Delivered-To: freebsd-doc@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1AEBF16A41F for ; Wed, 9 Nov 2005 02:32:49 +0000 (GMT) (envelope-from lars@bsd-geek.de) Received: from mail.0x20.net (mail.0x20.net [217.69.67.217]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9152443D46 for ; Wed, 9 Nov 2005 02:32:48 +0000 (GMT) (envelope-from lars@bsd-geek.de) Received: from krusty.bsd-geek.de (dslb-084-063-010-065.pools.arcor-ip.net [84.63.10.65]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.0x20.net (Postfix) with ESMTP id 9E47033C1A for ; Wed, 9 Nov 2005 03:32:46 +0100 (CET) Received: from krusty.bsd-geek.de (krusty.bsd-geek.de [127.0.0.1]) by krusty.bsd-geek.de (8.13.4/8.13.4) with ESMTP id jA92WjwA003742 for ; Wed, 9 Nov 2005 03:32:45 +0100 (CET) (envelope-from lars@krusty.bsd-geek.de) Received: (from lars@localhost) by krusty.bsd-geek.de (8.13.4/8.13.4/Submit) id jA92Wjtq003741 for doc@freebsd.org; Wed, 9 Nov 2005 03:32:45 +0100 (CET) (envelope-from lars) Date: Wed, 9 Nov 2005 03:32:44 +0100 From: Lars Engels To: doc@freebsd.org Message-ID: <20051109023244.GA3610@krusty.bsd-geek.de> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline User-Agent: Mutt/1.5.11 Cc: Subject: NOPROFILE in make.conf X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Nov 2005 02:32:49 -0000 Hi Doc Team! In doc/en_US.ISO8859-1/books/handbook/makeworld.html NOPROFILE should be replaced with NO_PROFILE as the former is deprecated and produces a lots of warning messages when you compile the kernel with it. Regards Lars Engels From owner-freebsd-doc@FreeBSD.ORG Wed Nov 9 03:31:58 2005 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6252916A420; Wed, 9 Nov 2005 03:31:58 +0000 (GMT) (envelope-from jcamou@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 82AC643D58; Wed, 9 Nov 2005 03:31:57 +0000 (GMT) (envelope-from jcamou@FreeBSD.org) Received: from freefall.freebsd.org (jcamou@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id jA93Vvrw054605; Wed, 9 Nov 2005 03:31:57 GMT (envelope-from jcamou@freefall.freebsd.org) Received: (from jcamou@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id jA93VvWT054601; Wed, 9 Nov 2005 03:31:57 GMT (envelope-from jcamou) Date: Wed, 9 Nov 2005 03:31:57 GMT From: "Jesus R. Camou" Message-Id: <200511090331.jA93VvWT054601@freefall.freebsd.org> To: lulf@kerneled.org, jcamou@FreeBSD.org, freebsd-doc@FreeBSD.org, jcamou@FreeBSD.org Cc: Subject: Re: docs/88507: [PATCH] Update sockets chapter in developers handbook X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Nov 2005 03:31:58 -0000 Synopsis: [PATCH] Update sockets chapter in developers handbook State-Changed-From-To: open->closed State-Changed-By: jcamou State-Changed-When: Wed Nov 9 03:31:19 GMT 2005 State-Changed-Why: Patch committed, thanks! Responsible-Changed-From-To: freebsd-doc->jcamou Responsible-Changed-By: jcamou Responsible-Changed-When: Wed Nov 9 03:31:19 GMT 2005 Responsible-Changed-Why: Take this pr. http://www.freebsd.org/cgi/query-pr.cgi?pr=88507 From owner-freebsd-doc@FreeBSD.ORG Wed Nov 9 06:19:28 2005 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E21C716A420; Wed, 9 Nov 2005 06:19:28 +0000 (GMT) (envelope-from jcamou@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9828F43D48; Wed, 9 Nov 2005 06:19:28 +0000 (GMT) (envelope-from jcamou@FreeBSD.org) Received: from freefall.freebsd.org (jcamou@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id jA96JSoH080701; Wed, 9 Nov 2005 06:19:28 GMT (envelope-from jcamou@freefall.freebsd.org) Received: (from jcamou@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id jA96JSkH080697; Wed, 9 Nov 2005 06:19:28 GMT (envelope-from jcamou) Date: Wed, 9 Nov 2005 06:19:28 GMT From: "Jesus R. Camou" Message-Id: <200511090619.jA96JSkH080697@freefall.freebsd.org> To: aekelly@gmail.com, jcamou@FreeBSD.org, freebsd-doc@FreeBSD.org, jcamou@FreeBSD.org Cc: Subject: Re: docs/88686: [PATCH] FAQ 5.21 - Slow SSH / Telnet X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Nov 2005 06:19:29 -0000 Synopsis: [PATCH] FAQ 5.21 - Slow SSH / Telnet State-Changed-From-To: open->closed State-Changed-By: jcamou State-Changed-When: Wed Nov 9 06:16:48 GMT 2005 State-Changed-Why: I committed a different version of the patch. Though, same paragraph added. Patch on PR missed some tags. Thanks for the submission. Responsible-Changed-From-To: freebsd-doc->jcamou Responsible-Changed-By: jcamou Responsible-Changed-When: Wed Nov 9 06:16:48 GMT 2005 Responsible-Changed-Why: Over to me. http://www.freebsd.org/cgi/query-pr.cgi?pr=88686 From owner-freebsd-doc@FreeBSD.ORG Wed Nov 9 10:47:19 2005 Return-Path: X-Original-To: freebsd-doc@FreeBSD.org Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4801016A41F for ; Wed, 9 Nov 2005 10:47:19 +0000 (GMT) (envelope-from info@tiendasconexion.com) Received: from lgtelefonia.com (178.Red-80-24-111.staticIP.rima-tde.net [80.24.111.178]) by mx1.FreeBSD.org (Postfix) with ESMTP id 810BB43D48 for ; Wed, 9 Nov 2005 10:47:17 +0000 (GMT) (envelope-from info@tiendasconexion.com) Received: from [192.168.1.91] ([192.168.1.91]) by lgtelefonia.com (8.13.1/8.13.1) with ESMTP id jA9Aixca084578 for ; Wed, 9 Nov 2005 11:45:00 +0100 (CET) (envelope-from info@tiendasconexion.com) Message-ID: <4371D3B3.1020707@tiendasconexion.com> Date: Wed, 09 Nov 2005 11:47:15 +0100 From: =?ISO-8859-1?Q?Info_TiendasConexi=F3n?= User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: es-es, es To: freebsd-doc@FreeBSD.org Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.51 on 192.168.1.102 MIME-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: freebsd home page suggestion X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Nov 2005 10:47:19 -0000 Just one suggestion, if you point your browser to [1]http://www.freebsd.org/manual/ it appears the Apache Manual Page. You should remove the "manual" alias in your httpd.conf file. It happened to my enterprise server today, and I checked what other sites had this "fault". Surprised my beloved FreeBSD home page has it too. I don't know whether it can be a security issue. In any case, I think it's better if corrected. Cheers. References 1. http://www.freebsd.org/manual/ From owner-freebsd-doc@FreeBSD.ORG Wed Nov 9 12:23:33 2005 Return-Path: X-Original-To: freebsd-doc@freebsd.org Delivered-To: freebsd-doc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1012B16A420; Wed, 9 Nov 2005 12:23:33 +0000 (GMT) (envelope-from cuk@cuk.nu) Received: from jedi.netinet.si (jedi.netinet.si [213.143.65.250]) by mx1.FreeBSD.org (Postfix) with ESMTP id 20D4643D45; Wed, 9 Nov 2005 12:23:21 +0000 (GMT) (envelope-from cuk@cuk.nu) Received: from localhost (localhost [127.0.0.1]) by jedi.netinet.si (Postfix) with ESMTP id 45A96125493; Wed, 9 Nov 2005 02:43:12 +0100 (CET) Received: from jedi.netinet.si ([127.0.0.1]) by localhost (jedi.netinet.si [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 62363-09; Wed, 9 Nov 2005 02:43:11 +0100 (CET) Received: from [192.168.6.60] (tm.213.143.78.60.lc.telemach.net [213.143.78.60]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by jedi.netinet.si (Postfix) with ESMTP id 9CFB4125461; Wed, 9 Nov 2005 02:43:11 +0100 (CET) Message-ID: <43715469.9030505@cuk.nu> Date: Wed, 09 Nov 2005 02:44:09 +0100 From: Marko Cuk Organization: NetInet User-Agent: Mozilla Thunderbird 1.0.7 (Windows/20050923) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Max Laier References: <436FDC90.3020108@cuk.nu> <4370AA76.8000309@cuk.nu> <20051108171544.GI37350@green.homeunix.org> <200511081946.19860.max@love2party.net> In-Reply-To: <200511081946.19860.max@love2party.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: amavisd-new at NetInet.si Cc: Brian Fundakowski Feldman , freebsd-doc@freebsd.org, freebsd-pf@freebsd.org Subject: Re: Tun and ALTQ X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Nov 2005 12:23:33 -0000 Max, tnx for explanation and others to help. Second thing is route-to routing capability of pf. I have one dual homed firewall and the configuration is very complicated, because I must have two NAT's ( certain subnets through one ISP, certain through another ) , routing, filtering, ALTQ, ... The firewall has one default route and that NAT, which is on default route, works ok. The problem is NAT on another ISP, which works, but the packet ( translated from RFC1918 to public IP ) is sent through DEFAULT route instead on the ISP2's default gateway ( next hop ). I have solved it like that: em0 is default ISP and has default route, em1 is ISP2 pass out on em0 route-to (em1 x.x.x.1.) from x.x.x.2 to any but still it won't "catch" all packets and tcpdumping em0 show me, that on em0 i get outgoing x.x.x.2 IP's ... The reply comes on em1 , that's ok. I have managed it with ipf, like that: pass out quick on em0 to em1:x.x.x.1 from x.x.x.2 to any but I still don't like to have 2 packet filters on host... Does anyone have a clue for that ? I can't catch the packet on internal interface, because there is RFC1918 IP ( 192.168.x.x ) and if I route-to it, it will "bypass" NAT and that not ok :) . If I do NAT and catch it on outer interface, there are some packets "leaking" through on default route. Anyone with that setup here ? Bye, Marko Max Laier wrote: >On Tuesday 08 November 2005 18:15, Brian Fundakowski Feldman wrote: > > >>On Tue, Nov 08, 2005 at 02:39:02PM +0100, Marko Cuk wrote: >> >> >>>It seems that it work. Thanks. >>> >>>Damn, for vlan's ( 802.1Q) you should specify "em", for "tun", vice >>>versa... what a mess, hehe. >>> >>> >>No prob; I don't see why using the em(4) backing the tun(4) wouldn't >>work for ALTQ _IF_ you actually tagged the (PPPoE?) traffic on em(4). >>I think that might be really hard, though, so for ALTQ you should >>probably just specify the "logical" interface that you intend to >>limit (that would be the IP tun(4) rather than the PPPoE em(4)). >> >> > >The problem with tun(4) in contrast to vlan(4) is that in some cases the >packet has to go through userland (i.e. userland PPPoE). During this detour >the packet loses the ALTQ mbuf_tag and thus can no longer be stuck into the >right queue. That is why there is ALTQ support on tun(4) eventhough it >doesn't make that much sense to introduce "unnatural" queueing in the pseudo >interface. For vlan(4) there is no such problem (VLANs are handled in the >kernel all the way) so it's easy to stick the ALTQ tags on the packet and >queue on the hardware interface underneath. > > > >>Do you have suggestion on what would be good text to go into pf.conf(5) >>so that this particular case is documented? >> >> > >[-> doc@, maybe somebody is interested/creative? ] > > > -- NetInet d.o.o. http://www.NetInet.si Private: http://cuk.nu MountainBikeSlovenia team: http://mtb.si Slovenian FreeBSD mirror admin http://www2.si.freebsd.org From owner-freebsd-doc@FreeBSD.ORG Wed Nov 9 15:20:24 2005 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 33ECC16A41F for ; Wed, 9 Nov 2005 15:20:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE8AA43D46 for ; Wed, 9 Nov 2005 15:20:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id jA9FKNWp072763 for ; Wed, 9 Nov 2005 15:20:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id jA9FKNtL072762; Wed, 9 Nov 2005 15:20:23 GMT (envelope-from gnats) Date: Wed, 9 Nov 2005 15:20:23 GMT Message-Id: <200511091520.jA9FKNtL072762@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org From: "Michael C. Shultz" Cc: Subject: Re: docs/88646: sysutils/portmanager documentaion for handbook "Using ports" X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Michael C. Shultz" List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Nov 2005 15:20:24 -0000 The following reply was made to PR docs/88646; it has been noted by GNATS. From: "Michael C. Shultz" To: bug-followup@freebsd.org, ringworm01@gmail.com Cc: Subject: Re: docs/88646: sysutils/portmanager documentaion for handbook "Using ports" Date: Wed, 9 Nov 2005 07:10:10 -0800 Here are links to the html page and full sgml source: http://portmanager.sunsite.dk/distfiles/ports-using.html http://portmanager.sunsite.dk/distfiles/chapter.sgml-portmanager -Mike From owner-freebsd-doc@FreeBSD.ORG Wed Nov 9 19:45:50 2005 Return-Path: X-Original-To: freebsd-doc@freebsd.org Delivered-To: freebsd-doc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 22FB216A421 for ; Wed, 9 Nov 2005 19:45:50 +0000 (GMT) (envelope-from lgusenet@be-well.ilk.org) Received: from mail22.sea5.speakeasy.net (mail22.sea5.speakeasy.net [69.17.117.24]) by mx1.FreeBSD.org (Postfix) with ESMTP id C225243D46 for ; Wed, 9 Nov 2005 19:45:48 +0000 (GMT) (envelope-from lgusenet@be-well.ilk.org) Received: (qmail 13515 invoked from network); 9 Nov 2005 19:45:47 -0000 Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.ilk.org) ([66.92.78.145]) (envelope-sender ) by mail22.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 9 Nov 2005 19:45:47 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id 059AE28444; Wed, 9 Nov 2005 14:45:46 -0500 (EST) Sender: lowell@be-well.ilk.org To: freebsd-doc@freebsd.org From: Lowell Gilbert Date: 09 Nov 2005 14:45:45 -0500 In-Reply-To: <436FDC90.3020108@cuk.nu> Message-ID: <44mzkdtxjq.fsf@be-well.ilk.org> Lines: 55 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: backup strategy text for handbook? X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Nov 2005 19:45:50 -0000 I wrote the following the other day in response to a question on a FreeBSD newsgroup. Should I adapt it for the Handbook backup section? ================================================================ My advice in devising a backup plan is to make sure that all of the following problems are covered: - disk failure - accidental file deletion - random file corruption - complete machine destruction (e.g., fire) including destruction of any on-site backups It is perfectly possible that some systems will be best served by having each of these problems covered by a completely different technique. Except for strictly personal systems with very low-value data, it's unlikely that one technique would cover all of them. Some of the techniques in the toolbox are: - archives of the whole system, backed up onto permanent media offsite. This actually provides protection against all of the possible problems I listed, but is slow and inconvenient to restore from. You can keep copies of the backups onsite and/or online, but there will still be inconveniences in restoring files, especially for non-privileged users. - filesystem snapshots. This is really only helpful in the accidental file deletion scenario, but it can be *very* helpful there, and is quick and easy to deal with. - copies of whole filesystems and/or disks. [e.g., periodic rsync of the whole machine] I've seen this be most useful in networks with unique requirements. For general protection against disk failure, it's usually inferior to RAID. For restoring accidentally deleted files, it can be comparable to UFS snapshots, but that depends on your preferences. - RAID. Minimizes or avoids downtime when a disk fails. At the expense of having to deal with disk failures more often (because you have more disks), albeit at a much lower urgency. - checking fingerprints of files. The mtree(1) program is very useful for this. Although it is not a backup technique, it helps guarantee that you will notice when you need to resort to your backups. This is particularly important for offline backups, and should be checked periodically. It is quite easy to come up with even more techniques, many of them variations on the ones I listed. Specialized requirements will usually lead to specialized techniques (e.g., backing up a live database usually requires a method particular to the database software as an intermediate step). The important thing is to know what dangers you want to protect against, and how you will handle each. From owner-freebsd-doc@FreeBSD.ORG Wed Nov 9 21:50:14 2005 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2ADC016A41F for ; Wed, 9 Nov 2005 21:50:14 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 016DE43D53 for ; Wed, 9 Nov 2005 21:50:13 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id jA9LoCeH030114 for ; Wed, 9 Nov 2005 21:50:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id jA9LoCdo030113; Wed, 9 Nov 2005 21:50:12 GMT (envelope-from gnats) Resent-Date: Wed, 9 Nov 2005 21:50:12 GMT Resent-Message-Id: <200511092150.jA9LoCdo030113@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Matt Olander" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 47A9E16A41F for ; Wed, 9 Nov 2005 21:46:06 +0000 (GMT) (envelope-from matt@iXsystems.com) Received: from knight.ixsystems.net (knight.ixsystems.net [206.40.55.67]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD03143D48 for ; Wed, 9 Nov 2005 21:46:05 +0000 (GMT) (envelope-from matt@iXsystems.com) Received: from mattobsd.offmyserver.com (drawbridge.ixsystems.net [206.40.55.65]) by knight.ixsystems.net (8.12.10/8.11.6) with ESMTP id jA9LiIwF053774; Wed, 9 Nov 2005 13:44:18 -0800 (PST) (envelope-from matt@iXsystems.com) Message-Id: <1131573817.0@mattobsd.offmyserver.com> Date: Wed, 9 Nov 2005 14:03:37 -0800 From: "Matt Olander" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.4.6 Cc: Subject: docs/88753: Formatting bug in handbooks/mirrors X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Nov 2005 21:50:14 -0000 >Number: 88753 >Category: docs >Synopsis: Formatting bug in handbooks/mirrors >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Wed Nov 09 21:50:12 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Matt Olander >Release: FreeBSD 6.0-RELEASE i386 >Organization: iXsystems >Environment: System: FreeBSD 6.0-RELEASE #0: Thu Nov 3 09:36:13 UTC 2005 root@x64.samsco.home:/usr/obj/usr/src/sys/GENERIC >Description: A whitespace bug in the mirrors chapter was causing extra spacing for the Linux CD Mall entry. >How-To-Repeat: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors.html#MIRRORS-CDROM >Fix: --- linuxcdmall_format.doc.diff begins here --- Index: en_US.ISO8859-1/books/handbook/mirrors/chapter.sgml =================================================================== RCS file: /home/matto/cvs/doc_cvs/doc/en_US.ISO8859-1/books/handbook/mirrors/chapter.sgml,v retrieving revision 1.388 diff -u -r1.388 chapter.sgml --- en_US.ISO8859-1/books/handbook/mirrors/chapter.sgml 1 Nov 2005 22:45:12 -0000 1.388 +++ en_US.ISO8859-1/books/handbook/mirrors/chapter.sgml 9 Nov 2005 21:56:31 -0000 @@ -118,14 +118,14 @@ -
- Linux CD Mall - Private Bag MBE N348 - Auckland 1030 - New Zealand - Phone: +64 21 866529 - WWW: -
+
+ Linux CD Mall + Private Bag MBE N348 + Auckland 1030 + New Zealand + Phone: +64 21 866529 + WWW: +
--- linuxcdmall_format.doc.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Wed Nov 9 21:54:01 2005 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A5ED116A41F; Wed, 9 Nov 2005 21:54:01 +0000 (GMT) (envelope-from jcamou@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2A44743D48; Wed, 9 Nov 2005 21:54:01 +0000 (GMT) (envelope-from jcamou@FreeBSD.org) Received: from freefall.freebsd.org (jcamou@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id jA9Ls13K030386; Wed, 9 Nov 2005 21:54:01 GMT (envelope-from jcamou@freefall.freebsd.org) Received: (from jcamou@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id jA9Ls1MQ030382; Wed, 9 Nov 2005 21:54:01 GMT (envelope-from jcamou) Date: Wed, 9 Nov 2005 21:54:01 GMT From: "Jesus R. Camou" Message-Id: <200511092154.jA9Ls1MQ030382@freefall.freebsd.org> To: jcamou@FreeBSD.org, freebsd-doc@FreeBSD.org, jcamou@FreeBSD.org Cc: Subject: Re: docs/88753: Formatting bug in handbooks/mirrors X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Nov 2005 21:54:01 -0000 Synopsis: Formatting bug in handbooks/mirrors Responsible-Changed-From-To: freebsd-doc->jcamou Responsible-Changed-By: jcamou Responsible-Changed-When: Wed Nov 9 21:53:22 GMT 2005 Responsible-Changed-Why: I'll take care of this. http://www.freebsd.org/cgi/query-pr.cgi?pr=88753 From owner-freebsd-doc@FreeBSD.ORG Thu Nov 10 03:53:37 2005 Return-Path: X-Original-To: freebsd-doc@freebsd.org Delivered-To: freebsd-doc@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 729) id B8D6516A420; Thu, 10 Nov 2005 03:53:37 +0000 (GMT) To: freebsd-doc@freebsd.org Message-Id: <20051110035337.B8D6516A420@hub.freebsd.org> Date: Thu, 10 Nov 2005 03:53:37 +0000 (GMT) From: jkoshy@FreeBSD.ORG (Joseph Koshy) Cc: jkoshy@FreeBSD.ORG Subject: [repost] Marketing article for review X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Nov 2005 03:53:37 -0000 [Yesterday's post sent from Gmail.com appears to have not made it to freebsd-doc@. Apologies in advance to people seeing this mail twice.] >> [begin repost] << I have a new technical marketing document for your review. Building Products with FreeBSD http://people.freebsd.org/~jkoshy/building-products/article.html Docbook sources are available in file 'article.sgml' at the same location. This document is being maintained in Perforce under: //depot/user/jkoshy/projects/building-products/ >> [end repost] << Regards, Koshy From owner-freebsd-doc@FreeBSD.ORG Thu Nov 10 09:03:45 2005 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 30E9916A42B; Thu, 10 Nov 2005 09:03:45 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DDC3D43D46; Thu, 10 Nov 2005 09:03:44 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id jAA93iPu032537; Thu, 10 Nov 2005 09:03:44 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id jAA93iFa032533; Thu, 10 Nov 2005 09:03:44 GMT (envelope-from pav) Date: Thu, 10 Nov 2005 09:03:44 GMT From: Pav Lucistnik Message-Id: <200511100903.jAA93iFa032533@freefall.freebsd.org> To: eikemeier@fillmore-labs.com, pav@FreeBSD.org, freebsd-doc@FreeBSD.org Cc: Subject: Re: docs/68606: Porter's Handbook: document how to write rc.subr scripts X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Nov 2005 09:03:45 -0000 Synopsis: Porter's Handbook: document how to write rc.subr scripts State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Thu Nov 10 09:02:24 GMT 2005 State-Changed-Why: I wrote a (rather short) section to chapter 6, detailing USE_RC_SUBR and USE_RCORDER knobs, giving port specific issues and referring to base system rcng docs for the rest. http://www.freebsd.org/cgi/query-pr.cgi?pr=68606 From owner-freebsd-doc@FreeBSD.ORG Thu Nov 10 10:29:41 2005 Return-Path: X-Original-To: freebsd-doc@freebsd.org Delivered-To: freebsd-doc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B01016A421 for ; Thu, 10 Nov 2005 10:29:41 +0000 (GMT) (envelope-from joseph.koshy@gmail.com) Received: from xproxy.gmail.com (xproxy.gmail.com [66.249.82.192]) by mx1.FreeBSD.org (Postfix) with ESMTP id DECB443D49 for ; Thu, 10 Nov 2005 10:29:40 +0000 (GMT) (envelope-from joseph.koshy@gmail.com) Received: by xproxy.gmail.com with SMTP id s9so462766wxc for ; Thu, 10 Nov 2005 02:29:40 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=jx0M9TJCvkyk/Fe9VLwG84n3sFTyMhQ4OSB7dAU6fJxGih37oAQipRliaMn7avSnUaY+RkGS+q12wbFtbJZDcGiXdmAfNrfIcfJSsBKArU17PIUt+oanfzPn7ayFY0Su2uQDtdKF6lDBlX0YgjZIkpXKS1y/1l2QOqPbv6cDOKg= Received: by 10.70.77.8 with SMTP id z8mr907943wxa; Wed, 09 Nov 2005 07:33:59 -0800 (PST) Received: by 10.70.105.13 with HTTP; Wed, 9 Nov 2005 07:33:59 -0800 (PST) Message-ID: <84dead720511090733s3823bcceuf5d1f6756e86ceda@mail.gmail.com> Date: Wed, 9 Nov 2005 21:03:59 +0530 From: Joseph Koshy To: freebsd-doc@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Subject: New marketing doc for review X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Nov 2005 10:29:41 -0000 I have a new technical marketing document for your review. Building Products with FreeBSD http://people.freebsd.org/~jkoshy/building-products/article.html Docbook sources are available in file 'article.sgml' at the same location. This document is being maintained in Perforce under: //depot/user/jkoshy/projects/building-products/ -- FreeBSD Volunteer, http://people.freebsd.org/~jkoshy From owner-freebsd-doc@FreeBSD.ORG Thu Nov 10 17:50:17 2005 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3BD3316A41F for ; Thu, 10 Nov 2005 17:50:17 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E223143D68 for ; Thu, 10 Nov 2005 17:50:16 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id jAAHoGvN066508 for ; Thu, 10 Nov 2005 17:50:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id jAAHoGr6066507; Thu, 10 Nov 2005 17:50:16 GMT (envelope-from gnats) Date: Thu, 10 Nov 2005 17:50:16 GMT Message-Id: <200511101750.jAAHoGr6066507@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org From: Alex Kelly Cc: Subject: Re: docs/88429: FAQ 10.9. Quotas Improvement X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Alex Kelly List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Nov 2005 17:50:17 -0000 The following reply was made to PR docs/88429; it has been noted by GNATS. From: Alex Kelly To: bug-followup@FreeBSD.org Cc: Subject: Re: docs/88429: FAQ 10.9. Quotas Improvement Date: Wed, 9 Nov 2005 10:50:51 -0500 Followup and possible patch for 88429: --- book.sgml=09Wed Nov 9 10:39:46 2005 +++ book.sgml.old=09Wed Nov 9 10:39:39 2005 @@ -6105,31 +6105,47 @@ - It is possible that your kernel is not configured to use - quotas. If this is the case, you will need to add the following - line to your kernel configuration file and recompile: - - options QUOTA - - It is also possible that quotas are not enabled in the - rc.conf file in /etc. - If this is the case, you will need to add the following line to - rc.conf: - - enable_quotas=3D"YES" - - It is also possible that the quota file is improperly place= d in - /, the root directory of &os. The quota fi= le - should instead be placed on the filesystem where quotas are to = be - enforced, i.e. - - /usr /usr/admin/quotas - /home =20 /home/admin/quotas - - For more information on quotas, please refer to - - Chapter 8 of the &os Handbook. - + + + + Do not turn on quotas on /. + + + + Put the quota file on the filesystem that the quotas + are to be enforced on, i.e.: + + + + + + Filesystem + Quota file + + + + + + /usr + /usr/admin/quotas + + + + /home + /home/admin/quotas + + + + + + + + + + + From owner-freebsd-doc@FreeBSD.ORG Fri Nov 11 16:20:19 2005 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5615E16A41F for ; Fri, 11 Nov 2005 16:20:19 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C440143D4C for ; Fri, 11 Nov 2005 16:20:18 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id jABGKI9b072665 for ; Fri, 11 Nov 2005 16:20:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id jABGKIHU072661; Fri, 11 Nov 2005 16:20:18 GMT (envelope-from gnats) Resent-Date: Fri, 11 Nov 2005 16:20:18 GMT Resent-Message-Id: <200511111620.jABGKIHU072661@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Riccardo Torrini Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A055616A41F for ; Fri, 11 Nov 2005 16:17:59 +0000 (GMT) (envelope-from riccardo@torrini.org) Received: from mx.dada.it (mail2.dada.it [195.110.100.2]) by mx1.FreeBSD.org (Postfix) with SMTP id 15B1043D53 for ; Fri, 11 Nov 2005 16:17:56 +0000 (GMT) (envelope-from riccardo@torrini.org) Received: (qmail 13190 invoked from network); 11 Nov 2005 16:17:52 -0000 Received: from unknown (HELO silos.torrini.home) (195.110.114.101) by mail.dada.it with SMTP; 11 Nov 2005 16:17:52 -0000 Received: from silos.torrini.home (localhost [127.0.0.1]) by silos.torrini.home (Postfix) with ESMTP id 2B9841A774 for ; Fri, 11 Nov 2005 17:17:54 +0100 (CET) Received: by silos.torrini.home (Postfix, from userid 1001) id 538B31A744; Fri, 11 Nov 2005 17:17:53 +0100 (CET) Message-Id: <20051111161753.538B31A744@silos.torrini.home> Date: Fri, 11 Nov 2005 17:17:53 +0100 (CET) From: Riccardo Torrini To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: docs/88848: grep manual jammed X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Riccardo Torrini List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Nov 2005 16:20:19 -0000 >Number: 88848 >Category: docs >Synopsis: grep manual jammed >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Fri Nov 11 16:20:18 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Riccardo Torrini >Release: FreeBSD 5.4-STABLE i386 >Organization: >Environment: System: FreeBSD silos.torrini.home 5.4-STABLE FreeBSD 5.4-STABLE #65: Mon Oct 24 06:50:23 CEST 2005 root@silos.torrini.home:/usr/obj/usr/src/sys/SILOS i386 It also happens on 7.0-CURRENT but not on 4.11-STABLE (Aug 31, 2005) >Description: Two entries of {any}grep manual jammed together (-F and -P). >How-To-Repeat: # man grep | col -b | grep -A3 fixed-strings -F, --fixed-strings Interpret PATTERN as a list of fixed strings, separated by new- lines, any of which is to be matched. -P, --perl-regexp Inter- pret PATTERN as a Perl regular expression. >Fix: Split -F and -P entries. # zgrep -n '.BR \\-P ", " \\-\\^\\-perl-regexp' /usr/share/man/man1/grep.1.gz 204:.BR \-P ", " \-\^\-perl-regexp Maybe .BR should be .BI ? (sorry, I'm not a nroff master :-) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Sat Nov 12 17:48:33 2005 Return-Path: X-Original-To: freebsd-doc@FreeBSD.org Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 702DB16A41F for ; Sat, 12 Nov 2005 17:48:33 +0000 (GMT) (envelope-from ceri@submonkey.net) Received: from shrike.submonkey.net (cpc2-cdif2-3-1-cust208.cdif.cable.ntl.com [82.31.78.208]) by mx1.FreeBSD.org (Postfix) with ESMTP id 139CD43D46 for ; Sat, 12 Nov 2005 17:48:32 +0000 (GMT) (envelope-from ceri@submonkey.net) Received: from hymir.private.submonkey.net ([192.168.10.15]) by shrike.submonkey.net with esmtps (TLSv1:RC4-SHA:128) (Exim 4.54 (FreeBSD)) id 1EazUI-000GBg-JJ; Sat, 12 Nov 2005 17:48:31 +0000 In-Reply-To: <10f4ec4f0511080431h7078e3d4oae20a40eeb205d67@mail.gmail.com> References: <10f4ec4f0511080431h7078e3d4oae20a40eeb205d67@mail.gmail.com> Mime-Version: 1.0 (Apple Message framework v746.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <1C8CB4E6-5787-4CB4-8347-088AAFB3CE60@submonkey.net> Content-Transfer-Encoding: 7bit From: Ceri Davies Date: Sat, 12 Nov 2005 17:48:25 +0000 To: Slip Away172 X-Mailer: Apple Mail (2.746.2) Cc: freebsd-doc@FreeBSD.org Subject: Re: documentation X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 12 Nov 2005 17:48:33 -0000 On 8 Nov 2005, at 12:31, Slip Away172 wrote: > i would like to know if there is a place that i can get a .zip or > book to > download or buy so i can read about bsd on the go or when trying to > fix my > computer. > thankyou, > paul Hi Paul, There are a number of books that you can buy on FreeBSD; we try to provide a list of some of them at http://www.freebsd.org/doc/ en_US.ISO8859-1/books/handbook/bibliography.html. The documentation produced by the FreeBSD Documentation Project is all available for download at ftp://ftp.FreeBSD.org/pub/FreeBSD/doc/. Cheers, Ceri -- Only two things are infinite, the universe and human stupidity, and I'm not sure about the former. -- Einstein (attrib.)