Mostrando entradas con la etiqueta ubuntu. Mostrar todas las entradas
Mostrando entradas con la etiqueta ubuntu. Mostrar todas las entradas

martes, 23 de diciembre de 2014

Predictions 2015

Retrospective of predictions 2014.

My mother will master Ubuntu 12.04 - a very cheap OS that allows you to focus on web browsing.

Well not a master but she was able to use it indeed for web-based email, web-based chat, and web searches. There was a complain nevertheless: "there are always updates". Interesting comment. Prompts for updates should IMHO be an easily findable opt-in. Then again 3% of the users think that the OS should ask confirmation for each byte of input/output by default, and that changing it should require to create your own fork of GNU.

Firefox OS will get a ridiculous but historical 2% of share among web users, and I will buy one.

I don't know what the market share of Firefox OS is, and I did not buy one. Very poor hardware is still the only one sold with support for Firefox OS. A camera that I don't regret to use is certainly a must feature for me. Hopefully during 2016 this will change.

Internet Explorer 9- will only matter if you are addressing hardcore dinosaurs. Hopefully jQuery guys will realize of this and will release a half-sized version of jQuery named jQuery 3, that I will not use anyway.

Yes! IE9- does not matter anymore. jQuery guys realized of this: no. Do I care: no.

The only remaining mainstream usage for desktop applications will be accessing USB devices. The rest of the mainstream things will be done through the web. asm.js' utopic but real 1.5x slower than native speed will be a big factor.

