lunes, noviembre 14
miércoles, noviembre 2
Julian Assange: “No he sido acusado de ningún delito en ningún país”
Tras la noticia que os hemos estado contado esta mañana por la cual Julian Assange ha perdido el recurso de apelación contra su extradición a Suecia, la cabeza visible de WikiLeaks ha emitido un corto comunicado a su salida de los juzgados.
Con un escueto y claro “No he sido acusado de ningún delito en ningún país”, el hombre ha explicado su sentir después de emitirse la sentencia. Julian Assange no ha querido dar más explicaciones y ha remitido próximamente a los medios a la web, lugar desde el que presumiblemente se extenderá sobre el camino que ha tomado su posible extradición y los pasos que dará a partir de ahora.
A la salida de esta corta comparecencia, el movimiento Occupy en Londres ha elevado varias copias de la sentencia emitida en su contra en solidaridad con el hombre.
Sea o no una caza de brujas, Assange se encuentra a un paso de ser extraditado en Suecia, país que podría permitir posteriormente su entrada a Estados Unidos donde presuntamente le podría esperar un juicio por las informaciones filtradas a través de WikiLeaks.
Quizá hoy más que nunca vale la pena escuchar las palabras Noam Chomsky emitidas ayer tras su participación en Panel 2.0. Detrás de la trama sobre la investigación a Assange podría encontrarse el esfuerzo de Estados Unidos por derribar cualquier posibilidad de que WikiLeaks siga operando tras el bloqueo que ha acabado asfixiando a la organización hasta el punto de parar sus actividades.
martes, septiembre 15
Miniaturas de PDFs en Paperclip
EL modelo sobre el que voy a trabajar es Documentos < AR:Base el cual tiene:
has_attached_file :archivo,
:styles => {
:thumb => ["100x100",:jpg],
:small => ["150x150",:jpg],
:micro => ["50x50",:png]},
:processors => lambda { |a| a.archivo.content_type.match(/pdf/) ? [ :compress ] : [ :thumbnail ] }
En processors utilizo lambda para elegir que procesador utilizar segun el tipo de archivo: compress para los pdfs y thumbnail para el resto.
Tambien tengo puesto que solo haga miniaturas para PDFs y imagenes en un filtro before_post_process
before_post_process :check_content_type_for_thumbnail
def check_content_type_for_thumbnail
#Si devuelve true,seguira el preproceso
return true if self.archivo.content_type.match(/image/)
return true if self.archivo.content_type.match(/pdf/)
return false
end
Una vez hecho esto, en vendor/plugins/paperclip/lib/paperclip/ puedes dejar las clases con tus propios procesadores.El mio es muy sencillo, lo unico que hace es ejecutar el convert de ImageMagick para generar la miniatura.
module Paperclip
class Compress < Processor
attr_accessor :file
def initialize file, options = {}, attachment = nil
Paperclip.log("[PAPERCLIP::Processor::Compress]Inicializando con #{file} #{options} #{attachment}")
super
@file = file
@options = options
@attachment = attachment
@format = options[:format]
@instance = @options[:instance]
@current_format = File.extname(@file.path)
@basename = File.basename(@file.path, @current_format)
end
def make
Paperclip.log("[PAPERCLIP::Processor::Compress] #{@options[:instance].class}")
@file.pos = 0 # Reset the file position incase it is coming out of a another processor
dst = Tempfile.new([@basename, @format].compact.join("."))
dst.binmode
args = "-resize #{@options[:geometry]} -format #{@format.to_s.gsub(".","")} #{@file.path}[0] #{dst.path}"
Paperclip.log("[PAPERCLIP::Processor::Compress] Voy a empezar a crear la miniatura #{args}")
begin
success = Paperclip.run('convert',args)
rescue PaperclipCommandLineError => e
Paperclip.log("#{e.inspect}")
raise PaperclipError, "Ha ocurrido un error generando la miniatura#{@basename} #{$!}" if @whiny_thumbnails
end
dst
end
end
end
Para poder utilizar el log, es necesario
Paperclip.options[:log] = true
Para recibir la instancia con la que estaba trabajando tuve que modificar vendor/plugins/paperclip/lib/paperclip/attachment.rb, en concreto post_process_styles :
- Paperclip.processor(processor).make(file, args, self)
+ Paperclip.processor(processor).make(file, args.merge(:instance => @instance),self)
Una vez hecho esto, a funcionar.Muy importante devolver el resultado en el Procesador, a mi se me olvido y estuve un buen rato peleandome con un error muy extraño en el .save del controlador que lo use.
martes, diciembre 2
Problema compilando Ruby/openSSL en CentOS 3.1
/usr/include/openssl/kssl.h:72:18: krb5.h: No such file or directory
Al parecer el problema viene porque algunas versiones antiguas de RedHat anteriores a la 8, tienen cambiada la ubicacion de esta libreria que en vez de estar en /usr/include/kerberos esta en /usr/kerberos/include
Para solucionarlo lo que hay que hacer es pasarle la ubicacion de la libreria al compilador.
/src/ruby-1.8.7 # CPPFLAGS=-I/usr/kerberos/include ./configure
Con esto solucionamos el problema.
viernes, octubre 24
Problemas al subir videos FLV grandes a MediaWiki
Lo primero que he hecho ha sido modificar en el php.ini las siguientes directivas:
upload_max_filesize,max_execution_time, max_input_time, memory_limit y post_max_size
Sin embargo, tras probar distintas configuraciones he acabado pensando que me sucedia un Out Of Memory al subir los archivos grandes, pero no ha sido asi.Seguidamente he seguido buscando y me he encontrado con que en los casos de archivos grandes, MediaWiki hace uso de includes/specials/SpecialUpload.php, y en el la funcion detectScript($file, $mime, $extension).
Al parecer, lo unico que pasaba es que estaba reconociendo el tipo MIME del flv como text/plaintext.Para cambiarlo he ido a /usr/share/file/magic.mime y he añadido el tipo MIME para los flv.
0 string FLV video/x-flv
sábado, septiembre 6
Problemas con iPatcher en Leopard
Leopard (incluso con el update 10.5.1) tiene una versión de una biblioteca que tiene solo la arquitectura PowerPC, por lo cual cuando alguna aplicación la usa se cae sin remedio. El error que van a ver es como este:
-------------------------------------
Dyld Error Message:
Library not loaded: /usr/lib/libcrypto.0.9.dylib
Referenced from: /Library/Frameworks/net.juniper.DSCoreServices.framework/Versions/5.5.0/net.juniper.DSCoreServices
Reason: no suitable image found. Did find:
/usr/lib/libcrypto.0.9.dylib: mach-o, but wrong architecture
/usr/lib/libcrypto.0.9.dylib: mach-o, but wrong architecture
-------------------------------------
Solución:
Abrir la terminal.app y ejecutar esta secuencia de comandos:
cd /usr/lib
sudo cp libcrypto.0.9.dylib libcrypto.0.9.dylib.old
sudo cp libssl.0.9.dylib libssl.0.9.dylib.old
sudo ln -sf libcrypto.0.9.7.dylib libcrypto.0.9.dylib
sudo ln -sf libssl.0.9.7.dylib libssl.0.9.dylib
Problema 2)
Si utilizan algún parche hecho con iPatcher en Leopard nunca funciona dando un error: SHA1 error.
Para solucionarlo hay que "Mostrar el contenido del paquete" de la app del parche, ir a la subcarpeta Contents/MacOS y sustituir el binario iPatcher por este:
http://rs206.rapidshare.com/files/66524321/iPatcher.zip
Luego de eso ejecutan el app parcheador y funciona.
Enjoy si a alguno le sirve la info.
viernes, septiembre 5
Proxy SOCKS
martes, abril 29
Administracion remota de servidores X
lunes, marzo 10
0x0D,0A o Ruby en Windows (CR LF)
He decidido comparar el mismo PDF ejecutando el script sobre MacOS,Linux y Windows cuando me he dado cuenta que Windows añadia un bonito 0x0D (retorno de carro) antes de cada 0x0A (fin de linea). La solucion al problema pasaba por intentar cambiar los CR/LF por LF con una funcion como esta:
def removeCR(line)
line = line[0..-3]+line[-1..-1] if line[-2]==0xD
return line
end
pero realmente, los CR/LF los metia la funcion File::print o puts...¿como solventarlo?
Al final la solucion pasa por abrir el fichero en modo w+b
file=File.new("#{filename}.pdf","wb")
Podemos leer de la clase IO la descripcion de cada uno de los modos
Mode | Meaning
-----+--------------------------------------------------------
"r" | Read-only, starts at beginning of file (default mode).
-----+--------------------------------------------------------
"r+" | Read-write, starts at beginning of file.
-----+--------------------------------------------------------
"w" | Write-only, truncates existing file
| to zero length or creates a new file for writing.
-----+--------------------------------------------------------
"w+" | Read-write, truncates existing file to zero length
| or creates a new file for reading and writing.
-----+--------------------------------------------------------
"a" | Write-only, starts at end of file if file exists,
| otherwise creates a new file for writing.
-----+--------------------------------------------------------
"a+" | Read-write, starts at end of file if file exists,
| otherwise creates a new file for reading and
| writing.
-----+--------------------------------------------------------
"b" | (DOS/Windows only) Binary file mode (may appear with
| any of the key letters listed above).
martes, marzo 4
Instalar la gema de MySQL en Leopard
Al final he conseguido instalar la gema poniendo
sudo env ARCHFLAGS="-arch i386" gem install mysql -- --with-mysql-config=/opt/local/lib/mysql5/bin/mysql_config
Teniendo las librerias de mysql instaladas con macports, claro.
Como referencias he utilizado:
Este que le cascaba al compilar y lo arregla a lo bruto
Este que es mas bruto todavia y saca un parch
Este otro que se le ocurre la forma elegante de arreglarlo, aunque el no utiliza macports
viernes, febrero 29
El sabor de Debian en el iPhone
Cuando entras por primera vez en la consola de esta maravillosa maquinaita de 667Mhz con 128Mb de RAM y un "monton" de gigas de disco, te crees que vas a poder conquistar el mundo.Yo personalmente lo primero que hice fue instalar un interprete de Ruby para correr Metasploit,pero cual fue mi decepcion al ver que el paquete de Ruby estaba roto.Mas adelante te vas dando cuenta de las carencias que tienen las herramientas del BSD Subsystem y al final acabas un poco decepcionado... o motivado, como Jay Freeman y decides portar el apt y sustituir el Installer.app.
Ahora es momento de leer este articulo y probar esta inciativa que considero de lo mas acertada.
sábado, julio 28
Soporte iSync para Nokia 5300
/PhoneModelsSync.phoneplugin/Contents/Resources/MetaClasses.plist y añadir esta entrada podemos sincronizarlo.Eso si, hay que tener cuidado al introducir el codigo y fijarse de eliminar cualquier asociacion previa del telefono.
<key>com.nokia.5300</key>
<dict>
<key>Identification</key>
<dict>
<key>com.apple.cgmi+cgmm</key>
<string>Nokia+Nokia 5300</string>
</dict>
<key>InheritsFrom</key>
<array>
<string>family.com.nokia.series40.bus.bt</string>
</array>
<key>Services</key>
<array>
<dict>
<key>ServiceName</key>
<string>com.apple.model</string>
<key>ServiceProperties</key>
<dict>
<key>ModelIcon</key>
<string>NOK5300.tiff</string>
<key>ModelName</key>
<string>5300</string>
</dict>
</dict>
</array>
</dict>
martes, abril 3
Extensiones...para el escritorio (Hyperdragging)
jueves, diciembre 28
Activar el modo monitor en el MacBook
Realmente es cuestion de tiempo que esten soportadas, de hecho en el subversion del proyecto podemos encontrar una version que ya da soporte.Para instalarla necesitaremos un cliente svn como por ejemplo subversion-client y las herramientas de desarrollo de Apple XCode.
Una vez todo instalado, deberemos descargar la version del kismac del repositorio haciendo:
svn co https://svn.binaervarianz.de/kismac/trunk/ kismac-source
una vez descargado, solo tenemos que entrar en el directorio kismac-source y ejecutar el script compile-command.
A mi me fallo, pero era debido a que uno de los directorios de nivel superior a kismac-source tenia un espacio en blanco en el nombre y la compilacion se paraba compilando las herramientas de BIGL y BIGeneric.
Una vez compilado, solo hay que instalar la aplicacion que se encuentra en build/Universal.
Cuando arranques el Kismac, debes poner como driver en las preferencias, Tarjeta Apple Airpot Extreme en modo pasivo.
Y con esto ya esta todo listo! ; )
Ahora, si alguien consigue compilar el Aircrack-ng para MacOS que me mande un comentario, pues cambiando el Makefile tal y como dice en las instrucciones me falla al principio de la compilacion.
miércoles, diciembre 20
Cien atajos de teclado para Windows
CTRL+C (Copy)CTRL+X (Cut)
CTRL+V (Paste)
CTRL+Z (Undo)
DELETE (Delete)
SHIFT+DELETE (Delete the selected item permanently without placing the item in the Recycle Bin)
CTRL while dragging an item (Copy the selected item)
CTRL+SHIFT while dragging an item (Create a shortcut to the selected item)
F2 key (Rename the selected item)
CTRL+RIGHT ARROW (Move the insertion point to the beginning of the next word)
CTRL+LEFT ARROW (Move the insertion point to the beginning of the previous word)
CTRL+DOWN ARROW (Move the insertion point to the beginning of the next paragraph)
CTRL+UP ARROW (Move the insertion point to the beginning of the previous paragraph)
CTRL+SHIFT with any of the arrow keys (Highlight a block of text)
SHIFT with any of the arrow keys (Select more than one item in a window or on the desktop, or select text in a document)
CTRL+A (Select all)
F3 key (Search for a file or a folder)
ALT+ENTER (View the properties for the selected item)
ALT+F4 (Close the active item, or quit the active program)
ALT+ENTER (Display the properties of the selected object)
ALT+SPACEBAR (Open the shortcut menu for the active window)
CTRL+F4 (Close the active document in programs that enable you to have multiple documents open simultaneously)ALT+TAB (Switch between the open items)
ALT+ESC (Cycle through items in the order that they had been opened)
F6 key (Cycle through the screen elements in a window or on the desktop)
F4 key (Display the Address bar list in My Computer or Windows Explorer)
SHIFT+F10 (Display the shortcut menu for the selected item)
ALT+SPACEBAR (Display the System menu for the active window)
CTRL+ESC (Display the Start menu)
ALT+Underlined letter in a menu name (Display the corresponding menu)
Underlined letter in a command name on an open menu (Perform the corresponding command)
F10 key (Activate the menu bar in the active program)
RIGHT ARROW (Open the next menu to the right, or open a submenu)
LEFT ARROW (Open the next menu to the left, or close a submenu)
F5 key (Update the active window)
BACKSPACE (View the folder one level up in My Computer or Windows Explorer)
ESC (Cancel the current task)
SHIFT when you insert a CD-ROM into the CD-ROM drive (Prevent the CD-ROM from automatically playing)
Dialog Box Keyboard Shortcuts
CTRL+TAB (Move forward through the tabs)
CTRL+SHIFT+TAB (Move backward through the tabs)
TAB (Move forward through the options)
SHIFT+TAB (Move backward through the options)
ALT+Underlined letter (Perform the corresponding command or select the corresponding option)
ENTER (Perform the command for the active option or button)
SPACEBAR (Select or clear the check box if the active option is a check box)
Arrow keys (Select a button if the active option is a group of option buttons)
F1 key (Display Help)
F4 key (Display the items in the active list)
BACKSPACE (Open a folder one level up if a folder is selected in the Save As or Open dialog box)
Microsoft Natural Keyboard Shortcuts
Windows Logo (Display or hide the Start menu)
Windows Logo+BREAK (Display the System Properties dialog box)
Windows Logo+D (Display the desktop)
Windows Logo+M (Minimize all of the windows)
Windows Logo+SHIFT+M (Restore the minimized windows)
Windows Logo+E (Open My Computer)
Windows Logo+F (Search for a file or a folder)
CTRL+Windows Logo+F (Search for computers)
Windows Logo+F1 (Display Windows Help)
Windows Logo+ L (Lock the keyboard)
Windows Logo+R (Open the Run dialog box)
Windows Logo+U (Open Utility Manager)
Accessibility Keyboard Shortcuts
Right SHIFT for eight seconds (Switch FilterKeys either on or off)
Left ALT+left SHIFT+PRINT SCREEN (Switch High Contrast either on or off)
Left ALT+left SHIFT+NUM LOCK (Switch the MouseKeys either on or off)
SHIFT five times (Switch the StickyKeys either on or off)
NUM LOCK for five seconds (Switch the ToggleKeys either on or off)
Windows Logo +U (Open Utility Manager)
Windows Explorer Keyboard Shortcuts
END (Display the bottom of the active window)
HOME (Display the top of the active window)
NUM LOCK+Asterisk sign (*) (Display all of the subfolders that are under the selected folder)
NUM LOCK+Plus sign (+) (Display the contents of the selected folder)
NUM LOCK+Minus sign (-) (Collapse the selected folder)
LEFT ARROW (Collapse the current selection if it is expanded, or select the parent folder)
RIGHT ARROW (Display the current selection if it is collapsed, or select the first subfolder)
Shortcut Keys for Character Map
After you double-click a character on the grid of characters, you can move through the grid by using the keyboard shortcuts:
RIGHT ARROW (Move to the right or to the beginning of the next line)
LEFT ARROW (Move to the left or to the end of the previous line)
UP ARROW (Move up one row)
DOWN ARROW (Move down one row)
PAGE UP (Move up one screen at a time)
PAGE DOWN (Move down one screen at a time)
HOME (Move to the beginning of the line)
END (Move to the end of the line)
CTRL+HOME (Move to the first character)
CTRL+END (Move to the last character)
SPACEBAR (Switch between Enlarged and Nor mal mode when a character is selected)
Microsoft Management Console (MMC) Main Window Keyboard Shortcuts
CTRL+O (Open a saved console)
CTRL+N (Open a new console)
CTRL+S (Save the open console)
CTRL+M (Add or remove a console item)
CTRL+W (Open a new window)
F5 key (Update the content of all console windows)
ALT+SPACEBAR (Display the MMC window menu)
ALT+F4 (Close the console)
ALT+A (Display the Action menu)
ALT+V (Display the View menu)
ALT+F (Display the File menu)
ALT+O (Display the Favorites menu)
MMC Console Window Keyboard Shortcuts
CTRL+P (Print the current page or active pane)
ALT+Minus sign (-) (Display the window menu for the active console window)
SHIFT+F10 (Display the Action shortcut menu for the selected item)
F1 key (Open the Help topic, if any, for the selected item)
F5 key (Update the content of all console windows)
CTRL+F10 (Maximize the active console window)
CTRL+F5 (Restore the active console window)
ALT+ENTER (Display the Properties dialog box, if any, for the selected item)
F2 key (Rename the selected item)
CTRL+F4 (Close the active console window. When a console has only one console window, this shortcut closes the console)
Remote Desktop Connection Navigation
CTRL+ALT+END (Open the m*cro$oft Windows NT Security dialog box)
ALT+PAGE UP (Switch between programs from left to right)
ALT+PAGE DOWN (Switch between programs from right to left)
ALT+INSERT (Cycle through the programs in most recently used order)
ALT+HOME (Display the Start menu)
CTRL+ALT+BREAK (Switch the client computer between a window and a full screen)
ALT+DELETE (Display the Windows menu)
CTRL+ALT+Minus sign (-) (Place a snapshot of the active window in
the client on the Terminal server clipboard and provide the same
functionality as pressing PRINT SCREEN on a local computer.)CTRL+ALT+Plus sign (+) (Place a snapshot of the entire client window
area on the Terminal server clipboard and provide the same
functionality as pressing ALT+PRINT SCREEN on a local computer.)Internet Explorer navigation
CTRL+B (Open the Organize Favorites dialog box)
CTRL+E (Open the Search bar)
CTRL+F (Start the Find utility)
CTRL+H (Open the History bar)
CTRL+I (Open the Favorites bar)
CTRL+L (Open the Open dialog box)
CTRL+N (Start another instance of the browser with the same Web address)
CTRL+O (Open the Open dialog box, the same as CTRL+L)
CTRL+P (Open the Print dialog box)CTRL+R (Update the current Web page)
CTRL+W (Close the current window)
powered by performancing firefox
lunes, diciembre 18
El camino amarillo de Microsoft
El mundo dispone ahora de dos familias de sistemas, los POSIX-Like y los DOS-Like.Obviamente a Microsoft le encantaria haber tenido la tecnica que tienen muchos de sus competidores, pero ya hubiesen querido ellos tener el dinero que tiene el hombre mas rico del planeta, y esque como bien se sabe, en el mundo actual el poder,definido como la capacidad de ,lo ostenta el que tiene el dinero y el dinero ya no lo tienen los paises, sino aquel que ha hecho de la ciencia encargada del tratamiento de la informacion, una maquina de generar dinero cada vez que aparece una version anterior del mismo programa con una nueva apariencia.
/ documento de Daniel Eeran ha sido traducido en este blog en el que solo con leer el termino vaporware podemos pensar en la verdadera materia prima de nuestras esperanzas de cara al futuro si el mundo de las Tecnologias de la Informacion no cambia...si no es que es demasiado tarde.
Tambien me ha hecho mucha gracia este video del New York Times en el que se parodia las "novedades" del vista frente a todo lo que ahora va a ser mejorado en la proxima version de MacOS Leopard
De todos modos,aun lo tragico que parece todo, solo tenemos que hacer un giro de 180º y darnos cuenta de que somos libres de elegir, y algunos todavia sabemos elegir la libertad
powered by performancing firefox
lunes, diciembre 11
Lo que da de si el sensor de los MacBooks..
Hacking Roomba » Roomba Tilt Control with MacBook Perl
Pues si.. esto es lo utlimo en frikadas, un script para controlar el Roomba utilizando el sensor de movimiento del disco duro de los Macbooks..en este caso de un pro(quien si no iba a tener ademas un juguetito de esos)... la verdad que es una reverenda chorrada, pero mola!
powered by performancing firefox
lunes, diciembre 4
La respuesta de Microsoft a Google Earth
Windows Live Local - Virtual Earth Technology Preview
Pues si... muy al estilo Microsoft aparece en internet publico el preview de lo que sera el Virtual Earth de M$ y podemos ver las primeras imagenes de la respuesta de Microsoft a la tecnologia de Google.Podemos ver un mando de la XBOX dentro de una nave espacial, que resulta ser un coche deportivo,si quieres usar el teclado para dirigir el vehiculo ya te aparece tu primer contrato para aceptar la tecnologia de Windows Live...algo exclusivo y patentado seguramente con algun texto que dice "Tecnologia para dirigir a traves de las teclas de cursor..." para asi poder referirse a algo tecnologico y poder pasar esa primera barrera que impide que alguna obvia estupidez sea patente registrada en la EPO.Como siempre la ultima tecnologia de Microsoft es la imitacion de algun producto de la competencia pero con ese estilo que tanto les caracteriza...lo digo por lo garrulin que queda... o:)
Al parecer se dedican a circular con un coche con camaras grabando todo lo que ocurre en la ciudad.La noticia ha salido publicada en SlashDot, un lector anonimo ha dicho:
"Today as we were biking around our neighborhood in a small city we saw a strange vehicle slowly driving around. It appeared to be an SUV, bristling with cameras mounted on the roof, and pointing just about every possible direction. The first time we saw it, all we could see was that it had a sign on the side, something about Windows. The second time we saw it, we stared at it so hard that the driver stopped and we had a chance to ask him what it was all about. He said he was driving around, filming streets, and that there were people doing this all over the world, and getting data from the air too. It was going to be available on the Web. I asked him if this was Microsoft's answer to Google Earth, and he indicated that it was. There seems to be very little about this on the Web, and I found no mention of Microsoft's collection of this sort of detailed street level data. The Windows site appears to be http://preview.local.live.com/, although since I use a Mac it didn't work properly. I'm not sure I want my neighborhood viewable on the Web from ground level. And are they going to edit all the people out? I don't see how they could."
powered by performancing firefox
sábado, noviembre 18
Ajustar la consola en el MacBook
Pues he encontrado en este foro el modo que hay que pasarle al framebuffer para arrancar con la flamante pantalla del macbook ... vamos a mi en el parallels me ha funcionado...es un lujo tener una debian como papel tapiz...xD
bueno, la palabra magica es:
vga=0x364
http://www.tldp.org/HOWTO/Framebuffer-HOWTO-5.html
The Table
Colours 640x400 640x480 800x600 1024x768 1152x864 1280x1024 1600x1200
--------+--------------------------------------------------------------
4 bits | ? ? 0x302 ? ? ? ?
8 bits | 0x300 0x301 0x303 0x305 0x161 0x307 0x31C
15 bits | ? 0x310 0x313 0x316 0x162 0x319 0x31D
16 bits | ? 0x311 0x314 0x317 0x163 0x31A 0x31E
24 bits | ? 0x312 0x315 0x318 ? 0x31B 0x31F
32 bits | ? ? ? ? 0x164 ?
La verdad que nunca he encontrado ningun documento que me explique como se deben pasar los modos, porque a veces lo he visto pasar en decimal (ej. vga=791 para 1024x768) pero ahora veo que se puede pasar tambien en hexadecimal...me gustaria saber porque tanto misterio!! ;P
Despues de esto me he puesto a configurar un poco la debian del parallels que la tengo abandonada..he pensado que estaria bien saber hasta donde puede llegar ahi dentro..a mi me gusta, es una buena manera de hacer un chroot en macos jajaja..
El rendimiento del sistema parece bueno,ademas al echar un ojo en el proc me veo casi 4000 bogomips...
Bueno, para empezar pasamos a testing.Ademas añadimos algunos buenos repositorios
Official Debian sites
### Testing
deb http://ftp.rediris.es/debian/ testing main contrib non-free
deb-src http://ftp.rediris.es/debian/ testing main contrib non-free
deb http://security.debian.org/ testing/updates main
deb-src http://security.debian.org/ testing/updates main
### Unstable
deb http://ftp.rediris.es/debian/ unstable main
deb-src http://ftp.rediris.es/debian/ unstable main
# Unofficial sites
# Google Picasa for Linux repository
deb http://dl.google.com/linux/deb/ stable non-free
## RareWares/Debian Multi-Media Repository for Unstable
deb http://www.rarewares.org/debian/packages/unstable/ ./
## RareWares/Debian Multi-Media Repository for Unstable - Experimental Staging
deb http://www.rarewares.org/debian/packages/experimental/ ./
## Christian Marillat's Mult-Media Repository for Unstable
deb http://www.debian-multimedia.org sid main
aqui van algunos enlaces para instalar el linux en el macbook...asi, sin hiperenlaces ni nada xD
http://sharealike.org/index.php?p=258 / />http://bbbart.ulyssis.be/gentoomacbook/
http://wiki.debian.org/MacBook
http://modular.math.washington.edu/macbook/
http://desrt.mcmaster.ca/macbook.xhtml
http://ubuntuforums.org/showthread.php?t=198453
