<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="https://dev1galaxy.org/extern.php?action=feed&amp;tid=7955&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Dev1 Galaxy Forum / Setting up automatic updates (or something close to it).]]></title>
		<link>https://dev1galaxy.org/viewtopic.php?id=7955</link>
		<description><![CDATA[The most recent posts in Setting up automatic updates (or something close to it)..]]></description>
		<lastBuildDate>Fri, 08 May 2026 14:57:13 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: Setting up automatic updates (or something close to it).]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=63676#p63676</link>
			<description><![CDATA[<p>I use a simple script that runs via cron. It requires absolutely no maintenance, which is why I installed it on my wife&#039;s laptop <img src="https://dev1galaxy.org/img/smilies/wink.png" width="15" height="15" alt="wink" /><br />Here is the content of the script:</p><div class="codebox"><pre class="vscroll"><code>#!/bin/bash
#if not root, run as root
if (( $EUID != 0 )); then
    sudo $0
    exit
fi
echo
echo &quot;&gt;&gt; Looking for updates.&quot;
apt update --fix-missing
echo

echo &quot;&gt;&gt; List of upgradable packages&quot;
apt list --upgradable
echo

echo &quot;&gt;&gt; Upgrading...&quot;
apt -y full-upgrade --fix-missing --fix-broken
echo

echo &quot;&gt;&gt; Making cleanup...&quot;
apt -y autoremove
apt clean
apt autoclean
apt purge -y $(dpkg -l | awk &#039;/^rc/ { print $2 }&#039;)
echo

# echo &quot;&gt;&gt; Flatpak updates...&quot;
flatpak update
echo

echo &quot;&gt;&gt; Done.&quot;
echo</code></pre></div><p>If you&#039;re interested in a more advanced tool, check out <em>topgrade</em>:<br /><a href="https://github.com/topgrade-rs/topgrade" rel="nofollow">https://github.com/topgrade-rs/topgrade</a></p>]]></description>
			<author><![CDATA[dummy@example.com (PedigreeCat)]]></author>
			<pubDate>Fri, 08 May 2026 14:57:13 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=63676#p63676</guid>
		</item>
		<item>
			<title><![CDATA[Re: Setting up automatic updates (or something close to it).]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=63665#p63665</link>
			<description><![CDATA[<p>It should work with whatever is in your apt sources and do the same as using apt or apt-get to update and upgrade.</p>]]></description>
			<author><![CDATA[dummy@example.com (fsmithred)]]></author>
			<pubDate>Thu, 07 May 2026 23:59:04 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=63665#p63665</guid>
		</item>
		<item>
			<title><![CDATA[Re: Setting up automatic updates (or something close to it).]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=63664#p63664</link>
			<description><![CDATA[<p>I&#039;ll give it a try, thanks. I assume this would take care of only the packages shown on Synaptic, and any new versions of Devuan, correct?</p>]]></description>
			<author><![CDATA[dummy@example.com (BonerNimrod)]]></author>
			<pubDate>Thu, 07 May 2026 23:36:29 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=63664#p63664</guid>
		</item>
		<item>
			<title><![CDATA[Re: Setting up automatic updates (or something close to it).]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=63655#p63655</link>
			<description><![CDATA[<p>This was put together by a few of us in the devuan community a few years ago. It still works - I&#039;m using it in excalibur. It checks for updates and gives you a notification in the panel.<br /><a href="https://get.refracta.org/files/packages/basic-update-notifier_2.11~fsr_all.deb" rel="nofollow">https://get.refracta.org/files/packages … sr_all.deb</a></p><p>See /etc/default/update-notifier for settings.</p><p>And now, looking at that file myself, I&#039;m reminded that it can do more than just notify you. Here&#039;s an excerpt.</p><div class="codebox"><pre><code># Set the default action for clicking on the notification icon.
# Valid choices:
# &quot;none&quot; or commented to only see a list of available upgrades.
# &quot;terminal&quot; to run the upgrade in a terminal
# &quot;gui&quot; to run the upgrade in synaptic package manager.

FRONTEND=&quot;none&quot;</code></pre></div><p>Edit: Source is here: <a href="https://git.devuan.org/fsmithred/basic-update-notifier" rel="nofollow">https://git.devuan.org/fsmithred/basic-update-notifier</a></p>]]></description>
			<author><![CDATA[dummy@example.com (fsmithred)]]></author>
			<pubDate>Thu, 07 May 2026 15:47:11 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=63655#p63655</guid>
		</item>
		<item>
			<title><![CDATA[Setting up automatic updates (or something close to it).]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=63650#p63650</link>
			<description><![CDATA[<p>I had recently installed Devuan for the first time on a used laptop, and essentially put, I would like to set up a way to automatically update the system and any installed packages. I&#039;m mostly coming off from Mint, did dabble in Debian last year, but I&#039;m mostly used to how the former handled updates through it&#039;s manager, and perhaps prefer it. So far, I have both Gnome-package-manager and unattended-upgrades installed. From what I remember, I think used package manager the most on Debian. I only discovered unattended-upgrades late into my foray, but I don&#039;t believe I had it set up to know if it did work for me. Also, I learned it mostly does security updates. What would be the best way to set up, at least, a manager that would notify me from time to time, and let me review what updates I would need to install on my machine? I would like to have something similar to Mint&#039;s manager, but I can try and learn about other alternatives. I&#039;m not afraid of the terminal, but it is a bit inconvenient to type the commands and remember to do it every now and then. I appreciate any replies, I&#039;m new here.</p>]]></description>
			<author><![CDATA[dummy@example.com (BonerNimrod)]]></author>
			<pubDate>Thu, 07 May 2026 01:49:58 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=63650#p63650</guid>
		</item>
	</channel>
</rss>
