Dsy Network www | forum | my | didattica | howto | wiki | el goog | stats | blog | dona | rappresentanti
Homepage
 Register   Calendar   Members  Faq   Search  Logout 
.dsy:it. : Powered by vBulletin version 2.3.1 .dsy:it. > Community > Forum De Bell Tolls > [Linux] installare un programma da un file .bin Thread Rating: 1 votes, 5.00 average.
Pages (2): [1] 2 »   Last Thread   Next Thread
Author
Thread    Expand all | Contract all    Post New Thread    Post A Reply
Collapse
0m4r
.grande:maestro.

User info:
Registered: Mar 2002
Posts: 7287 (0.90 al dì)
Location: Düsseldorf (DE)
Corso:
Anno: ESAMI FINITI
Time Online: 49 Days, 0:42:50 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged
Linux: installare un programma da un file .bin

ho scricato la j2sdk 1.4.1 per linux ed è contenuta in un file con estensione bin.
ho fattp./nomefile...ma cosi non credo sia corretto, io dovrei avere un javac nella directori /usr/bin...ma nn c'è....

help!

__________________
http://www.twitter.com/0m4r

04-12-2002 20:36
Click Here to See the Profile for 0m4r Click Here to See the Blog of 0m4r Click here to Send 0m4r a Private Message Find more posts by 0m4r Add 0m4r to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
Virgo
.illuminato.

User info:
Registered: Jun 2002
Posts: 239 (0.03 al dì)
Location: Milano
Corso: Informatica
Anno: 5 o 3
Time Online: 5 Days, 16:21:12 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

e' corretto e' corretto...poi non so se hai avuto altri problemi..se pero' hai visto che installava roba allora e' ok controlla dove ti ha messo il file con un find o un locate dopo aver aggiornato il db con updatedb
Ciau

04-12-2002 22:01
Click Here to See the Profile for Virgo Click here to Send Virgo a Private Message Find more posts by Virgo Add Virgo to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
0m4r
.grande:maestro.

User info:
Registered: Mar 2002
Posts: 7287 (0.90 al dì)
Location: Düsseldorf (DE)
Corso:
Anno: ESAMI FINITI
Time Online: 49 Days, 0:42:50 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

si si... è coretto anche se poi ho reinstallato tutto con un rpm (che differenza c'è...non l'ho mica ben capito sai!).

cmq ora ho un altro problema: come metto javac nel PATH (ammesso che si chiamni cosi abche per linux)? Posso farlo una volta sola per tutti gli utenti?

Grazie

__________________
http://www.twitter.com/0m4r

04-12-2002 22:51
Click Here to See the Profile for 0m4r Click Here to See the Blog of 0m4r Click here to Send 0m4r a Private Message Find more posts by 0m4r Add 0m4r to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
Renaulto
is fan of UTF-8

User info:
Registered: Aug 2002
Posts: 4064 (0.51 al dì)
Location:
Corso: Informatica
Anno:
Time Online: 96 Days, 0:20:58 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged
Re: Linux: installare un programma da un file .bin

Originally posted by 0m4r
ho scricato la j2sdk 1.4.1 per linux ed è contenuta in un file con estensione bin.
ho fattp./nomefile...ma cosi non credo sia corretto, io dovrei avere un javac nella directori /usr/bin...ma nn c'è....

help!

$ chmod +x nome_file
$ ./nome_file
dopodichè ti crea l'rpm e lo installi.

il compilatore è qua:
/usr/java/j2sdk1.4.1_01/bin/javac

per farlo vedere alla shell devi estendere il PATH, se usi bash puoi inserire:
export PATH=$PATH:/usr/java/j2sdk1.4.1_01/bin
in $HOME/.bashrc o in un altro file di configurazione della shell.
Per il CLASSPATH devi usare invece:
export CLASSPATH= bla bla bla bla....

__________________
Tanenbaum is overrated.

04-12-2002 22:52
Click Here to See the Profile for Renaulto Click Here to See the Blog of Renaulto Click here to Send Renaulto a Private Message Find more posts by Renaulto Add Renaulto to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
Renaulto
is fan of UTF-8

