Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
AMULE server
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Forum italiano (Italian)
View previous topic :: View next topic  
Author Message
102376
l33t
l33t


Joined: 19 Mar 2005
Posts: 608

PostPosted: Sun Jun 19, 2005 12:05 pm    Post subject: AMULE server Reply with quote

ciao volevo sapere se esiste un demone che viene lanciato in background da boot che fa partire amule!!!?? mi spiego volglio lanciare amule da boot e siccome ho + utenti desidero che questi untenti si collegano tramite interfacca grafica ad amule lanciato da boot !!! così i download continuano sono tutti insieme !!!
infatti ora se lancio amule da un utente viengono visualizzati solo i download suoi e quelli di altri utenti no !!! spero di essermi fatto capire!!!
Back to top
View user's profile Send private message
assente
Guru
Guru


Joined: 12 Apr 2004
Posts: 570
Location: Torino, italia, New Europe

PostPosted: Sun Jun 19, 2005 12:15 pm    Post subject: Reply with quote

cioè vorresti che ogni utente gestisse il proprio amuled?
hai provato a farlo andare su porte diverse per ogni utente?
_________________
Blog
E8400, 4850, P5q
Back to top
View user's profile Send private message
102376
l33t
l33t


Joined: 19 Mar 2005
Posts: 608

PostPosted: Sun Jun 19, 2005 12:19 pm    Post subject: Reply with quote

no il contrario voglio che ogni utente usi lo stesso amuled
Back to top
View user's profile Send private message
bender86
Guru
Guru


Joined: 18 Mar 2005
Posts: 484

PostPosted: Sun Jun 19, 2005 12:23 pm    Post subject: Reply with quote

Puoi provare a mettere qualcosa del genere in /etc/conf.d/local.start
Code:
/usr/bin/amuled &

oppure
Code:
start-stop-daemon --start --chuid utente:gruppo --startas /usr/bin/amuled

(Magari controlla prima man start-stop-daemon)
Così all'avvio viene lanciato amuled. Credo che poi ogni utente potrebbe connettersi al server, previa autenticazione.
Ciao
Back to top
View user's profile Send private message
Flonaldo
Guru
Guru


Joined: 21 Nov 2003
Posts: 572
Location: Bologna

PostPosted: Sun Jun 19, 2005 12:23 pm    Post subject: Reply with quote

zocram wrote:
no il contrario voglio che ogni utente usi lo stesso amuled


fai uno scriptino che in automatico si avvia al boot!
_________________
Odio un po' di meno gli uomini coi capelli rossi
La mia musica http://www.last.fm/user/Flonaldo/
Back to top
View user's profile Send private message
102376
l33t
l33t


Joined: 19 Mar 2005
Posts: 608

PostPosted: Sun Jun 19, 2005 12:26 pm    Post subject: Reply with quote

ok ho capito esiste il demone amuled!!!! benissimo .... ma poi che cosa uso per client??? e
Back to top
View user's profile Send private message
assente
Guru
Guru


Joined: 12 Apr 2004
Posts: 570
Location: Torino, italia, New Europe

PostPosted: Sun Jun 19, 2005 12:33 pm    Post subject: Reply with quote

zocram wrote:
ok ho capito esiste il demone amuled!!!! benissimo .... ma poi che cosa uso per client??? e

amulegui, vedi di aver compilato amule con USE="amuled"
_________________
Blog
E8400, 4850, P5q
Back to top
View user's profile Send private message
CRV§ADER//KY
Guru
Guru


Joined: 30 Aug 2004
Posts: 405
Location: Torino

PostPosted: Sun Jun 19, 2005 9:28 pm    Post subject: Reply with quote

assente wrote:
amulegui, vedi di aver compilato amule con USE="amuled"


vuoi dire USE="remote"
_________________
Kyrie, Ignis Divine, Eleison ~ Elfen Lied
Back to top
View user's profile Send private message
Gaspyd
Apprentice
Apprentice


Joined: 21 Nov 2004
Posts: 242
Location: Brindisi, Italy

PostPosted: Mon Jun 20, 2005 9:23 am    Post subject: Reply with quote

zocram wrote:
ok ho capito esiste il demone amuled!!!! benissimo .... ma poi che cosa uso per client??? e

Il browser web inserendo come indirizzo l'ip del server su cui gira amule seguito dalla porta che hai specificato nella sua configurazione.
Funziona, non hai tutte le feature della gui di amule, ma funziona .... :wink:
P.S.
puoi usare amulegui ma credo sia necessaria l'installazione di amule su ogni macchina client, cosa non necessaria se usi amuled sul server ed un qualunque browser sui client
Back to top
View user's profile Send private message
dappiu
Apprentice
Apprentice


Joined: 14 Mar 2005
Posts: 242
Location: Pisa, Italy

PostPosted: Mon Jun 20, 2005 11:11 am    Post subject: Reply with quote

CRV§ADER//KY wrote:
assente wrote:
amulegui, vedi di aver compilato amule con USE="amuled"


vuoi dire USE="remote"


USE="remote" sul client, ma sul server devi usare USE="amuled" altrimenti il demone non te lo compila ;)

Sui client
Code:

USE="remote" emerge >=amule-2.0.0


Sul server
Code:

USE="amuled" emerge >=amule-2.0.0



In portage solo >=amule-2.0.0 ha l'ebuild predisposto per amuled, i precedenti no.
_________________
If the human brain were so simple that we could understand it, we would be so simple we couldn't.
Back to top
View user's profile Send private message
assente
Guru
Guru


Joined: 12 Apr 2004
Posts: 570
Location: Torino, italia, New Europe

PostPosted: Mon Jun 20, 2005 12:37 pm    Post subject: Reply with quote

Code:

HOME="/home/utente/" start-stop-daemon --chuid utente --exec /usr/bin/amuled --start&


Io ho risolto con questo in /etc/conf.d/local.start
e in local.stop

Code:

start-stop-daemon --chuid utente --exec /usr/bin/amuled --stop&


Strafico!
_________________
Blog
E8400, 4850, P5q
Back to top
View user's profile Send private message
assente
Guru
Guru


Joined: 12 Apr 2004
Posts: 570
Location: Torino, italia, New Europe

PostPosted: Wed Jun 22, 2005 4:26 pm    Post subject: Reply with quote

funzionare funziona, ma solo se tengo una console aperta...
Ho provato con screen e nohup, ma non riesco a trasformare amuled in un demone indipendente

alla fine ho visto che mancava --background, non credo ci siano compromessi migliori. :wink:

Code:

HOME="/home/utente/" start-stop-daemon --chuid utente --exec /usr/bin/amuled --start --background&

_________________
Blog
E8400, 4850, P5q
Back to top
View user's profile Send private message
Onip
Advocate
Advocate


Joined: 02 Sep 2004
Posts: 2912
Location: Parma (Italy)

PostPosted: Wed Jun 22, 2005 4:37 pm    Post subject: Reply with quote

su bugzilla ci sono gli script di init per amuled e amuleweb, insieme anche all'ebuild per l'ultima versione (2.0.3). Non ho ancora avuto modo di provarli, ma credo che l'ebuild installi in automatico gli script. Ecco il link.

Byez
_________________
Linux Registered User n. 373835

Titus Lucretius Carus, De Rerum Natura - Tantum religio potuit suadere malorum
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Forum italiano (Italian) All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum