Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Boot Disk Installation HOWTO discussion
View unanswered posts
View posts from last 24 hours

Goto page 1, 2, 3, 4, 5  Next  
Reply to topic    Gentoo Forums Forum Index Other Things Gentoo
View previous topic :: View next topic  
Author Message
li1_getoo
l33t
l33t


Joined: 20 Oct 2002
Posts: 661
Location: Queens , NY

PostPosted: Thu Dec 05, 2002 7:56 pm    Post subject: Boot Disk Installation HOWTO discussion Reply with quote

thanx for this post u have no idea how many times i tried , and i kinda got tired or reinstalling a diff distro so i can install gentoo in top of it :)

another way to install is get bootnet.img from redhat.com and after u boot enter rescue and take it from there.thats if u having a hard time with toms rtbt :)


Last edited by li1_getoo on Mon Dec 30, 2002 5:35 am; edited 1 time in total
Back to top
View user's profile Send private message
spiff
n00b
n00b


Joined: 04 Oct 2002
Posts: 37

PostPosted: Wed Dec 11, 2002 12:13 am    Post subject: YAY thanks Reply with quote

Helped me out a lot on a crap AST that didnt want to boot from CDrom.
would have taken me a week of msg board raiding otherwise

cheers
/Spiff
Back to top
View user's profile Send private message
mooman
Apprentice
Apprentice


Joined: 06 Nov 2002
Posts: 175
Location: Vancouver, WA

PostPosted: Wed Dec 11, 2002 6:03 pm    Post subject: Reply with quote

I ran into a couple hiccups when following that howto as well.

Specifically:
Code:
# bzip2 -dc stage1-*.tar.bz2 | tar xvf -

Quote:
You might get a complaint from bzip2 about a broken pipe - you can ignore it without worry.


In my case the broken pipe message wasn't ignorable. I think piping the output of the bzip to the tar is more than the pipe can handle. It runs and runs until it hits that limit, and then quits, meaning you don't get a full install.

I honestly think that bzip2 | tar line should be broken into two steps, like:
Code:
bzip2 -dc stage1-*.tar.bz2
tar -xvf stage1-*.tar


That's what I had to do to get my install to work...

Other than that, I gotta admit the instructions were great and are the only reason I was able to get gentoo working. (I had to build my own custom tomsrtbt boot floppy since I have both a non-booting cdrom and an uncommon NIC). Learned a whole bunch about compressed floppy images in the process. ;)
_________________
Linux user off and on since circa 1995
Back to top
View user's profile Send private message
phong
Bodhisattva
Bodhisattva


Joined: 16 Jul 2002
Posts: 778
Location: Michigan - 15 & Ryan

PostPosted: Mon Dec 30, 2002 4:38 am    Post subject: Reply with quote

I've split this discussion off of the howto which I'm moving to the new FAQ forum. Followups or questions about it can go here.


EDIT:
13.DEC.04: Moved from D,T&T. --pjp

_________________
"An empty head is not really empty; it is stuffed with rubbish. Hence the difficulty of forcing anything into an empty head."
-- Eric Hoffer
Back to top
View user's profile Send private message
zojas
Veteran
Veteran


Joined: 22 Apr 2002
Posts: 1138
Location: Phoenix, AZ

PostPosted: Mon Dec 30, 2002 7:15 pm    Post subject: Reply with quote

mooman wrote:

Code:
bzip2 -dc stage1-*.tar.bz2
tar -xvf stage1-*.tar



why don't you just do this instead:

Code:
tar xjvpf stage1-*.tar.bz2


the j flags tells tar to decompress it with bzip2 first.
Back to top
View user's profile Send private message
sfabien
n00b
n00b


Joined: 30 Dec 2002
Posts: 14
Location: rouen, france

PostPosted: Wed Jan 01, 2003 6:43 pm    Post subject: Reply with quote

Hu ... i've done all the stuff in this how-to ...

/dev/hda1 ext2
/dev/hda2 swap
/dev/hda3 ext3

but when i'm trying to do chroot, i have this message :

"FATAL: kernel too old"

