Ver Mensaje Individual
  #1 (permalink)  
Antiguo 15/01/2007, 11:33
shadfx
 
Fecha de Ingreso: octubre-2006
Mensajes: 57
Antigüedad: 17 años, 6 meses
Puntos: 0
panic below and are using an intel chipset[Solucionado]

Hola para los que tengan intel y archlinux, como es mi caso y les aparezca este error:
Código:
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
y lo solucione con modules=piix<--en mi caso sino coloco eso, no funciona.
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:
# /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
El disco donde tengo arch es sda5 así que no modifique nada más...

Si les aparece algo como esto:
Código:
No filesystem could mount root, tried
Kernel panic - not syncing: VFS:
Unable to mount root fs on unknown-block(0,0)
Deben modificaren el grub initrd26.img por kernel26-fallback.img.
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:
# gedit /etc/rc.conf
...........
LOCALE="es_ES.utf8"
Alguien tiene una buena traducción para el termino "hook"?

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.