LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 07-23-2010, 02:50 PM   #1
jacatone
Member
 
Registered: Mar 2004
Posts: 292

Rep: Reputation: 30
Anyone know of a file hosting downloader for Linux


In the Windows world there's FreeRapid, JDownloader, etc. to download files from file hosting sites like RapidShare, Megaupload and so on. Does anyone know of a Linux program that'll do the same thing? Thanks.
 
Old 07-23-2010, 03:32 PM   #2
TobiSGD
Moderator
 
Registered: Dec 2009
Location: Germany
Distribution: Whatever fits the task best
Posts: 17,148
Blog Entries: 2

Rep: Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886
As JDownloader is written in Java you can use it in Linux, if you have a JRE installed. Just download it from their website and start it with
Code:
java -jar path/to/JDownloader/JDownloader.jar
If you use the install-script from their site, the path will be /home/$USER/.jd
I use it and it works fine.
 
Old 07-23-2010, 04:44 PM   #3
jacatone
Member
 
Registered: Mar 2004
Posts: 292

Original Poster
Rep: Reputation: 30
Tried that. I'm running the latest Ubuntu and I get the following error message: The file '/home/jacatone/Desktop/Save/JDownloader.jar' is not marked as executable. If this was downloaded or copied from an untrusted source,it may be dangerous to run.

Last edited by jacatone; 07-23-2010 at 05:03 PM.
 
Old 07-23-2010, 05:16 PM   #4
sneakyimp
Senior Member
 
Registered: Dec 2004
Posts: 1,056

Rep: Reputation: 78
Quote:
Originally Posted by jacatone View Post
Tried that. I'm running the latest Ubuntu and I get the following error message: The file '/home/jacatone/Desktop/Save/JDownloader.jar' is not marked as executable. If this was downloaded or copied from an untrusted source,it may be dangerous to run.
That's true, it may be dangerous to run. But if you trust it, you can assign executable using chmod. Try 'man chmod' for more info.
 
Old 07-23-2010, 05:49 PM   #5
jacatone
Member
 
Registered: Mar 2004
Posts: 292

Original Poster
Rep: Reputation: 30
I got it to work, but if I close the Terminal, it closes the program. Also, seems to lockup my terminal with just this program. If I add a tab to the terminal it just shows the java launch for JDownloader. In the past, I just had to right click the .jar file and select "Run with Java Runtime".
 
Old 07-23-2010, 05:56 PM   #6
GrapefruiTgirl
LQ Guru
 
Registered: Dec 2006
Location: underground
Distribution: Slackware64
Posts: 7,594

Rep: Reputation: 556Reputation: 556Reputation: 556Reputation: 556Reputation: 556Reputation: 556
I can't address the issue of "I want to right-click it", since I don't use Ubuntu and so do not know much about their launcher configurations, but.. Maybe if you run the thing from the terminal using `nohup` and an & sign at the end (the & may be optional when using nohup) then it will keep running when the terminal is closed. Example:

Code:
nohup java -jar path/to/JDownloader/JDownloader.jar &
Just edit the java command to whatever it is you're actually using.

You may find that either one or the other alone, solves the closed-terminal-kills-it problem, but there'll be no harm in trying them each or both together.

Good luck!
 
Old 07-23-2010, 05:57 PM   #7
sneakyimp
Senior Member
 
Registered: Dec 2004
Posts: 1,056

Rep: Reputation: 78
If you want to run something in the background on a terminal, you can follow it with an ampersand
Code:
prompt% command args &
That is helpful for starting a daemon process once. If you want to make sure JDownloader runs when your system reboots, you need to add it to your startup queue somewhere.

I'm not at all familiar with either JDownloader or configuring Ubuntu's GUI. I'm not sure what you mean by 'in the past' but it sounds like you might be referring to your windows machine's right click context menu? Does Ubuntu even have a right-click context menu?
 
Old 07-23-2010, 06:12 PM   #8
jacatone
Member
 
Registered: Mar 2004
Posts: 292

Original Poster
Rep: Reputation: 30
How does the ampersand with "prompt% command args &"? work?. Yeah, in older versions of Ubuntu, you could just right click and select "Run with Java Runtime". That option still exists in the latest Ubuntu, but get the error message instead.

Again, does anyone know of a similar program to JDownloader or FreeRapid that is meant for Linux?
 
Old 07-23-2010, 06:20 PM   #9
GrapefruiTgirl
LQ Guru
 
Registered: Dec 2006
Location: underground
Distribution: Slackware64
Posts: 7,594

Rep: Reputation: 556Reputation: 556Reputation: 556Reputation: 556Reputation: 556Reputation: 556
The ampersand, placed at the end of any command entered into a terminal, causes the launched process to 'fork' into the background, freeing it from the terminal you launched it from, thereby giving you back the usage of the terminal. It detaches the launched process.

As for the downloader.. Is there some specific set of features or functionality required of a downloader for use with the download sites you mention? I mean, is it anything more than a "download manager"?

If it helps any, I just use the FlashGot extension for Firefox, or occasionally Kget (yes, that's a KDE application, and you probably don't want to install a few hundred MB of libraries just to use one KDE application).

Sorry I cannot help further with the download thing!
 
Old 07-23-2010, 07:09 PM   #10
jacatone
Member
 
Registered: Mar 2004
Posts: 292

Original Poster
Rep: Reputation: 30
Programs like FreeRapid and JDownloader are specifically made for file hosting sites like Rapidshare, Megaupload and Uploader. Regular download managers don't seem to work that well with these sites for some reason.
 
Old 07-23-2010, 09:49 PM   #11
jacatone
Member
 
Registered: Mar 2004
Posts: 292

Original Poster
Rep: Reputation: 30
Tried the ampersand. Didn't work.
 
Old 07-23-2010, 09:53 PM   #12
GrapefruiTgirl
LQ Guru
 
Registered: Dec 2006
Location: underground
Distribution: Slackware64
Posts: 7,594

Rep: Reputation: 556Reputation: 556Reputation: 556Reputation: 556Reputation: 556Reputation: 556
Did you try `nohup` with the ampersand (or without it?)
 
Old 07-23-2010, 10:01 PM   #13
sneakyimp
Senior Member
 
Registered: Dec 2004
Posts: 1,056

Rep: Reputation: 78
"didn't work" is hardly descriptive enough to determine the problem. Can you be more specific?
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
best free large-file file sharing/hosting sites? linus72 General 4 04-23-2009 05:16 AM
LXer: Web Hosting Provider Zen Internet Offer Linux Hosting Trial for 1 ... LXer Syndicated Linux News 0 04-20-2006 09:33 PM
http file downloader blinux1 Programming 5 01-01-2005 11:54 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 04:42 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration