Gentoo Archives: gentoo-dev

From: Michael Rychlik <michael.rychlik@×××××.com>
To: gentoo-dev@××××××××××.org
Subject: [gentoo-dev] out of memory during installation
Date: Sun, 03 Jun 2001 03:51:11
Message-Id: 3B1A07A7.2C7D606E@welho.com
1 Hi
2
3 I had the same problem with 96 megs of RAM !
4
5 The work around was to perform the unzip and tar stages seperately
6 rather than through a pipe:
7
8 bzip2 -dc /mnt/cdrom/nameofmytarball.tbz2 > nameofmytarball.tar
9
10 tar -xvf nameofmytarball.tar
11
12 Hope this helps.