Salvando links de shell SSH no ativador como putty

11

Quero dizer, como eu posso marcar um comando ssh root @ ip no launcher, então quando clico no ícone e um shell me avisa pedindo credenciais para a conexão com o shell do servidor? / p>     

por Stefano 02.02.2012 / 17:11

1 resposta

15

Acesse a lista dos seus servidores SSH favoritos rapidamente.

  1. Crie um novo arquivo com o gedit, no tipo Terminal :

    gedit ~/.local/share/applications/ssh-launcher.desktop
    
  2. Copiar & amp; Cole este texto no arquivo acima:

    [Desktop Entry]
    Version=1.0
    Name=Remote Servers
    Comment=Login to my servers
    Exec=gnome-terminal --disable-factory --sm-client-disable --class=remoteserver -x ssh -t minibox.local 
    Terminal=false
    X-MultipleArgs=false
    Type=Application
    Icon=utilities-terminal
    StartupNotify=true
    StartupWMClass=RemoteServers
    X-Ayatana-Desktop-Shortcuts=Server1;
    
    [Server1 Shortcut Group]
    Name=SSH into minibox.local
    Exec=gnome-terminal --disable-factory --sm-client-disable  --class=remoteserver -x ssh -t minibox.local
    TargetEnvironment=Unity
    
    Comment=You can create more of these. Just add to X-Ayatana-Desktop-Shortcuts a "Server2", "Server3" etc, then change the domain name (in this case, "minibox.local") to the name of your server. You'll also notice that the default action (When you just click the icon in the launcher) is to SSH into minibox.local - you'll need to change that to your most used server.
    
  3. Arraste e solte no iniciador navegando até ~ / .local / share / applications / in Nautilus.

Fonte 1 , Source 2

(De uma resposta por Jorge Castro , Nik e Cas )

    
por isaaclw 02.02.2012 / 17:17