From owner-freebsd-questions@FreeBSD.ORG Mon Dec 29 15:10:32 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 92FC11065670 for ; Mon, 29 Dec 2008 15:10:32 +0000 (UTC) (envelope-from masoom.shaikh@gmail.com) Received: from ti-out-0910.google.com (ti-out-0910.google.com [209.85.142.186]) by mx1.freebsd.org (Postfix) with ESMTP id 1F3758FC16 for ; Mon, 29 Dec 2008 15:10:31 +0000 (UTC) (envelope-from masoom.shaikh@gmail.com) Received: by ti-out-0910.google.com with SMTP id a1so3189980tib.3 for ; Mon, 29 Dec 2008 07:10:30 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:subject:date :user-agent:references:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:message-id; bh=FjSnK85BbgbtmYlXLHVfLdSfJhMCVIagxfISK/9ISjA=; b=JGbgDjFjElZA33WEDpm32HrRODCfX67x+enwIpNtUo5CDGxMxNBgfsSsJXTUOz5nA3 KfTZzgRIxQ5OMw2pW3VOCKKeRMFNfswrPVj04TIA0y9aCrxz9qU923e7iUrOlhzsHff0 dlEAUQY0EJc2qr+zKHJF7k4uPpnneoHMnfFDk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:subject:date:user-agent:references:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :message-id; b=TREi8h+fi/GeQjSrksKkdv2aXgyXEVHSI+E89CbT68nNzXDhm4jkWWLs3WBlejqCme RDC9Meq0ec5FaDXbhGjoIURpY+6zgMVDbubFmdVki9Wn5HDJunfcWVGgJuRpDZVQeYyT 8T+PPIXiMqkq4PsITF8qGi00RXXj7YqSAtxkY= Received: by 10.110.31.5 with SMTP id e5mr2313432tie.2.1230563430834; Mon, 29 Dec 2008 07:10:30 -0800 (PST) Received: from raptor.localnet ([122.167.35.86]) by mx.google.com with ESMTPS id y5sm1025035tia.1.2008.12.29.07.10.28 (version=SSLv3 cipher=RC4-MD5); Mon, 29 Dec 2008 07:10:29 -0800 (PST) From: Masoom Shaikh To: freebsd-questions@freebsd.org Date: Mon, 29 Dec 2008 20:39:42 +0530 User-Agent: KMail/1.10.1 (FreeBSD/7.1-PRERELEASE; KDE/4.1.1; amd64; ; ) References: <20081229124558.43cefc56@gumby.homeunix.com> In-Reply-To: <20081229124558.43cefc56@gumby.homeunix.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200812292039.43242.masoom.shaikh@gmail.com> Subject: Re: local copy of handbook X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Dec 2008 15:10:32 -0000 On Monday 29 December 2008 18:15:58 RW wrote: > On Mon, 29 Dec 2008 10:16:42 +0530 > "Masoom Shaikh" wrote: > > lso I cud use tarballs from FTP, but is there easy way to install > > > them ? also csup didn't help here is my csup file > > > > *default tag=RELENG_7 > > *default host=ftp2.tw.freebsd.org > > *default prefix=/usr > > *default base=/var/db > > *default release=cvs delete use-rel-suffix compress > > src-all > > doc-all > > > > csup updates the source each time, but now i am not sure about doc!! > > If you do it that way, you have to generate the html files yourself, > cvup fetches generic data files that can be used to generate html , pdf > etc. > > What I do these days is mirror the online version with wget. > > > > #!/bin/sh > > cd /usr/share/doc/en > > wg_args=" --mirror -np -nH --cut-dirs=2 --limit-rate=33k" > > bg_flags="" > > # Run quietly from cron > [ ! -t 0 ] && bg_flags=" --quiet " > > wget $bg_flags $wg_args "http://www.freebsd.org/doc/en_US.ISO8859-1/" > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to > "freebsd-questions-unsubscribe@freebsd.org" that is clever use of wget :) but can't docs remain updated with csup ? if yes, how ? otherwise I will be happy to generate them from sources if they happen to be some simple target Masoom Shaikh