[risolto] qualcuno usa jdownloader?
-
ilcaostrisciante
- Prode Principiante
- Messaggi: 63
- Iscrizione: giovedì 5 febbraio 2009, 18:06
[risolto] qualcuno usa jdownloader?
ciao a tutti, ho scaricato jdownloader che utilizzo per scaricare file da megaupload e rapidshare.
è un programma .jar, il problema è che quando lo avvio mi richiede sempre l'installazione e lo scaricamento degli aggiornamenti, che faccio sempre, ma ogni volta riavviato mi richiede sempre gli stessi passaggi di prima...qualcuno lo utilizza? se si ha i miei stessi problemi?
è un programma .jar, il problema è che quando lo avvio mi richiede sempre l'installazione e lo scaricamento degli aggiornamenti, che faccio sempre, ma ogni volta riavviato mi richiede sempre gli stessi passaggi di prima...qualcuno lo utilizza? se si ha i miei stessi problemi?
Ultima modifica di ilcaostrisciante il lunedì 23 marzo 2009, 10:00, modificato 1 volta in totale.
Re: qualcuno usa jdownloader?
pure a me lo faceva, infatti mi scaricavo sempre l'ultima versione dal sito ogni volta che mi serviva, però sembra che con l'ultima si sia risolto.
Prova a scaricare l'ultima versione dal sito ufficiale e fai gli aggiornamenti la prima volta.
Prova a scaricare l'ultima versione dal sito ufficiale e fai gli aggiornamenti la prima volta.
-
ilcaostrisciante
- Prode Principiante
- Messaggi: 63
- Iscrizione: giovedì 5 febbraio 2009, 18:06
Re: qualcuno usa jdownloader?
hai visto che ora si può installare il file jd.sh? tu ci sei riuscito ad installarlo? lo scarico, lo eseguo dal terminale ma nn va nulla...Dariett ha scritto: pure a me lo faceva, infatti mi scaricavo sempre l'ultima versione dal sito ogni volta che mi serviva, però sembra che con l'ultima si sia risolto.
Prova a scaricare l'ultima versione dal sito ufficiale e fai gli aggiornamenti la prima volta.
Re: qualcuno usa jdownloader?
a me ha scaricato i file per l'aggiornamento però stavolta ha fatto l'aggiornamento da solo....prova a riscaricarlo dal sito ufficiale, avvialo e scarica i file di aggiornamento, se non te li installa riavvialo e vedi che fa, me ha funzionato
- LicaoNesSs
- Entusiasta Emergente

