hugo daily push 2019-04-01 22:00:01
This commit is contained in:
77
content/post/fix-zpool-device-busy-using-dmsetup.md
Normal file
77
content/post/fix-zpool-device-busy-using-dmsetup.md
Normal file
@@ -0,0 +1,77 @@
|
|||||||
|
---
|
||||||
|
title: "[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup"
|
||||||
|
date: 2019-04-01T15:56:27+08:00
|
||||||
|
draft: false
|
||||||
|
|
||||||
|
noSummary: false
|
||||||
|
featuredImage: "https://h.cowbay.org/images/post-default-11.jpg"
|
||||||
|
categories: ['筆記']
|
||||||
|
tags: ['zfs']
|
||||||
|
author: "Eric Chang"
|
||||||
|
---
|
||||||
|
|
||||||
|
今天把其中一台proxmox 加上10G 光纖網卡,準備和另一台proxmox 組成10G 環境進行測試
|
||||||
|
|
||||||
|
想說把本機的zpool 拆掉,重新建立一個raid0 的空間來做clone/migrate
|
||||||
|
|
||||||
|
可是一直出現device busy的錯誤訊息
|
||||||
|
|
||||||
|
<!--more-->
|
||||||
|
|
||||||
|
```
|
||||||
|
root@pve:~# zpool create zp sdb1
|
||||||
|
cannot open '/dev/sdb1': Device or resource busy
|
||||||
|
|
||||||
|
```
|
||||||
|
可是我沒有mount 這個分割進來
|
||||||
|
|
||||||
|
而且我也可以用fdisk 去切sdb ,代表sdb 沒有真的被使用
|
||||||
|
|
||||||
|
找了很久,終於找到這個dmsetup指令
|
||||||
|
|
||||||
|
先用 ```dmsetup info -C ``` 來看現在的狀態
|
||||||
|
|
||||||
|
```
|
||||||
|
root@pve:~# dmsetup info -C
|
||||||
|
Name Maj Min Stat Open Targ Event UUID
|
||||||
|
ST2000DM001-1ER164_W4Z3KKJB 253 3 L--w 0 1 0 mpath-ST2000DM001-1ER164_W4Z3KKJB
|
||||||
|
pve-swap 253 0 L--w 2 1 0 LVM-6Hle5UGjtr8NQQsbMrYlSdGXZklwAi87Kq9NlzQa6xvgiHOEP3Ekx72i5yYNaupf
|
||||||
|
pve-root 253 1 L--w 1 1 0 LVM-6Hle5UGjtr8NQQsbMrYlSdGXZklwAi87geZeFZsQsgYUbI1ZJU4lKD86TVd1MNrq
|
||||||
|
ST2000DM001-1ER164_W4Z3KM2F-part1 253 5 L--w 0 1 0 part1-mpath-ST2000DM001-1ER164_W4Z3KM2F
|
||||||
|
ST2000DM001-1ER164_W4Z3KM2F 253 2 L--w 1 1 0 mpath-ST2000DM001-1ER164_W4Z3KM2F
|
||||||
|
ST2000DM001-1ER164_W4Z3GYNJ 253 4 L--w 0 1 0 mpath-ST2000DM001-1ER164_W4Z3GYNJ
|
||||||
|
```
|
||||||
|
|
||||||
|
除了那兩個LVM開頭的以外,其他都不應該出現在這裡才對
|
||||||
|
移除掉應該就可以了
|
||||||
|
要照順序,像那個有part1 的,就要先移掉,才能移掉底層
|
||||||
|
|
||||||
|
```
|
||||||
|
root@pve:~# dmsetup remove ST2000DM001-1ER164_W4Z3KM2F-part1
|
||||||
|
root@pve:~# dmsetup remove ST2000DM001-1ER164_W4Z3KM2F
|
||||||
|
root@pve:~# dmsetup remove ST2000DM001-1ER164_W4Z3KKJB
|
||||||
|
root@pve:~# dmsetup remove ST2000DM001-1ER164_W4Z3KM2F
|
||||||
|
root@pve:~# dmsetup remove ST2000DM001-1ER164_W4Z3GYNJ
|
||||||
|
```
|
||||||
|
|
||||||
|
再來建立zpool 就 OK了
|
||||||
|
```
|
||||||
|
root@pve:~# zpool create zp sdb sdc sdd
|
||||||
|
root@pve:~# zpool status
|
||||||
|
pool: zp
|
||||||
|
state: ONLINE
|
||||||
|
scan: none requested
|
||||||
|
config:
|
||||||
|
|
||||||
|
NAME STATE READ WRITE CKSUM
|
||||||
|
zp ONLINE 0 0 0
|
||||||
|
sdb ONLINE 0 0 0
|
||||||
|
sdc ONLINE 0 0 0
|
||||||
|
sdd ONLINE 0 0 0
|
||||||
|
|
||||||
|
errors: No known data errors
|
||||||
|
root@pve:~#
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -115,6 +115,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -139,10 +143,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -153,7 +153,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -90,6 +90,83 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
|
<a class="bubble" href="/post/fix-zpool-device-busy-using-dmsetup/">
|
||||||
|
<i class="fa fa-fw fa-pencil"></i>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<article class="default article">
|
||||||
|
|
||||||
|
<div class="featured-image">
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">
|
||||||
|
<img src="/images/post-default-11.jpg" alt="">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
<h3><a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a></h3>
|
||||||
|
<div class="meta">
|
||||||
|
|
||||||
|
|
||||||
|
<span class="date moment">2019-04-01</span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<span class="categories">
|
||||||
|
|
||||||
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記</a>
|
||||||
|
|
||||||
|
</span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<span class="author"><a href="/author/eric-chang">Eric Chang</a></span>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<p>今天把其中一台proxmox 加上10G 光纖網卡,準備和另一台proxmox 組成10G 環境進行測試</p>
|
||||||
|
|
||||||
|
<p>想說把本機的zpool 拆掉,重新建立一個raid0 的空間來做clone/migrate</p>
|
||||||
|
|
||||||
|
<p>可是一直出現device busy的錯誤訊息</p>
|
||||||
|
|
||||||
|
<p></p>
|
||||||
|
|
||||||
|
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/" class="more">Continue reading</a>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="footer">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="tags">
|
||||||
|
<i class="fa fa-tags"></i>
|
||||||
|
<div class="links">
|
||||||
|
|
||||||
|
<a href="/tags/zfs">zfs</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="article-wrapper u-cf">
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
<a class="bubble" href="/post/transfer-cent62-using-rsync/">
|
<a class="bubble" href="/post/transfer-cent62-using-rsync/">
|
||||||
@@ -783,99 +860,6 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="article-wrapper u-cf">
|
|
||||||
|
|
||||||
<a class="bubble" href="/post/10g-lab-using-proxmox-and-mellanox/">
|
|
||||||
<i class="fa fa-fw fa-pencil"></i>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<article class="default article">
|
|
||||||
|
|
||||||
<div class="featured-image">
|
|
||||||
<a href="/post/10g-lab-using-proxmox-and-mellanox/">
|
|
||||||
<img src="/images/post-default-03.jpg" alt="">
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="content">
|
|
||||||
<h3><a href="/post/10g-lab-using-proxmox-and-mellanox/">[筆記] 用 proxmox & Mellanox SFP 網卡土炮 10G LAB </a></h3>
|
|
||||||
<div class="meta">
|
|
||||||
|
|
||||||
|
|
||||||
<span class="date moment">2018-11-30</span>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<span class="categories">
|
|
||||||
|
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記</a>
|
|
||||||
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<span class="author"><a href="/author/eric-chang">Eric Chang</a></span>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<p>想做一個 10G 的 LAB 環境出來已經很久了。</p>
|
|
||||||
|
|
||||||
<p>只是礙於10G RJ45的卡太貴了,然後光纖的種類又太複雜</p>
|
|
||||||
|
|
||||||
<p>如果直接在淘寶購買,很怕會買錯(什麼LC/FC LC/LC 多模單模 單芯雙芯 SFP/SFP+ 又是什麼光模塊的一大堆規格)</p>
|
|
||||||
|
|
||||||
<p>所以一直沒有付諸行動。</p>
|
|
||||||
|
|
||||||
<p>硬體的工作很久沒碰了,剛好在蝦皮看到有個賣家在賣 mellanox 的X2網卡,以在台灣的價格來說,算很便宜的 (550)</p>
|
|
||||||
|
|
||||||
<p>聊了一下,跟他請教了關於線材、光纖模塊的問題,回答也都很快很到位</p>
|
|
||||||
|
|
||||||
<p>就直接下訂了兩張網卡、兩個光纖模塊、一條LC/LC 光纖線</p>
|
|
||||||
|
|
||||||
<p>就是到貨有點久,等了兩個禮拜左右,一直到昨天東西才寄到</p>
|
|
||||||
|
|
||||||
<p>今天就花了點時間測試一下</p>
|
|
||||||
|
|
||||||
<p></p>
|
|
||||||
|
|
||||||
|
|
||||||
<a href="/post/10g-lab-using-proxmox-and-mellanox/" class="more">Continue reading</a>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="footer">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="tags">
|
|
||||||
<i class="fa fa-tags"></i>
|
|
||||||
<div class="links">
|
|
||||||
|
|
||||||
<a href="/tags/10g">10G</a>
|
|
||||||
|
|
||||||
<a href="/tags/%E7%AD%86%E8%A8%98">筆記</a>
|
|
||||||
|
|
||||||
<a href="/tags/mellanox">mellanox</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
@@ -906,6 +890,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -930,10 +918,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -944,7 +928,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -5,11 +5,26 @@
|
|||||||
<link>https://h.cowbay.org/author/eric-chang/</link>
|
<link>https://h.cowbay.org/author/eric-chang/</link>
|
||||||
<description>Recent content in Eric Chang on MC部落</description>
|
<description>Recent content in Eric Chang on MC部落</description>
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
<lastBuildDate>Wed, 27 Mar 2019 17:44:49 +0800</lastBuildDate>
|
<lastBuildDate>Mon, 01 Apr 2019 15:56:27 +0800</lastBuildDate>
|
||||||
|
|
||||||
<atom:link href="https://h.cowbay.org/author/eric-chang/index.xml" rel="self" type="application/rss+xml" />
|
<atom:link href="https://h.cowbay.org/author/eric-chang/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
|
||||||
|
|
||||||
|
<item>
|
||||||
|
<title>[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</title>
|
||||||
|
<link>https://h.cowbay.org/post/fix-zpool-device-busy-using-dmsetup/</link>
|
||||||
|
<pubDate>Mon, 01 Apr 2019 15:56:27 +0800</pubDate>
|
||||||
|
|
||||||
|
<guid>https://h.cowbay.org/post/fix-zpool-device-busy-using-dmsetup/</guid>
|
||||||
|
<description><p>今天把其中一台proxmox 加上10G 光纖網卡,準備和另一台proxmox 組成10G 環境進行測試</p>
|
||||||
|
|
||||||
|
<p>想說把本機的zpool 拆掉,重新建立一個raid0 的空間來做clone/migrate</p>
|
||||||
|
|
||||||
|
<p>可是一直出現device busy的錯誤訊息</p>
|
||||||
|
|
||||||
|
<p></p></description>
|
||||||
|
</item>
|
||||||
|
|
||||||
<item>
|
<item>
|
||||||
<title>[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</title>
|
<title>[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</title>
|
||||||
<link>https://h.cowbay.org/post/transfer-cent62-using-rsync/</link>
|
<link>https://h.cowbay.org/post/transfer-cent62-using-rsync/</link>
|
||||||
|
|||||||
@@ -90,6 +90,99 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
|
<a class="bubble" href="/post/10g-lab-using-proxmox-and-mellanox/">
|
||||||
|
<i class="fa fa-fw fa-pencil"></i>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<article class="default article">
|
||||||
|
|
||||||
|
<div class="featured-image">
|
||||||
|
<a href="/post/10g-lab-using-proxmox-and-mellanox/">
|
||||||
|
<img src="/images/post-default-03.jpg" alt="">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
<h3><a href="/post/10g-lab-using-proxmox-and-mellanox/">[筆記] 用 proxmox & Mellanox SFP 網卡土炮 10G LAB </a></h3>
|
||||||
|
<div class="meta">
|
||||||
|
|
||||||
|
|
||||||
|
<span class="date moment">2018-11-30</span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<span class="categories">
|
||||||
|
|
||||||
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記</a>
|
||||||
|
|
||||||
|
</span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<span class="author"><a href="/author/eric-chang">Eric Chang</a></span>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<p>想做一個 10G 的 LAB 環境出來已經很久了。</p>
|
||||||
|
|
||||||
|
<p>只是礙於10G RJ45的卡太貴了,然後光纖的種類又太複雜</p>
|
||||||
|
|
||||||
|
<p>如果直接在淘寶購買,很怕會買錯(什麼LC/FC LC/LC 多模單模 單芯雙芯 SFP/SFP+ 又是什麼光模塊的一大堆規格)</p>
|
||||||
|
|
||||||
|
<p>所以一直沒有付諸行動。</p>
|
||||||
|
|
||||||
|
<p>硬體的工作很久沒碰了,剛好在蝦皮看到有個賣家在賣 mellanox 的X2網卡,以在台灣的價格來說,算很便宜的 (550)</p>
|
||||||
|
|
||||||
|
<p>聊了一下,跟他請教了關於線材、光纖模塊的問題,回答也都很快很到位</p>
|
||||||
|
|
||||||
|
<p>就直接下訂了兩張網卡、兩個光纖模塊、一條LC/LC 光纖線</p>
|
||||||
|
|
||||||
|
<p>就是到貨有點久,等了兩個禮拜左右,一直到昨天東西才寄到</p>
|
||||||
|
|
||||||
|
<p>今天就花了點時間測試一下</p>
|
||||||
|
|
||||||
|
<p></p>
|
||||||
|
|
||||||
|
|
||||||
|
<a href="/post/10g-lab-using-proxmox-and-mellanox/" class="more">Continue reading</a>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="footer">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="tags">
|
||||||
|
<i class="fa fa-tags"></i>
|
||||||
|
<div class="links">
|
||||||
|
|
||||||
|
<a href="/tags/10g">10G</a>
|
||||||
|
|
||||||
|
<a href="/tags/%E7%AD%86%E8%A8%98">筆記</a>
|
||||||
|
|
||||||
|
<a href="/tags/mellanox">mellanox</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="article-wrapper u-cf">
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
<a class="bubble" href="/post/ansible-selectattr-filter/">
|
<a class="bubble" href="/post/ansible-selectattr-filter/">
|
||||||
@@ -888,6 +981,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -912,10 +1009,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -926,7 +1019,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -101,7 +101,7 @@
|
|||||||
<hr>
|
<hr>
|
||||||
<ul id="all-categories">
|
<ul id="all-categories">
|
||||||
|
|
||||||
<li><a href="/author/eric-chang">Eric chang (19)</a></li>
|
<li><a href="/author/eric-chang">Eric chang (20)</a></li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
@@ -120,6 +120,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -144,10 +148,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -158,7 +158,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
<item>
|
<item>
|
||||||
<title>Eric Chang</title>
|
<title>Eric Chang</title>
|
||||||
<link>https://h.cowbay.org/author/eric-chang/</link>
|
<link>https://h.cowbay.org/author/eric-chang/</link>
|
||||||
<pubDate>Wed, 27 Mar 2019 17:44:49 +0800</pubDate>
|
<pubDate>Mon, 01 Apr 2019 15:56:27 +0800</pubDate>
|
||||||
|
|
||||||
<guid>https://h.cowbay.org/author/eric-chang/</guid>
|
<guid>https://h.cowbay.org/author/eric-chang/</guid>
|
||||||
<description></description>
|
<description></description>
|
||||||
|
|||||||
@@ -105,7 +105,7 @@
|
|||||||
|
|
||||||
<li><a href="/categories/%E7%A2%8E%E5%BF%B5">碎念 (1)</a></li>
|
<li><a href="/categories/%E7%A2%8E%E5%BF%B5">碎念 (1)</a></li>
|
||||||
|
|
||||||
<li><a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a></li>
|
<li><a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a></li>
|
||||||
|
|
||||||
<li><a href="/categories/%E7%BE%A4%E6%9A%89">群暉 (1)</a></li>
|
<li><a href="/categories/%E7%BE%A4%E6%9A%89">群暉 (1)</a></li>
|
||||||
|
|
||||||
@@ -126,6 +126,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -150,10 +154,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -164,7 +164,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -30,7 +30,7 @@
|
|||||||
<item>
|
<item>
|
||||||
<title>筆記</title>
|
<title>筆記</title>
|
||||||
<link>https://h.cowbay.org/categories/%E7%AD%86%E8%A8%98/</link>
|
<link>https://h.cowbay.org/categories/%E7%AD%86%E8%A8%98/</link>
|
||||||
<pubDate>Wed, 27 Mar 2019 17:44:49 +0800</pubDate>
|
<pubDate>Mon, 01 Apr 2019 15:56:27 +0800</pubDate>
|
||||||
|
|
||||||
<guid>https://h.cowbay.org/categories/%E7%AD%86%E8%A8%98/</guid>
|
<guid>https://h.cowbay.org/categories/%E7%AD%86%E8%A8%98/</guid>
|
||||||
<description></description>
|
<description></description>
|
||||||
|
|||||||
@@ -179,6 +179,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -203,10 +207,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -217,7 +217,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -192,6 +192,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -216,10 +220,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -230,7 +230,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -90,6 +90,83 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
|
<a class="bubble" href="/post/fix-zpool-device-busy-using-dmsetup/">
|
||||||
|
<i class="fa fa-fw fa-pencil"></i>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<article class="default article">
|
||||||
|
|
||||||
|
<div class="featured-image">
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">
|
||||||
|
<img src="/images/post-default-11.jpg" alt="">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
<h3><a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a></h3>
|
||||||
|
<div class="meta">
|
||||||
|
|
||||||
|
|
||||||
|
<span class="date moment">2019-04-01</span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<span class="categories">
|
||||||
|
|
||||||
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記</a>
|
||||||
|
|
||||||
|
</span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<span class="author"><a href="/author/eric-chang">Eric Chang</a></span>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<p>今天把其中一台proxmox 加上10G 光纖網卡,準備和另一台proxmox 組成10G 環境進行測試</p>
|
||||||
|
|
||||||
|
<p>想說把本機的zpool 拆掉,重新建立一個raid0 的空間來做clone/migrate</p>
|
||||||
|
|
||||||
|
<p>可是一直出現device busy的錯誤訊息</p>
|
||||||
|
|
||||||
|
<p></p>
|
||||||
|
|
||||||
|
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/" class="more">Continue reading</a>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="footer">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="tags">
|
||||||
|
<i class="fa fa-tags"></i>
|
||||||
|
<div class="links">
|
||||||
|
|
||||||
|
<a href="/tags/zfs">zfs</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="article-wrapper u-cf">
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
<a class="bubble" href="/post/transfer-cent62-using-rsync/">
|
<a class="bubble" href="/post/transfer-cent62-using-rsync/">
|
||||||
@@ -839,89 +916,6 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="article-wrapper u-cf">
|
|
||||||
|
|
||||||
<a class="bubble" href="/post/change-preferred-language-in-firefox/">
|
|
||||||
<i class="fa fa-fw fa-pencil"></i>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<article class="default article">
|
|
||||||
|
|
||||||
<div class="featured-image">
|
|
||||||
<a href="/post/change-preferred-language-in-firefox/">
|
|
||||||
<img src="/images/post-default-9.jpg" alt="">
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="content">
|
|
||||||
<h3><a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a></h3>
|
|
||||||
<div class="meta">
|
|
||||||
|
|
||||||
|
|
||||||
<span class="date moment">2018-11-15</span>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<span class="categories">
|
|
||||||
|
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記</a>
|
|
||||||
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<span class="author"><a href="/author/eric-chang">Eric Chang</a></span>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<p>最近在測試metabase,記得幾個月前就有測試過</p>
|
|
||||||
|
|
||||||
<p>但是當時的界面和現在的樣子差很多,看樣子改版還滿勤勞的</p>
|
|
||||||
|
|
||||||
<p>所以這次改用docker來建立,根本五分鐘不到就建好了(挖鼻孔)</p>
|
|
||||||
|
|
||||||
<p>不過呢,很討厭的是,一進去就發現語系採用的是簡體中文</p>
|
|
||||||
|
|
||||||
<p></p>
|
|
||||||
|
|
||||||
|
|
||||||
<a href="/post/change-preferred-language-in-firefox/" class="more">Continue reading</a>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="footer">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="tags">
|
|
||||||
<i class="fa fa-tags"></i>
|
|
||||||
<div class="links">
|
|
||||||
|
|
||||||
<a href="/tags/%E7%AD%86%E8%A8%98">筆記</a>
|
|
||||||
|
|
||||||
<a href="/tags/firefox">firefox</a>
|
|
||||||
|
|
||||||
<a href="/tags/metabase">metabase</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
@@ -952,6 +946,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -976,10 +974,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -990,7 +984,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -5,11 +5,26 @@
|
|||||||
<link>https://h.cowbay.org/categories/%E7%AD%86%E8%A8%98/</link>
|
<link>https://h.cowbay.org/categories/%E7%AD%86%E8%A8%98/</link>
|
||||||
<description>Recent content in 筆記 on MC部落</description>
|
<description>Recent content in 筆記 on MC部落</description>
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
<lastBuildDate>Wed, 27 Mar 2019 17:44:49 +0800</lastBuildDate>
|
<lastBuildDate>Mon, 01 Apr 2019 15:56:27 +0800</lastBuildDate>
|
||||||
|
|
||||||
<atom:link href="https://h.cowbay.org/categories/%E7%AD%86%E8%A8%98/index.xml" rel="self" type="application/rss+xml" />
|
<atom:link href="https://h.cowbay.org/categories/%E7%AD%86%E8%A8%98/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
|
||||||
|
|
||||||
|
<item>
|
||||||
|
<title>[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</title>
|
||||||
|
<link>https://h.cowbay.org/post/fix-zpool-device-busy-using-dmsetup/</link>
|
||||||
|
<pubDate>Mon, 01 Apr 2019 15:56:27 +0800</pubDate>
|
||||||
|
|
||||||
|
<guid>https://h.cowbay.org/post/fix-zpool-device-busy-using-dmsetup/</guid>
|
||||||
|
<description><p>今天把其中一台proxmox 加上10G 光纖網卡,準備和另一台proxmox 組成10G 環境進行測試</p>
|
||||||
|
|
||||||
|
<p>想說把本機的zpool 拆掉,重新建立一個raid0 的空間來做clone/migrate</p>
|
||||||
|
|
||||||
|
<p>可是一直出現device busy的錯誤訊息</p>
|
||||||
|
|
||||||
|
<p></p></description>
|
||||||
|
</item>
|
||||||
|
|
||||||
<item>
|
<item>
|
||||||
<title>[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</title>
|
<title>[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</title>
|
||||||
<link>https://h.cowbay.org/post/transfer-cent62-using-rsync/</link>
|
<link>https://h.cowbay.org/post/transfer-cent62-using-rsync/</link>
|
||||||
|
|||||||
@@ -90,6 +90,89 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
|
<a class="bubble" href="/post/change-preferred-language-in-firefox/">
|
||||||
|
<i class="fa fa-fw fa-pencil"></i>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<article class="default article">
|
||||||
|
|
||||||
|
<div class="featured-image">
|
||||||
|
<a href="/post/change-preferred-language-in-firefox/">
|
||||||
|
<img src="/images/post-default-9.jpg" alt="">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
<h3><a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a></h3>
|
||||||
|
<div class="meta">
|
||||||
|
|
||||||
|
|
||||||
|
<span class="date moment">2018-11-15</span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<span class="categories">
|
||||||
|
|
||||||
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記</a>
|
||||||
|
|
||||||
|
</span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<span class="author"><a href="/author/eric-chang">Eric Chang</a></span>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<p>最近在測試metabase,記得幾個月前就有測試過</p>
|
||||||
|
|
||||||
|
<p>但是當時的界面和現在的樣子差很多,看樣子改版還滿勤勞的</p>
|
||||||
|
|
||||||
|
<p>所以這次改用docker來建立,根本五分鐘不到就建好了(挖鼻孔)</p>
|
||||||
|
|
||||||
|
<p>不過呢,很討厭的是,一進去就發現語系採用的是簡體中文</p>
|
||||||
|
|
||||||
|
<p></p>
|
||||||
|
|
||||||
|
|
||||||
|
<a href="/post/change-preferred-language-in-firefox/" class="more">Continue reading</a>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="footer">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="tags">
|
||||||
|
<i class="fa fa-tags"></i>
|
||||||
|
<div class="links">
|
||||||
|
|
||||||
|
<a href="/tags/%E7%AD%86%E8%A8%98">筆記</a>
|
||||||
|
|
||||||
|
<a href="/tags/firefox">firefox</a>
|
||||||
|
|
||||||
|
<a href="/tags/metabase">metabase</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="article-wrapper u-cf">
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
<a class="bubble" href="/post/copy_role_in_pgsql/">
|
<a class="bubble" href="/post/copy_role_in_pgsql/">
|
||||||
@@ -542,6 +625,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -566,10 +653,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -580,7 +663,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -202,6 +202,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -226,10 +230,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -240,7 +240,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -2,6 +2,11 @@
|
|||||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
|
||||||
xmlns:xhtml="http://www.w3.org/1999/xhtml">
|
xmlns:xhtml="http://www.w3.org/1999/xhtml">
|
||||||
|
|
||||||
|
<url>
|
||||||
|
<loc>https://h.cowbay.org/post/fix-zpool-device-busy-using-dmsetup/</loc>
|
||||||
|
<lastmod>2019-04-01T15:56:27+08:00</lastmod>
|
||||||
|
</url>
|
||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://h.cowbay.org/post/transfer-cent62-using-rsync/</loc>
|
<loc>https://h.cowbay.org/post/transfer-cent62-using-rsync/</loc>
|
||||||
<lastmod>2019-03-27T17:44:49+08:00</lastmod>
|
<lastmod>2019-03-27T17:44:49+08:00</lastmod>
|
||||||
@@ -171,7 +176,7 @@
|
|||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://h.cowbay.org/author/eric-chang/</loc>
|
<loc>https://h.cowbay.org/author/eric-chang/</loc>
|
||||||
<lastmod>2019-03-27T17:44:49+08:00</lastmod>
|
<lastmod>2019-04-01T15:56:27+08:00</lastmod>
|
||||||
<priority>0</priority>
|
<priority>0</priority>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
@@ -201,7 +206,7 @@
|
|||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://h.cowbay.org/</loc>
|
<loc>https://h.cowbay.org/</loc>
|
||||||
<lastmod>2019-03-27T17:44:49+08:00</lastmod>
|
<lastmod>2019-04-01T15:56:27+08:00</lastmod>
|
||||||
<priority>0</priority>
|
<priority>0</priority>
|
||||||
<xhtml:link
|
<xhtml:link
|
||||||
rel="alternate"
|
rel="alternate"
|
||||||
@@ -241,7 +246,7 @@
|
|||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://h.cowbay.org/post/</loc>
|
<loc>https://h.cowbay.org/post/</loc>
|
||||||
<lastmod>2019-03-27T17:44:49+08:00</lastmod>
|
<lastmod>2019-04-01T15:56:27+08:00</lastmod>
|
||||||
<priority>0</priority>
|
<priority>0</priority>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
@@ -309,6 +314,12 @@
|
|||||||
<priority>0</priority>
|
<priority>0</priority>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
|
<url>
|
||||||
|
<loc>https://h.cowbay.org/tags/zfs/</loc>
|
||||||
|
<lastmod>2019-04-01T15:56:27+08:00</lastmod>
|
||||||
|
<priority>0</priority>
|
||||||
|
</url>
|
||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://h.cowbay.org/tags/%E7%9F%AD%E4%BB%8A/</loc>
|
<loc>https://h.cowbay.org/tags/%E7%9F%AD%E4%BB%8A/</loc>
|
||||||
<lastmod>2018-11-05T07:46:53+08:00</lastmod>
|
<lastmod>2018-11-05T07:46:53+08:00</lastmod>
|
||||||
@@ -329,7 +340,7 @@
|
|||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://h.cowbay.org/categories/%E7%AD%86%E8%A8%98/</loc>
|
<loc>https://h.cowbay.org/categories/%E7%AD%86%E8%A8%98/</loc>
|
||||||
<lastmod>2019-03-27T17:44:49+08:00</lastmod>
|
<lastmod>2019-04-01T15:56:27+08:00</lastmod>
|
||||||
<priority>0</priority>
|
<priority>0</priority>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
|
|||||||
@@ -179,6 +179,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -203,10 +207,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -217,7 +217,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -191,6 +191,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -215,10 +219,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -229,7 +229,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -95,6 +95,85 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
|
<a class="bubble" href="/post/fix-zpool-device-busy-using-dmsetup/">
|
||||||
|
<i class="fa fa-fw fa-pencil"></i>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<article class="default article">
|
||||||
|
|
||||||
|
<div class="featured-image">
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">
|
||||||
|
<img src="/images/post-default-11.jpg" alt="">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
<h3><a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a></h3>
|
||||||
|
<div class="meta">
|
||||||
|
|
||||||
|
|
||||||
|
<span class="date moment">2019-04-01</span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<span class="categories">
|
||||||
|
|
||||||
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記</a>
|
||||||
|
|
||||||
|
</span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<span class="author"><a href="/author/eric-chang">Eric Chang</a></span>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<p>今天把其中一台proxmox 加上10G 光纖網卡,準備和另一台proxmox 組成10G 環境進行測試</p>
|
||||||
|
|
||||||
|
<p>想說把本機的zpool 拆掉,重新建立一個raid0 的空間來做clone/migrate</p>
|
||||||
|
|
||||||
|
<p>可是一直出現device busy的錯誤訊息</p>
|
||||||
|
|
||||||
|
<p></p>
|
||||||
|
|
||||||
|
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/" class="more">Continue reading</a>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="footer">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="tags">
|
||||||
|
<i class="fa fa-tags"></i>
|
||||||
|
<div class="links">
|
||||||
|
|
||||||
|
<a href="/tags/zfs">zfs</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="article-wrapper u-cf">
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
<a class="bubble" href="/post/transfer-cent62-using-rsync/">
|
<a class="bubble" href="/post/transfer-cent62-using-rsync/">
|
||||||
@@ -804,101 +883,6 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="article-wrapper u-cf">
|
|
||||||
|
|
||||||
<a class="bubble" href="/post/10g-lab-using-proxmox-and-mellanox/">
|
|
||||||
<i class="fa fa-fw fa-pencil"></i>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<article class="default article">
|
|
||||||
|
|
||||||
<div class="featured-image">
|
|
||||||
<a href="/post/10g-lab-using-proxmox-and-mellanox/">
|
|
||||||
<img src="/images/post-default-03.jpg" alt="">
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="content">
|
|
||||||
<h3><a href="/post/10g-lab-using-proxmox-and-mellanox/">[筆記] 用 proxmox & Mellanox SFP 網卡土炮 10G LAB </a></h3>
|
|
||||||
<div class="meta">
|
|
||||||
|
|
||||||
|
|
||||||
<span class="date moment">2018-11-30</span>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<span class="categories">
|
|
||||||
|
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記</a>
|
|
||||||
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<span class="author"><a href="/author/eric-chang">Eric Chang</a></span>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<p>想做一個 10G 的 LAB 環境出來已經很久了。</p>
|
|
||||||
|
|
||||||
<p>只是礙於10G RJ45的卡太貴了,然後光纖的種類又太複雜</p>
|
|
||||||
|
|
||||||
<p>如果直接在淘寶購買,很怕會買錯(什麼LC/FC LC/LC 多模單模 單芯雙芯 SFP/SFP+ 又是什麼光模塊的一大堆規格)</p>
|
|
||||||
|
|
||||||
<p>所以一直沒有付諸行動。</p>
|
|
||||||
|
|
||||||
<p>硬體的工作很久沒碰了,剛好在蝦皮看到有個賣家在賣 mellanox 的X2網卡,以在台灣的價格來說,算很便宜的 (550)</p>
|
|
||||||
|
|
||||||
<p>聊了一下,跟他請教了關於線材、光纖模塊的問題,回答也都很快很到位</p>
|
|
||||||
|
|
||||||
<p>就直接下訂了兩張網卡、兩個光纖模塊、一條LC/LC 光纖線</p>
|
|
||||||
|
|
||||||
<p>就是到貨有點久,等了兩個禮拜左右,一直到昨天東西才寄到</p>
|
|
||||||
|
|
||||||
<p>今天就花了點時間測試一下</p>
|
|
||||||
|
|
||||||
<p></p>
|
|
||||||
|
|
||||||
|
|
||||||
<a href="/post/10g-lab-using-proxmox-and-mellanox/" class="more">Continue reading</a>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="footer">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="tags">
|
|
||||||
<i class="fa fa-tags"></i>
|
|
||||||
<div class="links">
|
|
||||||
|
|
||||||
<a href="/tags/10g">10G</a>
|
|
||||||
|
|
||||||
<a href="/tags/%E7%AD%86%E8%A8%98">筆記</a>
|
|
||||||
|
|
||||||
<a href="/tags/mellanox">mellanox</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
@@ -930,6 +914,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -954,10 +942,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -968,7 +952,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -181,6 +181,13 @@
|
|||||||
"type": "tag",
|
"type": "tag",
|
||||||
"url": "https://h.cowbay.org/tags/vim"
|
"url": "https://h.cowbay.org/tags/vim"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"iconClass": "fa-tag",
|
||||||
|
"objectID": "https://h.cowbay.org/tags/zfs",
|
||||||
|
"title": "Zfs",
|
||||||
|
"type": "tag",
|
||||||
|
"url": "https://h.cowbay.org/tags/zfs"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"iconClass": "fa-tag",
|
"iconClass": "fa-tag",
|
||||||
"objectID": "https://h.cowbay.org/tags/%E7%9F%AD%E4%BB%8A",
|
"objectID": "https://h.cowbay.org/tags/%E7%9F%AD%E4%BB%8A",
|
||||||
|
|||||||
@@ -5,11 +5,26 @@
|
|||||||
<link>https://h.cowbay.org/</link>
|
<link>https://h.cowbay.org/</link>
|
||||||
<description>Recent content on MC部落</description>
|
<description>Recent content on MC部落</description>
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
<lastBuildDate>Wed, 27 Mar 2019 17:44:49 +0800</lastBuildDate>
|
<lastBuildDate>Mon, 01 Apr 2019 15:56:27 +0800</lastBuildDate>
|
||||||
|
|
||||||
<atom:link href="https://h.cowbay.org/index.xml" rel="self" type="application/rss+xml" />
|
<atom:link href="https://h.cowbay.org/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
|
||||||
|
|
||||||
|
<item>
|
||||||
|
<title>[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</title>
|
||||||
|
<link>https://h.cowbay.org/post/fix-zpool-device-busy-using-dmsetup/</link>
|
||||||
|
<pubDate>Mon, 01 Apr 2019 15:56:27 +0800</pubDate>
|
||||||
|
|
||||||
|
<guid>https://h.cowbay.org/post/fix-zpool-device-busy-using-dmsetup/</guid>
|
||||||
|
<description><p>今天把其中一台proxmox 加上10G 光纖網卡,準備和另一台proxmox 組成10G 環境進行測試</p>
|
||||||
|
|
||||||
|
<p>想說把本機的zpool 拆掉,重新建立一個raid0 的空間來做clone/migrate</p>
|
||||||
|
|
||||||
|
<p>可是一直出現device busy的錯誤訊息</p>
|
||||||
|
|
||||||
|
<p></p></description>
|
||||||
|
</item>
|
||||||
|
|
||||||
<item>
|
<item>
|
||||||
<title>[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</title>
|
<title>[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</title>
|
||||||
<link>https://h.cowbay.org/post/transfer-cent62-using-rsync/</link>
|
<link>https://h.cowbay.org/post/transfer-cent62-using-rsync/</link>
|
||||||
|
|||||||
@@ -95,6 +95,101 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
|
<a class="bubble" href="/post/10g-lab-using-proxmox-and-mellanox/">
|
||||||
|
<i class="fa fa-fw fa-pencil"></i>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<article class="default article">
|
||||||
|
|
||||||
|
<div class="featured-image">
|
||||||
|
<a href="/post/10g-lab-using-proxmox-and-mellanox/">
|
||||||
|
<img src="/images/post-default-03.jpg" alt="">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
<h3><a href="/post/10g-lab-using-proxmox-and-mellanox/">[筆記] 用 proxmox & Mellanox SFP 網卡土炮 10G LAB </a></h3>
|
||||||
|
<div class="meta">
|
||||||
|
|
||||||
|
|
||||||
|
<span class="date moment">2018-11-30</span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<span class="categories">
|
||||||
|
|
||||||
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記</a>
|
||||||
|
|
||||||
|
</span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<span class="author"><a href="/author/eric-chang">Eric Chang</a></span>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<p>想做一個 10G 的 LAB 環境出來已經很久了。</p>
|
||||||
|
|
||||||
|
<p>只是礙於10G RJ45的卡太貴了,然後光纖的種類又太複雜</p>
|
||||||
|
|
||||||
|
<p>如果直接在淘寶購買,很怕會買錯(什麼LC/FC LC/LC 多模單模 單芯雙芯 SFP/SFP+ 又是什麼光模塊的一大堆規格)</p>
|
||||||
|
|
||||||
|
<p>所以一直沒有付諸行動。</p>
|
||||||
|
|
||||||
|
<p>硬體的工作很久沒碰了,剛好在蝦皮看到有個賣家在賣 mellanox 的X2網卡,以在台灣的價格來說,算很便宜的 (550)</p>
|
||||||
|
|
||||||
|
<p>聊了一下,跟他請教了關於線材、光纖模塊的問題,回答也都很快很到位</p>
|
||||||
|
|
||||||
|
<p>就直接下訂了兩張網卡、兩個光纖模塊、一條LC/LC 光纖線</p>
|
||||||
|
|
||||||
|
<p>就是到貨有點久,等了兩個禮拜左右,一直到昨天東西才寄到</p>
|
||||||
|
|
||||||
|
<p>今天就花了點時間測試一下</p>
|
||||||
|
|
||||||
|
<p></p>
|
||||||
|
|
||||||
|
|
||||||
|
<a href="/post/10g-lab-using-proxmox-and-mellanox/" class="more">Continue reading</a>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="footer">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="tags">
|
||||||
|
<i class="fa fa-tags"></i>
|
||||||
|
<div class="links">
|
||||||
|
|
||||||
|
<a href="/tags/10g">10G</a>
|
||||||
|
|
||||||
|
<a href="/tags/%E7%AD%86%E8%A8%98">筆記</a>
|
||||||
|
|
||||||
|
<a href="/tags/mellanox">mellanox</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="article-wrapper u-cf">
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
<a class="bubble" href="/post/ansible-selectattr-filter/">
|
<a class="bubble" href="/post/ansible-selectattr-filter/">
|
||||||
@@ -910,6 +1005,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -934,10 +1033,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -948,7 +1043,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -415,6 +415,10 @@ TCP window size: 85.0 KByte (default)
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -439,10 +443,6 @@ TCP window size: 85.0 KByte (default)
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -453,7 +453,7 @@ TCP window size: 85.0 KByte (default)
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -218,6 +218,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -242,10 +246,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -256,7 +256,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -329,6 +329,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -353,10 +357,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -367,7 +367,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -284,6 +284,10 @@ b8d74048eba1 mysql:5.7.21 "docker-entrypoint.s…&qu
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -308,10 +312,6 @@ b8d74048eba1 mysql:5.7.21 "docker-entrypoint.s…&qu
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -322,7 +322,7 @@ b8d74048eba1 mysql:5.7.21 "docker-entrypoint.s…&qu
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -258,6 +258,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -282,10 +286,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -296,7 +296,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -392,6 +392,10 @@ openssl s_client -showcerts -connect mail.example.com:465
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -416,10 +420,6 @@ openssl s_client -showcerts -connect mail.example.com:465
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -430,7 +430,7 @@ openssl s_client -showcerts -connect mail.example.com:465
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -216,6 +216,10 @@ GRANT a TO b;
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -240,10 +244,6 @@ GRANT a TO b;
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -254,7 +254,7 @@ GRANT a TO b;
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -229,6 +229,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -253,10 +257,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -267,7 +267,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -302,6 +302,10 @@ admin@storage:~$
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -326,10 +330,6 @@ admin@storage:~$
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -340,7 +340,7 @@ admin@storage:~$
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
444
public/post/fix-zpool-device-busy-using-dmsetup/index.html
Normal file
444
public/post/fix-zpool-device-busy-using-dmsetup/index.html
Normal file
@@ -0,0 +1,444 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html class="no-js" lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="author" content="Eric Chang">
|
||||||
|
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||||
|
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||||
|
<meta name="generator" content="Hugo 0.50" />
|
||||||
|
<title> [筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup | MC部落</title>
|
||||||
|
<meta name="description" content="[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup - Bilberry Premium Theme for Hugo.">
|
||||||
|
<meta itemprop="name" content="[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup">
|
||||||
|
<meta itemprop="description" content="[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup - Bilberry Premium Theme for Hugo.">
|
||||||
|
<meta property="og:title" content="[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup">
|
||||||
|
<meta property="og:description" content="[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup - Bilberry Premium Theme for Hugo.">
|
||||||
|
<meta property="og:image" content="https://h.cowbay.org/images/post-default-11.jpg">
|
||||||
|
<meta property="og:url" content="https://h.cowbay.org/post/fix-zpool-device-busy-using-dmsetup/">
|
||||||
|
<meta property="og:site_name" content="MC部落">
|
||||||
|
<meta property="og:type" content="article">
|
||||||
|
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||||
|
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
||||||
|
|
||||||
|
|
||||||
|
</head>
|
||||||
|
<body class="bilberry-hugo-theme">
|
||||||
|
|
||||||
|
<nav class="permanentTopNav">
|
||||||
|
|
||||||
|
<div class="container">
|
||||||
|
<ul class="topnav">
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
|
||||||
|
<div id="search-box" class="search">
|
||||||
|
<i class="fa fa-search"></i>
|
||||||
|
<input id="search" type="text" placeholder="Search ...">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
|
||||||
|
<header>
|
||||||
|
<div class="container">
|
||||||
|
<div class="logo">
|
||||||
|
<a href="/" class="logo">
|
||||||
|
|
||||||
|
<img src="https://www.gravatar.com/avatar/e4eb1f8e016ffb73e9889f87d16e15f0?d=mm&size=200" alt="">
|
||||||
|
|
||||||
|
|
||||||
|
<span class="overlay"><i class="fa fa-home"></i></span>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="titles">
|
||||||
|
<h3 class="title"><a href="/">MC部落</a></h3>
|
||||||
|
|
||||||
|
<span class="subtitle">這是MC的HUGO部落格,採用bilberry theme</span>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="toggler permanentTopNav">
|
||||||
|
|
||||||
|
<i class="fa fa-bars" aria-hidden="true"></i>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="main container">
|
||||||
|
|
||||||
|
|
||||||
|
<div class="article-wrapper u-cf single">
|
||||||
|
|
||||||
|
<a class="bubble" href="/post/fix-zpool-device-busy-using-dmsetup/">
|
||||||
|
<i class="fa fa-fw fa-pencil"></i>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<article class="default article">
|
||||||
|
|
||||||
|
<div class="featured-image">
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">
|
||||||
|
<img src="/images/post-default-11.jpg" alt="">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
<h3><a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a></h3>
|
||||||
|
<div class="meta">
|
||||||
|
|
||||||
|
|
||||||
|
<span class="date moment">2019-04-01</span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<span class="categories">
|
||||||
|
|
||||||
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記</a>
|
||||||
|
|
||||||
|
</span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<span class="author"><a href="/author/eric-chang">Eric Chang</a></span>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<p>今天把其中一台proxmox 加上10G 光纖網卡,準備和另一台proxmox 組成10G 環境進行測試</p>
|
||||||
|
|
||||||
|
<p>想說把本機的zpool 拆掉,重新建立一個raid0 的空間來做clone/migrate</p>
|
||||||
|
|
||||||
|
<p>可是一直出現device busy的錯誤訊息</p>
|
||||||
|
|
||||||
|
<p></p>
|
||||||
|
|
||||||
|
<pre><code>root@pve:~# zpool create zp sdb1
|
||||||
|
cannot open '/dev/sdb1': Device or resource busy
|
||||||
|
|
||||||
|
</code></pre>
|
||||||
|
|
||||||
|
<p>可是我沒有mount 這個分割進來</p>
|
||||||
|
|
||||||
|
<p>而且我也可以用fdisk 去切sdb ,代表sdb 沒有真的被使用</p>
|
||||||
|
|
||||||
|
<p>找了很久,終於找到這個dmsetup指令</p>
|
||||||
|
|
||||||
|
<p>先用 <code>dmsetup info -C</code> 來看現在的狀態</p>
|
||||||
|
|
||||||
|
<pre><code>root@pve:~# dmsetup info -C
|
||||||
|
Name Maj Min Stat Open Targ Event UUID
|
||||||
|
ST2000DM001-1ER164_W4Z3KKJB 253 3 L--w 0 1 0 mpath-ST2000DM001-1ER164_W4Z3KKJB
|
||||||
|
pve-swap 253 0 L--w 2 1 0 LVM-6Hle5UGjtr8NQQsbMrYlSdGXZklwAi87Kq9NlzQa6xvgiHOEP3Ekx72i5yYNaupf
|
||||||
|
pve-root 253 1 L--w 1 1 0 LVM-6Hle5UGjtr8NQQsbMrYlSdGXZklwAi87geZeFZsQsgYUbI1ZJU4lKD86TVd1MNrq
|
||||||
|
ST2000DM001-1ER164_W4Z3KM2F-part1 253 5 L--w 0 1 0 part1-mpath-ST2000DM001-1ER164_W4Z3KM2F
|
||||||
|
ST2000DM001-1ER164_W4Z3KM2F 253 2 L--w 1 1 0 mpath-ST2000DM001-1ER164_W4Z3KM2F
|
||||||
|
ST2000DM001-1ER164_W4Z3GYNJ 253 4 L--w 0 1 0 mpath-ST2000DM001-1ER164_W4Z3GYNJ
|
||||||
|
</code></pre>
|
||||||
|
|
||||||
|
<p>除了那兩個LVM開頭的以外,其他都不應該出現在這裡才對
|
||||||
|
移除掉應該就可以了
|
||||||
|
要照順序,像那個有part1 的,就要先移掉,才能移掉底層</p>
|
||||||
|
|
||||||
|
<pre><code>root@pve:~# dmsetup remove ST2000DM001-1ER164_W4Z3KM2F-part1
|
||||||
|
root@pve:~# dmsetup remove ST2000DM001-1ER164_W4Z3KM2F
|
||||||
|
root@pve:~# dmsetup remove ST2000DM001-1ER164_W4Z3KKJB
|
||||||
|
root@pve:~# dmsetup remove ST2000DM001-1ER164_W4Z3KM2F
|
||||||
|
root@pve:~# dmsetup remove ST2000DM001-1ER164_W4Z3GYNJ
|
||||||
|
</code></pre>
|
||||||
|
|
||||||
|
<p>再來建立zpool 就 OK了</p>
|
||||||
|
|
||||||
|
<pre><code>root@pve:~# zpool create zp sdb sdc sdd
|
||||||
|
root@pve:~# zpool status
|
||||||
|
pool: zp
|
||||||
|
state: ONLINE
|
||||||
|
scan: none requested
|
||||||
|
config:
|
||||||
|
|
||||||
|
NAME STATE READ WRITE CKSUM
|
||||||
|
zp ONLINE 0 0 0
|
||||||
|
sdb ONLINE 0 0 0
|
||||||
|
sdc ONLINE 0 0 0
|
||||||
|
sdd ONLINE 0 0 0
|
||||||
|
|
||||||
|
errors: No known data errors
|
||||||
|
root@pve:~#
|
||||||
|
</code></pre>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="footer">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="tags">
|
||||||
|
<i class="fa fa-tags"></i>
|
||||||
|
<div class="links">
|
||||||
|
|
||||||
|
<a href="/tags/zfs">zfs</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div id="disqus_thread"></div>
|
||||||
|
<script type="application/javascript">
|
||||||
|
var disqus_config = function () {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
};
|
||||||
|
(function() {
|
||||||
|
if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) {
|
||||||
|
document.getElementById('disqus_thread').innerHTML = 'Disqus comments not available by default when the website is previewed locally.';
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
var d = document, s = d.createElement('script'); s.async = true;
|
||||||
|
s.src = '//' + "h-cowbay-org-1" + '.disqus.com/embed.js';
|
||||||
|
s.setAttribute('data-timestamp', +new Date());
|
||||||
|
(d.head || d.body).appendChild(s);
|
||||||
|
})();
|
||||||
|
</script>
|
||||||
|
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||||
|
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<div class="container">
|
||||||
|
|
||||||
|
|
||||||
|
<div class="recent-posts">
|
||||||
|
<strong>Latest posts</strong>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/command_to_test_main_ssl/">[筆記] 測試mail server 的SSL憑證的指令 Command to test mailserver SSL</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/install-timeshift-on-ubuntu1804/">Install Timeshift on Ubuntu1804</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/install-ubuntu1804-on-dell-6ir-raid-controller/">用DELL 6 i/R 建立RAID,並在上面安裝ubuntu 18.04 </a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ubuntu-1804-install-root-on-raid/">Ubuntu 1804 Install Root on Raid</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="categories">
|
||||||
|
<a href="/categories/"><strong>Categories</strong></a>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ps">Ps (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/%E7%A2%8E%E5%BF%B5">碎念 (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/%E7%BE%A4%E6%9A%89">群暉 (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="right">
|
||||||
|
|
||||||
|
<div class="external-profiles">
|
||||||
|
<strong>Social media</strong>
|
||||||
|
|
||||||
|
|
||||||
|
<a href="https://www.facebook.com/mariahchang" target="_blank"><i class="fa fa-facebook-adblock-proof"></i></a>
|
||||||
|
|
||||||
|
|
||||||
|
<a href="https://twitter.com/changchichung" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a href="https://github.com/changchichung" target="_blank"><i class="fa fa-github"></i></a>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="credits">
|
||||||
|
<div class="container">
|
||||||
|
<div class="copyright">
|
||||||
|
<a href="https://github.com/Lednerb" target="_blank">
|
||||||
|
©
|
||||||
|
|
||||||
|
2017
|
||||||
|
|
||||||
|
by Lednerb
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="author">
|
||||||
|
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="application/javascript">
|
||||||
|
var doNotTrack = false;
|
||||||
|
if (!doNotTrack) {
|
||||||
|
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
|
||||||
|
ga('create', 'UA-128770427-1', 'auto');
|
||||||
|
|
||||||
|
ga('send', 'pageview');
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<script async src='https://www.google-analytics.com/analytics.js'></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
$(".moment").each(function() {
|
||||||
|
$(this).text(
|
||||||
|
moment( $(this).text() )
|
||||||
|
.locale( "en" )
|
||||||
|
.format('LL')
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
$(".footnote-return sup").html("");
|
||||||
|
</script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script>
|
||||||
|
var client = algoliasearch("2XL0P8XDCY", "4ef65b37b627bb886b46c34a10e63aa6");
|
||||||
|
var index = client.initIndex("h_cowbay_org");
|
||||||
|
|
||||||
|
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||||
|
[
|
||||||
|
{
|
||||||
|
|
||||||
|
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 10 }),
|
||||||
|
|
||||||
|
displayKey: function(suggestion) {
|
||||||
|
return suggestion.title || suggestion.author
|
||||||
|
},
|
||||||
|
templates: {
|
||||||
|
suggestion: function(suggestion) {
|
||||||
|
return "<span class='entry " + suggestion.type + "'>"
|
||||||
|
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||||
|
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||||
|
+ "</span>"
|
||||||
|
;
|
||||||
|
},
|
||||||
|
empty: function() {
|
||||||
|
return "<span class='empty'>Nothing found.</span>"
|
||||||
|
},
|
||||||
|
footer: function() {
|
||||||
|
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||||
|
}
|
||||||
|
|
||||||
|
},
|
||||||
|
}
|
||||||
|
])
|
||||||
|
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||||
|
window.location = (suggestion.url);
|
||||||
|
})
|
||||||
|
.keypress(function (event, suggestion) {
|
||||||
|
if (event.which == 13) {
|
||||||
|
window.location = (suggestion.url);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -272,6 +272,10 @@ unused devices: <none>
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -296,10 +300,6 @@ unused devices: <none>
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -310,7 +310,7 @@ unused devices: <none>
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -90,6 +90,83 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
|
<a class="bubble" href="/post/fix-zpool-device-busy-using-dmsetup/">
|
||||||
|
<i class="fa fa-fw fa-pencil"></i>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<article class="default article">
|
||||||
|
|
||||||
|
<div class="featured-image">
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">
|
||||||
|
<img src="/images/post-default-11.jpg" alt="">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
<h3><a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a></h3>
|
||||||
|
<div class="meta">
|
||||||
|
|
||||||
|
|
||||||
|
<span class="date moment">2019-04-01</span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<span class="categories">
|
||||||
|
|
||||||
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記</a>
|
||||||
|
|
||||||
|
</span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<span class="author"><a href="/author/eric-chang">Eric Chang</a></span>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<p>今天把其中一台proxmox 加上10G 光纖網卡,準備和另一台proxmox 組成10G 環境進行測試</p>
|
||||||
|
|
||||||
|
<p>想說把本機的zpool 拆掉,重新建立一個raid0 的空間來做clone/migrate</p>
|
||||||
|
|
||||||
|
<p>可是一直出現device busy的錯誤訊息</p>
|
||||||
|
|
||||||
|
<p></p>
|
||||||
|
|
||||||
|
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/" class="more">Continue reading</a>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="footer">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="tags">
|
||||||
|
<i class="fa fa-tags"></i>
|
||||||
|
<div class="links">
|
||||||
|
|
||||||
|
<a href="/tags/zfs">zfs</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="article-wrapper u-cf">
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
<a class="bubble" href="/post/transfer-cent62-using-rsync/">
|
<a class="bubble" href="/post/transfer-cent62-using-rsync/">
|
||||||
@@ -783,99 +860,6 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="article-wrapper u-cf">
|
|
||||||
|
|
||||||
<a class="bubble" href="/post/10g-lab-using-proxmox-and-mellanox/">
|
|
||||||
<i class="fa fa-fw fa-pencil"></i>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<article class="default article">
|
|
||||||
|
|
||||||
<div class="featured-image">
|
|
||||||
<a href="/post/10g-lab-using-proxmox-and-mellanox/">
|
|
||||||
<img src="/images/post-default-03.jpg" alt="">
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="content">
|
|
||||||
<h3><a href="/post/10g-lab-using-proxmox-and-mellanox/">[筆記] 用 proxmox & Mellanox SFP 網卡土炮 10G LAB </a></h3>
|
|
||||||
<div class="meta">
|
|
||||||
|
|
||||||
|
|
||||||
<span class="date moment">2018-11-30</span>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<span class="categories">
|
|
||||||
|
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記</a>
|
|
||||||
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<span class="author"><a href="/author/eric-chang">Eric Chang</a></span>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<p>想做一個 10G 的 LAB 環境出來已經很久了。</p>
|
|
||||||
|
|
||||||
<p>只是礙於10G RJ45的卡太貴了,然後光纖的種類又太複雜</p>
|
|
||||||
|
|
||||||
<p>如果直接在淘寶購買,很怕會買錯(什麼LC/FC LC/LC 多模單模 單芯雙芯 SFP/SFP+ 又是什麼光模塊的一大堆規格)</p>
|
|
||||||
|
|
||||||
<p>所以一直沒有付諸行動。</p>
|
|
||||||
|
|
||||||
<p>硬體的工作很久沒碰了,剛好在蝦皮看到有個賣家在賣 mellanox 的X2網卡,以在台灣的價格來說,算很便宜的 (550)</p>
|
|
||||||
|
|
||||||
<p>聊了一下,跟他請教了關於線材、光纖模塊的問題,回答也都很快很到位</p>
|
|
||||||
|
|
||||||
<p>就直接下訂了兩張網卡、兩個光纖模塊、一條LC/LC 光纖線</p>
|
|
||||||
|
|
||||||
<p>就是到貨有點久,等了兩個禮拜左右,一直到昨天東西才寄到</p>
|
|
||||||
|
|
||||||
<p>今天就花了點時間測試一下</p>
|
|
||||||
|
|
||||||
<p></p>
|
|
||||||
|
|
||||||
|
|
||||||
<a href="/post/10g-lab-using-proxmox-and-mellanox/" class="more">Continue reading</a>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="footer">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="tags">
|
|
||||||
<i class="fa fa-tags"></i>
|
|
||||||
<div class="links">
|
|
||||||
|
|
||||||
<a href="/tags/10g">10G</a>
|
|
||||||
|
|
||||||
<a href="/tags/%E7%AD%86%E8%A8%98">筆記</a>
|
|
||||||
|
|
||||||
<a href="/tags/mellanox">mellanox</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
@@ -906,6 +890,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -930,10 +918,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -944,7 +928,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -5,11 +5,26 @@
|
|||||||
<link>https://h.cowbay.org/post/</link>
|
<link>https://h.cowbay.org/post/</link>
|
||||||
<description>Recent content in Posts on MC部落</description>
|
<description>Recent content in Posts on MC部落</description>
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
<lastBuildDate>Wed, 27 Mar 2019 17:44:49 +0800</lastBuildDate>
|
<lastBuildDate>Mon, 01 Apr 2019 15:56:27 +0800</lastBuildDate>
|
||||||
|
|
||||||
<atom:link href="https://h.cowbay.org/post/index.xml" rel="self" type="application/rss+xml" />
|
<atom:link href="https://h.cowbay.org/post/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
|
||||||
|
|
||||||
|
<item>
|
||||||
|
<title>[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</title>
|
||||||
|
<link>https://h.cowbay.org/post/fix-zpool-device-busy-using-dmsetup/</link>
|
||||||
|
<pubDate>Mon, 01 Apr 2019 15:56:27 +0800</pubDate>
|
||||||
|
|
||||||
|
<guid>https://h.cowbay.org/post/fix-zpool-device-busy-using-dmsetup/</guid>
|
||||||
|
<description><p>今天把其中一台proxmox 加上10G 光纖網卡,準備和另一台proxmox 組成10G 環境進行測試</p>
|
||||||
|
|
||||||
|
<p>想說把本機的zpool 拆掉,重新建立一個raid0 的空間來做clone/migrate</p>
|
||||||
|
|
||||||
|
<p>可是一直出現device busy的錯誤訊息</p>
|
||||||
|
|
||||||
|
<p></p></description>
|
||||||
|
</item>
|
||||||
|
|
||||||
<item>
|
<item>
|
||||||
<title>[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</title>
|
<title>[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</title>
|
||||||
<link>https://h.cowbay.org/post/transfer-cent62-using-rsync/</link>
|
<link>https://h.cowbay.org/post/transfer-cent62-using-rsync/</link>
|
||||||
|
|||||||
@@ -774,6 +774,10 @@ sudo apt install joe-jupp
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -798,10 +802,6 @@ sudo apt install joe-jupp
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -812,7 +812,7 @@ sudo apt install joe-jupp
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -234,6 +234,10 @@ GRUB_CMDLINE_LINUX="rootdelay=90"
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -258,10 +262,6 @@ GRUB_CMDLINE_LINUX="rootdelay=90"
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -272,7 +272,7 @@ GRUB_CMDLINE_LINUX="rootdelay=90"
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -251,6 +251,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -275,10 +279,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -289,7 +289,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -90,6 +90,99 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
|
<a class="bubble" href="/post/10g-lab-using-proxmox-and-mellanox/">
|
||||||
|
<i class="fa fa-fw fa-pencil"></i>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<article class="default article">
|
||||||
|
|
||||||
|
<div class="featured-image">
|
||||||
|
<a href="/post/10g-lab-using-proxmox-and-mellanox/">
|
||||||
|
<img src="/images/post-default-03.jpg" alt="">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
<h3><a href="/post/10g-lab-using-proxmox-and-mellanox/">[筆記] 用 proxmox & Mellanox SFP 網卡土炮 10G LAB </a></h3>
|
||||||
|
<div class="meta">
|
||||||
|
|
||||||
|
|
||||||
|
<span class="date moment">2018-11-30</span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<span class="categories">
|
||||||
|
|
||||||
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記</a>
|
||||||
|
|
||||||
|
</span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<span class="author"><a href="/author/eric-chang">Eric Chang</a></span>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<p>想做一個 10G 的 LAB 環境出來已經很久了。</p>
|
||||||
|
|
||||||
|
<p>只是礙於10G RJ45的卡太貴了,然後光纖的種類又太複雜</p>
|
||||||
|
|
||||||
|
<p>如果直接在淘寶購買,很怕會買錯(什麼LC/FC LC/LC 多模單模 單芯雙芯 SFP/SFP+ 又是什麼光模塊的一大堆規格)</p>
|
||||||
|
|
||||||
|
<p>所以一直沒有付諸行動。</p>
|
||||||
|
|
||||||
|
<p>硬體的工作很久沒碰了,剛好在蝦皮看到有個賣家在賣 mellanox 的X2網卡,以在台灣的價格來說,算很便宜的 (550)</p>
|
||||||
|
|
||||||
|
<p>聊了一下,跟他請教了關於線材、光纖模塊的問題,回答也都很快很到位</p>
|
||||||
|
|
||||||
|
<p>就直接下訂了兩張網卡、兩個光纖模塊、一條LC/LC 光纖線</p>
|
||||||
|
|
||||||
|
<p>就是到貨有點久,等了兩個禮拜左右,一直到昨天東西才寄到</p>
|
||||||
|
|
||||||
|
<p>今天就花了點時間測試一下</p>
|
||||||
|
|
||||||
|
<p></p>
|
||||||
|
|
||||||
|
|
||||||
|
<a href="/post/10g-lab-using-proxmox-and-mellanox/" class="more">Continue reading</a>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="footer">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="tags">
|
||||||
|
<i class="fa fa-tags"></i>
|
||||||
|
<div class="links">
|
||||||
|
|
||||||
|
<a href="/tags/10g">10G</a>
|
||||||
|
|
||||||
|
<a href="/tags/%E7%AD%86%E8%A8%98">筆記</a>
|
||||||
|
|
||||||
|
<a href="/tags/mellanox">mellanox</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="article-wrapper u-cf">
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
<a class="bubble" href="/post/ansible-selectattr-filter/">
|
<a class="bubble" href="/post/ansible-selectattr-filter/">
|
||||||
@@ -820,6 +913,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -844,10 +941,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -858,7 +951,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -214,6 +214,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -238,10 +242,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -252,7 +252,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -264,6 +264,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -288,10 +292,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -302,7 +302,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -579,6 +579,10 @@ df -h
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -603,10 +607,6 @@ df -h
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -617,7 +617,7 @@ df -h
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -326,6 +326,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -350,10 +354,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -364,7 +364,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -295,6 +295,10 @@ acl CONNECT method CONNECT
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -319,10 +323,6 @@ acl CONNECT method CONNECT
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -333,7 +333,7 @@ acl CONNECT method CONNECT
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
<sitemap>
|
<sitemap>
|
||||||
<loc>https://h.cowbay.org/en/sitemap.xml</loc>
|
<loc>https://h.cowbay.org/en/sitemap.xml</loc>
|
||||||
|
|
||||||
<lastmod>2019-03-27T17:44:49+08:00</lastmod>
|
<lastmod>2019-04-01T15:56:27+08:00</lastmod>
|
||||||
|
|
||||||
</sitemap>
|
</sitemap>
|
||||||
|
|
||||||
|
|||||||
@@ -204,6 +204,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -228,10 +232,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -242,7 +242,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -306,6 +306,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -330,10 +334,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -344,7 +344,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -192,6 +192,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -216,10 +220,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -230,7 +230,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -202,6 +202,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -226,10 +230,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -240,7 +240,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -187,6 +187,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -211,10 +215,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -225,7 +225,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -202,6 +202,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -226,10 +230,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -240,7 +240,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -189,6 +189,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -213,10 +217,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -227,7 +227,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -194,6 +194,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -218,10 +222,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -232,7 +232,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -190,6 +190,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -214,10 +218,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -228,7 +228,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -143,6 +143,8 @@
|
|||||||
|
|
||||||
<li><a href="/tags/vim">Vim (1)</a></li>
|
<li><a href="/tags/vim">Vim (1)</a></li>
|
||||||
|
|
||||||
|
<li><a href="/tags/zfs">Zfs (1)</a></li>
|
||||||
|
|
||||||
<li><a href="/tags/%E7%9F%AD%E4%BB%8A">短今 (1)</a></li>
|
<li><a href="/tags/%E7%9F%AD%E4%BB%8A">短今 (1)</a></li>
|
||||||
|
|
||||||
<li><a href="/tags/%E7%AD%86%E8%A8%98">筆記 (5)</a></li>
|
<li><a href="/tags/%E7%AD%86%E8%A8%98">筆記 (5)</a></li>
|
||||||
@@ -166,6 +168,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -190,10 +196,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -204,7 +206,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -199,6 +199,15 @@
|
|||||||
<description></description>
|
<description></description>
|
||||||
</item>
|
</item>
|
||||||
|
|
||||||
|
<item>
|
||||||
|
<title>Zfs</title>
|
||||||
|
<link>https://h.cowbay.org/tags/zfs/</link>
|
||||||
|
<pubDate>Mon, 01 Apr 2019 15:56:27 +0800</pubDate>
|
||||||
|
|
||||||
|
<guid>https://h.cowbay.org/tags/zfs/</guid>
|
||||||
|
<description></description>
|
||||||
|
</item>
|
||||||
|
|
||||||
<item>
|
<item>
|
||||||
<title>短今</title>
|
<title>短今</title>
|
||||||
<link>https://h.cowbay.org/tags/%E7%9F%AD%E4%BB%8A/</link>
|
<link>https://h.cowbay.org/tags/%E7%9F%AD%E4%BB%8A/</link>
|
||||||
|
|||||||
@@ -383,6 +383,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -407,10 +411,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -421,7 +421,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -192,6 +192,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -216,10 +220,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -230,7 +230,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -204,6 +204,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -228,10 +232,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -242,7 +242,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -194,6 +194,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -218,10 +222,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -232,7 +232,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -294,6 +294,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -318,10 +322,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -332,7 +332,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -179,6 +179,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -203,10 +207,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -217,7 +217,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -192,6 +192,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -216,10 +220,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -230,7 +230,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -190,6 +190,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -214,10 +218,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -228,7 +228,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -203,6 +203,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -227,10 +231,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -241,7 +241,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -294,6 +294,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -318,10 +322,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -332,7 +332,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -432,6 +432,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -456,10 +460,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -470,7 +470,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -190,6 +190,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -214,10 +218,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -228,7 +228,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
384
public/tags/zfs/index.html
Normal file
384
public/tags/zfs/index.html
Normal file
@@ -0,0 +1,384 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html class="no-js" lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="author" content="Eric Chang">
|
||||||
|
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||||
|
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||||
|
<meta name="generator" content="Hugo 0.50" />
|
||||||
|
<title> Zfs | MC部落</title>
|
||||||
|
<meta name="description" content="Zfs - Bilberry Premium Theme for Hugo.">
|
||||||
|
<meta itemprop="name" content="Zfs">
|
||||||
|
<meta itemprop="description" content="Zfs - Bilberry Premium Theme for Hugo.">
|
||||||
|
<meta property="og:title" content="Zfs">
|
||||||
|
<meta property="og:description" content="Zfs - Bilberry Premium Theme for Hugo.">
|
||||||
|
<meta property="og:image" content="https://www.gravatar.com/avatar/e4eb1f8e016ffb73e9889f87d16e15f0?size=200">
|
||||||
|
<meta property="og:url" content="https://h.cowbay.org/tags/zfs/">
|
||||||
|
<meta property="og:site_name" content="MC部落"><meta property="og:type" content="website">
|
||||||
|
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||||
|
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||||
|
|
||||||
|
|
||||||
|
<link href="https://h.cowbay.org/tags/zfs/index.xml" rel="alternate" type="application/rss+xml" title="MC部落" />
|
||||||
|
<link href="https://h.cowbay.org/tags/zfs/index.xml" rel="feed" type="application/rss+xml" title="MC部落" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
||||||
|
|
||||||
|
|
||||||
|
</head>
|
||||||
|
<body class="bilberry-hugo-theme">
|
||||||
|
|
||||||
|
<nav class="permanentTopNav">
|
||||||
|
|
||||||
|
<div class="container">
|
||||||
|
<ul class="topnav">
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
|
||||||
|
<div id="search-box" class="search">
|
||||||
|
<i class="fa fa-search"></i>
|
||||||
|
<input id="search" type="text" placeholder="Search ...">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
|
||||||
|
<header>
|
||||||
|
<div class="container">
|
||||||
|
<div class="logo">
|
||||||
|
<a href="/" class="logo">
|
||||||
|
|
||||||
|
<img src="https://www.gravatar.com/avatar/e4eb1f8e016ffb73e9889f87d16e15f0?d=mm&size=200" alt="">
|
||||||
|
|
||||||
|
|
||||||
|
<span class="overlay"><i class="fa fa-home"></i></span>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="titles">
|
||||||
|
<h3 class="title"><a href="/">MC部落</a></h3>
|
||||||
|
|
||||||
|
<span class="subtitle">這是MC的HUGO部落格,採用bilberry theme</span>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="toggler permanentTopNav">
|
||||||
|
|
||||||
|
<i class="fa fa-bars" aria-hidden="true"></i>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="main container">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
|
<a class="bubble" href="/post/fix-zpool-device-busy-using-dmsetup/">
|
||||||
|
<i class="fa fa-fw fa-pencil"></i>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<article class="default article">
|
||||||
|
|
||||||
|
<div class="featured-image">
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">
|
||||||
|
<img src="/images/post-default-11.jpg" alt="">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
<h3><a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a></h3>
|
||||||
|
<div class="meta">
|
||||||
|
|
||||||
|
|
||||||
|
<span class="date moment">2019-04-01</span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<span class="categories">
|
||||||
|
|
||||||
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記</a>
|
||||||
|
|
||||||
|
</span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<span class="author"><a href="/author/eric-chang">Eric Chang</a></span>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<p>今天把其中一台proxmox 加上10G 光纖網卡,準備和另一台proxmox 組成10G 環境進行測試</p>
|
||||||
|
|
||||||
|
<p>想說把本機的zpool 拆掉,重新建立一個raid0 的空間來做clone/migrate</p>
|
||||||
|
|
||||||
|
<p>可是一直出現device busy的錯誤訊息</p>
|
||||||
|
|
||||||
|
<p></p>
|
||||||
|
|
||||||
|
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/" class="more">Continue reading</a>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="footer">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="tags">
|
||||||
|
<i class="fa fa-tags"></i>
|
||||||
|
<div class="links">
|
||||||
|
|
||||||
|
<a href="/tags/zfs">zfs</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="paginator">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<div class="container">
|
||||||
|
|
||||||
|
|
||||||
|
<div class="recent-posts">
|
||||||
|
<strong>Latest posts</strong>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/command_to_test_main_ssl/">[筆記] 測試mail server 的SSL憑證的指令 Command to test mailserver SSL</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/install-timeshift-on-ubuntu1804/">Install Timeshift on Ubuntu1804</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/install-ubuntu1804-on-dell-6ir-raid-controller/">用DELL 6 i/R 建立RAID,並在上面安裝ubuntu 18.04 </a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ubuntu-1804-install-root-on-raid/">Ubuntu 1804 Install Root on Raid</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="categories">
|
||||||
|
<a href="/categories/"><strong>Categories</strong></a>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ps">Ps (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/%E7%A2%8E%E5%BF%B5">碎念 (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/%E7%BE%A4%E6%9A%89">群暉 (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="right">
|
||||||
|
|
||||||
|
<div class="external-profiles">
|
||||||
|
<strong>Social media</strong>
|
||||||
|
|
||||||
|
|
||||||
|
<a href="https://www.facebook.com/mariahchang" target="_blank"><i class="fa fa-facebook-adblock-proof"></i></a>
|
||||||
|
|
||||||
|
|
||||||
|
<a href="https://twitter.com/changchichung" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a href="https://github.com/changchichung" target="_blank"><i class="fa fa-github"></i></a>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="credits">
|
||||||
|
<div class="container">
|
||||||
|
<div class="copyright">
|
||||||
|
<a href="https://github.com/Lednerb" target="_blank">
|
||||||
|
©
|
||||||
|
|
||||||
|
2017
|
||||||
|
|
||||||
|
by Lednerb
|
||||||
|
</a>
|
||||||
|
-
|
||||||
|
<a href="https://h.cowbay.org/tags/zfs/index.xml">RSS</a>
|
||||||
|
</div>
|
||||||
|
<div class="author">
|
||||||
|
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="application/javascript">
|
||||||
|
var doNotTrack = false;
|
||||||
|
if (!doNotTrack) {
|
||||||
|
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
|
||||||
|
ga('create', 'UA-128770427-1', 'auto');
|
||||||
|
|
||||||
|
ga('send', 'pageview');
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<script async src='https://www.google-analytics.com/analytics.js'></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
$(".moment").each(function() {
|
||||||
|
$(this).text(
|
||||||
|
moment( $(this).text() )
|
||||||
|
.locale( "en" )
|
||||||
|
.format('LL')
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
$(".footnote-return sup").html("");
|
||||||
|
</script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script>
|
||||||
|
var client = algoliasearch("2XL0P8XDCY", "4ef65b37b627bb886b46c34a10e63aa6");
|
||||||
|
var index = client.initIndex("h_cowbay_org");
|
||||||
|
|
||||||
|
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||||
|
[
|
||||||
|
{
|
||||||
|
|
||||||
|
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 10 }),
|
||||||
|
|
||||||
|
displayKey: function(suggestion) {
|
||||||
|
return suggestion.title || suggestion.author
|
||||||
|
},
|
||||||
|
templates: {
|
||||||
|
suggestion: function(suggestion) {
|
||||||
|
return "<span class='entry " + suggestion.type + "'>"
|
||||||
|
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||||
|
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||||
|
+ "</span>"
|
||||||
|
;
|
||||||
|
},
|
||||||
|
empty: function() {
|
||||||
|
return "<span class='empty'>Nothing found.</span>"
|
||||||
|
},
|
||||||
|
footer: function() {
|
||||||
|
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||||
|
}
|
||||||
|
|
||||||
|
},
|
||||||
|
}
|
||||||
|
])
|
||||||
|
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||||
|
window.location = (suggestion.url);
|
||||||
|
})
|
||||||
|
.keypress(function (event, suggestion) {
|
||||||
|
if (event.which == 13) {
|
||||||
|
window.location = (suggestion.url);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
29
public/tags/zfs/index.xml
Normal file
29
public/tags/zfs/index.xml
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
|
||||||
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
|
<channel>
|
||||||
|
<title>Zfs on MC部落</title>
|
||||||
|
<link>https://h.cowbay.org/tags/zfs/</link>
|
||||||
|
<description>Recent content in Zfs on MC部落</description>
|
||||||
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
|
<lastBuildDate>Mon, 01 Apr 2019 15:56:27 +0800</lastBuildDate>
|
||||||
|
|
||||||
|
<atom:link href="https://h.cowbay.org/tags/zfs/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
|
||||||
|
|
||||||
|
<item>
|
||||||
|
<title>[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</title>
|
||||||
|
<link>https://h.cowbay.org/post/fix-zpool-device-busy-using-dmsetup/</link>
|
||||||
|
<pubDate>Mon, 01 Apr 2019 15:56:27 +0800</pubDate>
|
||||||
|
|
||||||
|
<guid>https://h.cowbay.org/post/fix-zpool-device-busy-using-dmsetup/</guid>
|
||||||
|
<description><p>今天把其中一台proxmox 加上10G 光纖網卡,準備和另一台proxmox 組成10G 環境進行測試</p>
|
||||||
|
|
||||||
|
<p>想說把本機的zpool 拆掉,重新建立一個raid0 的空間來做clone/migrate</p>
|
||||||
|
|
||||||
|
<p>可是一直出現device busy的錯誤訊息</p>
|
||||||
|
|
||||||
|
<p></p></description>
|
||||||
|
</item>
|
||||||
|
|
||||||
|
</channel>
|
||||||
|
</rss>
|
||||||
1
public/tags/zfs/page/1/index.html
Normal file
1
public/tags/zfs/page/1/index.html
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<!DOCTYPE html><html><head><title>https://h.cowbay.org/tags/zfs/</title><link rel="canonical" href="https://h.cowbay.org/tags/zfs/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://h.cowbay.org/tags/zfs/" /></head></html>
|
||||||
@@ -179,6 +179,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -203,10 +207,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -217,7 +217,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -547,6 +547,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -571,10 +575,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -585,7 +585,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -202,6 +202,10 @@
|
|||||||
<strong>Latest posts</strong>
|
<strong>Latest posts</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
<a href="/post/transfer-cent62-using-rsync/">[筆記] 用rsync 移轉 centos 6.2的老機器 Transfer Cent6.2 using rsync</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -226,10 +230,6 @@
|
|||||||
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
<a href="/post/smartd-failed-to-start-in-freenas/">[筆記] Freenas Smartd 啟動失敗 Smartd Failed to Start in Freenas</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/incredibly-slow-mdadm-rebuild/">[碎念] mdadm 超級慢的rebuild 速度 Incredibly Slow mdadm Rebuild</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -240,7 +240,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (15)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (16)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
Reference in New Issue
Block a user