TL-WR841ND + OpenWRT: Success!

My fiancée’s TP-Link TL-WR841ND (v9) router was systematically crashing when under heavy load, especially with Torrent. It was only possible to return the router to operation by power cycling it. I had tried to update its firmware with the newest version avalaible from TP-Link’s website. Nonetheless, it was not enough to solve the presented issue. In order to avoid launching this router through the 4th floor window, as last resort I tried to reflash it with OpenWRT. Here is the wiki page dedicated to this cheap router: https://wiki.openwrt.org/toh/tp-link/tl-wr841nd. As far as I can tell its been a success! The router […]

Fixing Nvidia + Bumblebee + Dell L502X error in Ubuntu 16.04

For some weird reason the Ubuntu 16.04 Bumblebee’s default version was not being able to switch on/off my discrete video card NVIDIA Corporation GF108M [GeForce GT 540M]. I was getting the following error: $ optirun glxgears [ 7224.163607] [ERROR]Cannot access secondary GPU – error: [XORG] (EE) [ 7224.163722] [ERROR]Aborting because fallback start is disabled. I was able to solve the aforementioned issue in this way: 1) Adding the repository with fresh bumbleblee packages: $ sudo add-apt-repository ppa:bumblebee/testing 2) Updating the repositories and upgrade bumblebee: $ sudo apt-get update; sudo apt-get upgrade 3) Adjusting /etc/bumblebee/bumblebee.conf file: 4) Adjusting the /etc/bumblebee/xorg.conf-nvidia , […]

Fixing skype on Ubuntu 16.04

For some weird reason my skype doesn’t open normally within Ubuntu 16.04 since it miss a required library, throwing on my face the error below: $ skype skype: error while loading shared libraries: libGL.so.1: cannot open shared object file: No such file or directory For a final solution, do: Edit the file /etc/ld.so.conf.d/i386-linux-gnu.conf, as root: $ sudo gedit /etc/ld.so.conf.d/i386-linux-gnu.conf Add the following line to this file, save and close it: /usr/lib/i386-linux-gnu/mesa/ Then, to finish it, update your systems libraries, as root: $ sudo ldconfig And that’s it, your skype should open without hassle now. References [1] – http://askubuntu.com/questions/555902/problems-after-installing-skype-4-3

Thoughts after a whole day using Leap 42.1

This a copy of the message that I tried to share with openSUSE user mail list (opensuse@opensuse.org) but I’ve got blocked :/ I’m writing this e-mail to share my experiences after a whole day using openSUSE Leap 42.1. The installation was pretty easy and worked ok. IMHO, the boot screen is awful. But it’s a taste thing, so nevermind. Everything started to go down the hill after logging into KDE. Unfortunately, Plasma 5 is really broken, the desktop environment is so unstable that I’ve missed the panel, the krunner and/or, kwin multiple times. Working with two displays (multihead) was kind […]

Building and using an encrypted container stored in a remote host (encfs+sshfs)

Those lines below are my notes to mount an remote folder through ssh, using sshfs [1] and building an encrypted container with encfs [2]. I’ll not explain in details how to install sshfs and encfs ’cause it dependes whether linux distribution or unix-like bsd flavor you’re running, furthermore, there are tons of documents on web convering these topics. IMHO, this is a great solution to easily store securely your files in any remote host (cloud) that you have access through ssh, using well known common unix tools. 1) Mount remote filesystem through ssh: sshfs user@host:/full/path/dir/ /full/path/mount_point It’s important to say […]