Ir al contenido principal

Fedora 17 hp mini 2140

Ayer terminé de instalar Fedora 17, en mini, traté de seguir un post sobre hacer la actualización desde Fedora 16, parecía que iba a funcionar, sin embargo olvidé conectarla y se acabó la pila.

El kernel quedó en un estado roto, no quise batallar y mejor volví a bajar el iso 32bits utilizando multiboot,  traigo varias distros de linux (bodhi, fedora 16/17, ubuntu 12.04LTS y un recuperador de discos) un respaldo rápido de las fotos y algunos docs fué suficiente, la mini funciona perfecto para mis hijos, sin embargo cuando quieren ver flash (discovery kids, bakugan etc) la mini apenas y puede con esas páginas; en especial los juegos de flash realmente es imposible solo los muy básicos se pueden. Para ellos los programas de KDEEdu GCompris y ChildsPlay funcionan perfecto.

Quisiera poder modificar el código de Childsplay para que se ajuste mejor a la pantalla de la mini 10''.

Instalar Sugar-OLPC es muy fácil pues viene en los repositorios de fedora. Sería interesante programar alguna que otra actividad de sugar que tiene bindings en python como primer lenguaje de alto nivel, por supuesto c como base.

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...

Changing Background GWorkspace

GWorkspace application in GNUstep, is like the equivalent to Nautilus under GNOME. It has interesting features that I'm beginning to love, right now I believe GNUstep is for UNIX-geek-old-fashioned. Here is the screenshot for changing the background image, you need to go to Info->Preferences->Desktop (drop down) then click Choose button for search the image. I'm running GNUstep compiled in Ubuntu 10.04 and the image comes from the folder / usr/share/backgrounds/ Another really cute functionality of GWorkspace is start applications from their installation folder, you need to open the viewer from menu View->Viewer and go to the installation application folder (in my case compiled from sources: /usr/local/lib/GNUstep/Applications ) then a double-click starts the application (*.app)

meta:progid

The meta:progid attribute on the Page directive is necessary if the page will ever be opened in SharePoint Designer. You should include this as site pages are supposed to support customization and thus, be opened in SharePoint Designer. If you don't want to allow pages to be opened and customized in SharePoint Designer, then you should do that through permissions, not at the page level. Using ASP.NET 2.0 Code Behind Files in SharePoint v3 Sites SPFile.ProgID gets a string that identifies the application in which the file was created. That's all the meta:progid is about. It's a identifier for SharePoint and you probably should not use other attributes, they might cause run-time error. Ref: msdn forum thread explanation