<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>Tools &amp;mdash; Paul Sutton</title>
    <link>https://personaljournal.ca/paulsutton/tag:Tools</link>
    <description>Personal Blog</description>
    <pubDate>Tue, 05 May 2026 13:04:05 +0000</pubDate>
    <item>
      <title>Viewing processes</title>
      <link>https://personaljournal.ca/paulsutton/viewing-processes</link>
      <description>&lt;![CDATA[Viewing processes&#xA;&#xA;You can view a table that shows currently running processes and information about them.&#xA;&#xA;There are several tools for this:-  Both of these update in real time so you can see what is going on&#xA;&#xA;One is top &#xA;man top&#xA;top&#xA;&#xA;top&#xA;&#xA;The other is htop, which is the same as top, but has a colour output.&#xA;&#xA;man htop&#xA;htop&#xA;&#xA;htop&#xA;&#xA;These are really useful tools,  there is also ps&#xA;&#xA;man ps&#xA;$ ps&#xA;    PID TTY          TIME CMD&#xA;  51221 pts/0    00:00:00 bash&#xA;  51239 pts/0    00:00:00 ps&#xA;ps -a&#xA;    PID TTY          TIME CMD&#xA;  51251 pts/0    00:00:00 ps&#xA;ps -u&#xA;USER         PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND&#xA;psutton    51221  0.0  0.0  11284  5504 pts/0    Ss   22:51   0:00 bash&#xA;psutton    51256  0.0  0.0  13760  4608 pts/0    R+   22:53   0:00 ps -u&#xA;ps -x&#xA;&#xA;PID TTY      STAT   TIME COMMAND&#xA;   2016 ?        Ss     0:00 /usr/lib/systemd/systemd --user&#xA;   2017 ?        S      0:00 (sd-pam)&#xA;   2029 ?        S&lt;sl   0:13 /usr/bin/pipewire&#xA;   2030 ?        Ssl    0:00 /usr/bin/pipewire -c filter-chain.conf&#xA;   2031 ?        S&lt;sl   0:00 /usr/bin/wireplumber&#xA;   2033 ?        S&lt;sl   0:21 /usr/bin/pipewire-pulse&#xA;Note : Above is NOT full output,  &#xA;&#xA;If you are ever unsure as to what a process is, you can try seeing if there is a man page.&#xA;NAME&#xA;       pipewire - The PipeWire media server&#xA;If not,  you can look it up using a search tool such as duckduckgo, which from this I found info on wireplumber on the Arch Linux wiki.&#xA;&#xA;Links&#xA;&#xA;Linux performance tools&#xA;&#xA;Tags&#xA;&#xA;#Bash,#Tools,#Processes,#htop,#top&#xA;&#xA;hr&#xD;&#xA;&#xD;&#xA;table&#xD;&#xA;thead&#xD;&#xA;trtda rel=&#34;me&#34; href=&#34;https://qoto.org/@zleap&#34;Mastodon/a/td&#xD;&#xA;tda href=&#34;https://wiki.ircnow.org/?n=Shelllabs.Intro&#34;ShellLabs/td&#xD;&#xA;tda href=&#34;https://joinmastodon.org/&#34;Join Mastodon/a/td/tr/thead/table&#xD;&#xA;center&#xD;&#xA;AI statement : b Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. /b&#xD;&#xA;/center&#xD;&#xA;&#xD;&#xA;a href=&#34;https://liberapay.com/PaulSutton/donate&#34;img alt=&#34;Donate using Liberapay&#34; src=&#34;https://liberapay.com/assets/widgets/donate.svg&#34;/a&#xD;&#xA;]]&gt;</description>
      <content:encoded><![CDATA[<p>Viewing processes</p>

<p>You can view a table that shows currently running processes and information about them.</p>

<p>There are several tools for this:–  Both of these update in real time so you can see what is going on</p>

<p>One is top</p>

<pre><code>man top
top
</code></pre>

<p><img src="https://salsa.debian.org/zleap-guest/blog-media/-/raw/master/top.png" alt="top"></p>

<p>The other is htop, which is the same as top, but has a colour output.</p>

<pre><code>man htop
htop
</code></pre>

<p><img src="https://salsa.debian.org/zleap-guest/blog-media/-/raw/master/htop.png" alt="htop"></p>

<p>These are really useful tools,  there is also ps</p>

<pre><code>man ps
</code></pre>

<pre><code>$ ps
    PID TTY          TIME CMD
  51221 pts/0    00:00:00 bash
  51239 pts/0    00:00:00 ps
</code></pre>

<pre><code>ps -a
    PID TTY          TIME CMD
  51251 pts/0    00:00:00 ps
</code></pre>

<pre><code>ps -u
USER         PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND
psutton    51221  0.0  0.0  11284  5504 pts/0    Ss   22:51   0:00 bash
psutton    51256  0.0  0.0  13760  4608 pts/0    R+   22:53   0:00 ps -u
</code></pre>

<pre><code>ps -x

PID TTY      STAT   TIME COMMAND
   2016 ?        Ss     0:00 /usr/lib/systemd/systemd --user
   2017 ?        S      0:00 (sd-pam)
   2029 ?        S&lt;sl   0:13 /usr/bin/pipewire
   2030 ?        Ssl    0:00 /usr/bin/pipewire -c filter-chain.conf
   2031 ?        S&lt;sl   0:00 /usr/bin/wireplumber
   2033 ?        S&lt;sl   0:21 /usr/bin/pipewire-pulse
</code></pre>

<p>Note : Above is NOT full output,</p>

<p>If you are ever unsure as to what a process is, you can try seeing if there is a man page.</p>

<pre><code>NAME
       pipewire - The PipeWire media server
</code></pre>

<p>If not,  you can look it up using a search tool such as <a href="https://duckduckgo.com/" rel="nofollow">duckduckgo</a>, which from this I found info on <a href="https://wiki.archlinux.org/title/WirePlumber" rel="nofollow">wireplumber</a> on the Arch Linux wiki.</p>

<p><strong>Links</strong></p>
<ul><li><a href="https://www.brendangregg.com/linuxperf.html" rel="nofollow">Linux performance tools</a></li></ul>

<p><strong>Tags</strong></p>

<p><a href="/paulsutton/tag:Bash" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Bash</span></a>,<a href="/paulsutton/tag:Tools" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Tools</span></a>,<a href="/paulsutton/tag:Processes" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Processes</span></a>,<a href="/paulsutton/tag:htop" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">htop</span></a>,<a href="/paulsutton/tag:top" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">top</span></a></p>

<hr>

<p><table>
<thead>
<tr><td><a href="https://qoto.org/@zleap" rel="nofollow">Mastodon</a></td>
<td><a href="https://wiki.ircnow.org/?n=Shelllabs.Intro" rel="nofollow">ShellLabs</td>
<td><a href="https://joinmastodon.org/" rel="nofollow">Join Mastodon</a></td></tr></thead></table>

AI statement : <b> Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. </b>
</p>

<p><a href="https://liberapay.com/PaulSutton/donate" rel="nofollow"><img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg"></a></p>
]]></content:encoded>
      <guid>https://personaljournal.ca/paulsutton/viewing-processes</guid>
      <pubDate>Sat, 03 May 2025 06:00:00 +0000</pubDate>
    </item>
    <item>
      <title>Ventoy Concerns</title>
      <link>https://personaljournal.ca/paulsutton/ventoy-concerns</link>
      <description>&lt;![CDATA[Ventoy Concerns&#xA;&#xA;I noticed a post on Mastodon, suggesting that due to a number of component blobs that don&#39;t have associated source code available, there could be concerns regarding Ventoy&#xA;&#xA;Github issues &#xA;Original mastodon post&#xA;&#xA;I am just sharing this as concerns were raised, I still feel Ventoy is safe to use. As with anything, due diligence needs to be used when installing any software or OS.  If you are concerned, then make the USB media, with the chosen OS and install that way. &#xA;&#xA;Links&#xA;&#xA;Ventoy&#xA;&#xA;Tags&#xA;&#xA;#Computing.#Tools,#Ventoy,#Security&#xA;&#xA;hr&#xD;&#xA;&#xD;&#xA;table&#xD;&#xA;thead&#xD;&#xA;trtda rel=&#34;me&#34; href=&#34;https://qoto.org/@zleap&#34;Mastodon/a/td&#xD;&#xA;tda href=&#34;https://wiki.ircnow.org/?n=Shelllabs.Intro&#34;ShellLabs/td&#xD;&#xA;tda href=&#34;https://joinmastodon.org/&#34;Join Mastodon/a/td/tr/thead/table&#xD;&#xA;center&#xD;&#xA;AI statement : b Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. /b&#xD;&#xA;/center&#xD;&#xA;&#xD;&#xA;a href=&#34;https://liberapay.com/PaulSutton/donate&#34;img alt=&#34;Donate using Liberapay&#34; src=&#34;https://liberapay.com/assets/widgets/donate.svg&#34;/a&#xD;&#xA;]]&gt;</description>
      <content:encoded><![CDATA[<p>Ventoy Concerns</p>

<p>I noticed a post on Mastodon, suggesting that due to a number of component blobs that don&#39;t have associated source code available, there could be concerns regarding Ventoy</p>
<ul><li><a href="https://github.com/ventoy/Ventoy/issues/2795" rel="nofollow">Github issues</a></li>
<li><a href="https://qoto.org/web/statuses/112910860196366591" rel="nofollow">Original mastodon post</a></li></ul>

<p>I am just sharing this as concerns were raised, I still feel Ventoy is safe to use. As with anything, due diligence needs to be used when installing any software or OS.  If you are concerned, then make the USB media, with the chosen OS and install that way.</p>

<p><strong>Links</strong></p>
<ul><li><a href="https://www.ventoy.net/en/index.html" rel="nofollow">Ventoy</a></li></ul>

<p><strong>Tags</strong></p>

<p><a href="/paulsutton/tag:Computing" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Computing</span></a>.<a href="/paulsutton/tag:Tools" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Tools</span></a>,<a href="/paulsutton/tag:Ventoy" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Ventoy</span></a>,<a href="/paulsutton/tag:Security" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Security</span></a></p>

<hr>

<p><table>
<thead>
<tr><td><a href="https://qoto.org/@zleap" rel="nofollow">Mastodon</a></td>
<td><a href="https://wiki.ircnow.org/?n=Shelllabs.Intro" rel="nofollow">ShellLabs</td>
<td><a href="https://joinmastodon.org/" rel="nofollow">Join Mastodon</a></td></tr></thead></table>

AI statement : <b> Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. </b>
</p>

<p><a href="https://liberapay.com/PaulSutton/donate" rel="nofollow"><img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg"></a></p>
]]></content:encoded>
      <guid>https://personaljournal.ca/paulsutton/ventoy-concerns</guid>
      <pubDate>Sat, 17 Aug 2024 06:00:00 +0000</pubDate>
    </item>
    <item>
      <title>Privacy tools list</title>
      <link>https://personaljournal.ca/paulsutton/privacy-tools-list</link>
      <description>&lt;![CDATA[Privacy tools list&#xA;&#xA;A discussion on Mastodon on Sunday, resulted in being directed to this excellent list of privacy tools,  There is a lot to go through here so if you are looking for alternatives to proprietary solutions this is very worth checking out.&#xA;&#xA;Links&#xA;&#xA;Privacy friendly tools&#xA;&#xA;Tags&#xA;&#xA;#Tools,#WebServices,#Software,#Privacy,#Alternative,#Replacements&#xA;&#xA;hr&#xD;&#xA;&#xD;&#xA;table&#xD;&#xA;thead&#xD;&#xA;trtda rel=&#34;me&#34; href=&#34;https://qoto.org/@zleap&#34;Mastodon/a/td&#xD;&#xA;tda href=&#34;https://wiki.ircnow.org/?n=Shelllabs.Intro&#34;ShellLabs/td&#xD;&#xA;tda href=&#34;https://joinmastodon.org/&#34;Join Mastodon/a/td/tr/thead/table&#xD;&#xA;center&#xD;&#xA;AI statement : b Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. /b&#xD;&#xA;/center&#xD;&#xA;&#xD;&#xA;a href=&#34;https://liberapay.com/PaulSutton/donate&#34;img alt=&#34;Donate using Liberapay&#34; src=&#34;https://liberapay.com/assets/widgets/donate.svg&#34;/a&#xD;&#xA;]]&gt;</description>
      <content:encoded><![CDATA[<p>Privacy tools list</p>

<p>A discussion on Mastodon on Sunday, resulted in being directed to this excellent list of privacy tools,  There is a lot to go through here so if you are looking for alternatives to proprietary solutions this is very worth checking out.</p>

<p><strong>Links</strong></p>
<ul><li><a href="https://chef-koch.bearblog.dev/privacy-tools-list-by-chef-koch/" rel="nofollow">Privacy friendly tools</a></li></ul>

<p><strong>Tags</strong></p>

<p><a href="/paulsutton/tag:Tools" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Tools</span></a>,<a href="/paulsutton/tag:WebServices" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">WebServices</span></a>,<a href="/paulsutton/tag:Software" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Software</span></a>,<a href="/paulsutton/tag:Privacy" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Privacy</span></a>,<a href="/paulsutton/tag:Alternative" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Alternative</span></a>,<a href="/paulsutton/tag:Replacements" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Replacements</span></a></p>

<hr>

<p><table>
<thead>
<tr><td><a href="https://qoto.org/@zleap" rel="nofollow">Mastodon</a></td>
<td><a href="https://wiki.ircnow.org/?n=Shelllabs.Intro" rel="nofollow">ShellLabs</td>
<td><a href="https://joinmastodon.org/" rel="nofollow">Join Mastodon</a></td></tr></thead></table>

AI statement : <b> Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. </b>
</p>

<p><a href="https://liberapay.com/PaulSutton/donate" rel="nofollow"><img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg"></a></p>
]]></content:encoded>
      <guid>https://personaljournal.ca/paulsutton/privacy-tools-list</guid>
      <pubDate>Tue, 28 Dec 2021 07:30:00 +0000</pubDate>
    </item>
    <item>
      <title>top and htop process viewing and management</title>
      <link>https://personaljournal.ca/paulsutton/top-and-htop-process-viewing-and-management</link>
      <description>&lt;![CDATA[top and htop process viewing and management&#xA;&#xA;img src=&#34;https://socialhub.activitypub.rocks/uploads/default/original/1X/6aac842b7ff5c58385a02f3a131c259281be88c8.png&#34; target=&#34;_blank&#34; &#xA;&#xA;a href=&#34;https://liberapay.com/PaulSutton/donate&#34;img alt=&#34;Donate using Liberapay&#34; src=&#34;https://liberapay.com/assets/widgets/donate.svg&#34;/a&#xA;&#xA;When using a GNU Linux system it is really useful to be able to manage what running process are doing,  this could be simply seeing what system resources are being used, or stopping processes from running, to changing how they run with tools such as nice / renice.&#xA;&#xA;The console / terminal top, gives you a view of all the running processes and allows you to control these processes easily. &#xA;&#xA;TOP&#xA;&#xA;top&#xA;&#xA;HTOP&#xA;&#xA;If you would like a slightly different tool that allows you to move up / down the process list, you may want to loop at htop. This seems to offer the same functionality as top.  Top is probably better for running so you can keep an eye on what things are doing. &#xA; &#xA;htop&#xA;&#xA;OTHER RELATED TOOLS&#xA;&#xA;These tools offer the sort of functionality that is achieved by commands such as : &#xA;&#xA;ps&#xA;nice&#xA;renice&#xA;kill&#xA;killall&#xA;&#xA;But you need to look these up and read up about them on on the man page(s).&#xA;&#xA;REFERENCES&#xA;&#xA;top man page&#xA;htop man page&#xA;Free Software Foundation&#xA;&#xA;TAGS&#xA;&#xA;#YearOfTheFediverse,#GNU,#Process,#Managemet,#top,#htop,#tools&#xA;&#xA;a rel=&#34;license&#34; href=&#34;http://creativecommons.org/licenses/by-sa/4.0/&#34;img alt=&#34;Creative Commons Licence&#34; style=&#34;border-width:0&#34; src=&#34;https://i.creativecommons.org/l/by-sa/4.0/88x31.png&#34; //abr /This work is licensed under a a rel=&#34;license&#34; href=&#34;http://creativecommons.org/licenses/by-sa/4.0/&#34;Creative Commons Attribution-ShareAlike 4.0 International License/a&#xA;&#xA;hr&#xD;&#xA;&#xD;&#xA;table&#xD;&#xA;thead&#xD;&#xA;trtda rel=&#34;me&#34; href=&#34;https://qoto.org/@zleap&#34;Mastodon/a/td&#xD;&#xA;tda href=&#34;https://wiki.ircnow.org/?n=Shelllabs.Intro&#34;ShellLabs/td&#xD;&#xA;tda href=&#34;https://joinmastodon.org/&#34;Join Mastodon/a/td/tr/thead/table&#xD;&#xA;center&#xD;&#xA;AI statement : b Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. /b&#xD;&#xA;/center&#xD;&#xA;&#xD;&#xA;a href=&#34;https://liberapay.com/PaulSutton/donate&#34;img alt=&#34;Donate using Liberapay&#34; src=&#34;https://liberapay.com/assets/widgets/donate.svg&#34;/a&#xD;&#xA;]]&gt;</description>
      <content:encoded><![CDATA[<p>top and htop process viewing and management</p>

<p><a href="https://torresjrjr.com/archive/2020-07-19-guide-to-the-fediverse" rel="nofollow"><img src="https://socialhub.activitypub.rocks/uploads/default/original/1X/6aac842b7ff5c58385a02f3a131c259281be88c8.png"></a></p>

<p><a href="https://liberapay.com/PaulSutton/donate" rel="nofollow"><img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg"></a></p>

<p>When using a GNU Linux system it is really useful to be able to manage what running process are doing,  this could be simply seeing what system resources are being used, or stopping processes from running, to changing how they run with tools such as nice / renice.</p>

<p>The console / terminal top, gives you a view of all the running processes and allows you to control these processes easily.</p>

<p><strong>TOP</strong></p>

<p><img src="https://salsa.debian.org/zleap-guest/screenshots/-/raw/master/misc/top.png" alt="top"></p>

<p><strong>HTOP</strong></p>

<p>If you would like a slightly different tool that allows you to move up / down the process list, you may want to loop at htop. This seems to offer the same functionality as top.  Top is probably better for running so you can keep an eye on what things are doing.</p>

<p><img src="https://salsa.debian.org/zleap-guest/screenshots/-/raw/master/misc/htop.png" alt="htop"></p>

<p><strong>OTHER RELATED TOOLS</strong></p>

<p>These tools offer the sort of functionality that is achieved by commands such as :</p>
<ul><li>ps</li>
<li>nice</li>
<li>renice</li>
<li>kill</li>
<li>killall</li></ul>

<p>But you need to look these up and read up about them on on the man page(s).</p>

<p><strong>REFERENCES</strong></p>
<ul><li><a href="https://linux.die.net/man/1/top" rel="nofollow">top man page</a></li>
<li><a href="https://linux.die.net/man/1/htop" rel="nofollow">htop man page</a></li>
<li><a href="https://www.fsf.org" rel="nofollow">Free Software Foundation</a></li></ul>

<p><strong>TAGS</strong></p>

<p><a href="/paulsutton/tag:YearOfTheFediverse" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">YearOfTheFediverse</span></a>,<a href="/paulsutton/tag:GNU" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">GNU</span></a>,<a href="/paulsutton/tag:Process" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Process</span></a>,<a href="/paulsutton/tag:Managemet" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Managemet</span></a>,<a href="/paulsutton/tag:top" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">top</span></a>,<a href="/paulsutton/tag:htop" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">htop</span></a>,<a href="/paulsutton/tag:tools" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">tools</span></a></p>

<p><a href="http://creativecommons.org/licenses/by-sa/4.0/" rel="nofollow"><img alt="Creative Commons Licence" style="border-width:0" src="https://i.creativecommons.org/l/by-sa/4.0/88x31.png"/></a><br/>This work is licensed under a <a href="http://creativecommons.org/licenses/by-sa/4.0/" rel="nofollow">Creative Commons Attribution-ShareAlike 4.0 International License</a></p>

<hr>

<p><table>
<thead>
<tr><td><a href="https://qoto.org/@zleap" rel="nofollow">Mastodon</a></td>
<td><a href="https://wiki.ircnow.org/?n=Shelllabs.Intro" rel="nofollow">ShellLabs</td>
<td><a href="https://joinmastodon.org/" rel="nofollow">Join Mastodon</a></td></tr></thead></table>

AI statement : <b> Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. </b>
</p>

<p><a href="https://liberapay.com/PaulSutton/donate" rel="nofollow"><img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg"></a></p>
]]></content:encoded>
      <guid>https://personaljournal.ca/paulsutton/top-and-htop-process-viewing-and-management</guid>
      <pubDate>Fri, 12 Feb 2021 12:00:00 +0000</pubDate>
    </item>
    <item>
      <title>RescaTux 0.73</title>
      <link>https://personaljournal.ca/paulsutton/rescatux-0-73</link>
      <description>&lt;![CDATA[RescaTux 0.73&#xA;&#xA;The latest release of the RescaTux rescue distribution / tools was on 2020-04-02.&#xA;&#xA;More information can be found on the RescaTux Website. Please consider using BitTorrent to download.  This takes pressure of the http server.&#xA;&#xA;Rescatux&#xA;&#xA;#rescue, #rescatux, #grub2, #windows, #recovery, #tools&#xA;&#xA;hr&#xD;&#xA;&#xD;&#xA;table&#xD;&#xA;thead&#xD;&#xA;trtda rel=&#34;me&#34; href=&#34;https://qoto.org/@zleap&#34;Mastodon/a/td&#xD;&#xA;tda href=&#34;https://wiki.ircnow.org/?n=Shelllabs.Intro&#34;ShellLabs/td&#xD;&#xA;tda href=&#34;https://joinmastodon.org/&#34;Join Mastodon/a/td/tr/thead/table&#xD;&#xA;center&#xD;&#xA;AI statement : b Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. /b&#xD;&#xA;/center&#xD;&#xA;&#xD;&#xA;a href=&#34;https://liberapay.com/PaulSutton/donate&#34;img alt=&#34;Donate using Liberapay&#34; src=&#34;https://liberapay.com/assets/widgets/donate.svg&#34;/a&#xD;&#xA;]]&gt;</description>
      <content:encoded><![CDATA[<p>RescaTux 0.73</p>

<p>The latest release of the RescaTux rescue distribution / tools was on 2020-04-02.</p>

<p>More information can be found on the <a href="https://www.supergrubdisk.org/" rel="nofollow">RescaTux Website</a>. Please consider using BitTorrent to download.  This takes pressure of the http server.</p>

<p><img src="https://raw.githubusercontent.com/zleap/blogmedia/master/resources/rescatux.png" alt="Rescatux"></p>

<p><a href="/paulsutton/tag:rescue" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">rescue</span></a>, <a href="/paulsutton/tag:rescatux" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">rescatux</span></a>, <a href="/paulsutton/tag:grub2" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">grub2</span></a>, <a href="/paulsutton/tag:windows" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">windows</span></a>, <a href="/paulsutton/tag:recovery" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">recovery</span></a>, <a href="/paulsutton/tag:tools" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">tools</span></a></p>

<hr>

<p><table>
<thead>
<tr><td><a href="https://qoto.org/@zleap" rel="nofollow">Mastodon</a></td>
<td><a href="https://wiki.ircnow.org/?n=Shelllabs.Intro" rel="nofollow">ShellLabs</td>
<td><a href="https://joinmastodon.org/" rel="nofollow">Join Mastodon</a></td></tr></thead></table>

AI statement : <b> Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. </b>
</p>

<p><a href="https://liberapay.com/PaulSutton/donate" rel="nofollow"><img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg"></a></p>
]]></content:encoded>
      <guid>https://personaljournal.ca/paulsutton/rescatux-0-73</guid>
      <pubDate>Sun, 05 Apr 2020 13:09:12 +0000</pubDate>
    </item>
  </channel>
</rss>