#1 Le 04/01/2015, à 12:43
- Am7#9
[ résolu ] uck Unable to find any console application ubuntu mate
Salut la communauté, bonne année.
Si ca peut aider quelqu' un:
J' utilise ubuntu mate 14.04 et j' ai installé UCK (ubuntu customization kit)
Tout se déroule bien jusqu'au chroot j' ai ce message:
Unable to find any console application
Alors j' ai édité ce fichier :
sudo nano /usr/lib/uck/customization-profiles/localized_cd/customize
Et j' ai modifié cette fonction en rajoutant une condition pour notre terminal mate.
function run_console()
{
echo "Starting console application..."
CONSOLE_APP=`which konsole`
CONSOLE_APP_OPTIONS=(--caption "UCK customization console" -e /bin/bash)
if [ "$CONSOLE_APP" = "" ]; then
CONSOLE_APP=`which gnome-terminal`
CONSOLE_APP_OPTIONS=(-t "UCK customization console" -e /bin/bash)
fi
if [ "$CONSOLE_APP" = "" ]; then
CONSOLE_APP=`which xfce4-terminal`
CONSOLE_APP_OPTIONS=(-T "UCK customization console" -e /bin/bash)
fi
if [ "$CONSOLE_APP" = "" ]; then
CONSOLE_APP=`which lxterminal`
CONSOLE_APP_OPTIONS=(-t "UCK customization console" -e /bin/bash)
fi
if [ "$CONSOLE_APP" = "" ]; then
CONSOLE_APP=`which mate-terminal`
CONSOLE_APP_OPTIONS=(-t "UCK customization console" -e /bin/bash)
fi
if [ "$CONSOLE_APP" = "" ]; then
CONSOLE_APP=`which xterm`
CONSOLE_APP_OPTIONS=(-title "UCK customization console" -e /bin/bash)
fi
if [ "$CONSOLE_APP" = "" ]; then
dialog_msgbox "Failure" "Unable to find any console application"
else
eval `dbus-launch --sh-syntax --exit-with-session 2>/dev/null`
$CONSOLE_APP "${CONSOLE_APP_OPTIONS[@]}"
RESULT=$?
fi
}
Et ça fonctionne. Amusez vous bien!
debian bullseye sur disque externe, disque dur mort :-(
Hors ligne