User info:
Registered: Aug 2002
Posts: 4064 (0.51 al dì)
Location:
Corso: Informatica
Anno:
Time Online: 96 Days, 0:20:58 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

Originally posted by 0m4r
cmq ora ho un altro problema: come metto javac nel PATH (ammesso che si chiamni cosi abche per linux)? Posso farlo una volta sola per tutti gli utenti?

lo metti in /etc/profile

__________________
Tanenbaum is overrated.

04-12-2002 22:54
Click Here to See the Profile for Renaulto Click Here to See the Blog of Renaulto Click here to Send Renaulto a Private Message Find more posts by Renaulto Add Renaulto to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
Virgo
.illuminato.

User info:
Registered: Jun 2002
Posts: 239 (0.03 al dì)
Location: Milano
Corso: Informatica
Anno: 5 o 3
Time Online: 5 Days, 16:21:12 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

Mi inchino umilmente al maestro :) ihhihi

04-12-2002 22:59
Click Here to See the Profile for Virgo Click here to Send Virgo a Private Message Find more posts by Virgo Add Virgo to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
0m4r
.grande:maestro.

User info:
Registered: Mar 2002
Posts: 7287 (0.90 al dì)
Location: Düsseldorf (DE)
Corso:
Anno: ESAMI FINITI
Time Online: 49 Days, 0:42:50 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged
Re: Re: Linux: installare un programma da un file .bin

Originally posted by Renaulto

$ chmod +x nome_file
$ ./nome_file
dopodichè ti crea l'rpm e lo installi.

io questo l'ho provato a fare ma non ho ottenuto il tuo risultato...cmq ho risolto il problema scricando direttamente l'rpm.

Originally posted by Renaulto

il compilatore è qua:
/usr/java/j2sdk1.4.1_01/bin/javac

grazie lo sapevo già ;P


Originally posted by Renaulto

per farlo vedere alla shell devi estendere il PATH, se usi bash puoi inserire:
export PATH=$PATH:/usr/java/j2sdk1.4.1_01/bin
in $HOME/.bashrc o in un altro file di configurazione della shell.
Per il CLASSPATH devi usare invece:
export CLASSPATH= bla bla bla bla....


cosa intendi per $HOME? direcory home dell'utente? (come avrai ben capito sono abbastanza ignorante in materia!)

__________________
http://www.twitter.com/0m4r

04-12-2002 23:01
Click Here to See the Profile for 0m4r Click Here to See the Blog of 0m4r Click here to Send 0m4r a Private Message Find more posts by 0m4r Add 0m4r to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
Virgo
.illuminato.

User info:
Registered: Jun 2002
Posts: 239 (0.03 al dì)
Location: Milano
Corso: Informatica
Anno: 5 o 3
Time Online: 5 Days, 16:21:12 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

Si si hai capito bene :)

04-12-2002 23:03
Click Here to See the Profile for Virgo Click here to Send Virgo a Private Message Find more posts by Virgo Add Virgo to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
0m4r
.grande:maestro.

User info:
Registered: Mar 2002
Posts: 7287 (0.90 al dì)
Location: Düsseldorf (DE)
Corso:
Anno: ESAMI FINITI
Time Online: 49 Days, 0:42:50 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

Originally posted by Renaulto
lo metti in /etc/profile


cosa è che metto in etc/profile?
(son troppo ignorante!)

__________________
http://www.twitter.com/0m4r

04-12-2002 23:05
Click Here to See the Profile for 0m4r Click Here to See the Blog of 0m4r Click here to Send 0m4r a Private Message Find more posts by 0m4r Add 0m4r to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
Virgo
.illuminato.

User info:
Registered: Jun 2002
Posts: 239 (0.03 al dì)
Location: Milano
Corso: Informatica
Anno: 5 o 3
Time Online: 5 Days, 16:21:12 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

setti il PATH in /etc/profile a livello di sistema invece che di utente
in pratica dovrai mettere quel
export PATH=$PATH.....