- Messaggi: 1054
- Iscrizione: venerdì 13 febbraio 2009, 3:23
Re: qualcuno usa jdownloader?
ciao, questo dovrebbe essere lo script
#How to use this?
#1.) chmod +x jd.sh
#2.) Place it anywhere you want
#3.) Running jd.sh for the first time will install and setup JD into JDDIR folder
#4.) Running jd.sh after the first time will start JDownloader directly
questo script in pratica installa jdownloader, dove?
~/.jd
unica pecca che per ora ho notato è che non crea la directory che poi userà di default per salvare i file scaricati
ho risolto creandola manualmente:
ma penso si possa cambiare anche da impostazioni.
Codice: Seleziona tutto
!/bin/bash
#JD Installer/Starter Version 0.1
#by Jiaz(JD-Team), jiaz@jdownloader.org
#You need at least:
#1.) bash (its a bash script )
#2.) wget
#3.) Java Version >= 1.5 (OpenJDK works also in latest Version)
#How to use this?
#1.) chmod +x jd.sh
#2.) Place it anywhere you want
#3.) Running jd.sh for the first time will install and setup JD into JDDIR folder
#4.) Running jd.sh after the first time will start JDownloader directly
#Parameters
# update (will perform an update)
#JD Installation folder (adjust to your needs)
JDDIR=~/.jd
#default path to our install/update tool (DO NOT Change this)
JDINSTALLER=http://212.117.163.148/update/jd/restore.jar
if [ -e $JDDIR ]
then
if [ "$1" = "update" ]
then
if [ -e $JDDIR/restore.jar ]
then
cd $JDDIR
echo "Start JD-Updater"
java -Xmx512m -jar restore.jar
else
echo "Cannot start JD-Updater: Download/Start JD-Installer"
cd $JDDIR
wget $JDINSTALLER
mv restore.jar install.jar
java -Xmx512m -jar install.jar
rm install.jar
fi
exit
fi
if [ -e $JDDIR/JDownloader.jar ]
then
echo "JD Installation found: Starting JD now"
cd $JDDIR
java -Xmx512m -jar JDownloader.jar $1
fi
echo "JD Installation found: No valid JDownloader.jar exist!"
if [ -e $JDDIR/restore.jar ]
then
cd $JDDIR
echo "Start JD-Updater"
java -Xmx512m -jar restore.jar
else
echo "Cannot start JD-Updater: Download/Start JD-Installer"
cd $JDDIR
wget $JDINSTALLER
mv restore.jar install.jar
java -Xmx512m -jar install.jar
rm install.jar
fi
else
echo "Download/Start JD-Installer"
mkdir $JDDIR
cd $JDDIR
wget $JDINSTALLER
mv restore.jar install.jar
java -Xmx512m -jar install.jar
rm install.jar
fi #How to use this?
#1.) chmod +x jd.sh
#2.) Place it anywhere you want
#3.) Running jd.sh for the first time will install and setup JD into JDDIR folder
#4.) Running jd.sh after the first time will start JDownloader directly
questo script in pratica installa jdownloader, dove?
~/.jd
unica pecca che per ora ho notato è che non crea la directory che poi userà di default per salvare i file scaricati
ho risolto creandola manualmente:
Codice: Seleziona tutto
cd .jd
mkdir downloadsMad Macaco Fan Club
Q: How many Marxists does it take to screw in a light bulb?
A: None: The light bulb contains the seeds of its own revolution.
Q: How many Marxists does it take to screw in a light bulb?
A: None: The light bulb contains the seeds of its own revolution.
-
ilcaostrisciante
- Prode Principiante
- Messaggi: 63
- Iscrizione: giovedì 5 febbraio 2009, 18:06
Re: qualcuno usa jdownloader?
perfetto, ora non mi fa reinstallare tutto ogni volta, mi salva le impostazioni e gli account...perfect!LicaoNesSs ha scritto: ciao, questo dovrebbe essere lo scriptCodice: Seleziona tutto
!/bin/bash #JD Installer/Starter Version 0.1 #by Jiaz(JD-Team), jiaz@jdownloader.org #You need at least: #1.) bash (its a bash script ) #2.) wget #3.) Java Version >= 1.5 (OpenJDK works also in latest Version) #How to use this? #1.) chmod +x jd.sh #2.) Place it anywhere you want #3.) Running jd.sh for the first time will install and setup JD into JDDIR folder #4.) Running jd.sh after the first time will start JDownloader directly #Parameters # update (will perform an update) #JD Installation folder (adjust to your needs) JDDIR=~/.jd #default path to our install/update tool (DO NOT Change this) JDINSTALLER=http://212.117.163.148/update/jd/restore.jar if [ -e $JDDIR ] then if [ "$1" = "update" ] then if [ -e $JDDIR/restore.jar ] then cd $JDDIR echo "Start JD-Updater" java -Xmx512m -jar restore.jar else echo "Cannot start JD-Updater: Download/Start JD-Installer" cd $JDDIR wget $JDINSTALLER mv restore.jar install.jar java -Xmx512m -jar install.jar rm install.jar fi exit fi if [ -e $JDDIR/JDownloader.jar ] then echo "JD Installation found: Starting JD now" cd $JDDIR java -Xmx512m -jar JDownloader.jar $1 fi echo "JD Installation found: No valid JDownloader.jar exist!" if [ -e $JDDIR/restore.jar ] then cd $JDDIR echo "Start JD-Updater" java -Xmx512m -jar restore.jar else echo "Cannot start JD-Updater: Download/Start JD-Installer" cd $JDDIR wget $JDINSTALLER mv restore.jar install.jar java -Xmx512m -jar install.jar rm install.jar fi else echo "Download/Start JD-Installer" mkdir $JDDIR cd $JDDIR wget $JDINSTALLER mv restore.jar install.jar java -Xmx512m -jar install.jar rm install.jar fi
#How to use this?
#1.) chmod +x jd.sh
#2.) Place it anywhere you want
#3.) Running jd.sh for the first time will install and setup JD into JDDIR folder
#4.) Running jd.sh after the first time will start JDownloader directly
questo script in pratica installa jdownloader, dove?
~/.jd
unica pecca che per ora ho notato è che non crea la directory che poi userà di default per salvare i file scaricati
ho risolto creandola manualmente:ma penso si possa cambiare anche da impostazioni.Codice: Seleziona tutto
cd .jd mkdir downloads
meno male che il forum di ubuntu c'è!
Chi c’è in linea
Visualizzano questa sezione: 0 utenti iscritti e 11 ospiti