ericktmnt | |
| 2006-05-27 22:46 - Respuestas: 3 - Tema nº: 2414094
Hola a todos !!!!
Tengo un ordenador Pentium III 800 Mhz , 256 RAM ,
3 particiones ;
1.- 9.32 GB con Ubuntu 5.10
2.- 486.34 MB de Intercambio
3.- 8.86 GB Espacio Libre
mi problema es que quiero instalar un windows 98 en la tercera particion y me dice que tiene que formatear todo el disco duro y al final no me lo instala, de ser posible en lugar de un windows 98 ¿podre instalar un windows xp?
Agradezco su ayuda
Un saludo
Agradezco su ayuda | |
|
|
trux | |
|
Re: Instalar Windows 98 con Ubuntu ya instalado - 2006-05-28 11:06 - Respuesta 2
Bueno te explico, Windows es un software apropiativo, lo que significa que él asume que es el unico que se instala en ese equipo, lo que podrias hacer es instalar el Windows 98 primero y luego te instalas el Ubuntu que de seguro si te reconoce la intalación anterior de windows.............
Por otra parte lo puedes probar con Windows 2000 o XP, con ellos puedes seleccionar la partición donde quieras instalarlos, lo que te puede ocurrir seria que te borre el GRUP o LILO y ponga la de él, pero eso se puede solucionar con un gestor de booteo para windows, una vez que pongas a correr nuevamente Ubuntu lo que haces es reinstalar el GRUP o LILO.
Cualquier cosa avisas | |
|
|
ericktmnt | |
|
Re: Instalar Windows 98 con Ubuntu ya instalado - 2006-05-29 08:03 - Respuesta 3
Hola muchas gracias por tu ayuda
ya instale el Xp en la particion vacia
pero yo me esperaba que antes de entrar a un SO se me iba preguntar con cual SO iniciar
no se si eso me quisiste decir la verdad es que como soy novato no lo entendi
muchas gracias de todos modos | |
|
|
trux | |
|
Re: Instalar Windows 98 con Ubuntu ya instalado - 2006-06-03 04:18 - Respuesta 4
hola ericktmnt, eso mismo fue lo que te quise decir cuando te decia que windows es un software apropiativo, pero puedes solucionarlo como te dije en post pasado, lo ideal para esos casos es instalar primero el windows y luego linux.
de todas formas aqui tienes algo que me sale del manual de grub a ver si te sirve:
eso si, tienes que saber inglés, jeje..........sino utilza el traductor de google es mas o menos.
Installing GRUB using grub-install
===========
*Caution:* This procedure is definitely less safe, because there are
several ways in which your computer can become unbootable. For example,
most operating systems don't tell GRUB how to map BIOS drives to OS
devices correctlyGRUB merely "guesses" the mapping. This will succeed
in most cases, but not always. Therefore, GRUB provides you with a map
file called the "device map", which you must fix if it is wrong. *Note
Device map::, for more details.
If you still do want to install GRUB under a UNIX-like OS (such as
GNU), invoke the program `grub-install' (*note Invoking grub-install:
as the superuser ("root").
The usage is basically very simple. You only need to specify one
argument to the program, namely, where to install the boot loader. The
argument can be either a device file (like `/dev/hda') or a partition
specified in GRUB's notation. For example, under Linux the following
will install GRUB into the MBR of the first IDE disk:
# grub-install /dev/hda
Likewise, under GNU/Hurd, this has the same effect:
# grub-install /dev/hd0
If it is the first BIOS drive, this is the same as well:
# grub-install '(hd0)'
Or you can omit the parentheses:
# grub-install hd0
But all the above examples assume that GRUB should use images under
the root directory. If you want GRUB to use images under a directory
other than the root directory, you need to specify the option
`root-directory'. The typical usage is that you create a GRUB boot
floppy with a filesystem. Here is an example:
# mke2fs /dev/fd0
# mount -t ext2 /dev/fd0 /mnt
# grub-install root-directory=/mnt fd0
# umount /mnt
Another example is when you have a separate boot partition which is
mounted at `/boot'. Since GRUB is a boot loader, it doesn't know
anything about mountpoints at all. Thus, you need to run `grub-install'
like this:
# grub-install root-directory=/boot /dev/hda
By the way, as noted above, it is quite difficult to guess BIOS
drives correctly under a UNIX-like OS. Thus, `grub-install' will prompt
you to check if it could really guess the correct mappings, after the
installation. The format is defined in *Note Device map::. Please be
quite careful. If the output is wrong, it is unlikely that your
computer will be able to boot with no problem.
Note that `grub-install' is actually just a shells-c-r-i-p-tand the
real task is done by the grub shell `grub' (*note Invoking the grub
shell:. Therefore, you may run `grub' directly to install GRUB,
without using `grub-install'. Don't do that, however, unless you are
very familiar with the internals of GRUB. Installing a boot loader on a
running OS may be extremely dangerous. | |
|
|
|