Skip to content

Commit

Permalink
Journal posts
Browse files Browse the repository at this point in the history
  • Loading branch information
karlh001 committed Apr 13, 2024
1 parent 1734200 commit 574926c
Show file tree
Hide file tree
Showing 7 changed files with 46 additions and 44 deletions.
6 changes: 6 additions & 0 deletions defiant/flags/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@
</li>
<li class="toctree-l2"><a class="reference internal" href="#logging">Logging</a>
</li>
<li class="toctree-l2"><a class="reference internal" href="#block-size">Block Size</a>
</li>
<li class="toctree-l2"><a class="reference internal" href="#skip-missing-file-scan">Skip missing file scan</a>
</li>
<li class="toctree-l2"><a class="reference internal" href="#database-file-location">Database file location</a>
Expand Down Expand Up @@ -154,6 +156,10 @@ <h3 id="logging">Logging</h3>
<p>Example:</p>
<pre><code>dfg -l -log /var/log/pictures.log -d /mnt/usb/pictures/
</code></pre>
<h3 id="block-size">Block Size</h3>
<p>The default block size used to hash files is 64 MB. You can specify a custom block size, in MB.</p>
<p><code>-b 64</code></p>
<p><em>Changing the block size does not affect existing hashes already saved in the database</em></p>
<h3 id="skip-missing-file-scan">Skip missing file scan</h3>
<p><code>--skip-missing</code></p>
<p>Skips the missing file scan. You will not be notified about missing / deleted files which exist in the database.</p>
Expand Down
13 changes: 10 additions & 3 deletions defiant/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@
</li>
<li class="toctree-l2"><a class="reference internal" href="#download-links">Download Links</a>
</li>
<li class="toctree-l2"><a class="reference internal" href="#hashes">Hashes</a>
</li>
<li class="toctree-l2"><a class="reference internal" href="#open-source">Open Source</a>
</li>
</ul>
Expand Down Expand Up @@ -131,10 +133,15 @@ <h2 id="about">About</h2>
<h2 id="download-links">Download Links</h2>
<p>For releases visit <a href="https://github.com/karlh001/defiant-fg/releases">this page</a>.</p>
<ul>
<li><a href="https://github.com/karlh001/defiant-fg/tree/main/bin/deb_pkgs/">Deb installer</a> (Debian, Linux Mint, Ubuntu) for AMD64.</li>
<li><a href="https://github.com/karlh001/defiant-fg/tree/main/dist/dfg_amd64.deb">Deb installer</a> (Debian, Linux Mint, Ubuntu) for AMD64.</li>
</ul>
<p>Alternatively, <a href="https://github.com/karlh001/defiant-fg/archive/refs/heads/main.zip">click here</a> to download then follow the <a href="installation/">installation instructions</a> to either build self or install non-DEB package.</p>
<p><a href="hash/">Check hashes</a> of download.</p>
<h2 id="hashes">Hashes</h2>
<ul>
<li><a href="https://github.com/karlh001/defiant-fg/tree/main/dist/hashes.sha256">SHA256</a></li>
<li><a href="https://github.com/karlh001/defiant-fg/tree/main/dist/hashes.md5">MD5</a></li>
<li><a href="https://github.com/karlh001/defiant-fg/tree/main/dist/hashes.whirlpool">Whirlpool</a></li>
</ul>
<h2 id="open-source">Open Source</h2>
<p>The source code is located on my <a href="https://github.com/karlh001/defiant-fg">GitHub</a> repository. </p>

Expand Down Expand Up @@ -185,5 +192,5 @@ <h2 id="open-source">Open Source</h2>

