Parfois, lorsque je me connecte à mon PC, certains ou tous mes panneaux Gnome n'apparaissent pas, donc je me retrouve avec un écran vide et aucun moyen de se déconnecter/arrêter ou d'exécuter des programmes. Pourquoi les panneaux ne sont-ils pas apparus? Comment puis-je les récupérer? Je peux parfois créer un nouveau panneau et y ajouter un nouveau lanceur pour redémarrer, mais c'est un peu une solution de longue haleine. J'utilise la version 10.04 LTS.
gnome-terminal
Dans le terminal, saisissez
gconftool-2 — – shutdown
(pas d'espace entre les tirets et pas d'espace entre le tiret et le mot "shutdown")
rm -rf ~/.gconf/apps/panel
pkill gnome-panel
Eh bien, j'avais un script pour réinitialiser le panneau gnome. Je ne sais pas si ce script fonctionnera sur la version portable, je l'ai utilisé en version bureau et c'est très utile.
enregistrez ce script dans PanelRestore.sh sur le bureau par exemple et chmod +x PanelRestore.sh
puis exécutez-le par le terminal ./PanelRestore.sh
, une nouvelle fenêtre apparaîtra, cliquez simplement sur restaurer les paramètres par défaut et vous seriez prêt à partir
#!/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
essayez d'exécuter cette commande
panneau gnome
Vérifiez si vos panneaux sont restaurés.
Vous pouvez redémarrer les panneaux en tapant
killall gnome-panel