martes, 20 de enero de 2015

Install Wine on Debian

Fuente: http://ask.xmodulo.com/install-wine-linux.html

Since Wine is included in the default repository of Debian, you can install it with apt-get. However, if you are using 64-bit Debian, you need to enable multi-architecture, as Wine is a 32-bit application.

On 64-bit Debian:
$ sudo dpkg --add-architecture i386
$ sudo apt-get update
$ sudo apt-get install wine-bin:i386 
 
On 32-bit Debian:
$ sudo apt-get install wine

domingo, 11 de enero de 2015

Ubuntu Server Grub does not autoboot the default option

Fuente: http://askubuntu.com/questions/214972/grub-does-not-autoboot-the-default-option-after-upgrade-to-12-10

My /etc/default/grub has only these effective options:

GRUB_DEFAULT='Ubuntu'
GRUB_HIDDEN_TIMEOUT=1
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=1
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""
GRUB_TERMINAL=console
 
 
 
Add the following to /etc/default/grub

GRUB_RECORDFAIL_TIMEOUT=0
 
Save and run

sudo update-grub