Simple update reminder for antiX Linux

Simple reminder for checking updates. The script can link to the $HOME/.desktop-session/startup file. An example: echo ”./simple-update-reminder” >> $HOME/.desktop-session/startup Correct path to startup file if the script is not $HOME directory. For example if in directory $HOME/.config echo ”cd $HOME/.config && ./simple-update-reminder” >> $HOME/.desktop-session/startup simple-update-reminder.zip Code: #!/bin/bash # RJP 8.3.2025 simple update reminder for antiX Continue reading →

Update Notifier systemd

If you are using IceWM Desktop, you need to add $HOME/.icewm/startup file: cd /opt/UPDATE && ./PHASE2 & CAUTION! DO NOT INSTALL this non-systemd distro because it installs systemd !!! This is an experimental package, so bugs are possible !!! Update-Notifier-systemd-experimental.zip Works fine with IceWM desktop in Linux Mint 21 also

Simple update script for Rocky Linux

Packages zenity and xterm must be installed. The script: #!/bin/sh zenity –question –text ”Would you like to check and install updates?” if [ $? = 0 ]; then xterm -e ’sudo yum update && sleep 5’ && zenity –info –text ”System Upgraded” else exit 0 fi

Fix faulty mate desktop update 22.2.2024 in PCLinuxOS

Same issue has met many people. https://www.pclinuxos.com/forum/index.php/topic,161124.0.html The reason is missing packages gsettings-desktop-schemas and dconf-editor The fix: Open Terminal and run su apt-get install gsettings-desktop-schemas dconf-editor You can check update history using a command rpm -qa –last | less … or you can check history using the next script #!/bin/bash ## ## ### RJP 24.2.2024 Continue reading →