forked from KolibriOS/kolibrios
Install.txt: update loading via GRUB
git-svn-id: svn://kolibrios.org@6440 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
65400f0014
commit
7da05771e2
@ -1,9 +1,9 @@
|
||||
Minimal system requirements for Kolibri 0.7.x.0:
|
||||
Minimal system requirements for KolibriOS:
|
||||
* CPU: Pentium, AMD 5x86 or Cyrix 5x86 without MMX with frequency 100 MHz
|
||||
* RAM: 8 Mb
|
||||
* Videocard: supporting VGA (640*480*16 mode) or Vesa
|
||||
* Keyboard: AT
|
||||
* Mouse: COM or PS/2
|
||||
* Mouse: COM, PS/2 or USB
|
||||
|
||||
The system can boot from any of following devices:
|
||||
- Floppy 3.5
|
||||
@ -46,53 +46,36 @@ only FAT volumes are ok.
|
||||
3) Moreover, there exist a program which allow load Kolibri directly from
|
||||
Windows 95/98/Me (of course, unloading it) - 9x2klbr (author - Diamond),
|
||||
supports FAT32 and NTFS.
|
||||
4) Usage of the loader GRUB. The way of using file 'memdisk' to load Kolibri
|
||||
has been described by derPENGUIN on english forum
|
||||
(http://meos32.7.forumer.com/viewtopic.php?t=110).
|
||||
The suggested method (described by Alver) is based on that description
|
||||
and was checked on grub-0.97-19mdv2007.0.
|
||||
1. Kolibri can write only on FAT filesystem, so if image file is placed not
|
||||
to FAT volume, the system can not save settings. Therefore if you have
|
||||
FAT32 partition, place 'kolibri.img' there.
|
||||
2. This method requires the file 'memdisk' from the package 'syslinux'
|
||||
(http://syslinux.zytor.com). You may install the whole package or only
|
||||
extract the mentioned file. Only the file 'memdisk' is needed. (After
|
||||
package install it will be in '/usr/lib/syslinux').
|
||||
3. Place the file 'memdisk' to the folder 'boot' or to the partition used
|
||||
for Kolibri.
|
||||
4. Add to the configuration file 'menu.lst' ('grub.conf') lines as follow:
|
||||
4) Usage of the loader GRUB. Place the file 'memdisk' to the folder 'boot'
|
||||
or to the partition used for Kolibri.
|
||||
a) For GRUB2, in the folder /etc/grub.d add to one of files next lines:
|
||||
|
||||
menuentry 'KolibriOS' {
|
||||
linux16 (hd[Hard disk number],[partition number])[path]/memdisk
|
||||
initrd16 (hd[Hard disk number],[partition number])[path]/kolibri.img
|
||||
}
|
||||
|
||||
example:
|
||||
|
||||
menuentry 'KolibriOS' {
|
||||
linux16 (hd0,msdos1)/boot/memdisk
|
||||
initrd16 (hd0,msdos1)/boot/kolibri.img
|
||||
}
|
||||
|
||||
then, run in terminal 'sudo update-grub'.
|
||||
|
||||
b) For old GRUB, add to the configuration file 'menu.lst' next lines:
|
||||
|
||||
title KolibriOS
|
||||
kernel (hd[Hard disk number],[partition number])[path]/memdisk
|
||||
initrd (hd[Hard disk number],[partition number])[path]/kolibri.img
|
||||
|
||||
(Remember that numeration of partitions in GRUB starts from 0.)
|
||||
Example:
|
||||
Remember that numeration in GRUB starts from 0. Example:
|
||||
|
||||
title KolibriOS
|
||||
kernel (hd0,0)/boot/memdisk
|
||||
initrd (hd0,3)/kolibri/kolibri.img
|
||||
|
||||
The initial variant was:
|
||||
|
||||
label KolibriOS
|
||||
root (hd[Hard disk number],[partition number])
|
||||
kernel [path]/memdisk
|
||||
initrd [path]/kolibri.img
|
||||
|
||||
Here 'memdisk' and 'kolibri.img' must be placed on the same partition.
|
||||
|
||||
Example:
|
||||
label KolibriOS
|
||||
root (hd0,0)
|
||||
kernel /boot/memdisk
|
||||
initrd /boot/kolibri.img
|
||||
This example is the variant described on english forum, with install to
|
||||
Linux boot partition (of course, without FAT partition).
|
||||
|
||||
5) The previous method could not work as is in GRUB2 (tested by Apocalypse_dn),
|
||||
the commands "linux16" and "initrd16" should be used instead of "kernel"
|
||||
and "initrd" (suggested by vkos).
|
||||
|
||||
III. Install to USB-Flash-drive.
|
||||
The special loader for FAT32-volumes has been written, it and its installer
|
||||
to flash drive can be found in the folder HD_load\USB_Boot.
|
||||
|
@ -1,9 +1,9 @@
|
||||
Minimal system requirements for Kolibri 0.7.x.0:
|
||||
Minimal system requirements for KolibriOS:
|
||||
* CPU: Pentium, AMD 5x86 or Cyrix 5x86 without MMX with frequency 100 MHz
|
||||
* RAM: 8 Mb
|
||||
* Videocard: supporting VGA (640*480*16 mode) or Vesa
|
||||
* Keyboard: AT
|
||||
* Mouse: COM or PS/2
|
||||
* Mouse: COM, PS/2 or USB
|
||||
|
||||
The system can boot from any of following devices:
|
||||
- Floppy 3.5
|
||||
@ -46,53 +46,36 @@ only FAT volumes are ok.
|
||||
3) Moreover, there exist a program which allow load Kolibri directly from
|
||||
Windows 95/98/Me (of course, unloading it) - 9x2klbr (author - Diamond),
|
||||
supports FAT32 and NTFS.
|
||||
4) Usage of the loader GRUB. The way of using file 'memdisk' to load Kolibri
|
||||
has been described by derPENGUIN on english forum
|
||||
(http://meos32.7.forumer.com/viewtopic.php?t=110).
|
||||
The suggested method (described by Alver) is based on that description
|
||||
and was checked on grub-0.97-19mdv2007.0.
|
||||
1. Kolibri can write only on FAT filesystem, so if image file is placed not
|
||||
to FAT volume, the system can not save settings. Therefore if you have
|
||||
FAT32 partition, place 'kolibri.img' there.
|
||||
2. This method requires the file 'memdisk' from the package 'syslinux'
|
||||
(http://syslinux.zytor.com). You may install the whole package or only
|
||||
extract the mentioned file. Only the file 'memdisk' is needed. (After
|
||||
package install it will be in '/usr/lib/syslinux').
|
||||
3. Place the file 'memdisk' to the folder 'boot' or to the partition used
|
||||
for Kolibri.
|
||||
4. Add to the configuration file 'menu.lst' ('grub.conf') lines as follow:
|
||||
4) Usage of the loader GRUB. Place the file 'memdisk' to the folder 'boot'
|
||||
or to the partition used for Kolibri.
|
||||
a) For GRUB2, in the folder /etc/grub.d add to one of files next lines:
|
||||
|
||||
menuentry 'KolibriOS' {
|
||||
linux16 (hd[Hard disk number],[partition number])[path]/memdisk
|
||||
initrd16 (hd[Hard disk number],[partition number])[path]/kolibri.img
|
||||
}
|
||||
|
||||
example:
|
||||
|
||||
menuentry 'KolibriOS' {
|
||||
linux16 (hd0,msdos1)/boot/memdisk
|
||||
initrd16 (hd0,msdos1)/boot/kolibri.img
|
||||
}
|
||||
|
||||
then, run in terminal 'sudo update-grub'.
|
||||
|
||||
b) For old GRUB, add to the configuration file 'menu.lst' next lines:
|
||||
|
||||
title KolibriOS
|
||||
kernel (hd[Hard disk number],[partition number])[path]/memdisk
|
||||
initrd (hd[Hard disk number],[partition number])[path]/kolibri.img
|
||||
|
||||
(Remember that numeration of partitions in GRUB starts from 0.)
|
||||
Example:
|
||||
Remember that numeration in GRUB starts from 0. Example:
|
||||
|
||||
title KolibriOS
|
||||
kernel (hd0,0)/boot/memdisk
|
||||
initrd (hd0,3)/kolibri/kolibri.img
|
||||
|
||||
The initial variant was:
|
||||
|
||||
label KolibriOS
|
||||
root (hd[Hard disk number],[partition number])
|
||||
kernel [path]/memdisk
|
||||
initrd [path]/kolibri.img
|
||||
|
||||
Here 'memdisk' and 'kolibri.img' must be placed on the same partition.
|
||||
|
||||
Example:
|
||||
label KolibriOS
|
||||
root (hd0,0)
|
||||
kernel /boot/memdisk
|
||||
initrd /boot/kolibri.img
|
||||
This example is the variant described on english forum, with install to
|
||||
Linux boot partition (of course, without FAT partition).
|
||||
|
||||
5) The previous method could not work as is in GRUB2 (tested by Apocalypse_dn),
|
||||
the commands "linux16" and "initrd16" should be used instead of "kernel"
|
||||
and "initrd" (suggested by vkos).
|
||||
|
||||
III. Install to USB-Flash-drive.
|
||||
The special loader for FAT32-volumes has been written, it and its installer
|
||||
to flash drive can be found in the folder HD_load\USB_Boot.
|
||||
|
@ -1,9 +1,9 @@
|
||||
Requisiti minimi di sistema per Kolibri 0.7.x.0:
|
||||
Requisiti minimi di sistema per KolibriOS:
|
||||
* CPU: Pentium, AMD 5x86 oppure Cyrix 5x86 senza MMX con frequenza 100 MHz
|
||||
* RAM: 8 Mb
|
||||
* Scheda video: supporting VGA (640*480*16 mode) or Vesa
|
||||
* Tastiera: AT
|
||||
* Mouse: COM or PS/2
|
||||
* Mouse: COM, PS/2 or USB
|
||||
|
||||
Il sistema può essere avviato da uno dei seguenti dispositivi
|
||||
- Floppy 3.5
|
||||
@ -48,54 +48,36 @@ tipo FAT
|
||||
3) Esiste un programma, 9x2klbr (scritto da Diamond) in grado di avviare
|
||||
Kolibri direttamente da Windows 95/98/Me, il programma funziona con
|
||||
le partizioni FAT32 e NTFS.
|
||||
4) È possibile usare il bootloader GRUB per caricare Kolibri. È
|
||||
necessario usare il file 'memdisk', come descritto da derPENGUIN sul
|
||||
forum (http://meos32.7.forumer.com/viewtopic.php?t=110).
|
||||
Il metodo suggerito (descritto da Alver) è stato testato con
|
||||
grub-0.97-19mdv2007.0.
|
||||
1. Kolibri può scrivere solamente sui filesystem di tipo FAT, se
|
||||
quindi il file immagine non si trova su una partizione di questo
|
||||
tipo, non sarà in grado di salvare eventuali impostazioni.
|
||||
2. Questo metodo richiede il file 'memdisk' dal pacchetto 'syslinux'
|
||||
(http://syslinux.zytor.com).
|
||||
3. È sufficiente posizionare il file 'memdisk' nella cartella '/boot'
|
||||
oppure nella stessa partizione usata da KolibriOS.
|
||||
4. Aggiungere al file 'menu.lst' ('grub.conf') le seguenti righe di
|
||||
configurazione:
|
||||
4) Usage of the loader GRUB. Place the file 'memdisk' to the folder 'boot'
|
||||
or to the partition used for Kolibri.
|
||||
a) For GRUB2, in the folder /etc/grub.d add to one of files next lines:
|
||||
|
||||
menuentry 'KolibriOS' {
|
||||
linux16 (hd[Hard disk number],[partition number])[path]/memdisk
|
||||
initrd16 (hd[Hard disk number],[partition number])[path]/kolibri.img
|
||||
}
|
||||
|
||||
example:
|
||||
|
||||
menuentry 'KolibriOS' {
|
||||
linux16 (hd0,msdos1)/boot/memdisk
|
||||
initrd16 (hd0,msdos1)/boot/kolibri.img
|
||||
}
|
||||
|
||||
then, run in terminal 'sudo update-grub'.
|
||||
|
||||
b) For old GRUB, add to the configuration file 'menu.lst' next lines:
|
||||
|
||||
title KolibriOS
|
||||
kernel (hd[Hard disk number],[partition number])[path]/memdisk
|
||||
initrd (hd[Hard disk number],[partition number])[path]/kolibri.img
|
||||
|
||||
(NOTA: La numerazione delle partizioni di GRUB parte da 0.)
|
||||
Esempio:
|
||||
Remember that numeration in GRUB starts from 0. Example:
|
||||
|
||||
title KolibriOS
|
||||
kernel (hd0,0)/boot/memdisk
|
||||
initrd (hd0,3)/kolibri/kolibri.img
|
||||
|
||||
La prima variante era:
|
||||
|
||||
label KolibriOS
|
||||
root (hd[numero disco fisso],[numero partizione])
|
||||
kernel [percorso]/memdisk
|
||||
initrd [percorso]/kolibri.img
|
||||
|
||||
In questo caso 'memdisk' e 'kolibri.img' devono essere sulla
|
||||
stessa partizione.
|
||||
|
||||
Esempio:
|
||||
label KolibriOS
|
||||
root (hd0,0)
|
||||
kernel /boot/memdisk
|
||||
initrd /boot/kolibri.img
|
||||
Con questa variante, descritta nel forum, KolibriOS è posizionato
|
||||
nella cartella di boot di GN/Linux, quindi non si trova su una
|
||||
partizione FAT32 e non sarà in grado di salvare eventuali modifiche.
|
||||
|
||||
5) I comandi descritti precedentemente potrebbero non funzionare con
|
||||
GRUB2, (testato da Apocalypse_dn), in tal caso sostituire "linux16" e
|
||||
"initrd16" a "kernel" and "initrd" (suggerito da vkos).
|
||||
|
||||
III. Installazione su chiave USB.
|
||||
Nella cartella HD_load\USB_Boot è possibile trovare un loader che
|
||||
permette di installare KolibriOS su chiave USB. Se la chiave USB non è
|
||||
|
@ -1,9 +1,9 @@
|
||||
Œ¨¨¬ «ìë¥ á¨áâ¥¬ë¥ âॡ®¢ ¨ï Š®«¨¡à¨ 0.7.x.x:
|
||||
Œ¨¨¬ «ìë¥ á¨áâ¥¬ë¥ âॡ®¢ ¨ï Š®«¨¡à¨Ž‘:
|
||||
* CPU: Pentium, AMD 5x86 ¨«¨ Cyrix 5x86 ¡¥§ MMX á ç áâ®â®© 100 MHz
|
||||
* RAM: 8 Mb
|
||||
* ‚¨¤¥®ª àâ : ¯®¤¤¥à¦¨¢ îé ï VGA (०¨¬ 640*480*16) ¨«¨ Vesa
|
||||
* Š« ¢¨ âãà : AT
|
||||
* Œëèì: COM ¨«¨ PS/2
|
||||
* Œëèì: COM, PS/2 ¨«¨ USB
|
||||
|
||||
‘¨á⥬ ¬®¦¥â § £à㦠âìáï á «î¡®£® ¨§ á«¥¤ãîé¨å ãáâனáâ¢:
|
||||
- Floppy 3.5
|
||||
@ -47,57 +47,37 @@ LiveCD,
|
||||
3) Šà®¬¥ ⮣®, ¥áâì ¯à®£à ¬¬ , ¯®§¢®«ïîé ï § £à㦠âì Kolibri ¥¯®á।á⢥®
|
||||
¨§ Windows 95/98/Me (¥áâ¥á⢥®, ¢ë£àã¦ ï ¯®á«¥¤îî) - íâ® 9x2klbr
|
||||
( ¢â®à - Diamond), ¯®¤¤¥à¦ª FAT32 ¨ NTFS.
|
||||
4) ˆá¯®«ì§®¢ ¨¥ ¢®§¬®¦®á⥩ § £àã§ç¨ª GRUB.
|
||||
‘¯®á®¡ ¨á¯®«ì§®¢ ¨ï ä ©« 'memdisk' ¤«ï § £à㧪¨ Kolibri ®¯¨á «
|
||||
derPENGUIN £«®ï§ë箬 ä®à㬥
|
||||
(http://meos32.7.forumer.com/viewtopic.php?t=110).
|
||||
<20>।« £ ¥¬ë© ¢ ਠâ (®¯¨á « Alver) ¡ §¨àã¥âáï ⮬ ®¯¨á ¨¨ ¨ ¡ë«
|
||||
¨á¯à®¡®¢ grub-0.97-19mdv2007.0.
|
||||
1. Kolibri ¯®¤¤¥à¦¨¢ ¥â § ¯¨áì ⮫쪮 ä ©«®¢ãî á¨á⥬ã FAT,
|
||||
á«¥¤®¢ ⥫ì®, ¥á«¨ ãáâ ®¢¨âì ä ©« ®¡à § ¥ ¢ FAT à §¤¥«, â® ¡ã¤¥â
|
||||
¥¢®§¬®¦® ¨§¬¥ïâì áâனª¨ ¢ Kolibri. <20>®í⮬㠥᫨ ¥áâì à §¤¥« FAT32,
|
||||
¯®¬¥áâ¨â¥ ä ©« kolibri.img â㤠.
|
||||
2. ‚ ¬ ¯®âॡã¥âáï ä ©« 'memdisk' ¨§ ¯ ª¥â 'syslinux'
|
||||
(http://syslinux.zytor.com). ‚ë ¬®¦¥â¥ ãáâ ®¢¨âì íâ®â ¯ ª¥â ¨«¨ ¯à®áâ®
|
||||
¨§¢«¥çì ¨§ ¥£® âà¥¡ã¥¬ë© ä ©«. <20>㦥 ⮫쪮 ä ©« 'memdisk'. (<28>®á«¥
|
||||
ãáâ ®¢ª¨ ¯ ª¥â ® ¡ã¤¥â ¢ '/usr/lib/syslinux/'). <20>â®â ä ©« â ª¦¥
|
||||
¯à¨« £ ¥âáï ª ¤¨áâਡã⨢ã.
|
||||
3. <20>®¬¥áâ¨â¥ ä ©« 'memdisk' ¢ ª â «®£ 'boot' ¨«¨ ¢ à §¤¥«, ¨á¯®«ì§ã¥¬ë© ¤«ï
|
||||
Kolibri.
|
||||
4. „®¡ ¢ì⥠¢ ä ©« ª®ä¨£ãà 樨 'menu.lst' ('grub.conf') § ¯¨áì á«¥¤ãî饣®
|
||||
¢¨¤ :
|
||||
4) …᫨ ã ¢ á ãáâ ®¢«¥ Linux, ¬®¦® áâநâì § £à㧪ã ç¥à¥§ GRUB.
|
||||
Š ¤¨áâਡã⨢㠯ਫ £ ¥âáï ä ©« 'memdisk', ¯®¬¥áâ¨â¥ ¥£® ¢ ª â «®£ 'boot'
|
||||
¨«¨ ¢ à §¤¥«, ¨á¯®«ì§ã¥¬ë© ¤«ï Kolibri.
|
||||
a) „«ï GRUB2, ¢ ¯ ¯ª¥ /etc/grub.d ¤®¡ ¢ì⥠¢ ®¤¨ ¨§ ä ©«®¢ § ¯¨áì:
|
||||
|
||||
menuentry 'KolibriOS' {
|
||||
linux16 (hd[<5B>®¬¥à ¦ñá⪮£® ¤¨áª ],[®¬¥à à §¤¥« ])[¯ãâì ª ä ©«ã]/memdisk
|
||||
initrd16 (hd[<5B>®¬¥à ¦ñá⪮£® ¤¨áª ],[®¬¥à à §¤¥« ])[¯ãâì ª ä ©«ã]/kolibri.img
|
||||
}
|
||||
|
||||
¯à¨¬¥à:
|
||||
|
||||
menuentry 'KolibriOS' {
|
||||
linux16 (hd0,msdos1)/boot/memdisk
|
||||
initrd16 (hd0,msdos1)/boot/kolibri.img
|
||||
}
|
||||
|
||||
¯®á«¥ 祣® ¢ â¥à¬¨ «¥ ¢ë¯®«¨â¥ ª®¬ ¤ã sudo update-grub.
|
||||
|
||||
¡) „«ï áâ ண® GRUB, ¤®¡ ¢ì⥠¢ ä ©« ª®ä¨£ãà 樨 'menu.lst' § ¯¨áì:
|
||||
|
||||
title KolibriOS
|
||||
kernel (hd[<5B>®¬¥à ¦ñá⪮£® ¤¨áª ],[®¬¥à à §¤¥« ])[¯ãâì ª ä ©«ã]/memdisk
|
||||
initrd (hd[<5B>®¬¥à ¦ñá⪮£® ¤¨áª ],[®¬¥à à §¤¥« ])[¯ãâì ª ä ©«ã]/kolibri.img
|
||||
|
||||
(<28>¥ § ¡ã¤ìâ¥, ç⮠㬥à æ¨ï à §¤¥«®¢ ¢ GRUB¥ ç¨ ¥âáï á 0.)
|
||||
<20>ਬ¥à:
|
||||
<EFBFBD>¥ § ¡ã¤ìâ¥, ç⮠㬥à æ¨ï ¢ GRUB ç¨ ¥âáï á 0. <20>ਬ¥à:
|
||||
|
||||
title KolibriOS
|
||||
kernel (hd0,0)/boot/memdisk
|
||||
initrd (hd0,3)/kolibri/kolibri.img
|
||||
|
||||
’à ¤¨æ¨®ë© ¢ ਠâ:
|
||||
|
||||
label KolibriOS
|
||||
root (hd[<5B>®¬¥à ¦ñá⪮£® ¤¨áª ],[<5B>®¬¥à à §¤¥« ])
|
||||
kernel [¯ãâì]/memdisk
|
||||
initrd [¯ãâì]/kolibri.img
|
||||
|
||||
‡¤¥áì 'memdisk' ¨ 'kolibri.img' áâ ¢ïâáï ¢ ®¤¨ à §¤¥«.
|
||||
|
||||
<20>ਬ¥à:
|
||||
label KolibriOS
|
||||
root (hd0,0)
|
||||
kernel /boot/memdisk
|
||||
initrd /boot/kolibri.img
|
||||
<20>â®â ¯à¨¬¥à - ¢ ਠâ, ®¯¨á ë© £«®ï§ë箬 ä®à㬥, á ãáâ ®¢ª®©
|
||||
¢ § £à㧮çë© à §¤¥« Linux (¥áâ¥á⢥®, ¡¥§ ¨á¯®«ì§®¢ ¨ï FAT à §¤¥« ).
|
||||
|
||||
5) „«ï GRUB2 ®¯¨á ë© ¢ ¯ãªâ¥ 4 ᯮᮡ ¬®¦¥â ¥¯®á।á⢥® ¥ ¯à®©â¨
|
||||
(¯à®¢¥à¥® Apocalypse_dn), ¢¬¥áâ® ª®¬ ¤ kernel ¨ initrd 㦮 ¨á¯®«ì§®¢ âì
|
||||
ᮮ⢥âá⢥® linux16 ¨ initrd16 (¯à¥¤«®¦¨« vkos).
|
||||
|
||||
III. “áâ ®¢ª USB-Flash- ª®¯¨â¥«ì.
|
||||
„«ï FAT32-⮬®¢ ¯¨á á¯¥æ¨ «ìë© § £àã§ç¨ª, ª®â®àë© ¢¬¥á⥠á ãáâ ®¢é¨ª®¬
|
||||
ä«¥èªã ¢å®¤¨â ¢ ª â «®£ HD_load\USB_Boot.
|
||||
|
@ -1,9 +1,9 @@
|
||||
Minimal system requirements for Kolibri 0.7.x.0:
|
||||
Minimal system requirements for KolibriOS:
|
||||
* CPU: Pentium, AMD 5x86 or Cyrix 5x86 without MMX with frequency 100 MHz
|
||||
* RAM: 8 Mb
|
||||
* Videocard: supporting VGA (640*480*16 mode) or Vesa
|
||||
* Keyboard: AT
|
||||
* Mouse: COM or PS/2
|
||||
* Mouse: COM, PS/2 or USB
|
||||
|
||||
The system can boot from any of following devices:
|
||||
- Floppy 3.5
|
||||
@ -46,53 +46,36 @@ only FAT volumes are ok.
|
||||
3) Moreover, there exist a program which allow load Kolibri directly from
|
||||
Windows 95/98/Me (of course, unloading it) - 9x2klbr (author - Diamond),
|
||||
supports FAT32 and NTFS.
|
||||
4) Usage of the loader GRUB. The way of using file 'memdisk' to load Kolibri
|
||||
has been described by derPENGUIN on english forum
|
||||
(http://meos32.7.forumer.com/viewtopic.php?t=110).
|
||||
The suggested method (described by Alver) is based on that description
|
||||
and was checked on grub-0.97-19mdv2007.0.
|
||||
1. Kolibri can write only on FAT filesystem, so if image file is placed not
|
||||
to FAT volume, the system can not save settings. Therefore if you have
|
||||
FAT32 partition, place 'kolibri.img' there.
|
||||
2. This method requires the file 'memdisk' from the package 'syslinux'
|
||||
(http://syslinux.zytor.com). You may install the whole package or only
|
||||
extract the mentioned file. Only the file 'memdisk' is needed. (After
|
||||
package install it will be in '/usr/lib/syslinux').
|
||||
3. Place the file 'memdisk' to the folder 'boot' or to the partition used
|
||||
for Kolibri.
|
||||
4. Add to the configuration file 'menu.lst' ('grub.conf') lines as follow:
|
||||
4) Usage of the loader GRUB. Place the file 'memdisk' to the folder 'boot'
|
||||
or to the partition used for Kolibri.
|
||||
a) For GRUB2, in the folder /etc/grub.d add to one of files next lines:
|
||||
|
||||
menuentry 'KolibriOS' {
|
||||
linux16 (hd[Hard disk number],[partition number])[path]/memdisk
|
||||
initrd16 (hd[Hard disk number],[partition number])[path]/kolibri.img
|
||||
}
|
||||
|
||||
example:
|
||||
|
||||
menuentry 'KolibriOS' {
|
||||
linux16 (hd0,msdos1)/boot/memdisk
|
||||
initrd16 (hd0,msdos1)/boot/kolibri.img
|
||||
}
|
||||
|
||||
then, run in terminal 'sudo update-grub'.
|
||||
|
||||
b) For old GRUB, add to the configuration file 'menu.lst' next lines:
|
||||
|
||||
title KolibriOS
|
||||
kernel (hd[Hard disk number],[partition number])[path]/memdisk
|
||||
initrd (hd[Hard disk number],[partition number])[path]/kolibri.img
|
||||
|
||||
(Remember that numeration of partitions in GRUB starts from 0.)
|
||||
Example:
|
||||
Remember that numeration in GRUB starts from 0. Example:
|
||||
|
||||
title KolibriOS
|
||||
kernel (hd0,0)/boot/memdisk
|
||||
initrd (hd0,3)/kolibri/kolibri.img
|
||||
|
||||
The initial variant was:
|
||||
|
||||
label KolibriOS
|
||||
root (hd[Hard disk number],[partition number])
|
||||
kernel [path]/memdisk
|
||||
initrd [path]/kolibri.img
|
||||
|
||||
Here 'memdisk' and 'kolibri.img' must be placed on the same partition.
|
||||
|
||||
Example:
|
||||
label KolibriOS
|
||||
root (hd0,0)
|
||||
kernel /boot/memdisk
|
||||
initrd /boot/kolibri.img
|
||||
This example is the variant described on english forum, with install to
|
||||
Linux boot partition (of course, without FAT partition).
|
||||
|
||||
5) The previous method could not work as is in GRUB2 (tested by Apocalypse_dn),
|
||||
the commands "linux16" and "initrd16" should be used instead of "kernel"
|
||||
and "initrd" (suggested by vkos).
|
||||
|
||||
III. Install to USB-Flash-drive.
|
||||
The special loader for FAT32-volumes has been written, it and its installer
|
||||
to flash drive can be found in the folder HD_load\USB_Boot.
|
||||
|
Loading…
Reference in New Issue
Block a user