ciao :)

04-12-2002 23:06
Click Here to See the Profile for Virgo Click here to Send Virgo a Private Message Find more posts by Virgo Add Virgo to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
0m4r
.grande:maestro.

User info:
Registered: Mar 2002
Posts: 7287 (0.90 al dì)
Location: Düsseldorf (DE)
Corso:
Anno: ESAMI FINITI
Time Online: 49 Days, 0:42:50 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

siete i miei nuovi idoli.....

__________________
http://www.twitter.com/0m4r

04-12-2002 23:07
Click Here to See the Profile for 0m4r Click Here to See the Blog of 0m4r Click here to Send 0m4r a Private Message Find more posts by 0m4r Add 0m4r to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
Virgo
.illuminato.

User info:
Registered: Jun 2002
Posts: 239 (0.03 al dì)
Location: Milano
Corso: Informatica
Anno: 5 o 3
Time Online: 5 Days, 16:21:12 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

io sono un consigliere....il grande maestro e' renaulto...guarda se ne accorge anche la board :) ihhiih

04-12-2002 23:08
Click Here to See the Profile for Virgo Click here to Send Virgo a Private Message Find more posts by Virgo Add Virgo to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
Renaulto
is fan of UTF-8

User info:
Registered: Aug 2002
Posts: 4064 (0.51 al dì)
Location:
Corso: Informatica
Anno:
Time Online: 96 Days, 0:20:58 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

Originally posted by Virgo
io sono un consigliere....il grande maestro e' renaulto...guarda se ne accorge anche la board :) ihhiih

la board?
Virgo ma quante ne sai?

__________________
Tanenbaum is overrated.

04-12-2002 23:12
Click Here to See the Profile for Renaulto Click Here to See the Blog of Renaulto Click here to Send Renaulto a Private Message Find more posts by Renaulto Add Renaulto to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
Virgo
.illuminato.

User info:
Registered: Jun 2002
Posts: 239 (0.03 al dì)
Location: Milano
Corso: Informatica
Anno: 5 o 3
Time Online: 5 Days, 16:21:12 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

dove hai preso quel coso che hai in testa ? se me lo metto anche io divento subito maestro ? ihhiihhi ;)

04-12-2002 23:13
Click Here to See the Profile for Virgo Click here to Send Virgo a Private Message Find more posts by Virgo Add Virgo to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
Lightman
.grande:maestro.

User info:
Registered: Jul 2002
Posts: 1517 (0.19 al dì)
Location:
Corso:
Anno:
Time Online: 5 Days, 6:24:06: [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

Fermi, se ha la RH 8.0 allora e' meglio evitare l' export PATH=$PATH....

E' molto meglio invece usare :

code:
pathmunge /usr/java/j2sdk1.4.1_01/bin after


:)

__________________
"What peece of worke is a man, how noble in reason, how infinit in faculties, in forme and moouing, how expresse and admirable in action, how like an Angell in apprehension, how like a God: the beautie of the world; the paragon of Annimales; and yet to me, what is this Quintessence of dust: man delights not me" - Hamlet

Last edited by Lightman on 05-12-2002 at 08:37

05-12-2002 08:34
Click Here to See the Profile for Lightman Click Here to See the Blog of Lightman Click here to Send Lightman a Private Message Find more posts by Lightman Add Lightman to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
All times are GMT. The time now is 07:15.    Post New Thread    Post A Reply
Pages (2): [1] 2 »   Last Thread   Next Thread
Show Printable Version | Email this Page | Subscribe to this Thread | Add to Bookmarks

Forum Jump:
Rate This Thread:

Forum Rules:
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is OFF
vB code is ON
Smilies are ON
[IMG] code is ON
 

Powered by: vBulletin v2.3.1 - Copyright ©2000 - 2002, Jelsoft Enterprises Limited
Mantained by dsy crew (email) | Collabora con noi | Segnalaci un bug | Archive | Regolamento | Licenze | Thanks | Syndacate
Pagina generata in 0.044 seconds (85.16% PHP - 14.84% MySQL) con 25 query.