I want to install dli-downloader into Ubuntu. Provide step by step guide. With JDK configuration.
Asked
Active
Viewed 272 times
1 Answers
4
First install JAVA
sudo apt-get install openjdk-7-jre
Then download dli-downloader with dependancies package, to your /home
wget https://dli-downloader.googlecode.com/files/dli-downloader-5.4-jar-with-dependencies.jar
Then you can run
java -jar ~/dli-downloader-5.4-jar-with-dependencies.jar
Dli-Downloader will now run
You can make a "clickable" executable by opening gedit and pasting this into a new file
[Desktop Entry]
Type=Application
Exec=java -jar ~/dli-downloader-5.4-jar-with-dependencies.jar
Hidden=false
NoDisplay=false
X-GNOME-Autostart-enabled=false
Name=Dli-Downloader
Comment=Runs Dli downloder
Save it in /home as
dli.desktop
Then make it executable
chmod -x ~/dli.desktop
Now if you click dli.desktop dli-downloader will start.
Mark Kirby
- 18,949
- 19
- 79
- 116