Install.txt: update loading via GRUB

git-svn-id: svn://kolibrios.org@6440 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
pathoswithin 2016-05-29 19:13:26 +00:00
parent 65400f0014
commit 7da05771e2
5 changed files with 116 additions and 205 deletions

View File

@ -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 * CPU: Pentium, AMD 5x86 or Cyrix 5x86 without MMX with frequency 100 MHz
* RAM: 8 Mb * RAM: 8 Mb
* Videocard: supporting VGA (640*480*16 mode) or Vesa * Videocard: supporting VGA (640*480*16 mode) or Vesa
* Keyboard: AT * Keyboard: AT
* Mouse: COM or PS/2 * Mouse: COM, PS/2 or USB
The system can boot from any of following devices: The system can boot from any of following devices:
- Floppy 3.5 - Floppy 3.5
@ -46,53 +46,36 @@ only FAT volumes are ok.
3) Moreover, there exist a program which allow load Kolibri directly from 3) Moreover, there exist a program which allow load Kolibri directly from
Windows 95/98/Me (of course, unloading it) - 9x2klbr (author - Diamond), Windows 95/98/Me (of course, unloading it) - 9x2klbr (author - Diamond),
supports FAT32 and NTFS. supports FAT32 and NTFS.
4) Usage of the loader GRUB. The way of using file 'memdisk' to load Kolibri 4) Usage of the loader GRUB. Place the file 'memdisk' to the folder 'boot'
has been described by derPENGUIN on english forum or to the partition used for Kolibri.
(http://meos32.7.forumer.com/viewtopic.php?t=110). a) For GRUB2, in the folder /etc/grub.d add to one of files next lines:
The suggested method (described by Alver) is based on that description
and was checked on grub-0.97-19mdv2007.0. menuentry 'KolibriOS' {
1. Kolibri can write only on FAT filesystem, so if image file is placed not linux16 (hd[Hard disk number],[partition number])[path]/memdisk
to FAT volume, the system can not save settings. Therefore if you have initrd16 (hd[Hard disk number],[partition number])[path]/kolibri.img
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 example:
extract the mentioned file. Only the file 'memdisk' is needed. (After
package install it will be in '/usr/lib/syslinux'). menuentry 'KolibriOS' {
3. Place the file 'memdisk' to the folder 'boot' or to the partition used linux16 (hd0,msdos1)/boot/memdisk
for Kolibri. initrd16 (hd0,msdos1)/boot/kolibri.img
4. Add to the configuration file 'menu.lst' ('grub.conf') lines as follow: }
then, run in terminal 'sudo update-grub'.
b) For old GRUB, add to the configuration file 'menu.lst' next lines:
title KolibriOS title KolibriOS
kernel (hd[Hard disk number],[partition number])[path]/memdisk kernel (hd[Hard disk number],[partition number])[path]/memdisk
initrd (hd[Hard disk number],[partition number])[path]/kolibri.img initrd (hd[Hard disk number],[partition number])[path]/kolibri.img
(Remember that numeration of partitions in GRUB starts from 0.) Remember that numeration in GRUB starts from 0. Example:
Example:
title KolibriOS title KolibriOS
kernel (hd0,0)/boot/memdisk kernel (hd0,0)/boot/memdisk
initrd (hd0,3)/kolibri/kolibri.img 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. III. Install to USB-Flash-drive.
The special loader for FAT32-volumes has been written, it and its installer 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. to flash drive can be found in the folder HD_load\USB_Boot.

View File

@ -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 * CPU: Pentium, AMD 5x86 or Cyrix 5x86 without MMX with frequency 100 MHz
* RAM: 8 Mb * RAM: 8 Mb
* Videocard: supporting VGA (640*480*16 mode) or Vesa * Videocard: supporting VGA (640*480*16 mode) or Vesa
* Keyboard: AT * Keyboard: AT
* Mouse: COM or PS/2 * Mouse: COM, PS/2 or USB
The system can boot from any of following devices: The system can boot from any of following devices:
- Floppy 3.5 - Floppy 3.5
@ -46,53 +46,36 @@ only FAT volumes are ok.
3) Moreover, there exist a program which allow load Kolibri directly from 3) Moreover, there exist a program which allow load Kolibri directly from
Windows 95/98/Me (of course, unloading it) - 9x2klbr (author - Diamond), Windows 95/98/Me (of course, unloading it) - 9x2klbr (author - Diamond),
supports FAT32 and NTFS. supports FAT32 and NTFS.
4) Usage of the loader GRUB. The way of using file 'memdisk' to load Kolibri 4) Usage of the loader GRUB. Place the file 'memdisk' to the folder 'boot'
has been described by derPENGUIN on english forum or to the partition used for Kolibri.
(http://meos32.7.forumer.com/viewtopic.php?t=110). a) For GRUB2, in the folder /etc/grub.d add to one of files next lines:
The suggested method (described by Alver) is based on that description
and was checked on grub-0.97-19mdv2007.0. menuentry 'KolibriOS' {
1. Kolibri can write only on FAT filesystem, so if image file is placed not linux16 (hd[Hard disk number],[partition number])[path]/memdisk
to FAT volume, the system can not save settings. Therefore if you have initrd16 (hd[Hard disk number],[partition number])[path]/kolibri.img
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 example:
extract the mentioned file. Only the file 'memdisk' is needed. (After
package install it will be in '/usr/lib/syslinux'). menuentry 'KolibriOS' {
3. Place the file 'memdisk' to the folder 'boot' or to the partition used linux16 (hd0,msdos1)/boot/memdisk
for Kolibri. initrd16 (hd0,msdos1)/boot/kolibri.img
4. Add to the configuration file 'menu.lst' ('grub.conf') lines as follow: }
then, run in terminal 'sudo update-grub'.
b) For old GRUB, add to the configuration file 'menu.lst' next lines:
title KolibriOS title KolibriOS
kernel (hd[Hard disk number],[partition number])[path]/memdisk kernel (hd[Hard disk number],[partition number])[path]/memdisk
initrd (hd[Hard disk number],[partition number])[path]/kolibri.img initrd (hd[Hard disk number],[partition number])[path]/kolibri.img
(Remember that numeration of partitions in GRUB starts from 0.) Remember that numeration in GRUB starts from 0. Example:
Example:
title KolibriOS title KolibriOS
kernel (hd0,0)/boot/memdisk kernel (hd0,0)/boot/memdisk
initrd (hd0,3)/kolibri/kolibri.img 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. III. Install to USB-Flash-drive.
The special loader for FAT32-volumes has been written, it and its installer 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. to flash drive can be found in the folder HD_load\USB_Boot.

View File

@ -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 * CPU: Pentium, AMD 5x86 oppure Cyrix 5x86 senza MMX con frequenza 100 MHz
* RAM: 8 Mb * RAM: 8 Mb
* Scheda video: supporting VGA (640*480*16 mode) or Vesa * Scheda video: supporting VGA (640*480*16 mode) or Vesa
* Tastiera: AT * Tastiera: AT
* Mouse: COM or PS/2 * Mouse: COM, PS/2 or USB
Il sistema può essere avviato da uno dei seguenti dispositivi Il sistema può essere avviato da uno dei seguenti dispositivi
- Floppy 3.5 - Floppy 3.5
@ -48,54 +48,36 @@ tipo FAT
3) Esiste un programma, 9x2klbr (scritto da Diamond) in grado di avviare 3) Esiste un programma, 9x2klbr (scritto da Diamond) in grado di avviare
Kolibri direttamente da Windows 95/98/Me, il programma funziona con Kolibri direttamente da Windows 95/98/Me, il programma funziona con
le partizioni FAT32 e NTFS. le partizioni FAT32 e NTFS.
4) È possibile usare il bootloader GRUB per caricare Kolibri. È 4) Usage of the loader GRUB. Place the file 'memdisk' to the folder 'boot'
necessario usare il file 'memdisk', come descritto da derPENGUIN sul or to the partition used for Kolibri.
forum (http://meos32.7.forumer.com/viewtopic.php?t=110). a) For GRUB2, in the folder /etc/grub.d add to one of files next lines:
Il metodo suggerito (descritto da Alver) è stato testato con
grub-0.97-19mdv2007.0. menuentry 'KolibriOS' {
1. Kolibri può scrivere solamente sui filesystem di tipo FAT, se linux16 (hd[Hard disk number],[partition number])[path]/memdisk
quindi il file immagine non si trova su una partizione di questo initrd16 (hd[Hard disk number],[partition number])[path]/kolibri.img
tipo, non sarà in grado di salvare eventuali impostazioni. }
2. Questo metodo richiede il file 'memdisk' dal pacchetto 'syslinux'
(http://syslinux.zytor.com). example:
3. È sufficiente posizionare il file 'memdisk' nella cartella '/boot'
oppure nella stessa partizione usata da KolibriOS. menuentry 'KolibriOS' {
4. Aggiungere al file 'menu.lst' ('grub.conf') le seguenti righe di linux16 (hd0,msdos1)/boot/memdisk
configurazione: 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 title KolibriOS
kernel (hd[Hard disk number],[partition number])[path]/memdisk kernel (hd[Hard disk number],[partition number])[path]/memdisk
initrd (hd[Hard disk number],[partition number])[path]/kolibri.img initrd (hd[Hard disk number],[partition number])[path]/kolibri.img
(NOTA: La numerazione delle partizioni di GRUB parte da 0.) Remember that numeration in GRUB starts from 0. Example:
Esempio:
title KolibriOS title KolibriOS
kernel (hd0,0)/boot/memdisk kernel (hd0,0)/boot/memdisk
initrd (hd0,3)/kolibri/kolibri.img 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. III. Installazione su chiave USB.
Nella cartella HD_load\USB_Boot è possibile trovare un loader che Nella cartella HD_load\USB_Boot è possibile trovare un loader che
permette di installare KolibriOS su chiave USB. Se la chiave USB non è permette di installare KolibriOS su chiave USB. Se la chiave USB non è

View File

@ -1,9 +1,9 @@
Œ¨­¨¬ «ì­ë¥ á¨á⥬­ë¥ âॡ®¢ ­¨ï Š®«¨¡à¨ 0.7.x.x: Œ¨­¨¬ «ì­ë¥ á¨á⥬­ë¥ âॡ®¢ ­¨ï Š®«¨¡à¨Ž‘:
* CPU: Pentium, AMD 5x86 ¨«¨ Cyrix 5x86 ¡¥§ MMX á ç áâ®â®© 100 MHz * CPU: Pentium, AMD 5x86 ¨«¨ Cyrix 5x86 ¡¥§ MMX á ç áâ®â®© 100 MHz
* RAM: 8 Mb * RAM: 8 Mb
* ‚¨¤¥®ª àâ : ¯®¤¤¥à¦¨¢ îé ï VGA (०¨¬ 640*480*16) ¨«¨ Vesa * ‚¨¤¥®ª àâ : ¯®¤¤¥à¦¨¢ îé ï VGA (०¨¬ 640*480*16) ¨«¨ Vesa
* Š« ¢¨ âãà : AT * Š« ¢¨ âãà : AT
* Œëèì: COM ¨«¨ PS/2 * Œëèì: COM, PS/2 ¨«¨ USB
‘¨á⥬  ¬®¦¥â § £à㦠âìáï á «î¡®£® ¨§ á«¥¤ãîé¨å ãáâனáâ¢: ‘¨á⥬  ¬®¦¥â § £à㦠âìáï á «î¡®£® ¨§ á«¥¤ãîé¨å ãáâனáâ¢:
- Floppy 3.5 - Floppy 3.5
@ -47,57 +47,37 @@ LiveCD,
3) Šà®¬¥ ⮣®, ¥áâì ¯à®£à ¬¬ , ¯®§¢®«ïîé ï § £à㦠âì Kolibri ­¥¯®á।á⢥­­® 3) Šà®¬¥ ⮣®, ¥áâì ¯à®£à ¬¬ , ¯®§¢®«ïîé ï § £à㦠âì Kolibri ­¥¯®á।á⢥­­®
¨§ Windows 95/98/Me (¥áâ¥á⢥­­®, ¢ë£àã¦ ï ¯®á«¥¤­îî) - íâ® 9x2klbr ¨§ Windows 95/98/Me (¥áâ¥á⢥­­®, ¢ë£àã¦ ï ¯®á«¥¤­îî) - íâ® 9x2klbr
( ¢â®à - Diamond), ¯®¤¤¥à¦ª  FAT32 ¨ NTFS. ( ¢â®à - Diamond), ¯®¤¤¥à¦ª  FAT32 ¨ NTFS.
4) ˆá¯®«ì§®¢ ­¨¥ ¢®§¬®¦­®á⥩ § £àã§ç¨ª  GRUB. 4) …᫨ ã ¢ á ãáâ ­®¢«¥­ Linux, ¬®¦­® ­ áâநâì § £à㧪ã ç¥à¥§ GRUB.
‘¯®á®¡ ¨á¯®«ì§®¢ ­¨ï ä ©«  'memdisk' ¤«ï § £à㧪¨ Kolibri ®¯¨á « Š ¤¨áâਡã⨢㠯ਫ £ ¥âáï ä ©« 'memdisk', ¯®¬¥áâ¨â¥ ¥£® ¢ ª â «®£ 'boot'
derPENGUIN ­   ­£«®ï§ëç­®¬ ä®à㬥 ¨«¨ ¢ à §¤¥«, ¨á¯®«ì§ã¥¬ë© ¤«ï Kolibri.
(http://meos32.7.forumer.com/viewtopic.php?t=110). a) „«ï GRUB2, ¢ ¯ ¯ª¥ /etc/grub.d ¤®¡ ¢ì⥠¢ ®¤¨­ ¨§ ä ©«®¢ § ¯¨áì:
<20>।« £ ¥¬ë© ¢ à¨ ­â (®¯¨á « Alver) ¡ §¨àã¥âáï ­  ⮬ ®¯¨á ­¨¨ ¨ ¡ë«
¨á¯à®¡®¢ ­ ­  grub-0.97-19mdv2007.0. menuentry 'KolibriOS' {
1. Kolibri ¯®¤¤¥à¦¨¢ ¥â § ¯¨áì ⮫쪮 ­  ä ©«®¢ãî á¨á⥬ã FAT, linux16 (hd[<5B>®¬¥à ¦ñá⪮£® ¤¨áª ],[­®¬¥à à §¤¥« ])[¯ãâì ª ä ©«ã]/memdisk
á«¥¤®¢ â¥«ì­®, ¥á«¨ ãáâ ­®¢¨âì ä ©« ®¡à §  ­¥ ¢ FAT à §¤¥«, â® ¡ã¤¥â initrd16 (hd[<5B>®¬¥à ¦ñá⪮£® ¤¨áª ],[­®¬¥à à §¤¥« ])[¯ãâì ª ä ©«ã]/kolibri.img
­¥¢®§¬®¦­® ¨§¬¥­ïâì ­ áâனª¨ ¢ Kolibri. <20>®í⮬㠥᫨ ¥áâì à §¤¥« FAT32, }
¯®¬¥áâ¨â¥ ä ©« kolibri.img â㤠.
2. ‚ ¬ ¯®âॡã¥âáï ä ©« 'memdisk' ¨§ ¯ ª¥â  'syslinux' ¯à¨¬¥à:
(http://syslinux.zytor.com). ‚ë ¬®¦¥â¥ ãáâ ­®¢¨âì íâ®â ¯ ª¥â ¨«¨ ¯à®áâ®
¨§¢«¥çì ¨§ ­¥£® âà¥¡ã¥¬ë© ä ©«. <20>㦥­ ⮫쪮 ä ©« 'memdisk'. (<28>®á«¥ menuentry 'KolibriOS' {
ãáâ ­®¢ª¨ ¯ ª¥â  ®­ ¡ã¤¥â ¢ '/usr/lib/syslinux/'). <20>â®â ä ©« â ª¦¥ linux16 (hd0,msdos1)/boot/memdisk
¯à¨« £ ¥âáï ª ¤¨áâਡã⨢ã. initrd16 (hd0,msdos1)/boot/kolibri.img
3. <20>®¬¥áâ¨â¥ ä ©« 'memdisk' ¢ ª â «®£ 'boot' ¨«¨ ¢ à §¤¥«, ¨á¯®«ì§ã¥¬ë© ¤«ï }
Kolibri.
4. „®¡ ¢ì⥠¢ ä ©« ª®­ä¨£ãà æ¨¨ 'menu.lst' ('grub.conf') § ¯¨áì á«¥¤ãî饣® ¯®á«¥ 祣® ¢ â¥à¬¨­ «¥ ¢ë¯®«­¨â¥ ª®¬ ­¤ã sudo update-grub.
¢¨¤ :
¡) „«ï áâ à®£® GRUB, ¤®¡ ¢ì⥠¢ ä ©« ª®­ä¨£ãà æ¨¨ 'menu.lst' § ¯¨áì:
title KolibriOS title KolibriOS
kernel (hd[<5B>®¬¥à ¦ñá⪮£® ¤¨áª ],[­®¬¥à à §¤¥« ])[¯ãâì ª ä ©«ã]/memdisk kernel (hd[<5B>®¬¥à ¦ñá⪮£® ¤¨áª ],[­®¬¥à à §¤¥« ])[¯ãâì ª ä ©«ã]/memdisk
initrd (hd[<5B>®¬¥à ¦ñá⪮£® ¤¨áª ],[­®¬¥à à §¤¥« ])[¯ãâì ª ä ©«ã]/kolibri.img initrd (hd[<5B>®¬¥à ¦ñá⪮£® ¤¨áª ],[­®¬¥à à §¤¥« ])[¯ãâì ª ä ©«ã]/kolibri.img
(<28>¥ § ¡ã¤ìâ¥, çâ® ­ã¬¥à æ¨ï à §¤¥«®¢ ¢ GRUB¥ ­ ç¨­ ¥âáï á 0.) <EFBFBD>¥ § ¡ã¤ìâ¥, çâ® ­ã¬¥à æ¨ï ¢ GRUB ­ ç¨­ ¥âáï á 0. <20>ਬ¥à:
<20>ਬ¥à:
title KolibriOS title KolibriOS
kernel (hd0,0)/boot/memdisk kernel (hd0,0)/boot/memdisk
initrd (hd0,3)/kolibri/kolibri.img 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-­ ª®¯¨â¥«ì. III. “áâ ­®¢ª  ­  USB-Flash-­ ª®¯¨â¥«ì.
„«ï FAT32-⮬®¢ ­ ¯¨á ­ ᯥ樠«ì­ë© § £àã§ç¨ª, ª®â®àë© ¢¬¥á⥠á ãáâ ­®¢é¨ª®¬ „«ï FAT32-⮬®¢ ­ ¯¨á ­ ᯥ樠«ì­ë© § £àã§ç¨ª, ª®â®àë© ¢¬¥á⥠á ãáâ ­®¢é¨ª®¬
­  ä«¥èªã ¢å®¤¨â ¢ ª â «®£ HD_load\USB_Boot. ­  ä«¥èªã ¢å®¤¨â ¢ ª â «®£ HD_load\USB_Boot.

View File

@ -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 * CPU: Pentium, AMD 5x86 or Cyrix 5x86 without MMX with frequency 100 MHz
* RAM: 8 Mb * RAM: 8 Mb
* Videocard: supporting VGA (640*480*16 mode) or Vesa * Videocard: supporting VGA (640*480*16 mode) or Vesa
* Keyboard: AT * Keyboard: AT
* Mouse: COM or PS/2 * Mouse: COM, PS/2 or USB
The system can boot from any of following devices: The system can boot from any of following devices:
- Floppy 3.5 - Floppy 3.5
@ -46,53 +46,36 @@ only FAT volumes are ok.
3) Moreover, there exist a program which allow load Kolibri directly from 3) Moreover, there exist a program which allow load Kolibri directly from
Windows 95/98/Me (of course, unloading it) - 9x2klbr (author - Diamond), Windows 95/98/Me (of course, unloading it) - 9x2klbr (author - Diamond),
supports FAT32 and NTFS. supports FAT32 and NTFS.
4) Usage of the loader GRUB. The way of using file 'memdisk' to load Kolibri 4) Usage of the loader GRUB. Place the file 'memdisk' to the folder 'boot'
has been described by derPENGUIN on english forum or to the partition used for Kolibri.
(http://meos32.7.forumer.com/viewtopic.php?t=110). a) For GRUB2, in the folder /etc/grub.d add to one of files next lines:
The suggested method (described by Alver) is based on that description
and was checked on grub-0.97-19mdv2007.0. menuentry 'KolibriOS' {
1. Kolibri can write only on FAT filesystem, so if image file is placed not linux16 (hd[Hard disk number],[partition number])[path]/memdisk
to FAT volume, the system can not save settings. Therefore if you have initrd16 (hd[Hard disk number],[partition number])[path]/kolibri.img
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 example:
extract the mentioned file. Only the file 'memdisk' is needed. (After
package install it will be in '/usr/lib/syslinux'). menuentry 'KolibriOS' {
3. Place the file 'memdisk' to the folder 'boot' or to the partition used linux16 (hd0,msdos1)/boot/memdisk
for Kolibri. initrd16 (hd0,msdos1)/boot/kolibri.img
4. Add to the configuration file 'menu.lst' ('grub.conf') lines as follow: }
then, run in terminal 'sudo update-grub'.
b) For old GRUB, add to the configuration file 'menu.lst' next lines:
title KolibriOS title KolibriOS
kernel (hd[Hard disk number],[partition number])[path]/memdisk kernel (hd[Hard disk number],[partition number])[path]/memdisk
initrd (hd[Hard disk number],[partition number])[path]/kolibri.img initrd (hd[Hard disk number],[partition number])[path]/kolibri.img
(Remember that numeration of partitions in GRUB starts from 0.) Remember that numeration in GRUB starts from 0. Example:
Example:
title KolibriOS title KolibriOS
kernel (hd0,0)/boot/memdisk kernel (hd0,0)/boot/memdisk
initrd (hd0,3)/kolibri/kolibri.img 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. III. Install to USB-Flash-drive.
The special loader for FAT32-volumes has been written, it and its installer 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. to flash drive can be found in the folder HD_load\USB_Boot.