From owner-freebsd-questions@FreeBSD.ORG Thu May 11 17:08:38 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F7E716A405 for ; Thu, 11 May 2006 17:08:38 +0000 (UTC) (envelope-from bidjan@gmail.com) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.233]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED2BC44259 for ; Thu, 11 May 2006 17:08:37 +0000 (GMT) (envelope-from bidjan@gmail.com) Received: by wr-out-0506.google.com with SMTP id i30so168139wra for ; Thu, 11 May 2006 10:08:37 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:user-agent:mime-version:to:subject:references:in-reply-to:content-type:content-transfer-encoding; b=malxXlnnK7k7Co1OjW5nkjiSkpcEcp+GnTL9HQiCYCrBEYpiVY25JKfKJiZttYr/StKte3Uq2CQY57LRD7HzYsBg6ie0L33kH3STAShLPkyBGvpoUUIaekhSUYLF/D/g5LbqBjIbzopFFQ0mi0V2ucVxZP5skxSvF7oRWtDPInE= Received: by 10.54.121.18 with SMTP id t18mr131686wrc; Thu, 11 May 2006 10:08:37 -0700 (PDT) Received: from ?192.168.0.23? ( [201.246.183.147]) by mx.gmail.com with ESMTP id 26sm1199642wrl.2006.05.11.10.08.36; Thu, 11 May 2006 10:08:37 -0700 (PDT) Message-ID: <44636F88.7000107@gmail.com> Date: Thu, 11 May 2006 13:08:24 -0400 From: Pablo Mora Hinojosa User-Agent: Thunderbird 1.5.0.2 (X11/20060511) MIME-Version: 1.0 To: Pablo Mora , freebsd-questions@freebsd.org References: <20060511112429.273F4B81E@shodan.nognu.de> In-Reply-To: <20060511112429.273F4B81E@shodan.nognu.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: Re: limit bandwidth 'make fetch' 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: Thu, 11 May 2006 17:08:38 -0000 Frank Steinborn wrote: > Pablo Mora wrote: >> how i can limit bandwidth when i using 'make fetch' (make install in Ports)? >> >> thanks in advance. > > You could use the following in your make.conf to use wget (which is > capable of limiting bandwith) in your make.conf: > > FETCH_CMD=/usr/local/bin/wget --limit-rate=20k # Limits to 20k > DISABLE_SIZE=YES > > > DISABLE_SIZE is mandatory for wget, because it would get "-S the file to fetch>" otherwise, which is only supported by fetch. > > HTH, > Frank > Thanks Frank for your time. excellent tip! regards.