<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: urdevops</title>
    <description>The latest articles on DEV Community by urdevops (@urdevops24).</description>
    <link>https://dev.to/urdevops24</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F2500027%2F5c5a59af-2582-4ab3-b2d6-3ecfc2892d6c.jpg</url>
      <title>DEV Community: urdevops</title>
      <link>https://dev.to/urdevops24</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/urdevops24"/>
    <language>en</language>
    <item>
      <title>Server-Side Ransomware</title>
      <dc:creator>urdevops</dc:creator>
      <pubDate>Tue, 08 Sep 2026 22:34:36 +0000</pubDate>
      <link>https://dev.to/urdevops24/server-side-ransomware-hk6</link>
      <guid>https://dev.to/urdevops24/server-side-ransomware-hk6</guid>
      <description>&lt;p&gt;👉 As ransomware continues to evolve in speed and complexity, traditional endpoint protection mechanisms often fall short, especially in environments with limited client-side defense.&lt;/p&gt;

&lt;p&gt;👉 At present, ransomware remains one of the most prevalent forms of cybercrime worldwide. Due to its rapid proliferation and continuous technological advances, it is important to introduce conceptual changes in defensive strategies, develop new security mechanisms, and implement multi-factor detection systems.&lt;/p&gt;

&lt;p&gt;👉  Recent threat intelligence consistently confirms the continued prominence of ransomware as a major cyber threat.&lt;/p&gt;

&lt;p&gt;1️⃣ The ENISA Threat Landscape 2024 identifies ransomware among the most disruptive attack types.&lt;/p&gt;

&lt;p&gt;2️⃣ the Verizon DBIR 2025 reports its involvement in 44% of confirmed breaches.&lt;/p&gt;

&lt;p&gt;3️⃣ Sector-specific analyzes, such as the ENISA Finance Threat Landscape 2024, highlight its persistent impact across critical industries.&lt;/p&gt;

&lt;p&gt;4️⃣ Europol’s Inter net Organized Crime Threat Assessment (IOCTA) likewise identifies ransomware as one of the most prominent and disruptive forms of cybercrime in recent years.&lt;/p&gt;

&lt;p&gt;👉 Currently, there are many antivirus solutions and endpoint protection technologies available. However, in many cases these can be bypassed or disabled, which makes the success of an attack more likely. &lt;/p&gt;

&lt;p&gt;1️⃣ As such malware primarily encrypts data and renders it inaccessible, the day-to-day functioning of organizations can be partially or completely disrupted during the restoration process. To minimize the damage, it is crucial to detect such attacks as early as possible. &lt;/p&gt;

&lt;p&gt;2️⃣ For example, the LockBit malware was observed to encrypt 53.83 GB of data (100,000 files) across different MS Windows workstations in 4 min and 9 s, corresponding to an average speed of 216.18 MB/s.&lt;/p&gt;

&lt;p&gt;3️⃣ These figures clearly highlight that rapid, preferably near real-time detection is essential for effective protection.&lt;/p&gt;

&lt;p&gt;4️⃣ The targeted data assets are typically stored centrally and accessed by clients, often via network shares. &lt;/p&gt;

&lt;p&gt;6️⃣ Client-side protection is generally considered less reliable, server-side file operation logs provide direct and trustworthy information on the performed activities.&lt;/p&gt;

&lt;p&gt;7️⃣ Server-side monitoring can also serve as a basis for attack detection. Ransomware families tend to create, rename, and delete files with varying frequency, depending on their type. &lt;/p&gt;

&lt;p&gt;🔶 A properly designed and implemented logging system, these characteristic operation sequences can be detected at fine temporal granularity.&lt;/p&gt;

