Ir al contenido principal

ChromeOS en VirtualBox


Probando ChromeOS en VirtualBox, mi mente a costumbrada por mas de 19 años al escritorio de computadora,...lo primero que intenté hacer fue disminuir el browser obviamente no funciona ese paradigma en ChromeOS (ver videos officiales)

... VirtualBox corre bien bajo vista aunque particularmente esta máquina virtual no debe estar optimizada pues es muy lenta y no reconoció por supuesto el teclado español-latinoamericano, lo sorprendente es la velocidad con que arranca (explicación oficial),

mi VB booting




Referencia:

Releasing the Chromium OS open source project

Comentarios

Entradas populares de este blog

GNUstep ProjectCenter/Gorm/AClock running Ubuntu 10.04

Download sources GNUstep (stable or unstable) to compile; Dependencies First you need to check dependencies in ubuntu and install with sudo apt-get or search before with apt-cache command; almost every package ends with *-dev in ubuntu repositories this command will install all dependencies for compile: ~$ sudo apt-get install libffi-dev libssl-dev libxml2-dev libxslt1-dev libcairo2-dev libxt-dev GNUstep Make compiling GNUstep make is our first target; it's the primary package to compile GNUstep applications. get the package, untar and change into the folder and compile: ~$wget ftp://ftp.gnustep.org/pub/gnustep/core/gnustep-make-2.4.0.tar.gz ~$tar xzvf gnustep-make-2.4.0.tar.gz ~$cd gnustep-make-2.4.0/ ~$./configure --prefix=/usr/local/GNUstep/ --enable-native-objc-exceptions ~$make ~$sudo make -E install *NOTE: the options /usr/local/GNUstep/ is the folder where all the GNUstep is going to install. the second option --enable-native-objc-exceptions enable th...