<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Trang chủ on Sumvo</title><link>https://sumvo.site/</link><description>Recent content in Trang chủ on Sumvo</description><generator>Hugo</generator><language>vi</language><lastBuildDate>Wed, 08 Jul 2026 00:00:00 +0000</lastBuildDate><atom:link href="https://sumvo.site/index.xml" rel="self" type="application/rss+xml"/><item><title>Lệnh thường dùng</title><link>https://sumvo.site/docs/ghi-chu-ky-thuat/linux/lenh-thuong-dung/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://sumvo.site/docs/ghi-chu-ky-thuat/linux/lenh-thuong-dung/</guid><description>&lt;h1 id="lệnh-thường-dùng"&gt;Lệnh thường dùng&lt;a class="anchor" href="#l%e1%bb%87nh-th%c6%b0%e1%bb%9dng-d%c3%b9ng"&gt;#&lt;/a&gt;&lt;/h1&gt;
&lt;table&gt;
	&lt;thead&gt;
			&lt;tr&gt;
					&lt;th&gt;Lệnh&lt;/th&gt;
					&lt;th&gt;Mô tả&lt;/th&gt;
			&lt;/tr&gt;
	&lt;/thead&gt;
	&lt;tbody&gt;
			&lt;tr&gt;
					&lt;td&gt;&lt;code&gt;df -h&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;Xem dung lượng ổ đĩa&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;&lt;code&gt;du -sh *&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;Kích thước từng thư mục&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;&lt;code&gt;ss -tulpn&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;Cổng đang lắng nghe&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;&lt;code&gt;journalctl -u &amp;lt;service&amp;gt; -f&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;Theo dõi log service&lt;/td&gt;
			&lt;/tr&gt;
	&lt;/tbody&gt;
&lt;/table&gt;</description></item><item><title>Viết bài mới</title><link>https://sumvo.site/docs/huong-dan-su-dung/viet-bai-moi/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://sumvo.site/docs/huong-dan-su-dung/viet-bai-moi/</guid><description>&lt;h1 id="viết-bài-mới"&gt;Viết bài mới&lt;a class="anchor" href="#vi%e1%ba%bft-b%c3%a0i-m%e1%bb%9bi"&gt;#&lt;/a&gt;&lt;/h1&gt;
&lt;p&gt;Tạo trang tài liệu mới:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" style="color:#e2e4e5;background-color:#282a36;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"&gt;&lt;code class="language-bash" data-lang="bash"&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;hugo new content docs/ten-sach/ten-trang.md&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Tạo bài blog mới:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" style="color:#e2e4e5;background-color:#282a36;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"&gt;&lt;code class="language-bash" data-lang="bash"&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;hugo new content posts/ten-bai.md&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Chạy server xem trước tại &lt;code&gt;http://localhost:1313&lt;/code&gt;:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" style="color:#e2e4e5;background-color:#282a36;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"&gt;&lt;code class="language-bash" data-lang="bash"&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;hugo server -D&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;</description></item><item><title>Tổ chức nội dung</title><link>https://sumvo.site/docs/huong-dan-su-dung/to-chuc-noi-dung/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://sumvo.site/docs/huong-dan-su-dung/to-chuc-noi-dung/</guid><description>&lt;h1 id="tổ-chức-nội-dung"&gt;Tổ chức nội dung&lt;a class="anchor" href="#t%e1%bb%95-ch%e1%bb%a9c-n%e1%bb%99i-dung"&gt;#&lt;/a&gt;&lt;/h1&gt;
&lt;p&gt;Cấu trúc thư mục ánh xạ trực tiếp thành cây sidebar:&lt;/p&gt;
&lt;pre tabindex="0"&gt;&lt;code&gt;content/
├── docs/ # &amp;#34;Kệ sách&amp;#34;
│ ├── ten-sach/ # Sách (thư mục có _index.md)
│ │ ├── _index.md
│ │ ├── chuong-1/ # Chương (thư mục con)
│ │ │ ├── _index.md
│ │ │ └── trang-1.md # Trang
│ │ └── trang-le.md
└── posts/ # Blog&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Mẹo:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;weight&lt;/code&gt; trong front matter quyết định thứ tự trong sidebar (nhỏ hơn = lên trên).&lt;/li&gt;
&lt;li&gt;&lt;code&gt;bookCollapseSection: true&lt;/code&gt; trong &lt;code&gt;_index.md&lt;/code&gt; làm section gập lại được.&lt;/li&gt;
&lt;li&gt;&lt;code&gt;bookHidden: true&lt;/code&gt; ẩn trang khỏi sidebar.&lt;/li&gt;
&lt;/ul&gt;</description></item><item><title>Xin chào thế giới</title><link>https://sumvo.site/posts/xin-chao/</link><pubDate>Wed, 08 Jul 2026 00:00:00 +0000</pubDate><guid>https://sumvo.site/posts/xin-chao/</guid><description>&lt;p&gt;Bài viết đầu tiên trên &lt;strong&gt;sumvo.site&lt;/strong&gt;. Site chạy bằng Hugo + theme hugo-book, deploy qua GitHub Pages.&lt;/p&gt;</description></item></channel></rss>