Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
[ OT ] Ricerca di software
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
stefanonafets
l33t
l33t


Joined: 10 Feb 2003
Posts: 644

PostPosted: Mon Jul 25, 2005 2:24 am    Post subject: [ OT ] Ricerca di software Reply with quote

Ciao a tutti !!!
Vengo qui dopo mesi di assenza, e vi pongo subito una domanda OT ... :oops:
Vabbè, vengo al punto.
Sto cercando un paio di software, siccome sono settimane che ci impazzisco su volevo sapere se voi ne conoscete.
Me ne serve uno tipo Secure-CRT di Win, ovvero un sw che mi permetta di gestire degli account SSH/telnet (telnet in particolare) e che mi permetta di memorizzare le password (soprattutto per telnet, se il client da CLI supportasse l'immissione della password come parametro avrei fatto uno scriptino, ma nn è possibile...).
Il secondo sw che cerco e che non trovo (e qui mi meraviglio di me) è un semplice text-editor, per intenderci gEdit andrebbe + che bene, che permetta però di aprire e salvare file da/a ftp.
Questi 2 sw sono tutto ciò che mi manca (finchè nn finisce il periodo di prova di Crossover Office ... :roll: (MA PERCHE' SI DEVONO OSTINARE TUTTI AD USARE Exchange ED A SCRIVERE LA DOCUMENTZIONE CON Word??? CA**O!!!) )
per migrare il mio laptop da consulente da Win (<- loose) a Linux...

Dimenticavo, uso Gnome (-qt -kde)..

Grazie a tutti, scusatemi per l'offtopicaggine...
_________________
registered Linux user number #411324
sed 's/ke/che/g'

<The Deployment Slave is initializing>
Back to top
View user's profile Send private message
tuxer
Guru
Guru


Joined: 10 May 2004
Posts: 328

PostPosted: Mon Jul 25, 2005 6:11 am    Post subject: Reply with quote

Quote:
Sto cercando un paio di software, siccome sono settimane che ci impazzisco su volevo sapere se voi ne conoscete.
Me ne serve uno tipo Secure-CRT di Win, ovvero un sw che mi permetta di gestire degli account SSH/telnet (telnet in particolare) e che mi permetta di memorizzare le password (soprattutto per telnet, se il client da CLI supportasse l'immissione della password come parametro avrei fatto uno scriptino, ma nn è possibile...).

Putty dovrebbe farlo se non sbaglio e comunque con expect puoi passargli user e pwd da linea di comando...

Quote:
Il secondo sw che cerco e che non trovo (e qui mi meraviglio di me) è un semplice text-editor, per intenderci gEdit andrebbe + che bene, che permetta però di aprire e salvare file da/a ftp.

Emacs naturalmente lo fa...
Back to top
View user's profile Send private message
randomaze
Bodhisattva
Bodhisattva


Joined: 21 Oct 2003
Posts: 9985

PostPosted: Mon Jul 25, 2005 7:28 am    Post subject: Reply with quote

tuxer wrote:
Putty dovrebbe farlo se non sbaglio e comunque con expect puoi passargli user e pwd da linea di comando...


Concordo sull'uso di Putty. Anzi suggerirei di usarlo anche al posto di Secure-CRT sull'altro sistema operativo :roll:

Quote:
Quote:
un semplice text-editor, per intenderci gEdit andrebbe + che bene, che permetta però di aprire e salvare file da/a ftp.

Emacs naturalmente lo fa...


Mi sembra che anche vim possa farlo senza problemi ;-)
_________________
Ciao da me!
Back to top
View user's profile Send private message
stefanonafets
l33t
l33t


Joined: 10 Feb 2003
Posts: 644

PostPosted: Wed Jul 27, 2005 1:14 am    Post subject: Reply with quote

Mi sono preso un poco di tempo per rispondere, volevo prima provare i suggerimenti... :D
Alura, putty ti fa salvare gli host, ma non user e password...
vim non permette di aprire file non locali (anche se ho installato gVim e lo trovo beeeelloooooo...)
Per le sessioni ho risolto facendo uno scrippettino in bash (che richiama expect, purtroppo a quanto ho capito invocando expect con #!/usr/bin/expect nn si possono passare variabili da cli).
Per i file da modificare over-ftp (nn ho voglia di buttarmi nel mondo di emacs, nn mi sento ancora pronto :D ) nn so, ma per ora è l'ultimo dei problemi...
Vi passo lo script, magari puo servire a qualcuno...


Code:

#!/bin/bash

if [ $# -ne 3 ]; then
        echo "Usage: telwrap hostname user password"
        echo "Wrong invocation... exit"
        exit 1
fi

host="$1"
user="$2"
pass="$3"
command="telnet"

expect -c "set HOST $host; set COMMAND \"$command\"; set USER $user; set PASS $pass; spawn \$COMMAND \$HOST; expect \"login: \"; send \"$user\\r\"; expect \"Password: \"; send \"\$PASS\\r\"; interact"

_________________
registered Linux user number #411324
sed 's/ke/che/g'

<The Deployment Slave is initializing>
Back to top
View user's profile Send private message
randomaze
Bodhisattva
Bodhisattva


Joined: 21 Oct 2003
Posts: 9985

PostPosted: Wed Jul 27, 2005 6:59 am    Post subject: Reply with quote

stefanonafets wrote:
vim non permette di aprire file non locali (anche se ho installato gVim e lo trovo beeeelloooooo...)


Uh? Hai provato :e ftp://ftp.tuosito.xxx/path/to/file.txt :?:


EDIT: La funzionalità di edit da remoto dovrebbe essere inclusa nei plugin standard. Se non ti accontenti dell'ftp puoi sempre installare questo plugin che estende il tutto (e dovrebbe essere incluso nel vim 7)
_________________
Ciao da me!
Back to top
View user's profile Send private message
tuxer
Guru
Guru


Joined: 10 May 2004
Posts: 328

PostPosted: Wed Jul 27, 2005 2:59 pm    Post subject: Reply with quote

Beh io ti consiglio comunque di provare emacs con qualche tutorial, non è niente di trascendentale (imho più intuitivo di vim e auto documentante), al massimo se non ti trovi lo togli.

Code:
emerge emacs-cvs app-emacs/tramp
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