Il y a donc une situation où j'ai installé un (x) Ubuntu 14.04 sur le PC d'un ami. Les mises à jour automatiques sont définies comme "mises à jour de téléchargement et d'installation automatique".
Le problème est qu'après quelques mois d'utilisation, il arrive à éteindre son PC avant la fin de la mise à jour des paquets. Cela conduit à des dépendances/packages cassés (vous ne vous souvenez plus du message), ce qui empêche le noyau, les applications et les mises à jour du navigateur de fonctionner. Pour résoudre ce problème, vous devez exécuter la commande de terminal Sudo dpkg –configure -a
C'est bon pour moi mais pour son cas, c'est la théorie de la relativité d'Einstein
Est-il possible de faire en sorte qu'Ubuntu attende la fin des mises à jour avant l'arrêt ou le redémarrage de l'ordinateur, comme le fait Windows, pour s'assurer qu'il n'y aura jamais de paquets cassés et que son ordinateur restera automatiquement mis à jour?
Molly-Guard est un programme conçu pour cela. cela nécessite une petite quantité de configuration, et vous avez /usr/sbin
avant /sbin
dans votre $PATH
.
Sinon, selon this , les détails exacts dépendent fortement de la mise en œuvre de la GUI/DE. Puisque nous savons que votre ami utilise Xubuntu, cela le réduit, mais sans recompiler Xfce avec ce support intégré (ce qui créerait d'autres problèmes), cela semble très difficile.
Selon mes nombreuses recherches, vous pouvez théoriquement simplement remplacer /sbin/shutdown
par un script qui vérifie si un travail apt est actif et exécute Sudo shutdown -c
ou Sudo init 2
pour annuler un arrêt en cours et wait
pour le quitter, mais je ne suis pas sûr de la robustesse de ce dernier.
Selon this , vous pourriez rendre la tâche difficile pour l'utilisateur d'arrêter, au lieu de suspendre un scénario.
Enfin, comme indiqué ici , vous pouvez installer unattended-upgrades
sur le système que vous utilisez maintenant pour les mises à jour automatiques, et assurez-vous qu'il se ferme avant la fermeture détaillé dans cette réponse .
Il existe de nombreuses options, qui varient toutes selon le niveau de fiabilité, mais je pense que la meilleure solution résout ce que I pense, pour certains extension, un problème sous-jacent X/Y en jeu ici est le suivant:
crontab
pour que son ordinateur exécute dpkg --configure -a
à chaque démarrage.@ LovesTha: Pour ce faire, je recommande unattended-upgrades
, ou peut-être Molly-Guard.
Le script ci-dessous utilise l'interrogation commandée par une interruption pour des messages spécifiques de dbus. Chaque fois qu'il voit une demande d'arrêt/de redémarrage, il vérifie si un gestionnaire de packages tel que dpkg
ou apt
est en cours d'exécution. S'ils sont en cours d'exécution, la demande d'arrêt sera annulée.
Puisque vous avez mentionné que votre ami ne veut pas toucher la ligne de commande, vous devrez soit ssh sur sa machine, soit venir l’installer manuellement.
mkdir $HOME/bin
preventShutdown.sh
chmod +x $HOME/bin/preventShutdown.sh
pour le faire.desktop
dans $HOME/.config/autostart
.Sudo apt-get install git
cd /opt
Sudo git clone https://github.com/SergKolo/sergrep.git
Sudo chmod +x /opt/sergrep/*
Ajoutez le script en tant qu'application de démarrage.
#! /bin/bash
##########################
# AUTHOR: Serg Kolo
# Date: Saturday, December 26th, 2015
# Description: Script to notify user and prevent
# shutdown or reboot
# if any update or package manager
# are running.
# TESTED ON: 14.04.3 LTS, Trusty Tahr
# WRITTEN FOR: http://askubuntu.com/q/702156/295286
# VERSION: 2, removed xdotool, using dbus method
# changed to C-style of organizing code
#########################
# Copyright (c) 2015 Serg Kolo
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the rights to use,
# copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
# the Software, and to permit persons to whom the Software is furnished to do so,
# subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
# INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
# PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
# Uncomment the line bellow if needed for debugging
# set -x
###########################
# VARIABLES
###########################
DISPLAY=:0 # has to be set since we are using notify-send
###########################
# MAIN
###########################
#
# Basic idea : This runs dbus-monitor which waits for
# "RebootRequested" memberf from com.canonical.Unity.Session ,
# which apprears only when the user clicks the shutdown option
# from the Unity's top right drop down box. Why RebootRequested ?
# Because this message is guaranteed to pop up once user presses
# the shutdown button.
# The while loop with read command does the big job.
# dbus-monitor sends initial message , so we want to filter only
# The output that contains the string we need, hence the case...esac
# structure employed here. Once we get the proper message.
# we check whether update-manager or package managers are running
# If there is one instance, then call CancelAction method
# and send notification to the user.
# Both dbus-monitor and while loop run continuously. This
# can be launcher as script in `/etc/rc.local` or `/etc/rc2.d`
# or preferably (!) in `/etc/xdg/autostart/` .
# Here is sample /etc/xdg/autostart/preventShutdown.desktop file
#
# [Desktop Entry]
# Type=Application
# Name=Prevent-Update
# Exec=/home/$USER/bin/preventShutdown.sh
# OnlyShowIn=GNOME;Unity;
# Terminal=false
#
# Remember to make this file as well as script be root-owned with
# chmod +x /path/to/Script.
# It is preferred to store the script in user's personal $HOME/bin
# folder.
# Make sure to edit $HOME/.profile file to include that into $PATH
# variable
interupt()
{
qdbus com.canonical.Unity /com/canonical/Unity/Session com.canonical.Unity.Session.CancelAction
notify-send "<<< UPDATE IN PROGRESS; DO NOT SHUT DOWN>>>"
wall <<< "<<< UPDATE IN PROGRESS; DO NOT SHUT DOWN>>>"
}
main()
{
dbus-monitor --profile "interface='com.canonical.Unity.Session',type=signal" |
while read -r line;
do
case "$line" in
*RebootRequested*)
pgrep update-manager || pgrep apt-get || pgrep dpkg
if [ $? -eq 0 ]; then
interupt
fi
;;
esac
done
}
main
Pour citer Einstein:
Only two things are infinite, the universe and human stupidity,
and I'm not sure about the former.
il n'y a donc pas de garantie à 100% contre la stupidité humaine, mais vous pouvez empêcher les non-Einstein de casser des choses en:
Expliquez que les ordinateurs ne sont ni des marteaux, ni des clous, mais des équipements fragiles et intelligents nécessitant deux types de nourriture: de l'électricité et des mises à jour.
Alternativement:
• utiliser Remmina pour que tout fonctionne bien