o que fazer com o .ssh-agent aparecer na tela de login? [fechadas]

2

Eu estava configurando o git com uma chave secreta ssh no Ubuntu 12.04 através do terminal com a ajuda de Help.GitHub : "Você pode executar o ssh-agent automaticamente quando abrir o bash adicionando o seguinte ao seu arquivo ~ / .profile ou ~ / .bashrc" Eu adicionei o arquivo ~ / .bashrc:

SSH_ENV="$HOME/.ssh/environment"

# start the ssh-agent
function start_agent {
    echo "Initializing new SSH agent..."
    # spawn ssh-agent
    ssh-agent | sed 's/^echo/#echo/' > "$SSH_ENV"
    echo succeeded
    chmod 600 "$SSH_ENV"
    . "$SSH_ENV" > /dev/null
    ssh-add
}

# test for identities
function test_identities {
    # test whether standard identities have been added to the agent already
    ssh-add -l | grep "The agent has no identities" > /dev/null
    if [ $? -eq 0 ]; then
        ssh-add
        # $SSH_AUTH_SOCK broken so we start a new proper agent
        if [ $? -eq 2 ];then
            start_agent
        fi
    fi
}

# check for running ssh-agent with proper $SSH_AGENT_PID
if [ -n "$SSH_AGENT_PID" ]; then
    ps -ef | grep "$SSH_AGENT_PID" | grep ssh-agent > /dev/null
    if [ $? -eq 0 ]; then
    test_identities
    fi
# if $SSH_AGENT_PID is not properly set, we might be able to load one from
# $SSH_ENV
else
    if [ -f "$SSH_ENV" ]; then
    . "$SSH_ENV" > /dev/null
    fi
    ps -ef | grep "$SSH_AGENT_PID" | grep -v grep | grep ssh-agent > /dev/null
    if [ $? -eq 0 ]; then
        test_identities
    else
        start_agent
    fi
fi

Um pouco depois, reiniciei meu computador. Agora, sempre que eu tento fazer logon (ou seja, digite minha senha e pressione Enter na tela de login) como o único usuário (em oposição a convidado) a tela fica preta e aparece um pop-up pedindo-me meu /.ssh/rsa_id passphrase .

Quando eu insiro a senha digitada para o GitHub, o Ubuntu me lança de volta para a tela de login, o quadrado um. A única maneira de saber como fazer login é como convidado.

O que aconteceu e o que posso fazer para corrigir isso?

    
por gogolgadgets 03.05.2012 / 00:38

0 respostas