El origen del kernel Linux

¿Alguna vez te preguntaste cómo era el kernel de Linux cuando se publicó por primera vez? Bueno, ahora podés saciar tu curiosidad echando un ojo al código fuente de la versión 0.01. Está disponible para su descarga desde los archivos del kernel.


Linus Torvalds nos dejó con esta corta introducción sobre el proyecto (en inglés):

This is a free minix-like kernel for i386(+) based AT-machines.  Full source is included, and this source has been used to produce a running kernel on two different machines.  Currently there are no kernel binaries for public viewing, as they have to be recompiled for different machines.  You need to compile it with gcc (I use 1.40, don’t know if 1.37.1 will handle all __asm__-directives), after having changed the relevant configuration file(s).

As the version number (0.01) suggests this is not a mature product. Currently only a subset of AT-hardware is supported (hard-disk, screen, keyboard and serial lines), and some of the system calls are not yet fully implemented (notably mount/umount aren’t even implemented).  See comments or readme’s in the code.

This version is also meant mostly for reading – ie if you are interested in how the system looks like currently.  It will compile and produce a working kernel, and though I will help in any way I can to get it working on your machine (mail me), it isn’t really supported.  Changes are frequent, and the first «production» version will probably differ wildly from this pre-alpha-release.

Hardware needed for running linux:
– 386 AT
– VGA/EGA screen
– AT-type harddisk controller (IDE is fine)
– Finnish keyboard (oh, you can use a US keyboard, but not
without some practise

The Finnish keyboard is hard-wired, and as I don’t have a US one I cannot change it without major problems. See kernel/keyboard.s for details. If anybody is willing to make an even partial port, I’d be
grateful. Shouldn’t be too hard, as it’s tabledriven (it’s assembler though, so …)

Although linux is a complete kernel, and uses no code from minix or other sources, almost none of the support routines have yet been coded. Thus you currently need minix to bootstrap the system. It might be possible to use the free minix demo-disk to make a filesystem and run linux without having minix, but I don’t know…


3 comentarios, deja el tuyo

Deja tu comentario

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *

*

*

  1. Responsable de los datos: Miguel Ángel Gatón
  2. Finalidad de los datos: Controlar el SPAM, gestión de comentarios.
  3. Legitimación: Tu consentimiento
  4. Comunicación de los datos: No se comunicarán los datos a terceros salvo por obligación legal.
  5. Almacenamiento de los datos: Base de datos alojada en Occentus Networks (UE)
  6. Derechos: En cualquier momento puedes limitar, recuperar y borrar tu información.

  1.   gus dijo

    y soy feliz porque soy un jugon pero en mi otra particion tengo debian que lo utilizo para trabajar con los proyectos de la U… (perdon queria decir GPL3).

  2.   krafty dijo

    Sin lugar a duda una de las fuentes de ayuda e inspiración a la hora de diseñar el Kernel Linux fue el libro «The Design of the UNIX Operating System» de Maurice J.Bach.

  3.   Sebax dijo

    Lo estaba buscando para revisarlo, muchas gracias!!!