Ricarica la schermata di login di Ubuntu


2

Sto cercando di accedere al mio desktop Ubuntu dopo aver aggiornato un sacco di pacchetti e riavviarlo. So che sto autenticando con successo, ma quello che sembra accadere è che dopo aver inserito il mio nome utente e password, lo schermo passa temporaneamente a tutto nero, e quindi la pagina di accesso viene caricata di nuovo.

Non sono sicuro su dove cercare eventuali errori correlati a questo. Tutti i suggerimenti sarebbero apprezzati.


AGGIORNARE: Se scelgo failsafe GNOME dalla lista delle sessioni, posso accedere bene. Qualche idea?


AGGIORNAMENTO 2: Ecco l'output di ~/.xsession-errors:

/etc/gdm/Xsession: Beginning session setup...
/etc/profile.d/p4c.sh: 8: Syntax error: "(" unexpected

p4c.sh è uno script che ho copiato dal mio precedente sistema Ubuntu - dove ha funzionato bene. Ecco i contenuti di p4c.sh:

#!/bin/bash

# p4c() function setup params
p4_HOST=`hostname | awk -F . '{print $1}'`

# function for setting the P4CLIENT variable based on the first non-option
# argument provided
function p4client() {
    HELP_MODE=''
    VERBOSE_MODE=''
    DESC_MODE=''
    SHORT_MODE=''
    while getopts ":hdsv" option
    do
        case $option in
            h) echo "p4c provides information about perforce clients."
               echo "Recognized arguments:"
               echo "    -h     help (this message)"
               echo "    -d     descriptions (prints client descriptions - useful, but slightly slower)"
               echo "    -v     verbose (print unreasonable amounts of debugging info"
               echo
               # About to exit - reset OPTIND or we'll be in trouble later.
               OPTIND=1
               # Abort
               return
               ;;
            v) VERBOSE_MODE='verbose';;
            d) DESC_MODE='descriptions';;
            s) SHORT_MODE='short';;
            *) echo "Unknown option '$OPTARG'!  Specify -h for help..."
               # About to exit - reset OPTIND or we'll be in trouble later.
               OPTIND=1
               # Abort
               return
               ;;
        esac
    done

    # Set argument pointer to first non-option argument
    shift $(($OPTIND - 1))

    # Done with OPTIND - better reset it before something bad happens...
    OPTIND=1

    PROJECT=$1;
    if [ $VERBOSE_MODE ]
    then
        echo "PROJECT: $PROJECT"
    fi

    # Need to check/set p4_USER every time to allow changes between invocations
    if [ -z "$p4c_USER" ]
    then
        p4_USER=`echo $P4USER`
        if [ -z "$p4_USER" ]
        then
            p4_USER=`id -nu`
        fi
    else
        p4_USER=$p4c_USER
    fi
    if [ $VERBOSE_MODE ]
    then
        echo "p4_USER: $p4_USER"
    fi


    if [ -n "$PROJECT" ]
    then
        # provided a non empty string project name
        p4_CLIENT=$p4_HOST-$p4_USER-$PROJECT
        if [ $VERBOSE_MODE ]
        then
            echo "p4_CLIENT: $p4_CLIENT"
        fi

        # check client to see if it exists
        p4_GREP_RESULT=`p4 clients | grep "$p4_CLIENT"`
        if [ -z "$p4_GREP_RESULT" ]
        then
            echo "NOTE: P4 client \"$p4_CLIENT\" does not exist on server."
            echo "Setting P4CLIENT anyway so that client \"$p4_CLIENT\" can be created."
            echo
        fi

        export P4CLIENT=$p4_CLIENT;
    else
        # check for client matches
        p4_GREP_RESULT=`p4 clients | egrep "($p4_HOST-$p4_USER-|$p4_USER-$p4_HOST-)" | awk '{print $2;}'`
        echo "Known workspaces for user $p4_USER, host $p4_HOST:"
        if [ -z

Puoi provare a premere Ctrl + Alt + F1 per passare a un terminale, quindi effettuare il login ed eseguire dmesg. Se questo non mostra alcun messaggio di log interessante, potresti tentare la fortuna con alcuni file / var / log ...
marcusw

@marcusw: grazie, ho trovato alcune voci di registro interessanti. vedi la mia modifica. qualche idea?
AJ.

Risposte:


1

Dovresti rimuovere il function parola chiave o le parentesi () su quella linea. Questo è implementato un po 'incoerente tra diversi bash versioni --- probabilmente il tuo aggiornamento ha introdotto alcune versioni incompatibili di bash.

Per me

nameofsomefunction() {
   ...
}

funziona la maggior parte del tempo.

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.