diff --git a/2016/05/22/helloworld/index.html b/2016/05/22/helloworld/index.html index 549a565..ac1e4db 100644 --- a/2016/05/22/helloworld/index.html +++ b/2016/05/22/helloworld/index.html @@ -128,7 +128,7 @@ diff --git a/2016/08/03/pullrequestnote/index.html b/2016/08/03/pullrequestnote/index.html index 0417ae6..ef072d9 100644 --- a/2016/08/03/pullrequestnote/index.html +++ b/2016/08/03/pullrequestnote/index.html @@ -131,7 +131,7 @@ diff --git a/2016/10/01/xcurn-error-after-upgrade-10-12/index.html b/2016/10/01/xcurn-error-after-upgrade-10-12/index.html index 5fdfef2..7f964c4 100644 --- a/2016/10/01/xcurn-error-after-upgrade-10-12/index.html +++ b/2016/10/01/xcurn-error-after-upgrade-10-12/index.html @@ -129,7 +129,7 @@ diff --git a/2024/11/19/url-shortener/index.html b/2024/11/19/url-shortener/index.html index 89cee7a..ba48e06 100644 --- a/2024/11/19/url-shortener/index.html +++ b/2024/11/19/url-shortener/index.html @@ -129,7 +129,7 @@ @@ -352,6 +352,9 @@

結語
+
diff --git a/2024/11/24/time-machine-speed-up/index.html b/2024/11/24/time-machine-speed-up/index.html new file mode 100644 index 0000000..a0fe5e8 --- /dev/null +++ b/2024/11/24/time-machine-speed-up/index.html @@ -0,0 +1,388 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +加速 macOS 的 Time Machine 備份速度 | hydaiの空想世界 + + + + + + + + + + + + + + + + +
+ +
+
+
+ + + + + +
+ + + + + + + + +
+ + + + + +
+ +
+ + + + + +
+ + + +
+ + + + + + + +
+

+ 加速 macOS 的 Time Machine 備份速度 +

+ + +
+ + + + +

前言

macOS 的 Time Machine 是一個非常好用的備份工具,它曾經多次救援我人生的重要時刻。當時碩士論文寫到一半,macbook pro 直接壞掉,幸好有 Time Machine 的備份,讓我可以如期畢業。

+

但是隨著使用的容量越來越大,在備份的過程中,有時候會發現備份的速度變成異常緩慢,甚至出現要十幾個小時才能完成一次備份,尤其人在國外時深感危險。

+

在搜尋的時候發現其實世界上有一大堆人也有相同的問題,幾乎都有標準做法了(/ω\)

+ + +

解決方法

與其他的備份方式不同,Time Machine 有個隱藏的參數會將備份的速度限制在一個較低的數值,且相關的優先順序也是在較低的位置,因此如果不改變這個數值的話,Time Machine 的備份速度就會隨著積累的增加而變得越來越慢。

+

很遺憾的是,這個數值是隱藏的,因此我們需要透過終端機來修改這個數值。

+

打開終端機以後,輸入以下指令:

+
1
sudo sysctl debug.lowpri_throttle_enabled=0
+ +

這樣一來,Time Machine 的備份速度就會恢復到正常的速度了。

+

指令解釋

sudo 是因為我們需要透過 sysctl 進行系統參數的修改,而這個指令是需要 root 權限才能使用的。

+

sysctl 是一個在 Unix-like 的作業系統中專門用來讀取與修改內核參數的工具。

+

debug.lowpri_throttle_enabled 是一個參數,當這個參數為 1 時,Time Machine 的備份速度會被限制在一個較低的數值,當這個參數為 0 時,Time Machine 的備份速度就不再受到此限制。

+

lowpri 是 low priority 的縮寫,throttle 是節流閥的意思,表示限制流量,enabled 是啟用的意思,因此這個參數的意思就是啟用低優先順序的限制。

+

