Category: Linux

shape
shape
shape
shape
shape
shape
shape
shape
Standard

Android Studio ADB Not Found (Solved)

When we are using the 64-bit version of Linux, the IDE usually throws us the ADB Not Found error. After some research, I found a simple solution to the problem: just install the IA32 library: sudo apt-get install libc6-i386 lib32stdc++6 lib32gcc1 lib32ncurses5 Source: http://stackoverflow.com/questions/13571145/android-adb-not-found

Standard

Installing JAVA on Ubuntu 14.10

Add the repository and update:   sudo add-apt-repository ppa:webupd8team/java sudo apt-get update   To install Java 8:   sudo apt-get install oracle-java8-installer   If you have another version already installed, use the following command to add the new version as the default:   sudo apt-get install oracle-java8-set-default     NOTE: If you want to install

Standard

Debian Squeeze Terminal (SSH) with Colored Text

Unlike Ubuntu, Debian 6 Squeeze doesn’t have the colored text in the Terminal or SSH of folders, files and so on… Doing a bit of research, I found the following solution: 1 – Edit the file /etc/bash.bashrc   $ vi /etc/bash.bashrc 2 – Add the following code to the file: # System-wide .bashrc file for

Standard

Learn how to enable Mod_rewrite in Apache

The Apache mod_rewrite module allows you to rewrite URLs so that they don’t point to the real address of the file and the real name of the file. This is often used to create so-called Friendly URLs.   To activate the mod_rewrite module just use the following command: $ a2enmod rewrite   Now edit the

Latest news

Latest news directly from our blog.