<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>時間 &#8211; 記下來</title>
	<atom:link href="https://noter.tw/tag/%E6%99%82%E9%96%93/feed/" rel="self" type="application/rss+xml" />
	<link>https://noter.tw</link>
	<description>一路上踩到的坑、遇到的問題，一點一滴記下來，希望能幫助到需要的人~</description>
	<lastBuildDate>Fri, 19 Aug 2022 04:01:42 +0000</lastBuildDate>
	<language>zh-TW</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.6.3</generator>

<image>
	<url>https://noter.tw/wp-content/uploads/cropped-old-1130742_1920-1-32x32.jpg</url>
	<title>時間 &#8211; 記下來</title>
	<link>https://noter.tw</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Ubuntu &#8211; 基本指令備忘(持續更新)</title>
		<link>https://noter.tw/113/ubuntu-%e5%9f%ba%e6%9c%ac%e6%8c%87%e4%bb%a4%e5%82%99%e5%bf%98%e6%8c%81%e7%ba%8c%e6%9b%b4%e6%96%b0/</link>
					<comments>https://noter.tw/113/ubuntu-%e5%9f%ba%e6%9c%ac%e6%8c%87%e4%bb%a4%e5%82%99%e5%bf%98%e6%8c%81%e7%ba%8c%e6%9b%b4%e6%96%b0/#respond</comments>
		
		<dc:creator><![CDATA[黃小蛙]]></dc:creator>
		<pubDate>Thu, 22 Dec 2011 14:47:40 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[系統]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[時間]]></category>
		<category><![CDATA[檔案]]></category>
		<category><![CDATA[壓縮]]></category>
		<category><![CDATA[網路]]></category>
		<guid isPermaLink="false">https://noter.tw/?p=113</guid>

					<description><![CDATA[<p>小蛙在使用 Linux 的時候一路走來始終如一，始終如一的是跌跌撞撞，一些很基本的指令紀錄一下，遇到什麼就記什麼，下次要查找也會比較方便。雖然有 -h, &#8211;help，或是 man 可以查找&#46;&#46;&#46;</p>
<p>這篇文章 <a rel="nofollow" href="https://noter.tw/113/ubuntu-%e5%9f%ba%e6%9c%ac%e6%8c%87%e4%bb%a4%e5%82%99%e5%bf%98%e6%8c%81%e7%ba%8c%e6%9b%b4%e6%96%b0/" data-wpel-link="internal">Ubuntu &#8211; 基本指令備忘(持續更新)</a> 最早出現於 <a rel="nofollow" href="https://noter.tw" data-wpel-link="internal">記下來</a>。</p>
]]></description>
										<content:encoded><![CDATA[
<p> 小蛙在使用 Linux 的時候一路走來始終如一，始終如一的是跌跌撞撞，一些很基本的指令紀錄一下，遇到什麼就記什麼，下次要查找也會比較方便。雖然有 -h, &#8211;help，或是 man 可以查找，不過總還是覺得麻煩 &#8230; </p>



<span id="more-113"></span>



<h2 class="para wp-block-heading">時間相關</h2>



<h3 class="para wp-block-heading">查看目前時間</h3>



<pre class="wp-block-preformatted wp-block-syntaxhighlighter-code">顯示現在日期 + 時間
date
顯示四位數西元年
date +"%Y"
2018
顯示西元年後兩位
date +"%y"
18 </pre>



<p>

可以到<a href="https://www.computerhope.com/unix/udate.htm" target="_blank" rel="noreferrer noopener nofollow external" data-wpel-link="external" class="wpel-icon-right">這邊<span class="wpel-icon wpel-image wpel-icon-6"></span></a>查看更多參數。

</p>



<h3 class="para wp-block-heading">校正時間</h3>



<pre class="wp-block-preformatted wp-block-syntaxhighlighter-code">ntpdate time.stdtime.gov.tw</pre>



<h3 class="para wp-block-heading">設定時區</h3>



<pre class="wp-block-preformatted wp-block-syntaxhighlighter-code">dpkg-reconfigure tzdata</pre>



<h2 class="wp-block-heading">檔案系統</h2>



<h3 class="para wp-block-heading">建立捷徑</h3>



<pre class="wp-block-preformatted wp-block-syntaxhighlighter-code">ln -s 要建立軟連結的位置或檔案 軟連結名稱
ln -s /var/www/ www
# 於現在位置中建立一個名為 www 的捷徑，捷徑對應到的目的地為 /var/www</pre>



<h3 class="para wp-block-heading">查找檔案內容</h3>



<pre class="wp-block-preformatted wp-block-syntaxhighlighter-code"># 查找此目錄下所有檔案及子目錄，是否包含內容
grep -ir "要查找的內容" *</pre>



<p>

上面的方法可能會遇到某些非文字檔造成的錯誤，可改成下面這種

</p>



<pre class="wp-block-preformatted wp-block-syntaxhighlighter-code">find ./ -name "*.jsp" -exec grep -H "要查找的字" {} \;

# 說明
# ./ : 搜尋的目錄
# -name "*.jsp" : 要搜尋的檔案類型
# -exec grep -H "要查找的字" {} \;  : 「要查找的字」換成要搜尋的字串，其他的照打就好</pre>



<h3 class="para wp-block-heading">進入設定crontab</h3>



<pre class="wp-block-preformatted wp-block-syntaxhighlighter-code">crontab -e</pre>



<h3 class="para wp-block-heading">查找檔案</h3>



<pre class="wp-block-preformatted wp-block-syntaxhighlighter-code">locate php.ini

# 如果很久沒更新或是找不到可以先更新
updatedb</pre>



<h3 class="para wp-block-heading">與 find 搭配的使用術</h3>



<pre class="wp-block-preformatted wp-block-syntaxhighlighter-code">複製檔名為 note_ 開頭的所有檔案到 /data 下
find . -name "note_*" -type f | xargs -i cp {} /data

計算所有檔名為 access_* 開頭的檔案大小
find . -name "access_*" -type f | xargs du -ch

刪除檔名開頭為 cata_* 的所有檔案
find . -name "cata_*" -type f | xargs rm -rf</pre>



<h3 class="para wp-block-heading">查看資料夾使用大小</h3>



<pre class="wp-block-preformatted wp-block-syntaxhighlighter-code"># 列出所有資料包含大小
du
&gt; 123 ./xxxxx
&gt; 234 ./vvvvv
&gt; ...
 
# 列出該目錄下所有檔案大小加總，以 MB 表示
du -sm
&gt; 1234
 
# 列出該目錄下所有檔案大小加總，以 GB 表示
du -sm
&gt; 4.9G</pre>



<h3 class="para wp-block-heading">刪除 n 天前檔案</h3>



<pre class="wp-block-preformatted wp-block-syntaxhighlighter-code"># 找出目錄中，距離現在 1 天以前的檔案
find -mtime +1

# 找出目錄中，距離現在 3 天以前的檔案，並且刪除他(們)
find -mitime +3 -exec rm {} \;</pre>



<h3 class="para wp-block-heading">計算路徑中檔案數或目錄數</h3>



<p>

參考來源: <a href="http://note.tc.edu.tw/638.html" target="_blank" rel="noreferrer noopener nofollow external" data-wpel-link="external" class="wpel-icon-right">精讚部落<span class="wpel-icon wpel-image wpel-icon-6"></span></a></p>



<pre class="wp-block-preformatted wp-block-syntaxhighlighter-code"># 計算檔案
ls -l | grep "^-" | wc -l
find . -type f | wc -l


# 計算目錄
ls -l | grep "^d" | wc -l

# 計算 iptables 的規則數(不精確)
iptables -S | wc -l</pre>



<h3 class="para wp-block-heading">在檔案最下方加入一行文字</h3>



<pre class="wp-block-preformatted wp-block-syntaxhighlighter-code">echo "123" &gt;&gt; file</pre>



<h3 class="para wp-block-heading">加入一行文字在檔案最上方 &#8211; prepend</h3>



<p>

參考來源:&nbsp;<a href="http://stackoverflow.com/questions/54365/prepend-to-a-file-one-liner-shell" target="_blank" rel="noreferrer noopener nofollow external" data-wpel-link="external" class="wpel-icon-right">Stack Overflow<span class="wpel-icon wpel-image wpel-icon-6"></span></a></p>



<pre class="wp-block-preformatted wp-block-syntaxhighlighter-code">echo "text" | cat - yourfile &gt; /tmp/out &amp;&amp; mv /tmp/out yourfile</pre>



<h3 class="para wp-block-heading">查看檔案個數</h3>



<pre class="wp-block-preformatted wp-block-syntaxhighlighter-code"># 顯示檔案數目 1
ls -laR | grep "^-" | awk 'END{print "Number of files："NR}'

# 顯示檔案數目 1
find DIR_NAME -type f | wc -l
 
# 顯示目錄數目
ls -laR |grep "^d" |awk 'END{print "Number of directories："NR}'</pre>



<h3 class="para wp-block-heading">依日期新到舊排序、並只列出前 5 筆</h3>



<pre class="wp-block-preformatted wp-block-syntaxhighlighter-code"># l: 詳細資料、h: 以 MB 顯示、t: 日期新到舊、head -5: 列出前 5 筆
ls -lht | head -5 </pre>



<h3 class="para wp-block-heading">依檔案大小排序</h3>



<pre class="wp-block-preformatted wp-block-syntaxhighlighter-code"># 大到小排序
ls -Sl

# 小到大排序 (反轉大到小)
ls -Slr</pre>



<h2 class="para wp-block-heading">打包、壓縮相關</h2>



<h3 class="para wp-block-heading">使用 tar</h3>



<pre class="wp-block-preformatted wp-block-syntaxhighlighter-code"># 純打包不壓縮
# tar cvf 壓縮擋名稱 要壓縮的檔案或目錄
tar cvf test.tar ./*
 
# 解開包
# tar xvf 打包檔名稱
tar xvf test.tar
 
# 使用 gzip 壓縮
# tar zcvf 壓縮檔名稱 要壓縮的檔案或目錄
tar zcvf test.tar.gz ./*
 
# 解壓縮 gzip
# tar xvf 壓縮檔名稱
tar xvf test.tar.gz
 
# 使用 bz2 壓縮
# tar -jpcv -f 壓縮檔名稱 要壓縮的檔案或目錄
tar -jpcv -f /root/tt.tar.bz2 /root
 
# 使用 bz2 壓縮(略過某些目錄或檔案)
# tar -jpcv -f 壓縮檔名稱 要壓縮的檔案或目錄 --exclude=要略過的檔案
tar -jpcv -f /root/tt.tar.bz2 /root/Dropbox
  
# 使用 bz2 解壓縮
# tar -jxv -f 壓縮檔名稱 -C 解壓縮到
tar -jxv -f tt.tar.bz2 -C /root
 
# 查看打包檔案
tar -jtv -f /root/etc.tar.bz2</pre>



<h3 class="para wp-block-heading">使用 unzip</h3>



<pre class="wp-block-preformatted wp-block-syntaxhighlighter-code"># 要先安裝 unzip
sudo apt-get install unzip
 
# 壓縮
zip Filename.zip a.txt b.txt c.txt
 
# 解壓縮
unzip Filename.zip -d directory</pre>



<h2 class="para wp-block-heading">系統相關</h2>



<h3 class="para wp-block-heading">查看已安裝套件</h3>



<pre class="wp-block-preformatted wp-block-syntaxhighlighter-code"># 列出所有已安裝套件
dpkg --get-selections

dpkg -l | grep php

apt list –installed | grep php
 
# 後面可以加上過濾條件，例如： | grep mariadb* </pre>



<h3 class="para wp-block-heading">安裝 bash 自動補齊工具</h3>



<p>必裝！</p>



<pre class="wp-block-preformatted wp-block-syntaxhighlighter-code">apt-get install bash-completion
source /etc/profile
# 裝完之後打字時，按 tab 就會自動補上字或是列出候選字</pre>



<h3 class="para wp-block-heading">將使用者預設 shell 改成 bash (使用者自行登入設定)</h3>



<pre class="wp-block-preformatted wp-block-syntaxhighlighter-code">$ chsh
Password:
Changing the login shell for hans
Enter the new value, or press ENTER for the default
        Login Shell [/bin/sh]: /bin/bash
# 重新登入即可</pre>



<h3 class="para wp-block-heading">將使用者預設 shell 改成 bash (系統使用者設定)</h3>



<pre class="wp-block-preformatted wp-block-syntaxhighlighter-code">vim /etc/passwd
# 找到要修改的帳號，把 /bin/sh 改成 /bin/bash
wazai:x:0000:0000::/home/wazai:/bin/bash</pre>



<h3 class="para wp-block-heading">修改使用者建立目錄時的預設權限</h3>



<pre class="wp-block-preformatted wp-block-syntaxhighlighter-code"># 查看目前設定
umask 
&gt; 0002
 
# 變更設定成 0022
umask 0022</pre>



<h3 class="para wp-block-heading">濾出 ps -aux 中的特定欄位</h3>



<pre class="wp-block-preformatted wp-block-syntaxhighlighter-code">grep "" 查找字串
awk '{print $2}' 印出第二個欄位 pid，前面加上 kill -9 $()就可以刪除該 process (第二行)</pre>



<p>

參考來源: <a href="http://stackoverflow.com/questions/3510673/" target="_blank" rel="noreferrer noopener nofollow external" data-wpel-link="external" class="wpel-icon-right">Stack Overflow<span class="wpel-icon wpel-image wpel-icon-6"></span></a></p>



<pre class="wp-block-preformatted wp-block-syntaxhighlighter-code">ps aux | grep "[j]ava -Xms32m -Xmx1024m" | awk '{print $2}'
kill -9 $(ps aux | grep "[j]ava -Xms32m -Xmx1024m" | awk '{print $2}')</pre>



<h3 class="para wp-block-heading">使用 process name 刪除程式</h3>



<p>列出所有名稱為 apache2 的程式，切出第四個欄位 (pid) 丟給 kill -9 執行</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img decoding="async" src="https://lh3.googleusercontent.com/pw/AM-JKLWRRQoaYL0y1e9Potuv8W1FXjV3EKajIcmbvy2_xU1xmeUQcFHmzzyMgvzDWwgD0bPGf4PJEEjOvg-f-7REHbQkBMQTjK8rXTmh-OOaPmwsTmLHq5xKXtQCVcHchVguzM-jg9YIWUs_HvlvmmYN-_va=w689-h143-no?authuser=1" alt="AM JKLWRRQoaYL0y1e9Potuv8W1FXjV3EKajIcmbvy2 xU1xmeUQcFHmzzyMgvzDWwgD0bPGf4PJEEjOvg f 7REHbQkBMQTjK8rXTmh OOaPmwsTmLHq5xKXtQCVcHchVguzM jg9YIWUs HvlvmmYN va=w689 h143 no?authuser=1 Ubuntu - 基本指令備忘(持續更新)" title="Ubuntu - 基本指令備忘(持續更新)"></figure></div>


<pre class="wp-block-preformatted wp-block-syntaxhighlighter-code">ps -Al | grep apache2 | awk '{print $4}' | xargs kill -9</pre>



<h3 class="para wp-block-heading">儲存與回復 iptables 規則</h3>



<pre class="wp-block-preformatted wp-block-syntaxhighlighter-code">將 iptables 儲存到檔案 (/etc/iptables.rules 可更換目錄及檔案)
iptables-save &gt; /etc/iptables.rules
vim /etc/rc.local
編輯開機檔案，讓 ubuntu 一啟動就還原 iptables
iptables-restore &lt; /etc/iptables.rules
exit 0</pre>



<h2 class="para wp-block-heading">網路相關</h2>



<h3 class="para wp-block-heading">使用指令透過 SSH 上傳檔案</h3>



<pre class="wp-block-preformatted wp-block-syntaxhighlighter-code">scp abc.txt abc@abc.com:/home/abc/</pre>



<h3 class="para wp-block-heading">curl 使用</h3>



<pre class="wp-block-preformatted wp-block-syntaxhighlighter-code">curl -m 3 -s -o /dev/null http://www.google.com.tw/
# -m 執行時間, -s 不顯示連線資訊, -o 輸出到檔案 (輸出到 /dev/null 意思是不顯示網頁內容)
   
curl -o index.html http://www.google.com.tw/
# 把結果輸出到檔案 index.html 中
   
curl -L http://www.abc.com/
# 如果遇到 301 轉址，必須要加參數 -L，否則只會得到 301 的網頁就停止了
 
curl -x proxy.xxx.ooo -i http://www.google.com.tw/
# 使用 proxy
# -i 取得 response header
# -v 取得所有過程
# -D filename 把 cookie 另存新檔
# -b filename 透過指定的 cookie 連線
# -A "xxxxx" 加入 user-agent 資訊
# -e "xxxxx" 設定 referrer</pre>



<h3 class="para wp-block-heading">使用 SCP 傳輸檔案</h3>



<pre class="wp-block-preformatted wp-block-syntaxhighlighter-code"># 發送本機檔案 filename 到遠端 remote 伺服器路徑 /home/ooo/ 中
scp filename xxxx@remote:/home/ooo/
 
# 把遠端 /home/ooo/filename 檔案複製到 ./ 目前路徑
scp xxxx@remote:/home/ooo/filename ./
 
# 多個檔案或資料夾要加入 -r, 如果使用特殊 port 可加上 -P 1234</pre>
<p>這篇文章 <a rel="nofollow" href="https://noter.tw/113/ubuntu-%e5%9f%ba%e6%9c%ac%e6%8c%87%e4%bb%a4%e5%82%99%e5%bf%98%e6%8c%81%e7%ba%8c%e6%9b%b4%e6%96%b0/" data-wpel-link="internal">Ubuntu &#8211; 基本指令備忘(持續更新)</a> 最早出現於 <a rel="nofollow" href="https://noter.tw" data-wpel-link="internal">記下來</a>。</p>
]]></content:encoded>
					
					<wfw:commentRss>https://noter.tw/113/ubuntu-%e5%9f%ba%e6%9c%ac%e6%8c%87%e4%bb%a4%e5%82%99%e5%bf%98%e6%8c%81%e7%ba%8c%e6%9b%b4%e6%96%b0/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Ubuntu &#8211; 調整系統時間與時區設定</title>
		<link>https://noter.tw/1693/ubuntu-%e8%aa%bf%e6%95%b4%e7%b3%bb%e7%b5%b1%e6%99%82%e9%96%93%e8%88%87%e6%99%82%e5%8d%80%e8%a8%ad%e5%ae%9a/</link>
					<comments>https://noter.tw/1693/ubuntu-%e8%aa%bf%e6%95%b4%e7%b3%bb%e7%b5%b1%e6%99%82%e9%96%93%e8%88%87%e6%99%82%e5%8d%80%e8%a8%ad%e5%ae%9a/#respond</comments>
		
		<dc:creator><![CDATA[黃小蛙]]></dc:creator>
		<pubDate>Thu, 22 Dec 2011 06:16:03 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[時間]]></category>
		<category><![CDATA[date]]></category>
		<category><![CDATA[dpkg-reconfigure tzdata]]></category>
		<category><![CDATA[ntp]]></category>
		<category><![CDATA[ntpdate]]></category>
		<category><![CDATA[地區]]></category>
		<guid isPermaLink="false">http://wazai.net/?p=1693</guid>

					<description><![CDATA[<p>(2012-03-07 更新)小蛙在這篇文章會介紹怎麼在Ubuntu環境下設定時區以及透過網路更新時間。小蛙最近在試著透過crontab設定讓vps可以定期備份資料庫及WordPress，shell &#46;&#46;&#46;</p>
<p>這篇文章 <a rel="nofollow" href="https://noter.tw/1693/ubuntu-%e8%aa%bf%e6%95%b4%e7%b3%bb%e7%b5%b1%e6%99%82%e9%96%93%e8%88%87%e6%99%82%e5%8d%80%e8%a8%ad%e5%ae%9a/" data-wpel-link="internal">Ubuntu &#8211; 調整系統時間與時區設定</a> 最早出現於 <a rel="nofollow" href="https://noter.tw" data-wpel-link="internal">記下來</a>。</p>
]]></description>
										<content:encoded><![CDATA[<p>(2012-03-07 更新)小蛙在這篇文章會介紹怎麼在Ubuntu環境下設定時區以及透過網路更新時間。小蛙最近在試著透過crontab設定讓vps可以定期備份資料庫及WordPress，shell script不熟悉讓小蛙卡了好久&#8230;到了要測試crontab的時候卻發現怎麼crontab都沒運行，查了一下才發現系統時間是有問題的。<br />
<span id="more-1693"></span><br />
在還沒有發現時區的問題時(sense不夠)，一直在設定crontab，想說先測試一兩分鐘後跑起來的情況，結果過了三分鐘卻一動也不動，google了一下，在ubuntu下看系統時間的指令是</p>
<pre># date
Thu Dec 22 13:38:05 CST 2011</pre>
<p>但是現在時間是2011-12-22 14:01:00才對，用「Ubuntu系統時間校正」當關鍵字google了一下，得到一些校正時間的方法，馬上來試一下</p>
<pre># ntpdate time.stdtime.gov.tw
-bash: ntpdate: command not found
# apt-get install -y ntpdate ntp
...
# ntpdate time.stdtime.gov.tw
22 Dec 05:22:19 ntpdate[8132]: the NTP socket is in use, exiting</pre>
<p>好吧，看來問題不是「系統時間校正」，確定系統時間沒問題後，接著小蛙朝著「Ubuntu設定時區」尋找。在<a href="https://www.acsite.net/tw/forum/index.php?topic=1900.0" target="_blank" rel="noopener noreferrer nofollow external" data-wpel-link="external" class="wpel-icon-right">VPS 主機：基礎設定<span class="wpel-icon wpel-image wpel-icon-6"></span></a>這篇文章中看到</p>
<pre>3. 重設時區 (請選 Asia - Taipei)
# dpkg-reconfigure tzdata
Current default time zone: 'Asia/Taipei'
Local time is now:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Thu Dec 22 13:24:48 CST 2011.
Universal Time is now:&nbsp; Thu Dec 22 05:24:48 UTC 2011.</pre>
<p>時區正確，時間正確！真的揪甘心！<br />
2012-03-07<br />
昨天小蛙不小心把VPS給搞壞了，重開機之後就再也見不到美麗的歡迎訊息了「Welcome to Ubuntu」，令人感到難過，花了一天的時間慢慢把軟體裝回去、設定回去，目前大致上是都可以跑了，幸好平常有寫一隻shell script來定期打包wordpress及mysqldump，厲害的是這支shell script在這次的災難中也遺失了&#8230;(千備萬備，竟然忘了把home目錄備份下來&#8230;)，重灌的過程中遇到我的股票精算師有一支php專門去抓取大盤指數，全部設定都就緒後，在塞進資料庫<span style="color: #ff0000;"><strong>SET update_time = now()</strong></span>的時候，出現的時間竟然是有問題的&#8230;找了一下才發現只要修改<span style="color: #ff0000;"><strong>php.ini</strong></span>這個檔案中的<span style="color: #ff0000;"><strong>timezone</strong></span>就可以了。</p>
<pre class="brush: text; gutter: true">vim /etc/php5/cgi/php.ini
[Date]
; Defines the default timezone used by the date functions
; http://php.net/date.timezone
// 找到 timezone = 把前面的註解取消，後面加上地區位置
date.timezone=Asia/Taipei</pre>
<p>在網路上查到的資料是說把apache2重新啟動即可(先stop再start，不要用restart)，但小蛙用的是lighttpd不管restart或是stop再start都還是一樣不行，把機器reboot之後就可以了^__^</p>
<p>這篇文章 <a rel="nofollow" href="https://noter.tw/1693/ubuntu-%e8%aa%bf%e6%95%b4%e7%b3%bb%e7%b5%b1%e6%99%82%e9%96%93%e8%88%87%e6%99%82%e5%8d%80%e8%a8%ad%e5%ae%9a/" data-wpel-link="internal">Ubuntu &#8211; 調整系統時間與時區設定</a> 最早出現於 <a rel="nofollow" href="https://noter.tw" data-wpel-link="internal">記下來</a>。</p>
]]></content:encoded>
					
					<wfw:commentRss>https://noter.tw/1693/ubuntu-%e8%aa%bf%e6%95%b4%e7%b3%bb%e7%b5%b1%e6%99%82%e9%96%93%e8%88%87%e6%99%82%e5%8d%80%e8%a8%ad%e5%ae%9a/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