恢復原來的設定

上面的修改會在重新開機後被重置,因此即使忘記恢復原本的設定也沒關係,時間會解決一切。

+

若完成備份之後,還是想要馬上恢復成原本的設定,可以輸入以下指令:

+
1
sudo sysctl debug.lowpri_throttle_enabled=1
+ +

方便的別名

每次都需要輸入這麼長的指令也是很麻煩的,因此可以使用 alias 來建立一個別名,這樣就能用短短的指令做到同樣的事囉。

+
1
2
3
4
# 請在你的 .bashrc 或 .zshrc 中加入以下指令
alias tmspup='sudo sysctl debug.lowpri_throttle_enabled=0'
alias tmspdown='sudo sysctl debug.lowpri_throttle_enabled=1'
# 日後就能使用 tmspup 與 tmspdown 來快速的切換 Time Machine 的備份速度了
+ +

Reference

+ +
+ + + + + + +
+
+ + + + + + + + +
+ +
+ + +
+
+ + + + + + +
+ + 0% +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/archives/2016/05/index.html b/archives/2016/05/index.html index 96b04bf..0b57888 100644 --- a/archives/2016/05/index.html +++ b/archives/2016/05/index.html @@ -123,7 +123,7 @@

hydaiの空想世界

@@ -182,7 +182,7 @@

hydaiの空想世界

- 嗯..! 目前共有 4 篇文章。 繼續努力。 + 嗯..! 目前共有 5 篇文章。 繼續努力。
diff --git a/archives/2016/08/index.html b/archives/2016/08/index.html index 05e436c..2df0595 100644 --- a/archives/2016/08/index.html +++ b/archives/2016/08/index.html @@ -123,7 +123,7 @@

hydaiの空想世界

- 6 + 8 標籤
@@ -182,7 +182,7 @@

hydaiの空想世界

- 嗯..! 目前共有 4 篇文章。 繼續努力。 + 嗯..! 目前共有 5 篇文章。 繼續努力。
diff --git a/archives/2016/10/index.html b/archives/2016/10/index.html index 3c62866..776c653 100644 --- a/archives/2016/10/index.html +++ b/archives/2016/10/index.html @@ -123,7 +123,7 @@

hydaiの空想世界

@@ -182,7 +182,7 @@

hydaiの空想世界

- 嗯..! 目前共有 4 篇文章。 繼續努力。 + 嗯..! 目前共有 5 篇文章。 繼續努力。
diff --git a/archives/2016/index.html b/archives/2016/index.html index 54d010a..d7bd9f3 100644 --- a/archives/2016/index.html +++ b/archives/2016/index.html @@ -123,7 +123,7 @@

hydaiの空想世界

@@ -182,7 +182,7 @@

hydaiの空想世界

- 嗯..! 目前共有 4 篇文章。 繼續努力。 + 嗯..! 目前共有 5 篇文章。 繼續努力。
diff --git a/archives/2024/11/index.html b/archives/2024/11/index.html index 94451a4..81e6242 100644 --- a/archives/2024/11/index.html +++ b/archives/2024/11/index.html @@ -123,7 +123,7 @@

hydaiの空想世界

@@ -182,14 +182,34 @@

hydaiの空想世界

- 嗯..! 目前共有 4 篇文章。 繼續努力。 + 嗯..! 目前共有 5 篇文章。 繼續努力。
- 20241 + 20242
+ +
@@ -182,14 +182,34 @@

hydaiの空想世界

- 嗯..! 目前共有 4 篇文章。 繼續努力。 + 嗯..! 目前共有 5 篇文章。 繼續努力。
- 20241 + 20242
+ +
@@ -182,14 +182,34 @@

hydaiの空想世界

- 嗯..! 目前共有 4 篇文章。 繼續努力。 + 嗯..! 目前共有 5 篇文章。 繼續努力。
- 20241 + 20242
+ +
@@ -192,6 +192,26 @@