<!--
MkDocs version : 1.5.3
Build Date UTC : 2024-03-14 19:46:15.520737+00:00
Build Date UTC : 2024-04-13 08:39:15.236998+00:00
-->
22 changes: 3 additions & 19 deletions defiant/installation/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,6 @@
<li class="toctree-l3"><a class="reference internal" href="#deb-package">Deb Package</a>
</li>
<li class="toctree-l3"><a class="reference internal" href="#manual-install">Manual Install</a>
</li>
<li class="toctree-l3"><a class="reference internal" href="#shell-script-install">Shell Script Install</a>
</li>
</ul>
</li>
Expand Down Expand Up @@ -136,29 +134,15 @@ <h3 id="deb-package">Deb Package</h3>
<p>On Debian based operating systems (such as Ubuntu, Linux Mint), download the deb package. On desktop versions, open package and click <code>install package</code>. </p>
<p>Or, via command line:</p>
<p>Download</p>
<pre><code>wget https://github.com/karlh001/defiant-fg/raw/main/bin/deb_pkgs/dfg_amd64.deb
<pre><code>wget https://github.com/karlh001/defiant-fg/raw/main/dist/dfg_amd64.deb
</code></pre>
<p>Install (as root)</p>
<pre><code>dpkg --install dfg_amd64.deb
</code></pre>
<p>Done.</p>
<h3 id="manual-install">Manual Install</h3>
<p>However, if you are running another Linux operating system or prefer not use use deb packages follow these instructions:</p>
<p>For manual installation on Linux, download the source code from the releases section, extract the tar and change directory to the build directory (e.g. <code>cd ~/Downloads/defiant-fg-main/</code>.</p>
<pre><code>cd ~/Downloads

wget https://github.com/karlh001/defiant-fg/blob/main/bin/linux_amd64/dfg.bin

sudo cp dfg.bin /usr/bin/dfg
</code></pre>
<h3 id="shell-script-install">Shell Script Install</h3>
<p>To install via shell script, download the most recent release.</p>
<p><em>Replace 1.X.X with version</em></p>
<pre><code>tar -xzvf v1.X.X.tar.gz

sh build/INSTALL_LINUX.sh
</code></pre>
<p><em>Do not execute script from within build folder or it will fail</em></p>
<p>However, if you are running another Linux operating system or prefer not use use deb packages, find the build for your system by visiting the distribution directory:</p>
<p><a href="https://github.com/karlh001/defiant-fg/tree/main/dist/">https://github.com/karlh001/defiant-fg/tree/main/dist/</a></p>
<h2 id="test">Test</h2>
<p>Test install. Run:</p>
<pre><code>dfg -version
Expand Down
10 changes: 10 additions & 0 deletions defiant/release_notes_1/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,8 @@
<ul class="current">
<li class="toctree-l1 current"><a class="reference internal current" href="./">Release Notes 1.x</a>
<ul class="current">
<li class="toctree-l2"><a class="reference internal" href="#version-131">Version 1.3.1</a>
</li>
<li class="toctree-l2"><a class="reference internal" href="#version-13">Version 1.3</a>
</li>
<li class="toctree-l2"><a class="reference internal" href="#version-124">Version 1.2.4</a>
Expand Down Expand Up @@ -135,6 +137,14 @@
<div class="section" itemprop="articleBody">

<h1 id="release-notes">Release Notes</h1>
<h2 id="version-131">Version 1.3.1</h2>
<p>2024-04-13</p>
<ul>
<li>Block size flag <code>--bs</code> </li>
<li>Minor code tidying</li>
<li>SQLite3 upgraded to version 1.14.22</li>
<li>Using GoReleaser to build DFG - download links changed / minor adjustment to project layout on GitHub</li>
</ul>
<h2 id="version-13">Version 1.3</h2>
<p>2024-03-14</p>
<ul>
Expand Down
2 changes: 1 addition & 1 deletion defiant/search/search_index.json

Large diffs are not rendered by default.

37 changes: 16 additions & 21 deletions defiant/sitemap.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,87 +2,82 @@
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://karlhunter.co.uk/defiant/</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-04-13</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://karlhunter.co.uk/defiant/about/</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-04-13</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://karlhunter.co.uk/defiant/bugs/</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-04-13</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://karlhunter.co.uk/defiant/build/</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-04-13</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://karlhunter.co.uk/defiant/contact/</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-04-13</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://karlhunter.co.uk/defiant/credits/</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-04-13</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://karlhunter.co.uk/defiant/db/</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-04-13</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://karlhunter.co.uk/defiant/donate/</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-04-13</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://karlhunter.co.uk/defiant/errors/</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-04-13</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://karlhunter.co.uk/defiant/flags/</loc>
<lastmod>2024-03-14</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://karlhunter.co.uk/defiant/hash/</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-04-13</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://karlhunter.co.uk/defiant/installation/</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-04-13</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://karlhunter.co.uk/defiant/log/</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-04-13</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://karlhunter.co.uk/defiant/release_notes_1/</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-04-13</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://karlhunter.co.uk/defiant/requirements/</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-04-13</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://karlhunter.co.uk/defiant/run/</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-04-13</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://karlhunter.co.uk/defiant/scripting/</loc>
<lastmod>2024-03-14</lastmod>
<lastmod>2024-04-13</lastmod>
<changefreq>daily</changefreq>
</url>
</urlset>
Binary file modified defiant/sitemap.xml.gz
Binary file not shown.

0 comments on commit 574926c

Please sign in to comment.