<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Customization How-To</title><link>https://sourceforge.net/p/dktools/wiki/Customization%2520How-To/</link><description>Recent changes to Customization How-To</description><atom:link href="https://sourceforge.net/p/dktools/wiki/Customization%20How-To/feed" rel="self"/><language>en</language><lastBuildDate>Sat, 18 May 2024 21:51:55 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/dktools/wiki/Customization%20How-To/feed" rel="self" type="application/rss+xml"/><item><title>Customization How-To modified by Dirk Krause</title><link>https://sourceforge.net/p/dktools/wiki/Customization%2520How-To/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v21
+++ v22
@@ -259,6 +259,8 @@

 to your custom/dklivesys.conf file before building the live system.

+&lt;a href="../Configure%20Live%20System/#SIDKERNEL" target="_blank" title="Configure Live System → Kernel to use"&gt;→ Details&lt;/a&gt;
+
 ---

 &lt;a name="non-standard-kernel"&gt;&lt;/a&gt;
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Dirk Krause</dc:creator><pubDate>Sat, 18 May 2024 21:51:55 -0000</pubDate><guid>https://sourceforge.net094256839921f8b403e913c9daa1514d9291051a</guid></item><item><title>Customization How-To modified by Dirk Krause</title><link>https://sourceforge.net/p/dktools/wiki/Customization%2520How-To/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v20
+++ v21
@@ -61,7 +61,7 @@
 
 

-**Example file:**
+**Example /etc/squid/squid.conf file:**

 ~~~
 acl SSL_ports port 443
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Dirk Krause</dc:creator><pubDate>Fri, 22 Mar 2024 20:26:54 -0000</pubDate><guid>https://sourceforge.net97d626ac82379068fad870fda91514b1bd38530a</guid></item><item><title>Customization How-To modified by Dirk Krause</title><link>https://sourceforge.net/p/dktools/wiki/Customization%2520How-To/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v19
+++ v20
@@ -42,18 +42,14 @@
 
 &lt;li&gt;&lt;b&gt;Set caching times.&lt;/b&gt;&lt;br/&gt;
 At &lt;a href="http://code.launchpad.net/squid-deb-proxy" rel="nofollow" target="_blank" title="squid-deb-proxy at Launchpad"&gt;https://code.launchpad.net/squid-deb-proxy.conf&lt;/a&gt; choose the “browse the source code” link and download/inspect the “squid-deb-proxy.conf” file.&lt;br/&gt;
-From /etc/squid/squid.conf remove all refresh_pattern lines. Add the refresh_pattern lines found in the downloaded/viewed squid-deb-proxy.conf file, at this time (2024-03-14):&lt;br/&gt;
+From /etc/squid/squid.conf remove all refresh_pattern lines, replace them by the following lines:&lt;br/&gt;
 &lt;div class="codehilite"&gt;&lt;pre&gt; refresh_pattern deb$   129600 100% 129600
 refresh_pattern udeb$   129600 100% 129600
 refresh_pattern tar.gz$  129600 100% 129600
 refresh_pattern tar.xz$  129600 100% 129600
 refresh_pattern tar.bz2$  129600 100% 129600
-refresh_pattern \/(Packages|Sources|Contents)(|\.bz2|\.gz|\.xz)$ 0 0% 0 refresh-ims
-refresh_pattern \/Release(|\.gpg)$ 0 0% 0 refresh-ims
-refresh_pattern \/InRelease$ 0 0% 0 refresh-ims
-refresh_pattern \/(Translation-.*)(|\.bz2|\.gz|\.xz)$ 0 0% 0 refresh-ims
-refresh_pattern changelogs.ubuntu.com\/.*  0  1% 1
+refresh_pattern .* 0 0% 0
 &lt;/pre&gt;&lt;/div&gt;
 &lt;/li&gt;
 &lt;li&gt;&lt;b&gt;Set maximum object size.&lt;/b&gt;&lt;br/&gt;
@@ -65,6 +61,41 @@
 &lt;/li&gt;
 