Note 2024

+ +
@@ -200,7 +200,7 @@

categories 目前共有 1 個分類

- +
diff --git a/css/main.css b/css/main.css index e38498a..369347f 100644 --- a/css/main.css +++ b/css/main.css @@ -1275,7 +1275,7 @@ pre code { vertical-align: middle; } .links-of-author a::before { - background: #692a3e; + background: #ff8fdf; display: inline-block; margin-right: 3px; transform: translateY(-2px); diff --git a/index.html b/index.html index ab975ad..134d595 100644 --- a/index.html +++ b/index.html @@ -123,7 +123,7 @@

hydaiの空想世界

@@ -178,6 +178,94 @@

hydaiの空想世界

+
+ + + +
+ + + + + + + +
+

+ +

+ + +
+ + + + +
+

前言

macOS 的 Time Machine 是一個非常好用的備份工具,它曾經多次救援我人生的重要時刻。當時碩士論文寫到一半,macbook pro 直接壞掉,幸好有 Time Machine 的備份,讓我可以如期畢業。

+

但是隨著使用的容量越來越大,在備份的過程中,有時候會發現備份的速度變成異常緩慢,甚至出現要十幾個小時才能完成一次備份,尤其人在國外時深感危險。

+

在搜尋的時候發現其實世界上有一大堆人也有相同的問題,幾乎都有標準做法了(/ω\)

+ +
+ + 閱讀全文 » + +
+ + + +
+ + + + + +
+
+ +
+
+
+ + + + + + +
diff --git a/tags/MacOS/index.html b/tags/MacOS/index.html index 067b854..519294a 100644 --- a/tags/MacOS/index.html +++ b/tags/MacOS/index.html @@ -123,7 +123,7 @@
diff --git a/tags/PR/index.html b/tags/PR/index.html index 67e072e..c7bb050 100644 --- a/tags/PR/index.html +++ b/tags/PR/index.html @@ -123,7 +123,7 @@
diff --git a/tags/Pull-Request/index.html b/tags/Pull-Request/index.html index 1ff542b..0117242 100644 --- a/tags/Pull-Request/index.html +++ b/tags/Pull-Request/index.html @@ -123,7 +123,7 @@
diff --git a/tags/Time-Machine/index.html b/tags/Time-Machine/index.html new file mode 100644 index 0000000..abe0aff --- /dev/null +++ b/tags/Time-Machine/index.html @@ -0,0 +1,282 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +標籤: Time Machine | hydaiの空想世界 + + + + + + + + + + + + + + + + +
+ +
+
+
+ + + + + +
+ + + + + + + + +
+ + + + + +
+ +
+ + + + + +
+
+
+

Time Machine + 標籤 +

+
+ + +
+ 2024 +
+ + + +
+
+ + + + +
+
+ +
+ +
+ + + + +
+ + 0% +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tags/URL-Shortener/index.html b/tags/URL-Shortener/index.html index fa83a62..9786666 100644 --- a/tags/URL-Shortener/index.html +++ b/tags/URL-Shortener/index.html @@ -123,7 +123,7 @@
diff --git a/tags/git/index.html b/tags/git/index.html index 5f84e01..a799c21 100644 --- a/tags/git/index.html +++ b/tags/git/index.html @@ -123,7 +123,7 @@
diff --git a/tags/index.html b/tags/index.html index 4fe8052..4978ede 100644 --- a/tags/index.html +++ b/tags/index.html @@ -126,7 +126,7 @@
- 6 + 8 標籤
@@ -197,10 +197,10 @@

tags
- 目前共有 6 個標籤 + 目前共有 8 個標籤
diff --git a/tags/xcurn/index.html b/tags/xcurn/index.html index 05ffeaa..28216ac 100644 --- a/tags/xcurn/index.html +++ b/tags/xcurn/index.html @@ -123,7 +123,7 @@