Posts

Showing posts from October, 2014

How to Install Dependencies of Software Programs in Ubuntu

If you encounter any error while running some applications in Ubuntu, then you may got dependency problem which the application depends on, To solve this problem go to your terminal and type the command  sudo apt-get install -f  ,all your dependencies will be installed and you will be running your application error free.

How to skip permission to install software through terminal in Ubuntu

To install software's through terminal as simple as that with one simple command sudo apt-get install example-software , however in doing that you need to give permission in Y (or)  N But a simple tip (or) extended command to skip this step can be done by following command sudo apt-get install -y example-software

How to Install Node js on Ubuntu

If you are trying to install Node.js on Ubntu then follow the instruction given below Setup with Ubuntu: curl -sL https://deb.nodesource.com/setup | sudo bash - The above command just updates your system with the latest software builds. Install Node js which is in Ubuntu repository: sudo apt-get install nodejs Install build tools: sudo apt-get install build-essential For more information on various platforms visit the official doc on github .

How to Install ClamAV - Antivirus for Ubuntu

Although you don't need to install any antivirus software on your Ubuntu machine, however out of curiosity to keep your heart and mind rest in peace, you may try out open source antivirus project ClamAV . To do that just follow the steps ClamAV can be found for Ubuntu in the apt repository. Run this command to install ClamAV: sudo apt-get install clamav If you need clamd, you may also want to run: sudo apt-get install clamav-daemon If you require support for scanning compressed RAR files you first need to enable the non-free archive, and then you can install the RAR-plugin using: sudo apt-get install libclamunrar6 After successful installation, you may try searching for it in Dash, but to your surprise there is no GUI shipped with this product, either you can run it through terminal by typing help command ( clamscan --help ) and follow the instruction's provided in the help manual (or) You may install ClamTk - A GUI prov