Pagina 1 di 1

[risolto] qualcuno usa jdownloader?

Inviato: martedì 17 marzo 2009, 22:59
da ilcaostrisciante
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?

Re: qualcuno usa jdownloader?

Inviato: martedì 17 marzo 2009, 23:14
da Dariett
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?

Inviato: martedì 17 marzo 2009, 23:23
da ilcaostrisciante
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.
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...

Re: qualcuno usa jdownloader?

Inviato: mercoledì 18 marzo 2009, 12:37
da Dariett
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

Re: qualcuno usa jdownloader?

Inviato: mercoledì 18 marzo 2009, 13:19
da LicaoNesSs
ciao, questo dovrebbe essere lo script

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 downloads
ma penso si possa cambiare anche da impostazioni.

Re: qualcuno usa jdownloader?

Inviato: lunedì 23 marzo 2009, 9:56
da ilcaostrisciante
LicaoNesSs ha scritto: ciao, questo dovrebbe essere lo script

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 downloads
ma penso si possa cambiare anche da impostazioni.
perfetto, ora non mi fa reinstallare tutto ogni volta, mi salva le impostazioni e gli account...perfect!
meno male che il forum di ubuntu c'è!