</description>
      <category>linux</category>
      <category>ai</category>
      <category>devops</category>
      <category>cloud</category>
    </item>
    <item>
      <title>TERMy installation problem</title>
      <dc:creator>urdevops</dc:creator>
      <pubDate>Sat, 05 Sep 2026 20:33:58 +0000</pubDate>
      <link>https://dev.to/urdevops24/termy-installation-problem-2iil</link>
      <guid>https://dev.to/urdevops24/termy-installation-problem-2iil</guid>
      <description>&lt;p&gt;NPC-Forge is a framework for building conversational agents with distinct personalities, multi-turn context, sentiment analysis, and tool-call support. NPCs run on the CPU (web browser or OS) even on embedded systems and obsolete hardware without relying on machine learning or LLMs.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;#!/usr/bin/env bash&lt;/span&gt;

&lt;span class="c"&gt;# Clone the forge from the cloud&lt;/span&gt;

git clone https://github.com/gioblu/NPC-Forge.git

&lt;span class="c"&gt;# Step into the forge and install it&lt;/span&gt;

&lt;span class="nb"&gt;cd &lt;/span&gt;NPC-Forge &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; &lt;span class="nb"&gt;chmod&lt;/span&gt; +x setup.sh &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; ./setup.sh

&lt;span class="c"&gt;# Install TERMy&lt;/span&gt;

npc-forge &lt;span class="nb"&gt;install &lt;/span&gt;npcs/termy

&lt;span class="c"&gt;# Chat with TERMy&lt;/span&gt;

termy how are you
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;It is givening an error after running the above script.&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight console"&gt;&lt;code&gt;&lt;span class="go"&gt;termy.sh: line 9: npc-forge: command not found

termy.sh: line 12: termy: command not found
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Even after refreshing the ".bashrc" script it is did not work.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Temporarily add the standard local bin to your path by running:&lt;br&gt;
export PATH="$HOME/.local/bin:$PATH"&lt;/p&gt;

&lt;p&gt;-bash: /home/username/NPC-Forge/npcs/termy/termy.sh: No such file or directory&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Then the following solution worked after many frustrating attempts.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;Clear the old cached paths and rescan your system &lt;span class="k"&gt;for &lt;/span&gt;the new location

&lt;span class="nb"&gt;hash&lt;/span&gt; &lt;span class="nt"&gt;-r&lt;/span&gt;

Check &lt;span class="k"&gt;for &lt;/span&gt;a broken &lt;span class="nb"&gt;alias

type &lt;/span&gt;termy

Navigate back to the cloned folder

&lt;span class="nb"&gt;cd&lt;/span&gt; ~/NPC-Forge

Make sure the script is executable

&lt;span class="nb"&gt;chmod&lt;/span&gt; +x npcs/termy/termy.sh

Re-run the installation

npc-forge &lt;span class="nb"&gt;install &lt;/span&gt;npcs/termy

Test it again

termy how are you
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Now it worked!!!&lt;/p&gt;

&lt;p&gt;I hope this helps.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/gioblu/NPC-Forge/tree/main/npcs/termy" rel="noopener noreferrer"&gt;https://github.com/gioblu/NPC-Forge/tree/main/npcs/termy&lt;/a&gt;&lt;/p&gt;

</description>
      <category>linux</category>
      <category>cli</category>
      <category>devops</category>
      <category>cloud</category>
    </item>
    <item>
      <title>Consistent</title>
      <dc:creator>urdevops</dc:creator>
      <pubDate>Sat, 05 Sep 2026 19:55:18 +0000</pubDate>
      <link>https://dev.to/urdevops24/consistent-5cnp</link>
      <guid>https://dev.to/urdevops24/consistent-5cnp</guid>
      <description>&lt;p&gt;Hi!&lt;/p&gt;

&lt;p&gt;DevOps, Cloud, SRE, Platform Software and Coding Nerds!&lt;/p&gt;

&lt;p&gt;Sorry! for not being consistent for a long time. But now I am trying to be a little bit consistent every day.&lt;/p&gt;

&lt;p&gt;I have not decided the frequency of posting articles. But when I learn something new, I will share with the community. &lt;/p&gt;

</description>
      <category>linux</category>
      <category>learning</category>
      <category>devops</category>
      <category>sre</category>
    </item>
    <item>
      <title>ELK stack &amp; Graylog</title>
      <dc:creator>urdevops</dc:creator>
      <pubDate>Mon, 23 Jun 2025 17:45:32 +0000</pubDate>
      <link>https://dev.to/urdevops24/elk-stack-graylog-2de</link>
      <guid>https://dev.to/urdevops24/elk-stack-graylog-2de</guid>
      <description>&lt;p&gt;I faced a nasty ELK &amp;amp; Graylog issue today.&lt;/p&gt;

&lt;p&gt;I am working an internship project.&lt;/p&gt;

&lt;p&gt;The first installation tutorial I tried was in conjuction with the Filebeat.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://docs.vultr.com/install-elastic-stack-on-ubuntu-20-04" rel="noopener noreferrer"&gt;https://docs.vultr.com/install-elastic-stack-on-ubuntu-20-04&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;But the project is designed with Elk stack &amp;amp; Graylog.&lt;/p&gt;

&lt;p&gt;Recently I tried this article but still no success.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://docs.vultr.com/how-to-install-graylog-on-ubuntu-20-04#prerequisites" rel="noopener noreferrer"&gt;https://docs.vultr.com/how-to-install-graylog-on-ubuntu-20-04#prerequisites&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I tried different solutions from deleting everything related elk stack but still ElasticSearch is not starting. &lt;/p&gt;

&lt;p&gt;I am stuck kindly help.&lt;/p&gt;

&lt;p&gt;Here are the details....&lt;/p&gt;

&lt;p&gt;systemd details:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fk47uoe7opq5upvvlpdxw.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fk47uoe7opq5upvvlpdxw.png" alt="systemd details" width="800" height="224"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;journalctl -u elasticsearch.service | less&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F9zxe30z0y8j6t4a8b0yk.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F9zxe30z0y8j6t4a8b0yk.png" alt="journalctl details" width="800" height="455"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;elasticsearch log files&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[2025-06-23T17:10:32.188+0000][2927][gc,init] CardTable entry size: 512
[2025-06-23T17:10:32.190+0000][2927][gc     ] Using G1
[2025-06-23T17:10:33.013+0000][2927][gc,init] Version: 21.0.7+6-Ubuntu-0ubuntu120.04 (release)
[2025-06-23T17:10:33.013+0000][2927][gc,init] CPUs: 4 total, 4 available
[2025-06-23T17:10:33.013+0000][2927][gc,init] Memory: 8700M
[2025-06-23T17:10:33.013+0000][2927][gc,init] Large Page Support: Disabled
[2025-06-23T17:10:33.013+0000][2927][gc,init] NUMA Support: Disabled
[2025-06-23T17:10:33.013+0000][2927][gc,init] Compressed Oops: Enabled (32-bit)
[2025-06-23T17:10:33.013+0000][2927][gc,init] Heap Region Size: 1M
[2025-06-23T17:10:33.013+0000][2927][gc,init] Heap Min Capacity: 1G
[2025-06-23T17:10:33.013+0000][2927][gc,init] Heap Initial Capacity: 1G
[2025-06-23T17:10:33.013+0000][2927][gc,init] Heap Max Capacity: 1G
[2025-06-23T17:10:33.013+0000][2927][gc,init] Pre-touch: Enabled
[2025-06-23T17:10:33.014+0000][2927][gc,init] Parallel Workers: 4
[2025-06-23T17:10:33.014+0000][2927][gc,init] Concurrent Workers: 1
[2025-06-23T17:10:33.014+0000][2927][gc,init] Concurrent Refinement Workers: 4
[2025-06-23T17:10:33.014+0000][2927][gc,init] Periodic GC: Disabled
[2025-06-23T17:10:33.223+0000][2927][gc,metaspace] CDS archive(s) mapped at: [0x00007f5a33000000-0x00007f5a33c97000-0x00007f5a33c97000), size 13201408, SharedBaseAddress: 0x00007f5a33000000, ArchiveRelocationMode: 1.
[2025-06-23T17:10:33.224+0000][2927][gc,metaspace] Compressed class space mapped at: 0x00007f5a34000000-0x00007f5a74000000, reserved size: 1073741824
[2025-06-23T17:10:33.224+0000][2927][gc,metaspace] Narrow klass base: 0x00007f5a33000000, Narrow klass shift: 0, Narrow klass range: 0x100000000
[2025-06-23T17:10:33.791+0000][2927][gc,heap,exit] Heap
[2025-06-23T17:10:33.791+0000][2927][gc,heap,exit]  garbage-first heap   total 1048576K, used 7217K [0x00000000c0000000, 0x0000000100000000)
[2025-06-23T17:10:33.791+0000][2927][gc,heap,exit]   region size 1024K, 5 young (5120K), 0 survivors (0K)
[2025-06-23T17:10:33.791+0000][2927][gc,heap,exit]  Metaspace       used 561K, committed 704K, reserved 1114112K
[2025-06-23T17:10:33.792+0000][2927][gc,heap,exit]   class space    used 46K, committed 128K, reserved 1048576K
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[2025-06-23T17:10:32.188+0000][2927][gc,init] CardTable entry size: 512
[2025-06-23T17:10:32.190+0000][2927][gc     ] Using G1
[2025-06-23T17:10:33.013+0000][2927][gc,init] Version: 21.0.7+6-Ubuntu-0ubuntu120.04 (release)
[2025-06-23T17:10:33.013+0000][2927][gc,init] CPUs: 4 total, 4 available
[2025-06-23T17:10:33.013+0000][2927][gc,init] Memory: 8700M
[2025-06-23T17:10:33.013+0000][2927][gc,init] Large Page Support: Disabled
[2025-06-23T17:10:33.013+0000][2927][gc,init] NUMA Support: Disabled
[2025-06-23T17:10:33.013+0000][2927][gc,init] Compressed Oops: Enabled (32-bit)
[2025-06-23T17:10:33.013+0000][2927][gc,init] Heap Region Size: 1M
[2025-06-23T17:10:33.013+0000][2927][gc,init] Heap Min Capacity: 1G
[2025-06-23T17:10:33.013+0000][2927][gc,init] Heap Initial Capacity: 1G
[2025-06-23T17:10:33.013+0000][2927][gc,init] Heap Max Capacity: 1G
[2025-06-23T17:10:33.013+0000][2927][gc,init] Pre-touch: Enabled
[2025-06-23T17:10:33.014+0000][2927][gc,init] Parallel Workers: 4
[2025-06-23T17:10:33.014+0000][2927][gc,init] Concurrent Workers: 1
[2025-06-23T17:10:33.014+0000][2927][gc,init] Concurrent Refinement Workers: 4
[2025-06-23T17:10:33.014+0000][2927][gc,init] Periodic GC: Disabled
[2025-06-23T17:10:33.223+0000][2927][gc,metaspace] CDS archive(s) mapped at: [0x00007f5a33000000-0x00007f5a33c97000-0x00007f5a33c97000), size 13201408, SharedBaseAddress: 0x00007f5a33000000, ArchiveRelocationMode: 1.
[2025-06-23T17:10:33.224+0000][2927][gc,metaspace] Compressed class space mapped at: 0x00007f5a34000000-0x00007f5a74000000, reserved size: 1073741824
[2025-06-23T17:10:33.224+0000][2927][gc,metaspace] Narrow klass base: 0x00007f5a33000000, Narrow klass shift: 0, Narrow klass range: 0x100000000
[2025-06-23T17:10:33.791+0000][2927][gc,heap,exit] Heap
[2025-06-23T17:10:33.791+0000][2927][gc,heap,exit]  garbage-first heap   total 1048576K, used 7217K [0x00000000c0000000, 0x0000000100000000)
[2025-06-23T17:10:33.791+0000][2927][gc,heap,exit]   region size 1024K, 5 young (5120K), 0 survivors (0K)
[2025-06-23T17:10:33.791+0000][2927][gc,heap,exit]  Metaspace       used 561K, committed 704K, reserved 1114112K
[2025-06-23T17:10:33.792+0000][2927][gc,heap,exit]   class space    used 46K, committed 128K, reserved 1048576K
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[2025-06-23T17:10:32.188+0000][2927][gc,init] CardTable entry size: 512
[2025-06-23T17:10:32.190+0000][2927][gc     ] Using G1
[2025-06-23T17:10:33.013+0000][2927][gc,init] Version: 21.0.7+6-Ubuntu-0ubuntu120.04 (release)
[2025-06-23T17:10:33.013+0000][2927][gc,init] CPUs: 4 total, 4 available
[2025-06-23T17:10:33.013+0000][2927][gc,init] Memory: 8700M
[2025-06-23T17:10:33.013+0000][2927][gc,init] Large Page Support: Disabled
[2025-06-23T17:10:33.013+0000][2927][gc,init] NUMA Support: Disabled
[2025-06-23T17:10:33.013+0000][2927][gc,init] Compressed Oops: Enabled (32-bit)
[2025-06-23T17:10:33.013+0000][2927][gc,init] Heap Region Size: 1M
[2025-06-23T17:10:33.013+0000][2927][gc,init] Heap Min Capacity: 1G
[2025-06-23T17:10:33.013+0000][2927][gc,init] Heap Initial Capacity: 1G
[2025-06-23T17:10:33.013+0000][2927][gc,init] Heap Max Capacity: 1G
[2025-06-23T17:10:33.013+0000][2927][gc,init] Pre-touch: Enabled
[2025-06-23T17:10:33.014+0000][2927][gc,init] Parallel Workers: 4
[2025-06-23T17:10:33.014+0000][2927][gc,init] Concurrent Workers: 1
[2025-06-23T17:10:33.014+0000][2927][gc,init] Concurrent Refinement Workers: 4
[2025-06-23T17:10:33.014+0000][2927][gc,init] Periodic GC: Disabled
[2025-06-23T17:10:33.223+0000][2927][gc,metaspace] CDS archive(s) mapped at: [0x00007f5a33000000-0x00007f5a33c97000-0x00007f5a33c97000), size 13201408, SharedBaseAddress: 0x00007f5a33000000, ArchiveRelocationMode: 1.
[2025-06-23T17:10:33.224+0000][2927][gc,metaspace] Compressed class space mapped at: 0x00007f5a34000000-0x00007f5a74000000, reserved size: 1073741824
[2025-06-23T17:10:33.224+0000][2927][gc,metaspace] Narrow klass base: 0x00007f5a33000000, Narrow klass shift: 0, Narrow klass range: 0x100000000
[2025-06-23T17:10:33.791+0000][2927][gc,heap,exit] Heap
[2025-06-23T17:10:33.791+0000][2927][gc,heap,exit]  garbage-first heap   total 1048576K, used 7217K [0x00000000c0000000, 0x0000000100000000)
[2025-06-23T17:10:33.791+0000][2927][gc,heap,exit]   region size 1024K, 5 young (5120K), 0 survivors (0K)
[2025-06-23T17:10:33.791+0000][2927][gc,heap,exit]  Metaspace       used 561K, committed 704K, reserved 1114112K
[2025-06-23T17:10:33.792+0000][2927][gc,heap,exit]   class space    used 46K, committed 128K, reserved 1048576K
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[2025-06-23T17:10:32.188+0000][2927][gc,init] CardTable entry size: 512
[2025-06-23T17:10:32.190+0000][2927][gc     ] Using G1
[2025-06-23T17:10:33.013+0000][2927][gc,init] Version: 21.0.7+6-Ubuntu-0ubuntu120.04 (release)
[2025-06-23T17:10:33.013+0000][2927][gc,init] CPUs: 4 total, 4 available
[2025-06-23T17:10:33.013+0000][2927][gc,init] Memory: 8700M
[2025-06-23T17:10:33.013+0000][2927][gc,init] Large Page Support: Disabled
[2025-06-23T17:10:33.013+0000][2927][gc,init] NUMA Support: Disabled
[2025-06-23T17:10:33.013+0000][2927][gc,init] Compressed Oops: Enabled (32-bit)
[2025-06-23T17:10:33.013+0000][2927][gc,init] Heap Region Size: 1M
[2025-06-23T17:10:33.013+0000][2927][gc,init] Heap Min Capacity: 1G
[2025-06-23T17:10:33.013+0000][2927][gc,init] Heap Initial Capacity: 1G
[2025-06-23T17:10:33.013+0000][2927][gc,init] Heap Max Capacity: 1G
[2025-06-23T17:10:33.013+0000][2927][gc,init] Pre-touch: Enabled
[2025-06-23T17:10:33.014+0000][2927][gc,init] Parallel Workers: 4
[2025-06-23T17:10:33.014+0000][2927][gc,init] Concurrent Workers: 1
[2025-06-23T17:10:33.014+0000][2927][gc,init] Concurrent Refinement Workers: 4
[2025-06-23T17:10:33.014+0000][2927][gc,init] Periodic GC: Disabled
[2025-06-23T17:10:33.223+0000][2927][gc,metaspace] CDS archive(s) mapped at: [0x00007f5a33000000-0x00007f5a33c97000-0x00007f5a33c97000), size 13201408, SharedBaseAddress: 0x00007f5a33000000, ArchiveRelocationMode: 1.
[2025-06-23T17:10:33.224+0000][2927][gc,metaspace] Compressed class space mapped at: 0x00007f5a34000000-0x00007f5a74000000, reserved size: 1073741824
[2025-06-23T17:10:33.224+0000][2927][gc,metaspace] Narrow klass base: 0x00007f5a33000000, Narrow klass shift: 0, Narrow klass range: 0x100000000
[2025-06-23T17:10:33.791+0000][2927][gc,heap,exit] Heap
[2025-06-23T17:10:33.791+0000][2927][gc,heap,exit]  garbage-first heap   total 1048576K, used 7217K [0x00000000c0000000, 0x0000000100000000)
[2025-06-23T17:10:33.791+0000][2927][gc,heap,exit]   region size 1024K, 5 young (5120K), 0 survivors (0K)
[2025-06-23T17:10:33.791+0000][2927][gc,heap,exit]  Metaspace       used 561K, committed 704K, reserved 1114112K
[2025-06-23T17:10:33.792+0000][2927][gc,heap,exit]   class space    used 46K, committed 128K, reserved 1048576K
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[2025-06-23T17:10:32.188+0000][2927][gc,init] CardTable entry size: 512
[2025-06-23T17:10:32.190+0000][2927][gc     ] Using G1
[2025-06-23T17:10:33.013+0000][2927][gc,init] Version: 21.0.7+6-Ubuntu-0ubuntu120.04 (release)
[2025-06-23T17:10:33.013+0000][2927][gc,init] CPUs: 4 total, 4 available
[2025-06-23T17:10:33.013+0000][2927][gc,init] Memory: 8700M
[2025-06-23T17:10:33.013+0000][2927][gc,init] Large Page Support: Disabled
[2025-06-23T17:10:33.013+0000][2927][gc,init] NUMA Support: Disabled
[2025-06-23T17:10:33.013+0000][2927][gc,init] Compressed Oops: Enabled (32-bit)
[2025-06-23T17:10:33.013+0000][2927][gc,init] Heap Region Size: 1M
[2025-06-23T17:10:33.013+0000][2927][gc,init] Heap Min Capacity: 1G
[2025-06-23T17:10:33.013+0000][2927][gc,init] Heap Initial Capacity: 1G
[2025-06-23T17:10:33.013+0000][2927][gc,init] Heap Max Capacity: 1G
[2025-06-23T17:10:33.013+0000][2927][gc,init] Pre-touch: Enabled
[2025-06-23T17:10:33.014+0000][2927][gc,init] Parallel Workers: 4
[2025-06-23T17:10:33.014+0000][2927][gc,init] Concurrent Workers: 1
[2025-06-23T17:10:33.014+0000][2927][gc,init] Concurrent Refinement Workers: 4
[2025-06-23T17:10:33.014+0000][2927][gc,init] Periodic GC: Disabled
[2025-06-23T17:10:33.223+0000][2927][gc,metaspace] CDS archive(s) mapped at: [0x00007f5a33000000-0x00007f5a33c97000-0x00007f5a33c97000), size 13201408, SharedBaseAddress: 0x00007f5a33000000, ArchiveRelocationMode: 1.
[2025-06-23T17:10:33.224+0000][2927][gc,metaspace] Compressed class space mapped at: 0x00007f5a34000000-0x00007f5a74000000, reserved size: 1073741824
[2025-06-23T17:10:33.224+0000][2927][gc,metaspace] Narrow klass base: 0x00007f5a33000000, Narrow klass shift: 0, Narrow klass range: 0x100000000
[2025-06-23T17:10:33.791+0000][2927][gc,heap,exit] Heap
[2025-06-23T17:10:33.791+0000][2927][gc,heap,exit]  garbage-first heap   total 1048576K, used 7217K [0x00000000c0000000, 0x0000000100000000)
[2025-06-23T17:10:33.791+0000][2927][gc,heap,exit]   region size 1024K, 5 young (5120K), 0 survivors (0K)
[2025-06-23T17:10:33.791+0000][2927][gc,heap,exit]  Metaspace       used 561K, committed 704K, reserved 1114112K
[2025-06-23T17:10:33.792+0000][2927][gc,heap,exit]   class space    used 46K, committed 128K, reserved 1048576K
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>beginners</category>
      <category>devops</category>
      <category>sysadmin</category>
      <category>ai</category>
    </item>
    <item>
      <title>[Boost]</title>
      <dc:creator>urdevops</dc:creator>
      <pubDate>Fri, 13 Dec 2024 21:00:22 +0000</pubDate>
      <link>https://dev.to/urdevops24/-3b7j</link>
      <guid>https://dev.to/urdevops24/-3b7j</guid>
      <description>&lt;div class="ltag__link"&gt;
  &lt;a href="/urdevops24" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__pic"&gt;
      &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F2500027%2F5c5a59af-2582-4ab3-b2d6-3ecfc2892d6c.jpg" alt="urdevops24"&gt;
    &lt;/div&gt;
  &lt;/a&gt;
  &lt;a href="/urdevops24/learning-devops-projects-from-beginner-to-advance-59ld" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__content"&gt;
      &lt;h2&gt;Learning Devops projects from beginner to advance.&lt;/h2&gt;
      &lt;h3&gt;urdevops ・ Dec 13&lt;/h3&gt;
      &lt;div class="ltag__link__taglist"&gt;
        &lt;span class="ltag__link__tag"&gt;#devops&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#beginners&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#automation&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#bash&lt;/span&gt;
      &lt;/div&gt;
    &lt;/div&gt;
  &lt;/a&gt;
&lt;/div&gt;


</description>
    </item>
    <item>
      <title>Learning Devops projects from beginner to advance.</title>
      <dc:creator>urdevops</dc:creator>
      <pubDate>Fri, 13 Dec 2024 20:59:47 +0000</pubDate>
      <link>https://dev.to/urdevops24/learning-devops-projects-from-beginner-to-advance-59ld</link>
      <guid>https://dev.to/urdevops24/learning-devops-projects-from-beginner-to-advance-59ld</guid>
      <description>&lt;p&gt;Hi, I am self-learning devops for about a year now. This is a series of posts about devops-related projects from beginner to advanced for devops skill development.&lt;/p&gt;

&lt;p&gt;I will also share some deep insights about devops and cloud computing.&lt;/p&gt;

&lt;p&gt;Feel free to share your comments and insights.&lt;/p&gt;

&lt;p&gt;Thanks.&lt;/p&gt;

</description>
      <category>devops</category>
      <category>beginners</category>
      <category>automation</category>
      <category>bash</category>
    </item>
  </channel>
</rss>
