
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Found 143 Articles for Ubuntu

360 Views
Google Chrome is a freeware web browser developed by Google. It used to have WebKit layout engine until the version 27 with the exception of its iOS release. If you’ve tried to install Google Chrome Browser in Ubuntu, then you may have noticed that it’s not available in the Ubuntu Software Center. However, it’s easy to download a package file for Google Chrome and install it on your system through terminal. This article explains about how to install google chrome in Ubuntu.Before installing the Google Chrome Browser, you need to find out whether your Ubuntu system is 32-bit or 64-bit. ... Read More

185 Views
VLC is a free and open source cross-platform multimedia player and framework that plays most multimedia records as good as DVDs, Audio CDs, VCDs, and various streaming protocols.This article explains about – “How to install VLC Media Player in Ubuntu”To install VLC Media Player, open the terminal and run the following command –$ sudo add-apt-repository ppa:videolan/stable-dailyThe sample output should be like this –This PPA contains daily builds from the latest VLC maintenance branch.This PPA is used for test building new and upcoming point releases of VLC that can get into Ubuntu through stable release updates (SRU) or security updates. You ... Read More

274 Views
Elasticsearch is an open source search engine that uses Apache Lucene as its engine and released under an Apache license. Elastic search provides a platform for distributed search and analysis of data in real time. Elasticsearch is the most popular for its ease of use, powerful features. Using elastic search you can easily search, explore and analyze your data with an HTTP web interface.FeaturesSome of the general features of Elasticsearch are as follows:Elasticsearch is scalable up to hundreds of servers and petabytes of structured and unstructured data.Elasticsearch can be used as a replacement of MongoDB and RavenDB document store.Elasticsearch is ... Read More

282 Views
Everpad is a fantastic tool for work, but it is also a great tool outside of the workspace. It is an open-source client for the note taking. Although there isn’t an official Everpad client available for Linux, by installing Wine, you can use the exact Everpad client. This article describes “how to install Everpad client in Ubuntu”It supports Unity Lens which allows you to search through your Everpad, then click to open them for additional editing. From the application, you can create and manage all of your Everpad from one single place.Installing EverpadTo install Everpad, we require Everpad ppa from ... Read More

309 Views
Are you really hunting for web-based notepad to collaborate with your team?. Etherpad is a web-based open-supply file editor which makes it possible for you to collaborate on a file in actual-time. Using Etherpad, a bunch of users can edit a textual content record. This article explains about -“How to install Etherpad Lite on Ubuntu”.To install Etherpad Lite on Ubuntu, it should require Node.js and NPM, To install Node.js and NPM read this article –Install Node.js on LinuxTo install supported Python libraries for Etherpad, use the following command –$ sudo apt-get install gzip curl python libssl-dev pkg-config build-essential gitThe sample ... Read More

13K+ Views
Doxygen is the de facto regular tool for generating documentation from annotated C++ sources, however, it additionally supports different wellknown programming languages akin to C, objective-C, C#, Hypertext Preprocessor, Java, Python, IDL (Corba, Microsoft, and UNO/OpenOffice flavors), Fortran, VHDL and Tcl. This article explains about-“how to install Doxygen on Ubuntu”To install Doxygen, use the following command –$ sudo apt-get install doxygenThe sample output should be like this –Reading package lists... Done Building dependency tree Reading state information... Done The following packages were automatically installed and are no longer required: libterm-readkey-perl linux-headers-4.4.0-31 linux-headers-4.4.0-31-generic linux-image-4.4.0-31-generic linux-image-extra-4.4.0-31-generic linux-signed-image-4.4.0-31-generic Use 'sudo ... Read More

348 Views
Django is an excessive stage Python internet framework that encourages speedy development, clean along with pragmatic layout. It takes a lot of care in building a trouble free web development programming language so that you can start writing your app in an easier manner without having to reinvent the wheel. It is an open-source software. This article provides the necessary instructions on – “How to install Django 1.9 on Ubuntu”.Before we start with the Django installation, we should update the Ubuntu repository as shown in the below command-$ sudo apt-get updateInstalling DjangoThere are so many methods which are available to ... Read More

1K+ Views
Bower is a bundled supervisor for the web and offers a conventional technique for the drawbacks in entrance-finish package management. It basically maintains and monitors all packages and examines new updates. Bower also makes use of a take place file called bower.Json to keep track of applications. This article explains about -“How to install bower on Ubuntu”.To install bower, we require pre-installed Node.js and NPM. To verify the node.js version, use the following command-$ node -vThe sample output should be like this-v6.9.2To verify the NPM version, use the following command$ npm -vThe sample output should be like this-3.10.9If you wants ... Read More

164 Views
In this article we will learn, how to host a file sharing server using Pydio which can run well without a powerful hardware. We will install community edition but if we go for enterprise license, it is free for teams smaller than 10 persons.Pydio is a utility which looks like Dropbox and allows files sharing. Pydio has a good feature as other file syncing services, a web interface, native client for Mac, Windows and Linux, Mobile client for IOS and Andriod. It has an ability to share files with other Pydio user who are in the public.PrerequisitesUser with no root ... Read More

280 Views
Apache Maven is a software project management and comprehension tool. Based on the concept of a project object model (POM), Maven can manage a project’s build, reporting and documentation from a central piece of information. This article explains about how to install apache maven on Ubuntu.To install apache maven, it should require pre-installed java on Ubuntu. To verify java version, use the following command –$ java -versionThe sample output should be like this –openjdk version "1.8.0_111" OpenJDK Runtime Environment (build 1.8.0_111-8u111-b14-2ubuntu0.16.04.2-b14) OpenJDK 64-Bit Server VM (build 25.111-b14, mixed mode)If you wants to install java on Ubuntu, read this articleTo install ... Read More