Results 1 to 7 of 7
i tried to install Gentoo through 2006.1 "amd64-minimal-install-CD". i downloded & installed "Stage3-tarball" without any trouble. when i did:
"tar -xvjf --latest-portage-tarball-here-- -C /usr"
it threw 1000s of messages like ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 12-17-2006 #1
Portage tarball install trouble
i tried to install Gentoo through 2006.1 "amd64-minimal-install-CD". i downloded & installed "Stage3-tarball" without any trouble. when i did:
"tar -xvjf --latest-portage-tarball-here-- -C /usr"
it threw 1000s of messages like this:
"CAN NOT OPEN FILE: no such file or directory"
MD5SUMs are fine, what could be wrong?
- 12-17-2006 #2
Make sure you are in the directory /mnt/gentoo/ when you download and try to extract the file. Make sure you type out the full path names when extracting the portage tarball.
If you downloaded the latest portage tarball, then you can copy and paste the command from the handbook:
Other than that, I don't know.Code:tar xvjf /mnt/gentoo/portage-latest.tar.bz2 -C /mnt/gentoo/usr/
- 12-17-2006 #3
You don't take it literal, replace --latest-portage-tarball-here with the real file name!
Put your hand in an oven for a minute and it will be like an hour, sit beside a beautiful woman for an hour and it will be like a minute, that is relativity. --Albert Einstein
Linux User #425940
Don't PM me with questions, instead post in the forums
- 12-18-2006 #4
Actually, the tarball is called "portage-latest.tar.bz2", and that is what the handbook calls it. If that is the one he downloaded, then he can literally cut and paste from the handbook.
- 12-18-2006 #5
But you still need to change --latest-portage-tarball-here-- to portage-latest.tar.bz2
I was referring to the first post not yours, I should use quotes more often
Put your hand in an oven for a minute and it will be like an hour, sit beside a beautiful woman for an hour and it will be like a minute, that is relativity. --Albert Einstein
Linux User #425940
Don't PM me with questions, instead post in the forums
- 01-18-2007 #6Just Joined!
- Join Date
- Jan 2007
- Posts
- 1
issues fixed ??
anyways guys ...
im a gentoo newbie ... (well since this morning :P) and had the same problem as our friend ....
finally resolved it replacing :
#tar xvjf /mnt/gentoo/portage-latest.tar.bz2 -C /mnt/gentoo/usr
by:
#tar xvjf /portage-latest.tar.bz2 -C /mnt/gentoo/usr
my guess is that i had already changed directory to /mnt/gentoo
- 01-18-2007 #7yes, the trouble with me was:
Originally Posted by tobie.lepine
# cd /mnt/gentoo
#tar xvjf portage-latest.tar.bz2 -C /usr
that will try to write the CD, not the mount point (which is /mnt/gentoo, my hard-disk)
so i changed it to:
# cd /mnt/gentoo
#tar xvjf portage-latest.tar.bz2 -C usr/
just changed to one slash after
BTW, Gentoo handbook says "cd /mnt/gentoo" & you are downloading the tarball into your "root" directory which is CD. dont do that, do this:
# cd /mnt/gentoo
#tar xvjf portage-latest.tar.bz2 -C usr/
or this:
# cd /mnt/gentoo
#tar xvjf /mnt/gentoo/portage-latest.tar.bz2 -C /mnt/gentoo/usr
which are same, of course


Reply With Quote
