Código:
y lo solucione con modules=piix<--en mi caso sino coloco eso, no funciona.ATTENTION if you get a kernel panic below and are using an intel chipset, append early modules==piix to the kernel command line IP-Config: no device to configure Kernel panic - not syncing: Atemped to kill init
Edit /etc/mkinitcpio.conf to only have ide or sata or scsi depending on what your system actually needs to boot.
Edita /etc/mkinitcpio.conf para solo tener ide o sata o scsi dependiendo de lo que tu sistema actualmnete necesite para bootear
Retrieved from http://wiki.archlinux.org/index.php/...ing_mkinitcpio
Código:
El disco donde tengo arch es sda5 así que no modifique nada más...# /sbin/mkinitcpio -m modules=piix -k 2.6.19-ARCH -c /etc/mkinitcpio.conf -g /boot/kernel26-fallback.img :: Begin build :: Parsing hook [base] :: Parsing hook [udev] :: Parsing hook [autodetect] :: Parsing hook [ide] :: Parsing hook [scsi] :: Parsing hook [sata] :: Parsing hook [filesystems] :: Generating module dependencies :: Generating image '/boot/kernel26-fallback.img'...SUCCESS
Si les aparece algo como esto:
Código:
Deben modificaren el grub initrd26.img por kernel26-fallback.img.No filesystem could mount root, tried Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(0,0)
Código:
title Arch Linux 0.8 (Voodoo) root (hd1,4) kernel /boot/vmlinuz26 root=/dev/sda5 vga=791 ro initrd /boot/kernel26-fallback.img savedefault boot
Código:
# nano /etc/locale.gen ........... es_ES.UTF-8 UTF-8
Código:
Alguien tiene una buena traducción para el termino "hook"? # gedit /etc/rc.conf ........... LOCALE="es_ES.utf8"
Encontre esta definición.
Definition: hook: The technique of inserting code into a system call
Definición: hook: La técnica de insertar código en una llamada a sistema
in order to alter it.
para alterarla.
The typical hook works by replacing the function pointer to the call
El hook típico funciona reemplazando el puntero de la función con la llamada
with its own,
then once it is done doing its processing,
entonces una vez que se procese,
it will then call the original function pointer.
entonces llamará el puntero original de la función.
Chau.