Wrong :( WebRTC is, as a matter of fact, still in "release candidate" state. There has not been also enough increase on web-based apps to acknowledge yet that "everything but USB stuff is on the web". ES6 will soon make things easier but I think the resulting apps will not flourish until 2016.

And now predictions 2015:

  1. I will write few-to-none new posts on this blog. It feels like there is no point anymore. The situation now is so different. Back in 2009 Microsoft owned our asses, and all but using Windows caused unavoidable frustration. But now mobile _is_ the new personal computing platform, and Microsoft has lost this war by far. Android is the new Windows, and it comes with a first-class web browser. Now if only spreadsheets made on LibreOffice did not suck when opened on Excel...
  2. There will be zero new projects made on Adobe Flash.
  3. WebRTC will support VP9 and kick ass.
  4. Somebody at YouTube will realize that refreshing the page on log-in sucks, and will do that on Ajax.
  5. The most interesting OS in the world (Firefox OS) will continue to be shipped only on infra-hardware.
  6. Will buy a new battery for my 4 year old laptop, since newer laptops are not really that better.

sábado, 17 de mayo de 2014

Fix for noise on Skype for Ubuntu 14.04

Instead of running simply skype, run this:

env PULSE_LATENCY_MSEC=30 skype

Source: Get The Sound Working In Skype With Ubuntu 13.10

Together with the fix for the camera, the thing to run is:

export LD_PRELOAD=/usr/lib/i386-linux-gnu/libv4l/v4l1compat.so && env PULSE_LATENCY_MSEC=30 skype

Which sucks.

A bit better is to have this in a script on the desktop that you can simply double click. So write the following in it.

#!/bin/bash
export LD_PRELOAD=/usr/lib/i386-linux-gnu/libv4l/v4l1compat.so && env PULSE_LATENCY_MSEC=30 skype

And give it run permissions by doing right-click on the file > "Properties" > "Permissions" > and check "Execution permission".

I hate Skype.

sábado, 9 de noviembre de 2013

Fix for flipped (rotated 180º) webcam on Skype for Ubuntu

sudo apt-get install libv4l-0

sudo gedit /usr/share/applications/skype.desktop

Replace "Exec=skype" with the following.

Exec=bash -c 'LD_PRELOAD=/usr/lib/i386-linux-gnu/libv4l/v4l1compat.so skype'

Source: How To Fix Webcam Problem In Skype.

Tested on Ubuntu 12.04

sábado, 26 de octubre de 2013

Reset sound configuration on Ubuntu

I tried to install a sound equalizer on Ubuntu and ended up without sound equalizer, and also without sound. Classic Linux mess. To fix this and other similar problems run the following command.

alsactl init

Source: Hard Resetting alsa Configuration?

sábado, 3 de agosto de 2013

LibreOffice has to fix its presence on distros

Something that LibreOffice has to fix is its presence on distros.

Is close to value-less that you don't get LibreOffice upgrades if you don't upgrade your distro.

I use Ubuntu 12.04 based distros at home and at work, and I plan to keep doing that at least until May 2014.

Xubuntu 12.04

They just work, and they work fast.

They don't give me problems because Ubuntu 12.04 is the Linux distro developers look at when they do develop. It has been like so since a year ago, and it is going to be so for the next year at least.

But LibreOffice 3.5 is a piece of shit. Relatively at least.

Why do I have to miss all the new love that the community put in LibreOffice 4.1?

LibreOffice 4.1

Why will I have to miss it again for LibreOffice 4.2?

Early preview of LibreOffice 4.2

If Ubuntu 12.04 can receive Firefox upgrades each 6 weeks, for sure it can receive LibreOffice upgrades each 6 months.

So, gals and guys: Let's do it!

sábado, 13 de julio de 2013

Using the discrete GPU on Ubuntu

The following might be interesting for you if you match the following:

  • You have a CPU with integrated graphics
  • You have a discrete GPU that your Ubuntu (or Ubuntu-based distro) does not use
  • You need those goddamn extra FPS now!

Open a console, secure the perimeter of your modem/router whatever, and enter the following commands.

sudo add-apt-repository ppa:ubuntu-x-swat/x-updates sudo add-apt-repository ppa:bumblebee/stable sudo apt-get update sudo apt-get install linux-source linux-headers-generic sudo apt-get install bumblebee bumblebee-nvidia

Restart

optirun firefox

With that, Firefox will use your discrete GPU instead of your integrated graphics. The WebGL Aquarium benchmark should run like 10 times faster.

You should also be able to run other programs besides Firefox using this "optirun" command, of course. For example Kerbal Space Program, with something like the following.

LC_ALL=C optirun "/opt/software/SteamLibrary/SteamApps/common/Kerbal Space Program/KSP.x86"

Note that that "LC_ALL=C" is some kind of magic fix for multiple issues for Kerbal on Linux; I'm not explaining what it does here (neither I know, if you ask).

Source: A Noob’s Guide to Installing NVIDIA Optimus Driver in Ubuntu

sábado, 28 de enero de 2012

Cómo quitar los kernels viejos. Realmente.

Cuidado que esto lleva pólvora.

Las últimas versiones de Ubuntu quitan los kernels viejos del menú de arranque, pero no los borran del PC. Para borrarlos realmente, sirve el siguiente comando.

dpkg -l linux-* | awk '/^ii/{ print $2}' | grep -v -e `uname -r | cut -f1,2 -d"-"` | grep -e [0-9] | xargs sudo apt-get -y purge

Fuente: Remove Old Kernels In Ubuntu With One Command | Tux Tweaks

sábado, 2 de abril de 2011

Shortcuts de teclado en Ubuntu 11.04

Windows + S

Zoom out



Windows + W

Esparcir ventanas



Windows + A

Aplicaciones



Windows + F

Archivos y carpetas



Arrastrar una ventana a un lado

Tiling



Para resarcir a los que se hayan indignado porque el último no era un shortcut de teclado, aquí va un extra:

Ctrl + Alt + T

Terminal



Fuente: Unity keyboard/mouse shortcuts

viernes, 25 de marzo de 2011

Mejor sin anuncios


Actualización de Java y la barra de Yahoo!. Pantallas y software inútil que los usuarios de Ubuntu no han de sufrir.




Por Ubuntu y sus Updates yo digo BRAVO.

domingo, 21 de noviembre de 2010

Paper Cuts: Dejando Ubuntu lisico lisico

Hasta hoy, 295 papercuts resueltos han convertido a Ubuntu en un sistema operativo con textura de huevo.



Lo celebramos y seguimos mirando adelante para ver nuevas pequeñas grandes mejoras de lo que algunos dicen que podría ser el Android de escritorio.

If Canonical pushes the envelop to promote it well, Ubuntu can be the Android of the desktop world. It is not only ready for home users, but also excels over Windows and Mac on many grounds.

sábado, 11 de septiembre de 2010

GPU switching en Ubuntu

Ubuntu Control Center 0.5 permite GPU switching en caliente templadito (hay que reiniciar sesión) con dos clicks.

Ésta es la página de descarga de Ubuntu Control Center.

No lo he probado así que hay un 80% de probabilidad de que no funcione.

Video demo, que siempre viste más.

martes, 13 de abril de 2010

Quick fail

Esta semana he conocido el caso de un target nuevo. Le habían instalado Ubuntu 9.04 hace 4 semanas. Sin más.

Imploraba que alguien le volviera a instalar Windows XP porque en Ubuntu:
1.- No iba el micrófono (para el Skype)
2.- No se abrían los archivos .RAR
3.- No se guardaban los words en el formato de Microslut Word



Qué debería ocurrir:
1.- Quizá en Ubuntu 9.10 sí funcione el micrófono de ese portátil
2.- Un target debería poder abrir archivos .RAR, si no por defecto, sí on demand
3.- Un target debería percibir que OOo es capaz de guardar archivos en formato de Microslut Office

Así me doy cuenta de que Ubuntu no es target friendly by default porque por defecto:
1.- No se actualiza.
2.- No abre .RAR.
3.- No guarda words y excels en el formato de MS.

Por qué:
1.- Ofrece la posibilidad de decir "No" a un usuario que desconoce las implicaciones de NO actualizar Ubuntu.
2.- Cuando haces doble click en un archivo RAR no se inicia un proceso que permite al usuario acabar con el RAR abierto.
3.- No ofrece al usuario configurar OpenOffice.org para que por defecto guarde words, excels, y powerpoints en el formato de MS.

A partir de aquí los "cómos" pueden ser unos u otros, pero la respuesta a dichas necesidades no puede ser víscera nerd. De ésa ya tengo bastante.

1.- "No me gusta que mi PC haga cosas sin preguntarme". A ti no, a un target se la pela. Sólo quiere su palomita y la quiere ahora. _POR DEFECTO_, Ubuntu debería actualizarse sin preguntar. concedo que sea una opción de un supuesto asistente de inicio (eso sí, pre-seleccionada).

2.- "El RAR es un formato prifatifo." Ya. Y? Doble click en un .RAR debería lanzar un asistente que permitiera instalar el unrar, y acto seguido abrir dicho .RAR. No digo que Ubuntu deba abrir .RAR out of the box, pero si on demand <--- "on demand" es un concepto que en Ubuntu debería trabajarse a fondo. Hasta hoy ha habido muchas mejoras en eso. Pero aún faltan algunas.

3.- "Los formatos de office de microslut son una mierda que hay que extinguir.". Estoy de acuerdo. 100%. Pero actualmente los targets no están percibiendo que OOo permite guardar en formato de microsoft, y es lo que piden. Estoy abierto a sugerencias sobre este tema.

martes, 20 de octubre de 2009

¡Felicidades Ubuntu!

Tal día como hoy pero hace ya 5 años nació Ubuntu: "Linux for human beings". Su madre es el software libre, quien la alimenta cada día, su padre es Mark Shuttleworth, un rico (fundó Thawte y la vendió por 575 millones de dólares) empresario sur-africano, que lo educa y orienta hacia el camino de la conquista.

Desde entonces se han sucedido nueve-casi-diez versiones del sistema que ha ido mejorando poco a poco desde algo parecido a Debian con colores diferentes hasta un eterno aspirante a conquistar la informática de escritorio.

Esperemos que con ayuda de la comunidad y sus usuarios siga mejorando su calidad y puliendo su interacción con el usuario para conseguir llegar a ser Linux for humans.