ubuntu 12.04 não pode entrar

1

Estou usando o Ubuntu 12.04. Eu não consigo entrar. Eu chego ao menu grub e faço root, excluo meu arquivo /home/user/.Xauthority e altero minha senha. Eu movo /home/user/.profile para /home/user/profile , reinicializo e consigo fazer o login (isso é corrigido movendo-se o .profile para algum outro nome).

Mas se eu estiver ocioso e o Ubuntu exibir o protetor de tela, não consigo fazer o login. Eu pressionei Ctrl + Alt + F1 e removi /home/user/.Xauthority . Verifico a existência de /home/user/.profile e não existe. Não há como fazer login no X do teclado conectado à caixa. Eu posso ssh -CXY para a caixa Ubuntu e login sem nenhum problema. Alguém pode me ajudar a corrigir esse problema?

    
por Kikky Bikky 22.05.2012 / 11:12

1 resposta

0

que tal criar seu novo /home/user/.profile:

# ~/.profile: executed by the command interpreter for login shells.
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
# exists.
# see /usr/share/doc/bash/examples/startup-files for examples.
# the files are located in the bash-doc package.

# the default umask is set in /etc/profile; for setting the umask
# for ssh logins, install and configure the libpam-umask package.
#umask 022

# if running bash
if [ -n "$BASH_VERSION" ]; then
    # include .bashrc if it exists
    if [ -f "$HOME/.bashrc" ]; then
    . "$HOME/.bashrc"
    fi
fi

# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
    PATH="$HOME/bin:$PATH"
fi

copie, cole, salve ..

    
por itagomo 03.08.2012 / 17:03