Beamer/LaTeX Tutorial
LaTeX is commonly used to prepare documents. It is commonly used for the scientific documentation because it is very useful to create documents with lots of mathematical symbols and notations. For some time, Beamer is used by the scientific community for preparing slides for a presentation. Beamer has features to describe slides and the transition. [...]
apt-get: How to remove a package in Ubuntu?
In Ubuntu, you can easily remove a package using apt-get Take for example, you want to remove the vim editor package You can check the shell script to remove all the packages mentioned in a file
apt-get: Shell Script to remove the packages mentioned in a File
Check this simple shell script which reads all the packages mentioned in a file and removes them one by one. To use this script, mention the packages to be removed in a file. Take for example, pkgs.txt contains the files to be removed To execute the above script, It will remove all the packages one [...]
How to install Firebird in Ubuntu?
Firebird is a database server and can be considered as an alternative to MySQL. Let’s see the various Firebird packages available in Ubuntu Thus you can see two versions Firebird2.1 and Firebird2.5. Let’s install the latest version. You can install either Firebird-classic or Firebird super. This will also install firebird2.5-classic-common firebird2.5-server-common packages. After installation, the [...]
How to install the packages mentioned in a file?
Using apt-get, you can easily install any package in debian/ubuntu based system. Suppose you have a list of files mentioned in a file and you want to install all those packages, you can easily do so with the help of the following shell script Suppose the packages to be installed is mentioned in the file [...]
How to install Codelite in Ubuntu?
Codelite is an IDE for C and C++. It is powerful and lightweight. To install Codelite in Ubuntu It is a crosss platform IDE, which means it is available in Ubuntu, Windows and Mac OS. Once installed it can be accessed Applications>Programming>Codelite
How to install Readline/libreadline in Ubuntu?
Readline is used to read a line after editing. To work with readline in C/C++, you must install the readline packages. Let’s see the different readline packages You can see a number of packages. To work with readline, the important requirements are libreadline: For running applications using readline command libreadline-dev: For developing applications using readline. [...]