Se eu não fizer login imediatamente no meu sistema 14.04 LTS, o login será interrompido

2

Meu novo sistema de inicialização dupla está funcionando muito bem com esse cenário de aborrecimento:

  1. inicializo o sistema, mas não toque em nada.
  2. A tela fica escura.
  3. Eu toco uma tecla e obtenho a tela de login.
  4. insiro minha senha e clico em entrar.
  5. A tela de login desaparece, mas nunca recebo a área de trabalho. Apenas trava.

Eu posso fazer o ssh e reinicializar o sistema. Se eu fizer o login imediatamente, tudo bem.

Eu me contentaria com uma resposta dizendo-me como fazer com que a economia de energia nunca entrasse e fizesse a tela de login escurecer. Ou uma correção para a causa raiz.

Mais informações: É o Ubuntu 14.04, então presumo que seja o Unity. Os gráficos são "Gálio 0,4 no AMD CEDAR" de acordo com as configurações / detalhes do sistema.

Os registros serão publicados na próxima vez que isso acontecer.

*** Atualização - isso não aconteceu desde que eu postei a recompensa.

    
por Organic Marble 08.03.2015 / 15:28

1 resposta

0

Eu também estava no mesmo barco quando tinha 14.04 Agora estou no Velvet!

Aqui está o script de solução que eu trabalhei para mim:

#!/bin/bash
echo
echo Install BleachBit
echo
apt-get install bleachbit -y
echo
echo Clean
echo
apt-get autoclean
apt-get clean
echo
echo Update & Upgrade
echo
apt-get update
apt-get upgrade
apt-get dist-upgrade
echo
echo
echo BleachBit Cleaning
echo
bleachbit -c adobe_reader.*
bleachbit -c apt.*
bleachbit -c chromium.*
bleachbit -c deepscan.*
bleachbit -c epiphany.*
bleachbit -c evolution.*
bleachbit -c filezilla.*
bleachbit -c firefox.*
bleachbit -c google_chrome.*
bleachbit -c kde.*
bleachbit -c java.*
bleachbit -c system.cache
bleachbit -c system.clipboard
bleachbit -c system.custom
bleachbit -c system.desktop_entry
bleachbit -c system.localizations
bleachbit -c system.memory
bleachbit -c system.recent_documents
bleachbit -c system.rotated_logs
bleachbit -c system.tmp
bleachbit -c system.trash
bleachbit -c opera.*
bleachbit -c thumbnails.*
bleachbit -c transmission.*
bleachbit -c x11.*
bleachbit -c vlc.*
bleachbit -c wine.*
echo 
echo Clean Up
echo
apt-get clean
apt-get autoclean
echo
echo BleachBit ReBleach System
echo
bleachbit -c system.cache
bleachbit -c system.clipboard
bleachbit -c system.custom
bleachbit -c system.desktop_entry
bleachbit -c system.localizations
bleachbit -c system.memory
bleachbit -c system.recent_documents
bleachbit -c system.rotated_logs
bleachbit -c system.tmp
bleachbit -c system.trash
echo
echo Processes Complete
echo
    
por DeOxyRibose Acid 19.03.2015 / 07:32