I use tomsrtbt 2.0.103 ... please hhhheeelp !!!

Thanks

Fabien
Back to top
View user's profile Send private message
phong
Bodhisattva
Bodhisattva


Joined: 16 Jul 2002
Posts: 778
Location: Michigan - 15 & Ryan

PostPosted: Thu Jan 02, 2003 3:57 am    Post subject: Reply with quote

zojas wrote:
Code:
tar xjvpf stage1-*.tar.bz2

That won't work. The tar on tomsrtbt (like most executables on there) is not the complete version you're familiar with (it's actually a wrapper for another program called pax). It doesn't support those options.

sfabien wrote:
"FATAL: kernel too old"

?! I have no idea what would cause that. The first thing I can think to do is try to make another copy of the disk (floppies are bad more often than not). That's a long shot though. You could also try some other boot disk (the procedure would be slightly different), such as one from another distro. I've heard the slackware ones are pretty good. There are a couple other rescue boot disks out there too. Do you have anything unusual in your setup?
_________________
"An empty head is not really empty; it is stuffed with rubbish. Hence the difficulty of forcing anything into an empty head."
-- Eric Hoffer
Back to top
View user's profile Send private message
DaNIsH
Apprentice
Apprentice


Joined: 01 Jan 2003
Posts: 197
Location: Melbourne, Australia.

PostPosted: Thu Jan 02, 2003 5:31 am    Post subject: Reply with quote

sfabien wrote:
Hu ... i've done all the stuff in this how-to ...

/dev/hda1 ext2
/dev/hda2 swap
/dev/hda3 ext3

but when i'm trying to do chroot, i have this message :

"FATAL: kernel too old"

I use tomsrtbt 2.0.103 ... please hhhheeelp !!!

Thanks

Fabien


Same problem here..
Back to top
View user's profile Send private message
sfabien
n00b
n00b


Joined: 30 Dec 2002
Posts: 14
Location: rouen, france

PostPosted: Thu Jan 02, 2003 9:44 am    Post subject: Reply with quote

phong wrote:
Do you have anything unusual in your setup?


No, nothing unusual ! just a motherboard and 2 network interfaces with a matrox mystique on a pci slot for the gfx ... that's all !

I don't know if it'll succeed but i am currently 'emerge system' (chroot done) with the slackware floppies! I use the bare.i as the boot disk, the rescue.dsk as the root disk and the network.dsk as a complementary image (to be able to download packages :))

fabien
Back to top
View user's profile Send private message
DaNIsH
Apprentice
Apprentice


Joined: 01 Jan 2003
Posts: 197
Location: Melbourne, Australia.

PostPosted: Thu Jan 02, 2003 2:01 pm    Post subject: Reply with quote

Anyone know of any of boot/root disks like toms?
Ive tried slackware.. but there network.dsk doesnt support/wont detect my onboard 3com 905b ethernet and I have no idea how to force it/if i need to specify an I/O.
Back to top
View user's profile Send private message
ettan
n00b
n00b


Joined: 04 Jan 2003
Posts: 1
Location: Estonia

PostPosted: Sat Jan 04, 2003 9:02 pm    Post subject: Reply with quote

Same kernel too old error when chrooting. Maybe one should replace the (2.2) kernel with a newer version (2.4)? Or replace the chroot with an older version. Anyway I gave up fast and used Slackware disks (root,boot,network) and everything worked like a charm :)
Back to top
View user's profile Send private message
zojas
Veteran
Veteran


Joined: 22 Apr 2002
Posts: 1138
Location: Phoenix, AZ

PostPosted: Mon Jan 06, 2003 5:28 am    Post subject: Reply with quote

DaNIsH wrote:
Anyone know of any of boot/root disks like toms?


I used redhat's bootnet.img

the annoying part is that you need to have the files from the first 3 redhat8 cds on another computer. the cool part is that you'll have nfs working, so you can nfs mount /usr/portage/distfiles from another machine to save some downloading (and more importantly hard drive space on your target 'small' machine's /usr partition).

I made a directory on my nfs server, /junk/burn/RedHat

then for each of the first three redhat8 cds:

