<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="../assets/xml/rss.xsl" media="all"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>.:: Marcos Dione/StyXman's glob ::. (Posts about linux)</title><link>https://www.grulic.org.ar/~mdione/glob/</link><description></description><atom:link href="https://www.grulic.org.ar/~mdione/glob/categories/linux.xml" rel="self" type="application/rss+xml"></atom:link><language>en</language><copyright>Contents © 2026 &lt;a href="mailto:mdione@grulic.org.ar"&gt;Marcos Dione&lt;/a&gt; </copyright><lastBuildDate>Sat, 24 Jan 2026 11:41:28 GMT</lastBuildDate><generator>Nikola (getnikola.com)</generator><docs>http://blogs.law.harvard.edu/tech/rss</docs><item><title>(More than) Everything you always wanted to know about...</title><link>https://www.grulic.org.ar/~mdione/glob/posts/more-than-everything-you-always-wanted-to-know-about/</link><dc:creator>Marcos Dione</dc:creator><description>&lt;p&gt;From time to time you need to deep dive into a subject and you need a good site to read about it.
Over the years I have come across many such sites, and this is my attempt to collect them in a single place.
I have revisited the some of the same subjects, but since searching the web has become a worse
and worse experience, finding them again has been almost impossible.&lt;/p&gt;
&lt;p&gt;I hope to make this list as long as all the sites I want to put here. Also, I'll be using 
&lt;a href="https://archive.org/"&gt;Archive.org's&lt;/a&gt; links, to make sure you can find them even if the sites are down.&lt;/p&gt;
&lt;h2&gt;Certificates and CAs&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://web.archive.org/web/20250830130806/https://jamielinux.com/docs/openssl-certificate-authority/"&gt;https://jamielinux.com/docs/openssl-certificate-authority/&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Linux memory&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://web.archive.org/web/20251201185104/https://blogs.oracle.com/linux/understanding-linux-kernel-memory-statistics"&gt;https://blogs.oracle.com/linux/understanding-linux-kernel-memory-statistics&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;UEFI&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://web.archive.org/web/20251012065253/https://www.happyassassin.net/posts/2014/01/25/uefi-boot-how-does-that-actually-work-then/"&gt;https://www.happyassassin.net/posts/2014/01/25/uefi-boot-how-does-that-actually-work-then/&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Bikes&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://web.archive.org/web/20250920045409/https://www.sheldonbrown.com/"&gt;https://www.sheldonbrown.com/&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Sound&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;[PulseAudio][https://gavv.net/articles/pulseaudio-under-the-hood/]&lt;/li&gt;
&lt;/ul&gt;</description><category>bikes</category><category>certificates</category><category>linux</category><category>openssl</category><category>pulseaudio</category><category>sound</category><category>sysadmin</category><category>uefi</category><guid>https://www.grulic.org.ar/~mdione/glob/posts/more-than-everything-you-always-wanted-to-know-about/</guid><pubDate>Fri, 14 Nov 2025 21:36:59 GMT</pubDate></item><item><title>Defining reserved space in blocks vs percentage</title><link>https://www.grulic.org.ar/~mdione/glob/posts/defining-reserved-space-in-blocks-vs-percentage/</link><dc:creator>Marcos Dione</dc:creator><description>&lt;p&gt;A quick one.&lt;/p&gt;
&lt;p&gt;Many (most?) filesystems in Linux can define reserved space. This is space that only the superuser can write to, and 
it's usually reserved for times when you've run out of space, allowing the super user to still operate the computer,
even when normal users can't write anymore. This is also why there is the concept of available vs free space in 
partitions.&lt;/p&gt;
&lt;p&gt;Historically, reserved space was defined in percentage. But with bigger and bigger disks (30TB now?), even 1%
is a &lt;em&gt;a lot&lt;/em&gt; of space (300GB). Fortunately, we can also define it in blocks. At 4KiB per block, you can reserve "only"
1TiB with:&lt;/p&gt;
&lt;div class="code"&gt;&lt;pre class="code literal-block"&gt;&lt;span class="n"&gt;tune2fs&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="n"&gt;r&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="err"&gt;$&lt;/span&gt;&lt;span class="p"&gt;((&lt;/span&gt;&lt;span class="mi"&gt;1024&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="o"&gt;*&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="mi"&gt;1024&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="mi"&gt;4&lt;/span&gt;&lt;span class="p"&gt;))&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="o"&gt;[&lt;/span&gt;&lt;span class="n"&gt;partition&lt;/span&gt;&lt;span class="o"&gt;]&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;Unluckily, many of these tools don't define &lt;code&gt;--long-options&lt;/code&gt;.&lt;/p&gt;</description><category>linux</category><category>sysadmin</category><guid>https://www.grulic.org.ar/~mdione/glob/posts/defining-reserved-space-in-blocks-vs-percentage/</guid><pubDate>Sun, 27 Jul 2025 10:46:30 GMT</pubDate></item></channel></rss>