+**Example file:**
+
+~~~
+acl SSL_ports port 443
+acl Safe_ports port 80     # http
+acl Safe_ports port 21     # ftp
+acl Safe_ports port 443        # https
+acl Safe_ports port 70     # gopher
+acl Safe_ports port 210        # wais
+acl Safe_ports port 1025-65535 # unregistered ports
+acl Safe_ports port 280        # http-mgmt
+acl Safe_ports port 488        # gss-http
+acl Safe_ports port 591        # filemaker
+acl Safe_ports port 777        # multiling http
+http_access deny !Safe_ports
+http_access deny CONNECT !SSL_ports
+http_access allow localhost manager
+http_access deny manager
+include /etc/squid/conf.d/*.conf
+http_access allow localhost
+http_access deny all
+http_port 3128
+maximum_object_size 512 MB
+cache_dir aufs /var/spool/squid 2048 64 256
+cache_mem 256 MB
+maximum_object_size_in_memory 10240 KB
+coredump_dir /var/spool/squid
+refresh_pattern deb$   129600 100% 129600
+refresh_pattern udeb$   129600 100% 129600
+refresh_pattern tar.gz$  129600 100% 129600
+refresh_pattern tar.xz$  129600 100% 129600
+refresh_pattern tar.bz2$  129600 100% 129600
+refresh_pattern .* 0 0% 0 refresh-ims
+~~~
+
 **Create PROXY entry in dklivesys.conf**
 In the dklivesys.conf file create a line:

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Dirk Krause</dc:creator><pubDate>Fri, 22 Mar 2024 20:19:51 -0000</pubDate><guid>https://sourceforge.net506f53eace3fd41df97d52e4e74742335f553792</guid></item><item><title>Customization How-To modified by Dirk Krause</title><link>https://sourceforge.net/p/dktools/wiki/Customization%2520How-To/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v18
+++ v19
@@ -49,7 +49,7 @@
 refresh_pattern tar.gz$  129600 100% 129600
 refresh_pattern tar.xz$  129600 100% 129600
 refresh_pattern tar.bz2$  129600 100% 129600
-refresh_pattern \/(Packages|Sources)(|\.bz2|\.gz|\.xz)$ 0 0% 0 refresh-ims
+refresh_pattern \/(Packages|Sources|Contents)(|\.bz2|\.gz|\.xz)$ 0 0% 0 refresh-ims
 refresh_pattern \/Release(|\.gpg)$ 0 0% 0 refresh-ims
 refresh_pattern \/InRelease$ 0 0% 0 refresh-ims
 refresh_pattern \/(Translation-.*)(|\.bz2|\.gz|\.xz)$ 0 0% 0 refresh-ims
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Dirk Krause</dc:creator><pubDate>Thu, 21 Mar 2024 21:03:33 -0000</pubDate><guid>https://sourceforge.netea6bb1f32e0be7f9dea59cf3c118516c77821532</guid></item><item><title>Customization How-To modified by Dirk Krause</title><link>https://sourceforge.net/p/dktools/wiki/Customization%2520How-To/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v17
+++ v18
@@ -55,7 +55,6 @@
 refresh_pattern \/(Translation-.*)(|\.bz2|\.gz|\.xz)$ 0 0% 0 refresh-ims
 refresh_pattern changelogs.ubuntu.com\/.*  0  1% 1
 &lt;/pre&gt;
&lt;p&gt;&lt;br/&gt;
-&lt;br/&gt;&lt;br/&gt;
 &lt;br/&gt;
&lt;br/&gt;
&lt;/p&gt;&lt;li&gt;&lt;b&gt;Set maximum object size.&lt;/b&gt;&lt;br/&gt;
 As archive file can be large, add/replace the maximum_object_size


&lt;p&gt;&lt;/p&gt;&lt;/li&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Dirk Krause</dc:creator><pubDate>Thu, 14 Mar 2024 22:56:00 -0000</pubDate><guid>https://sourceforge.netf8b66664d64f4bd959066d82f23d0dab64172e39</guid></item><item><title>Customization How-To modified by Dirk Krause</title><link>https://sourceforge.net/p/dktools/wiki/Customization%2520How-To/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v16
+++ v17
@@ -9,7 +9,7 @@
 
 

-#  Customization How-To
+#  Disklessian and DKtoolian Customization How-To

 [TOC]

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Dirk Krause</dc:creator><pubDate>Thu, 14 Mar 2024 21:58:19 -0000</pubDate><guid>https://sourceforge.net222e9ba8d6eccbc95d9771a85cc2e645e33bd712</guid></item><item><title>Customization How-To modified by Dirk Krause</title><link>https://sourceforge.net/p/dktools/wiki/Customization%2520How-To/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v15
+++ v16
@@ -34,7 +34,7 @@

 &lt;ul&gt;
 &lt;li&gt;&lt;b&gt;Modify disk cache size.&lt;/b&gt;&lt;br/&gt;
-At the end of the “TAG: cache\_dir” section add a line&lt;br/&gt;
+At the end of the “TAG: cache_dir” section add a line&lt;br/&gt;
 &lt;div class="codehilite"&gt;&lt;pre&gt; cache_dir aufs /var/spool/squid 2048 32 256
 &lt;/pre&gt;&lt;/div&gt;
&lt;/li&gt;&lt;/ul&gt;&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Dirk Krause</dc:creator><pubDate>Thu, 14 Mar 2024 21:42:14 -0000</pubDate><guid>https://sourceforge.net2652c616ea5528ecb7de9156f74a9648c280ef64</guid></item><item><title>Customization How-To modified by Dirk Krause</title><link>https://sourceforge.net/p/dktools/wiki/Customization%2520How-To/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v14
+++ v15
@@ -232,7 +232,7 @@
 ---

 &lt;a name="non-standard-kernel"&gt;&lt;/a&gt;
-###    Use non-standard kernel
+###    Use other non-standard kernel

 To use a non-standard kernel, i.e. the latest kernel from Debian testing, download the kernel as \*.deb package.

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Dirk Krause</dc:creator><pubDate>Thu, 14 Mar 2024 21:40:04 -0000</pubDate><guid>https://sourceforge.net1d72ae8360e1721e8c5f7681e2f5f77d484a15f7</guid></item><item><title>Customization How-To modified by Dirk Krause</title><link>https://sourceforge.net/p/dktools/wiki/Customization%2520How-To/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v13
+++ v14
@@ -38,7 +38,6 @@
 &lt;div class="codehilite"&gt;&lt;pre&gt; cache_dir aufs /var/spool/squid 2048 32 256
 &lt;/pre&gt;&lt;/div&gt;
-&lt;br/&gt;
 This allows squid to use 2 GiB disk space in /var/spool/squid for caching. In the first hierarchy level 32 subdirectories will be created, each of the having in turn 256 subdirectories.&lt;br/&gt; 
 
 &lt;li&gt;&lt;b&gt;Set caching times.&lt;/b&gt;&lt;br/&gt;
&lt;/li&gt;&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Dirk Krause</dc:creator><pubDate>Thu, 14 Mar 2024 21:38:02 -0000</pubDate><guid>https://sourceforge.netdfd94f9d8df1fdfe50173dc5285a684da7b6c2cf</guid></item><item><title>Customization How-To modified by Dirk Krause</title><link>https://sourceforge.net/p/dktools/wiki/Customization%2520How-To/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v12
+++ v13
@@ -36,14 +36,14 @@
 &lt;li&gt;&lt;b&gt;Modify disk cache size.&lt;/b&gt;&lt;br/&gt;
 At the end of the “TAG: cache\_dir” section add a line&lt;br/&gt;
 &lt;div class="codehilite"&gt;&lt;pre&gt;-&lt;code&gt;cache_dir&lt;span class="w"&gt; &lt;/span&gt;aufs&lt;span class="w"&gt; &lt;/span&gt;/var/spool/squid&lt;span class="w"&gt; &lt;/span&gt;2048&lt;span class="w"&gt; &lt;/span&gt;32&lt;span class="w"&gt; &lt;/span&gt;256&lt;/code&gt;
+cache_dir aufs /var/spool/squid 2048 32 256
 &lt;/pre&gt;&lt;/div&gt;
 &lt;br/&gt;
 This allows squid to use 2 GiB disk space in /var/spool/squid for caching. In the first hierarchy level 32 subdirectories will be created, each of the having in turn 256 subdirectories.&lt;br/&gt; 
 &lt;/li&gt;
 &lt;li&gt;&lt;b&gt;Set caching times.&lt;/b&gt;&lt;br/&gt;
 At &lt;a href="http://code.launchpad.net/squid-deb-proxy" rel="nofollow" target="_blank" title="squid-deb-proxy at Launchpad"&gt;https://code.launchpad.net/squid-deb-proxy.conf&lt;/a&gt; choose the “browse the source code” link and download/inspect the “squid-deb-proxy.conf” file.&lt;br/&gt;
-From /etc/squid/squid.conf remove all refresh\_pattern lines. Add the refresh\_pattern lines found in the downloaded/viewed squid-deb-proxy.conf file, at this time (2024-03-14):&lt;br/&gt;
+From /etc/squid/squid.conf remove all refresh_pattern lines. Add the refresh_pattern lines found in the downloaded/viewed squid-deb-proxy.conf file, at this time (2024-03-14):&lt;br/&gt;
 &lt;div class="codehilite"&gt;&lt;pre&gt; refresh_pattern deb$   129600 100% 129600
 refresh_pattern udeb$   129600 100% 129600
@@ -59,10 +59,10 @@
 &lt;br/&gt;
 &lt;/pre&gt;&lt;/div&gt;&lt;/li&gt;
 &lt;li&gt;&lt;b&gt;Set maximum object size.&lt;/b&gt;&lt;br/&gt;
-As archive file can be large, add/replace the maximum\_object\_size
+As archive file can be large, add/replace the maximum_object_size
 value to 512MB:&lt;br/&gt;
 &lt;div class="codehilite"&gt;&lt;pre&gt;-&lt;code&gt;maximum_object_size 512 MB&lt;/code&gt;
+maximum_object_size 512 MB
 &lt;/pre&gt;&lt;/div&gt;
 &lt;/li&gt;
 
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Dirk Krause</dc:creator><pubDate>Thu, 14 Mar 2024 21:36:33 -0000</pubDate><guid>https://sourceforge.net2597d62c5eb7a27695a3fc7340b539dbf2f84493</guid></item></channel></rss>