Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757690Ab1FGSNL (ORCPT ); Tue, 7 Jun 2011 14:13:11 -0400 Received: from mail-vw0-f46.google.com ([209.85.212.46]:55637 "EHLO mail-vw0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757675Ab1FGSNH (ORCPT ); Tue, 7 Jun 2011 14:13:07 -0400 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=NElqZn/ZHR4zJE5IbCGzC2NsIDaaHurus7HW2lleSceB7hHox0o9Tc2HhJuCcjZO/j KheKe3L5Q1caIuLbglkjii+I2JXSLdeie1kHuTagHg5AqAhn5HFzmjiRxODe0sYTVrAT eXYi/cEnE1EBIjusxtaLLPJmYOlHeQB72nOUE= MIME-Version: 1.0 In-Reply-To: <4DEDCCFF.10801@turknetserver.com> References: <81e5df54-4987-40ba-9333-79665efda719@email.android.com> <4DEDCCFF.10801@turknetserver.com> Date: Tue, 7 Jun 2011 11:13:06 -0700 Message-ID: Subject: Re: Linux 3.0-rc2 From: Tony Luck To: Tarkan Erimer Cc: Linus Torvalds , david@lang.hm, Alessandro Suardi , Linux Kernel Mailing List Content-Type: text/plain; charset=ISO-8859-1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1242 Lines: 24 On Tue, Jun 7, 2011 at 12:02 AM, Tarkan Erimer wrote: > I always use tarballs instead of git. Because; I have several Linux boxes > and just one time I download the kernel tarball then spreading it with scp > to other Linux boxes easily. Otherwise, I have to prepare a tarball by > myself to distribute it which is a time waste and unpractical. Also, getting > the whole 700-800 MB of kernel tree with git is not very Internet bandwidth > (Consider that in some ISPs and countries, Internet usage is limited by > monthly quotas.) friendly. If you maintain a git tree, then at each release you will only need to pull a small amount (the git delta from the last time you pulled). It is then quite simple to make your own tarball to copy around your machines with: $ git archive --format=tar --prefix=linux/ v3.0-rc2 | gzip > v3.0-rc2.tgz So you have a one time large bandwidth investment to do the initial git clone, and then much less traffic for each update. -Tony -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/