Painéis do Gnome não visíveis

1

Às vezes, quando faço login no meu PC, alguns ou todos os meus painéis do Gnome não aparecem, então fico com uma tela em branco e não consigo sair / desligar ou executar nenhum programa. Por que os painéis não apareceram? Como posso recuperá-los? Às vezes, posso criar um novo painel e adicionar um novo lançador a ele para reinicializar, mas é uma solução demorada. Estou usando a versão 10.04 LTS.

    
por Skizz 04.04.2011 / 17:38

4 respostas

1

Bem, Eu tinha script para redefinir o painel do gnome. Não tenho certeza se esse script funcionará na versão para notebook, usei-o na versão desktop e é muito útil.

salve esse script em PanelRestore.sh na área de trabalho, por exemplo, e em chmod +x PanelRestore.sh e, em seguida, execute-o pelo terminal ./PanelRestore.sh , uma nova janela será exibida, clique em restaurar configuração padrão e você será útil

#!/bin/sh
#
# GNOME Panel Save / Restore
# Writen by PhrankDaChicken
#
# http://ubuntu.online02.com
#
#
# Updated to add restore defaults by jimjimovich
# http://www.starryhope.com
#
#


DIR=$(pwd)
TITLE="PanelRestore"

Main () {
    CHOICE=$(zenity --list --title "$TITLE" --hide-column 1 --text "What do you want to do?" --column "" --column "" \
"0" "Save Panel Settings" \
"1" "Restore Panel Settings" \
"2" "Restore Default Panel Settings")
    if [ $CHOICE = 0 ]; then
        Panel_Save
    fi
    if [ $CHOICE = 1 ]; then
        Panel_Restore
    fi
    if [ $CHOICE = 2 ]; then
        Panel_Defaults
    fi  
}

Panel_Restore () {
    FILE=$(zenity --title "$TITLE: Open File" --file-selection --file-filter "*.xml" )
    if [ -n "$FILE" ]; then 
        gconftool-2 --load "$FILE"
        killall gnome-panel
    fi
    Main
}

Panel_Save () {
    FILE=$(zenity --title "$TITLE: Save File" --file-selection --save --confirm-overwrite --filename "Gnome_Panel.xml" --file-filter "*.xml" )
    if [ -n "$FILE" ]; then 
        EXT=$(echo "$FILE" | grep "xml")
        if [ "$EXT" = "" ]; then
            FILE="$FILE.xml"
        fi
        gconftool-2 --dump /apps/panel > $FILE
        zenity --info --title "$TITLE: File Saved" --text "File saved as: \n $FILE"
    fi
    Main
}

Panel_Defaults () {
    zenity --question --text="Are you sure you want to restore the default top and bottom panels?"
    gconftool-2 --recursive-unset /apps/panel
    rm -rf ~/.gconf/apps/panel
    pkill gnome-panel
    exit
}

Main

# END OF Script
    
por tawfekov 06.01.2011 / 18:41
1

tente executar este comando

  
    

gnome-panel

  

Verifique se seus painéis foram restaurados.

    
por Abhijeet 06.01.2011 / 18:50
1
  1. Pressione ALT + F2 e, na caixa de diálogo Executar, digite gnome-terminal

No terminal, digite

gconftool-2 — – shutdown (sem espaço entre os traços e sem espaço entre o traço e a palavra "encerramento")

  1. rm -rf ~/.gconf/apps/panel

  2. pkill gnome-panel

por Steven 10.06.2011 / 06:46
0

Você pode reiniciar os painéis digitando

killall gnome-panel
    
por tom502 04.04.2011 / 17:52