Ubuntu

“Install Multiple Software At Single Place”

 

 

How To Install Java on Ubuntu with Apt-Get

Installing default JRE/JDK

Go to Terminal (Ctrl + Alt + t)

sudo apt-get update
java -version
sudo apt-get install default-jre
sudo apt-get install default-jdk

That is everything that is needed to install Java.

 

___________________________________________________________________________________

How To Install Sublime Text 3 in Ubuntu 13.04, 13.10

Open Terminal (Ctrl + Alt + T), Type and Run the commands below:

$ sudo add-apt-repository ppa:webupd8team/sublime-text-3
$ sudo apt-get update
$ sudo apt-get install sublime-text-installer
_______________________

How to Extract RAR files in Ubuntu 14.04 / 13.10 / 13.04 / 12.10 / 12.04

rar-ubuntu-13.04

To install unrar

Run the following command in terminal and type the password for the user, when prompted.

sudo apt-get install unrar

unrar-ubuntu-13.04

Thats it. Now you can extract or open RAR files in your system.

________________________

How to Install Notepadqq (Notepad++ Text Editor) in Ubuntu 14.04 and Linux

sudo add-apt-repository ppa:notepadqq-team/notepadqq
sudo apt-get update
sudo apt-get install notepadqq

OR another way …. Download the latest version of notepad++ (*.exe) file

sudo apt-get install wine

Now goto your .exe file, and right click on it.. there is option … wine with window
select and install

_____________________

delete file in ubuntu using terminal

$ rm -f filename

_____________________