Results 11 to 14 of 14
on the 9.0 pro there was the options but not on the CDROM based on the ftp distro.
I am going to try the procedure I wrote earlier through Yast ...
- 04-03-2005 #11Just Joined!
- Join Date
- Apr 2005
- Posts
- 4
On the 9.2 install CDthereis no update options anymore
on the 9.0 pro there was the options but not on the CDROM based on the ftp distro.
I am going to try the procedure I wrote earlier through Yast hopefully it will re introduce the setup config.
If this does not work I will reintall the 9.0 making sure I'll build a standard boot floppy this time from scratch.
Good luck
doMo
- 04-03-2005 #12Just Joined!
- Join Date
- Apr 2005
- Posts
- 4
found the answer
martin
1/ open Yast after you log under root
2/ click on software
3/ install and remove Software
4/ A window open and on the menu select Package Groups (it defaults on search) but scroll the menu please.
5/ Scroll down to Yast
6/ add (on the right window now)... yast2-bootfloppy
then follow normal procedures of installation.
You should then find the create floppy options where the guy who answered to you first said it was located.
Have a great day in Dublin (Lucky guy here i am stuck in bleeding Paris...with rotten guinesses )
- 04-03-2005 #13
Hi Domovampyr,
Welcome to Linuxforums! I'm afraid that option is not in my YaST, I seem to have an unusal version of SuSE that came with a magazine, but Flatline gave me command line instructions to create the boot floppy and that worked for me. Thnks for the help, here's a link to the solution;
http://www.linuxforums.org/forum/top...tml&highlight=
What part of France are you in? I've been to Paris 5 times over the years and to other places North and South of the capital.
Martin,
Dublin, IrelandLINUX: Where do you want to go.......Tomorrow!
Registered Linux user 396633
- 04-04-2005 #14
Or you could make a grub floppy manually...
It's relatively easy to create a grub boot floppy...it does take several commands, though. The following assumes that you've booted into your Suse install.
Toss a floppy in your drive (warning! this procedure will erase EVERYTHING on the floppy!) and type (in a terminal, as root)
Code:fdformat /dev/fd0
Then create a filesystem on the disk with
If it tells you there's a "mounted file system" on the disk, then typeCode:mkfs -t msdos /dev/fd0
and try again.Code:umount /dev/fd0
After running the mkfs command succesfully, mount the floppy with
Code:mount /dev/fd0 /media/floppy/
You'll need to create a couple of directories on the floppy, so type
andCode:mkdir /media/floppy/boot
Code:mkdir /media/floppy/boot/grub
Next, you need to copy the stage1 and stage2 files from your /boot directory to the /boot directory on the floppy with
and to get a nifty boot menu list (instead of having to manually input the kernel location at each boot, which gets old really fast), you need to copy your menu.lst file to the same spot withCode:cp /boot/grub/stage* /media/floppy/boot/grub/
Code:cp /boot/grub/menu.lst /media/floppy/boot/grub/
Next, type
and hit Enter; this should bring you to a prompt where you can enter grub-specific commands. First, you should typeCode:grub
and thenCode:root (fd0)
and thenCode:setup (fd0)
Code:quit
You should now have a working grub boot floppy with a boot list.There are two major products that come out of Berkeley: LSD and UNIX. We don't believe this to be a coincidence.
- Jeremy S. Anderson


Reply With Quote