Code:
cp -a /mnt/cdrom/Redhat/* /junk/burn/RedHat/


then export the directory /junk/burn via nfs.

then boot the machine you want to install on with bootnet.img. at the lilo prompt type this:

Code:
linux rescue


then you tell it you have an nfs image, set up your network (easy), tell it about your nfs server and give it the path '/junk/burn'. then tell it to skip searching for a redhat installation and you get a prompt.

after you get your filesystems created and mounted, nfs mount a nicely populated /usr/portage/distfiles to /mnt/gentoo/usr/portage/distfiles.


Last edited by zojas on Tue Jan 07, 2003 5:13 pm; edited 1 time in total
Back to top
View user's profile Send private message
plate
Bodhisattva
Bodhisattva


Joined: 25 Jul 2002
Posts: 1663
Location: Berlin

PostPosted: Mon Jan 06, 2003 2:40 pm    Post subject: Reply with quote

Embarrassing, isn't it. "kernel too old" - pah. High time Gentoo came up with a rescue floppy of its own, don't you think... Where would I find three floppies for the Slackware method around the house??? Haven't used that many since I fixed my Windows Network... 8O
Back to top
View user's profile Send private message
keratos68
Guru
Guru


Joined: 27 Dec 2002
Posts: 561
Location: Blackpool, Lancashire, UK.

PostPosted: Tue Jan 07, 2003 3:07 pm    Post subject: Reply with quote

Why reinvent the wheel, for a rescue solutio0n, visit www.toms.net - No I dont know him but it works GREAT!
_________________
Someone told me that "..they only ever made one mistake...."

...and that's when they said they were wrong!!
Back to top
View user's profile Send private message
plate
Bodhisattva
Bodhisattva


Joined: 25 Jul 2002
Posts: 1663
Location: Berlin

PostPosted: Tue Jan 07, 2003 3:38 pm    Post subject: Reply with quote

Have you read the last few posts above at all? tomsrtbt fails to chroot, it's not usable as an installation floppy for Gentoo 1.4 any longer. That's why we were busy looking for alternatives, and Slackware seems to be one of them.
Back to top
View user's profile Send private message
keratos68
Guru
Guru


Joined: 27 Dec 2002
Posts: 561
Location: Blackpool, Lancashire, UK.

PostPosted: Tue Jan 07, 2003 4:02 pm    Post subject: Reply with quote

Course I read - have you tried the latest? Works for me, looks like I'm not the idiot , mmm .
_________________
Someone told me that "..they only ever made one mistake...."

...and that's when they said they were wrong!!
Back to top
View user's profile Send private message
plate
Bodhisattva
Bodhisattva


Joined: 25 Jul 2002
Posts: 1663
Location: Berlin

PostPosted: Tue Jan 07, 2003 4:20 pm    Post subject: Reply with quote

I didn't call you an idiot, I surely don't enjoy being called one myself. Everybody in the past few days has used the current tomsrtbt 2.0.103, if you have reason to believe that your version is different from ours, then you might want to share that additional piece of information a little more eloquently than by just posting a link everyone here knows.
Back to top
View user's profile Send private message
brain_fear
n00b
n00b


Joined: 07 Jan 2003
Posts: 1

PostPosted: Tue Jan 07, 2003 4:26 pm    Post subject: Gentoo Boot Disk Reply with quote

Why don't the developers make a boot disk?
I don't have any clue how to use Toms boot disk, i tried slackware boot disks but ran into errors.
Back to top
View user's profile Send private message
asmmsl
n00b
n00b


Joined: 10 Jan 2003
Posts: 10

PostPosted: Sat Jan 11, 2003 3:15 am    Post subject: Reply with quote

a special boot disk for notebooks would be geat

One with no support for desktop-only components, like scsi or pci cards that cant be found integrated on motherboards, but with as many as possible pcmcia modules/packages put into freed up space.
Back to top
View user's profile Send private message
ashibaka
Tux's lil' helper
Tux's lil' helper


Joined: 11 Jan 2003
Posts: 107

PostPosted: Sat Jan 11, 2003 4:17 am    Post subject: Reply with quote

dazzle68 wrote:
Course I read - have you tried the latest? Works for me, looks like I'm not the idiot , mmm .


I installed and booted 2.0.103-- same problem, dumbarse.

I'm going to have to make a new boot floppy now... [groan]
Back to top
View user's profile Send private message
plate
Bodhisattva
Bodhisattva


Joined: 25 Jul 2002
Posts: 1663
Location: Berlin

PostPosted: Sat Jan 11, 2003 4:22 am    Post subject: Reply with quote

Please, do keep your composure. This is about booting your computer, not each other. :)

Notebooks are becoming increasingly picky about boot media. The latest Vaios (V505) for example will have a USB floppy drive and a Firewire 1394 CD-ROM, how do you expect anything to boot reliably on that? The VMWare approach looks more and more appealing to me... You don't know what I mean? Why don't I do a write-up then and edit this post later on so you can find a link to it... :mrgreen:


Last edited by plate on Sat Jan 11, 2003 5:02 am; edited 1 time in total
Back to top
View user's profile Send private message
ashibaka
Tux's lil' helper
Tux's lil' helper


Joined: 11 Jan 2003
Posts: 107

PostPosted: Sat Jan 11, 2003 4:32 am    Post subject: Reply with quote

plate wrote:
Please, do keep your composure. This is about booting your computer, not each other. :)

:P Heh.

[comment snipped - I just realized I mounted everything wrong.
BTW, all, try rebooting ;) ]
Back to top
View user's profile Send private message
Naan Yaar
Bodhisattva
Bodhisattva


Joined: 27 Jun 2002
Posts: 1549

PostPosted: Sat Jan 11, 2003 5:32 am    Post subject: Reply with quote

One thing to try may be the Smart Boot Manager from the DT&T Floppy Install tip. You can put it on a floppy and then load Gentoo off the CD-ROM (even if the BIOS refuses to boot the latter).

Last edited by Naan Yaar on Sat Jan 11, 2003 5:50 am; edited 1 time in total
Back to top
View user's profile Send private message
keratos68
Guru
Guru


Joined: 27 Dec 2002
Posts: 561
Location: Blackpool, Lancashire, UK.

PostPosted: Sat Jan 11, 2003 9:30 am    Post subject: Reply with quote

ashibaka wrote:
dazzle68 wrote:
Course I read - have you tried the latest? Works for me, looks like I'm not the idiot , mmm .


I installed and booted 2.0.103-- same problem, dumbarse.

I'm going to have to make a new boot floppy now... [groan]


Well 2x "dumarses" who cant get it working - this thread sucks so I'll stop watching and leave you to cinderalla TTFN
_________________
Someone told me that "..they only ever made one mistake...."

...and that's when they said they were wrong!!
Back to top
View user's profile Send private message
plate
Bodhisattva
Bodhisattva


Joined: 25 Jul 2002
Posts: 1663
Location: Berlin

PostPosted: Sat Jan 11, 2003 11:59 am    Post subject: Reply with quote

Psst. Is he gone?

Naan Yaar, this Smart Boot Manager you recommend is great under most circumstances, but it hasn't been updated since early 2001. Back then, Sony and other laptop manufacturers hadn't turned against common sense and good practice by introducing the abominable IEEE1394 CD-ROM yet, but today a lot of laptops are struck with these. In half a year of constant scrutiny, looking at every single web occurrence of a Linux installation attempt from one of these drives (and I mean research), I haven't found anyone who managed to get past a shell prompt. One does (occasionally) get to that stage, so it is sometimes possible to configure the network and start wget'ting whatever is necessary, but in all likelihood the CD drive will die and stay dead as the proverbial flight-impaired bird. Unless you manage to hack a boot kernel of your own, you'll be sorry you ever bought that thing.

Coming back to the boot floppies, now that dazzle68 has unfortunately left us in the dark, does anybody have an idea why tomsrtbt would work for some people and not for others?
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Other Things Gentoo All times are GMT
Goto page 1, 2, 3, 4, 5  Next
Page 1 of 5

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum