Snap Backup
environment, you can probably figure out how to run a Java application on
your own. These instructions, on the other hand, are intended for
business and personal users of Ubuntu Linux running the regular default
GNOME desktop.Follow the steps below to install Snap Backup on Ubuntu. The steps look long but they're actually quite easy.
A: Install Java on Ubuntu
1) Go to the Java Download Page
Open http://www.java.com and click on Download NOW! Now click the Download button for "Linux (self-extracting file)".2) Save Installer to "~/apps/java" Folder
From the save window in your web browser, create a folder called apps in your home folder and then create a sub-folder within that folder called java. Download the installer file to this new folder (/home/<username>/apps/java).3) Launch Terminal
You need to run the Java installer from the command-line, which you access with Terminal. In the Applications menu, go into Accessories and select Terminal.4) Run Installer
From the Terminal, enter these commands:
$ cd apps/java
$ ls -l
$ chmod +x jre*.bin
$ ./jre*.bin
$ ln -s jre*/bin bin
The chmod command makes the file executable so you can run it.
The ln command creates a symbolic link to the bin folder so
it's easier to access.$ ls -l
$ chmod +x jre*.bin
$ ./jre*.bin
$ ln -s jre*/bin bin
5) Add Java to Your PATH
While still in the Terminal, enter these commands:
$ cd ~
$ echo 'PATH=~/bin:$PATH' >> .gnomerc
$ cat .gnomerc
$ mkdir bin
$ cd bin
$ ln -s ~/apps/java/bin/java java
The echo command tells the GNOME desktop startup script to add
your bin folder to the PATH. The cat command
displays the startup script so you can verify your update. If the
mkdir command reports that the folder already exists, that's
ok.$ echo 'PATH=~/bin:$PATH' >> .gnomerc
$ cat .gnomerc
$ mkdir bin
$ cd bin
$ ln -s ~/apps/java/bin/java java
HOME