Xubuntu: Open Whisker Menu with the Windows key Apr 5, 2014 Menu: Settings Manager -> Keyboard -> Application Shortcuts: _xfce4-popup-whiskermenu_ and click the Windows Key (_Super_L_)
How do I completely remove One Ubuntu? Apr 5, 2014 I'll miss Ubuntu One. It was my unique cloud client. But it's time to move forward and if you have the Ubuntu One client installed you can remove with these commands (source): sudo killall ubuntuone-login ubuntuone-preferences ubuntuone-syncdaemon mv ~/Ubuntu\ One/ ~/UbuntuOld rm -rf ~/.local/share/ubuntuone/ rm -rf ~/.cache/ubuntuone/ rm -rf ~/.config/ubuntu/ rm -rf ~/.config/ubuntuone/ sudo apt-get purge ubuntuone-* python-ubuntuone-storage* -y RIP u1! FYI some alternatives with Ubuntu clients: Dropbox, Copy, Wuala, Bitcasa, Hubic or your Owncloud. ...
Run Irssi in the boot as daemon Mar 31, 2014 After the Irssi basic configuration… Check your runlevel: runlevel For my runlevel 2, I'll create this file: sudo nano /etc/init.d/irssi With this content: `#!/bin/bash BEGIN INIT INFO Provides: irssid Required-Start: $network Required-Stop: $network Default-Start: 2 3 4 5 Default-Stop: 0 1 6 Short-Description: Start irssi daemon within screen session at boot time Description: This init script will start an irssi session under screen using the settings provided in /etc/irssid. ...
Touchpad-indicator: A really useful app Mar 30, 2014 Disable/enable the touchpad when you plug/unplug a mouse in your laptop: sudo add-apt-repository ppa:atareao/atareao sudo apt-get update sudo apt-get install touchpad-indicator An atareao app.
Actualizar Firefox u otras aplicaciones portables en Windows Mar 26, 2014 Si estamos usando PortableApps, bajamos la última versión a otra carpeta y sólo sobreescribimos este directorio en el destino:
Linux&Tapas in León, Spain Mar 20, 2014 This Saturday, we'll enjoy talking about Linux with some tapas :) Ubuntu Spain was invited as LUG. See you there! Cheers! Linux & Tapas. 22 Marzo 2014 León. Spain + info: PutoLinux & Ubuntu España.
Install transmission daemon in Ubuntu Server and avoid write permission problems Feb 24, 2014 The tip: Change the user who runs the daemon for your user ;) sudo apt-get install transmission-daemon ``` /etc/init.d/transmission-daemon stopsudo nano /etc/init.d/transmission-daemon # Change USER=your_login_user sudo nano /etc/default/transmission-daemon # Set CONFIG_DIR="/home/username/.config/transmission-daemon" transmission-daemon -f # Ctrl+C ````` `` /etc/init.d/transmission-daemon stop`` sudo cp /etc/transmission-daemon/settings.json ~/.config/transmission-daemon/settings.json sudo chown your_user:`````your_user` ~/.config/transmission-daemon/settings.json nano ~/.config/transmission-daemon/settings.json`` Here, I'll set my parameters: `"download-dir” “download-queue-size”: 2, “incomplete-dir” “incomplete-dir-enabled”: true, “rpc-password” “rpc-whitelist”: “...", “rpc-whitelist-enabled”: true, “umask”: 2, /etc/init.d/transmission-daemon start sudo update-rc. ...
Install Shrew VPN client in Ubuntu 14.04 LTS Feb 10, 2014 Just download this packages from their links: libssl0.9.8_0.9.8o-7ubuntu1_<your_architecture>.deb ike-qtgui_2.2.1+dfsg-2_<your_architecture>.deb ike_2.2.1+dfsg-2_<your_architecture>.deb and install with: sudo dpkg -i *.deb
Emulate Guake in Windows 7 with SuperPutty Jan 3, 2014 Just use AutoHotKey with this script and press F12 for show/hide Putty (Use AutoHotKey Window Spy for know your SupperPutty class, because it could be change): F12:: IfWinExist ahk_class WindowsForms10.Window.8.app.0.37a0697 { IfWinActive { WinMinimize } else { WinActivate } } else { Run C:\<path>\SupperPutty.exe }
Tips for convert a LiveUSB into a 'normal' boot Dec 24, 2013 I just want a LiveUSB without the Live mode. Let's go! Create a LiveUSB with persistence file from the Startup Disk Creator. Skip boot menu: Copy the 5 first lines from /syslinux/txt.cfg to syslinux/syslinux.cfg (in my case with lubuntu 12.04): default live label live menu label ^Try Lubuntu without installing kernel /casper/vmlinuz append noprompt cdrom-detect/try-usb=true persistent file=/cdrom/preseed/lubuntu.seed boot=casper initrd=/casper/initrd.lz quiet splash -- Boot your LiveUSB. Disable autologin in /etc/lightdm/lightdm. ...