Error after upgrading bios on IBM Thinkpad T60
Ver este post en español
After updating bios from 1.07 to 2.13 I got the error:
Initializing Intel(R) Boot Agent GE v1.2.31
PXE-E05: The LAN adapter's configuation is corrupted or has not been initialized. The Boot Agent cannot continue.
After another screen show:
Expansion ROM not initialized - PCI on Motherboard
Bus:00, Device:00, Function:00
Press [ESC] to continue
To fix we have to set default values to NIC's rom.
Download the Intel ethernet boot utility:
http://downloadcenter.intel.com/Detail_Desc.aspx?agr=Y&DwnldID=19186&keyword=%22proboot.exe%22&DownloadType=Utilities%2c+Tools+and+Examples&OSFullname=OS+Independent&lang=eng
I copied to a DOS usb boot pendrive. Two commands must be run:
1. To see NIC's Port
#BootUtil -p
2. To set default data:
#bootutil -nic=X -defcfg
Change X with the number that is returned by previous command, usually 1.
Setting PXE EEPROM words back to defaults on NIC 1...done
Everything smooth...
Another workaround is going to bios and set "Read Network ROM on Startup" disabled under Config-network.
Source
More info about updating and configuring Linux on this laptop and about IBM/Lenovo can be found in thinkwiki.org
Disclaimer: Use the above information under your own responsabilty. Stephenchow.es is not responsible of possible damages caused due to the use of this information.
Error al actualizar la bios de un IBM Thinkpad T60
You can see this post in english (or something very similar to)
Tras actualizar la bios de la 1.07 a la 2.13 obtengo el siguiente error:
Initializing Intel(R) Boot Agent GE v1.2.31
PXE-E05: The LAN adapter's configuation is corrupted or has not been initialized. The Boot Agent cannot continue.
Tras esta pantalla aparece otra:
Expansion ROM not initialized - PCI on Motherboard
Bus:00, Device:00, Function:00
Press [ESC] to continue
Para arreglarlo hay que restaurar los valores a la rom de la tarjeta de red.
Procedemos a descargar la Intel ethernet boot utility:
http://downloadcenter.intel.com/Detail_Desc.aspx?agr=Y&DwnldID=19186&keyword=%22proboot.exe%22&DownloadType=Utilities%2c+Tools+and+Examples&OSFullname=OS+Independent&lang=eng
Yo la copie a un pendrive con arranque dos hay que ejecutar dos comandos:
1. para ver el puerto de la tarjeta
#BootUtil -p
2. Recargar los valores por defecto:
#bootutil -nic=X -defcfg
Sustituir x por el número de puerto que devuelve el comando anterior, normalmente el 1.
Setting PXE EEPROM words back to defaults on NIC 1...done
Everything smooth...
Otra forma más chapucera es entrar en la bios, config y en network desactivar la opción: "Read Network ROM on Startup".
Fuente
Mas info sobre actualización y configuración de este portátil y sobre IBM/Lenovo enthinkwiki.org
Disclaimer: Usa la información anterior bajo tu propia responsabilidad. Stepehnchow.es no se hace responsable de posibles daños causados al seguir dicha información.
Crear un disco duro desde un USB para Virtualbox
Con Virtualbox es posible crear un disco duro virtual que apunte fisicamente a un pendrive usb por ejemplo.
Para ello hay que usar el comando vboxmanage. El inconveniente es que es necesario ejecutar el comando y la máquina virtual en modo administrador si no da error al iniciar Virtualbox.
Probado en:
Windows 7 Pro 64 bits.
Oracle Virtualbox 4.1.8
Para ello hay que ejecutar una consola en modo administrador:
-En el menu inicio escribir cmd y pulsar ctrl+shit+enter
-Ir a c:\program files\oracle\virtualbox
Escribir:
VBoxManage internalcommands createrawvmdk -filename "Ruta\de\guardado\nombre.vmdk" -rawdisk \\.\PhysicalDriveX
Donde X es el número de tu disco usb. Lo puedes ver en el administrador de discos.
Luego puedes indicar en la creación de la máquina virtual la ruta hasta el archivo creado. Esto lo que hace es un enlace no clona el contenido del usb.
Hay que abrir la máquina como administrador.
Fuente y capturas: Agnipulse.com
