Daily Dairy

How to fix Genymotion in linux with error `CXXABI_1.3.8′ not found.

Whenever I am trying to start genymotion(run command ./genymotion), the following error shown in my terminal. ./genymotion: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version `CXXABI_1.3.8' not found (required by /home/jagjeet/Downloads/genymotion/libQt5Core.so.5) ./genymotion: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version `GLIBCXX_3.4.20' not found (required by /home/jagjeet/Downloads/genymotion/libQt5WebKit.so.5) ./genymotion: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version `CXXABI_1.3.8' not found (required by /home/jagjeet/Downloads/genymotion/libicui18n.so.52) ./genymotion: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version `CXXABI_1.3.8' not found (required by /home/jagjeet/Downloads/genymotion/libicuuc.so.52) ./genymotion: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version… Continue reading How to fix Genymotion in linux with error `CXXABI_1.3.8′ not found.

Daily Dairy

URL shorteners.

URL shortening is a technique on the World Wide Web in which a Uniform Resource Locator (URL) may be made substantially shorter in length and still direct to the required page. This is achieved by using a redirect on a domain name that is short, which links to the web page that has a long… Continue reading URL shorteners.

Daily Dairy

Install Realtek rtl8723be Wifi Drivers in Ubuntu.

First of all make sure that the necessary packages are installed. $ sudo apt-get install build-essential git Then, clone the lwfinger/rtlwifi_new repository and checkout the rock.new_btcoex branch. $ git clone https://github.com/lwfinger/rtlwifi_new.git $ cd rtlwifi_new $ git checkout rock.new_btcoex Now, build the drivers and install the modules. $ sudo make $ sudo make install Then, reboot… Continue reading Install Realtek rtl8723be Wifi Drivers in Ubuntu.

Daily Dairy

Install Realtek rtl8723be Wifi Drivers in Arch Linux.

First of all make sure that the necessary packages are installed. $ sudo pacman -S base-devel git linux-headers iw rfkill wireless_tools Then, clone the lwfinger/rtlwifi_new repository and checkout the rock.new_btcoex branch. $ git clone https://github.com/lwfinger/rtlwifi_new.git $ cd rtlwifi_new $ git checkout rock.new_btcoex Now, build the drivers and install the modules. $ make clean && make… Continue reading Install Realtek rtl8723be Wifi Drivers in Arch Linux.

Daily Dairy

Backlight Script runs on startup in Arch Linux.

Screen brightness might be tricky to control. There are many ways to adjust the screen backlight of a monitor or laptop. I installed  xbacklight in my Arch Linux  using : $ sudo pacman -S xbacklight In desktop environment it is easy to control brightness using: $ xbacklight +10 $ xbacklight -10 But these commands not… Continue reading Backlight Script runs on startup in Arch Linux.