push to github
This commit is contained in:
135
content/post/remote-management-system-meshcentral.md
Normal file
135
content/post/remote-management-system-meshcentral.md
Normal file
@@ -0,0 +1,135 @@
|
|||||||
|
---
|
||||||
|
title: "linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral"
|
||||||
|
date: 2019-06-20T11:03:12+08:00
|
||||||
|
draft: false
|
||||||
|
|
||||||
|
noSummary: false
|
||||||
|
featuredImage: "https://h.cowbay.org/images/post-default-5.jpg"
|
||||||
|
categories: ['筆記']
|
||||||
|
tags: ['linux','remote','meshcentral']
|
||||||
|
author: "Eric Chang"
|
||||||
|
---
|
||||||
|
|
||||||
|
之前在LAN/windows環境下,一直都是用ultravnc/winvnc/tigervnc之類的VNC軟體
|
||||||
|
|
||||||
|
但是如果要過 internet ,就會碰到各種開port的問題
|
||||||
|
|
||||||
|
在這種環境下,就有了當時 teamviewer 的橫空出世
|
||||||
|
|
||||||
|
解決了開PORT的問題,讓被控端(通常是資訊技術相對弱勢,需要接受幫助的一方)不需要懂太多
|
||||||
|
|
||||||
|
只要下載teamviewer被控端,開啟後報ID 給協助者就好了
|
||||||
|
|
||||||
|
<!--more-->
|
||||||
|
|
||||||
|
好景不常...ㄟ,好像也不能這麼說
|
||||||
|
|
||||||
|
teamviewer 是一套商業授權軟體,要買license的
|
||||||
|
|
||||||
|
不知道用什麼方式偵測,一開始可以用,但是後來會出現視窗警告,再來就不讓你用了。
|
||||||
|
|
||||||
|
於是又有了 anydesk 的出現
|
||||||
|
|
||||||
|
anydesk 的定義就是免費軟體,所以沒有授權問題
|
||||||
|
|
||||||
|
可是 anydesk 在初期有頗多狀況,比如像是windows的UAC,或者是畫面反應速度過慢
|
||||||
|
|
||||||
|
又或者是常常自動變成view only ,無法操作的狀況
|
||||||
|
|
||||||
|
當使用者需要讓我用anydesk連線進去時,通常就已經是電腦有些什麼狀況了
|
||||||
|
|
||||||
|
然後還要面對anydesk的種種問題,實在是讓人很抓狂!
|
||||||
|
|
||||||
|
終於某次因緣際會,讓我找到了這篇的主角
|
||||||
|
|
||||||
|
## Meshcentral ##
|
||||||
|
|
||||||
|
簡單介紹一下Meshcentral 的優點
|
||||||
|
|
||||||
|
### 安全性高 ###
|
||||||
|
teamviewer & anydesk 之所以不需要開port,就是被控/遙控兩邊都是先連線到他們提供的伺服器(通常在國外)
|
||||||
|
|
||||||
|
有人會擔心這樣畫面會不會被擷取之類的 我是認為想太多了啦,但就真的有人會擔心這種問題啊(嘆
|
||||||
|
|
||||||
|
meshcentral則不同,他是安裝在LAN的機器上(當然,要跨WAN也可以,就開port吧)
|
||||||
|
|
||||||
|
所以原則上從server到client這段的連線,都是在LAN中加密進行,不會有需要上傳到廠商伺服器的問題
|
||||||
|
|
||||||
|
自然安全性就高了很多
|
||||||
|
|
||||||
|
### 速度快 ###
|
||||||
|
|
||||||
|
如同前面所述,因為都在LAN中進行,不需要透過廠商在國外的Server,所以操作的速度很快!
|
||||||
|
|
||||||
|
### 操作簡單 ###
|
||||||
|
|
||||||
|
一開始meshcentral 會需要在client 安裝agent,在比較早期一點的版本,這個動作需要先用anydesk連上被控端
|
||||||
|
|
||||||
|
然後去開啟連結、以管理者權限進行安裝
|
||||||
|
|
||||||
|
新版改善了這個問題,可以直接產生一個invite url ,直接發信給user ,請user去點連結進行安裝
|
||||||
|
|
||||||
|
當然要先做好安裝步驟說明就是了,不然windows會判斷這個是有問題的檔案,不讓執行
|
||||||
|
|
||||||
|
裝完之後,被控端就不會再看到這東西了(所以也無從關閉,除非從service.msc 去stop)
|
||||||
|
|
||||||
|
而且也不會碰到煩人的UAC訊息跳出來時,畫面上的按鈕無法點選的問題(anydesk就有這種狀況,需要透過config去排除)
|
||||||
|
|
||||||
|
### 安裝容易 ###
|
||||||
|
|
||||||
|
meshcentral的安裝很簡單,在ubuntu 18.04 server 的環境底下執行以下指令
|
||||||
|
|
||||||
|
```
|
||||||
|
#install nodejs/npm
|
||||||
|
sudo apt install nodejs npm
|
||||||
|
#make meshcentral working folder
|
||||||
|
sudo mkdir -p /opt/meshcentral
|
||||||
|
#install meshcentral
|
||||||
|
cd /opt/meshcentral;npm install meshcentral
|
||||||
|
# start meshcentral
|
||||||
|
cd /opt/meshcentral/node_modules/meshcentral;node meshcentral --cert {{ servier_ip_address }}
|
||||||
|
```
|
||||||
|
|
||||||
|
這樣就把meshcentral安裝&啟動了
|
||||||
|
|
||||||
|
應該是可以改用systemd or supervisor 來控制了,那個是另外的部份了
|
||||||
|
|
||||||
|
|
||||||
|
- - -
|
||||||
|
|
||||||
|
|
||||||
|
### Meshcentral 簡易操作說明 ###
|
||||||
|
|
||||||
|
meshcentral 在操作上也很簡單,第一次安裝成功後,開啟meshcentral的頁面
|
||||||
|
|
||||||
|
首先建立一個管理者帳號,接著用管理者帳號進入後,建立一個group
|
||||||
|
|
||||||
|
然後進入這個group ,會看到一個 invite的連結
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
點擊invite之後,會詢問要產生多長有效時間的連結,如果很懶,就直接選unlimited
|
||||||
|
|
||||||
|
然後把這串URL記下來,發給所有user(最好自己先run過一遍,做一份安裝步驟一起發給使用者)
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
等到user照說明,安裝agent之後,在管理界面上就會看到client出現了
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
有亮起來的圖示就代表client online ,可以直接進去操作
|
||||||
|
|
||||||
|
操作畫面可以操考以下影片,我是透過internet(兩邊都是CHT雙向100) 去控制遠端電腦播放youtube
|
||||||
|
|
||||||
|
可以看到畫面是非常地流暢!
|
||||||
|
|
||||||
|
{{< youtube p6-BBYW51qc >}}
|
||||||
|
|
||||||
|
|
||||||
|
### 總結 ###
|
||||||
|
|
||||||
|
這麼好用的系統,還不快去裝一套起來!
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -115,6 +115,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -139,10 +143,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -153,7 +153,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -90,6 +90,91 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
|
<a class="bubble" href="/post/remote-management-system-meshcentral/">
|
||||||
|
<i class="fa fa-fw fa-pencil"></i>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<article class="default article">
|
||||||
|
|
||||||
|
<div class="featured-image">
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">
|
||||||
|
<img src="/images/post-default-5.jpg" alt="">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
<h3><a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a></h3>
|
||||||
|
<div class="meta">
|
||||||
|
|
||||||
|
|
||||||
|
<span class="date moment">2019-06-20</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>之前在LAN/windows環境下,一直都是用ultravnc/winvnc/tigervnc之類的VNC軟體</p>
|
||||||
|
|
||||||
|
<p>但是如果要過 internet ,就會碰到各種開port的問題</p>
|
||||||
|
|
||||||
|
<p>在這種環境下,就有了當時 teamviewer 的橫空出世</p>
|
||||||
|
|
||||||
|
<p>解決了開PORT的問題,讓被控端(通常是資訊技術相對弱勢,需要接受幫助的一方)不需要懂太多</p>
|
||||||
|
|
||||||
|
<p>只要下載teamviewer被控端,開啟後報ID 給協助者就好了</p>
|
||||||
|
|
||||||
|
<p></p>
|
||||||
|
|
||||||
|
|
||||||
|
<a href="/post/remote-management-system-meshcentral/" class="more"></a>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="footer">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="tags">
|
||||||
|
<i class="fa fa-tags"></i>
|
||||||
|
<div class="links">
|
||||||
|
|
||||||
|
<a href="/tags/linux">linux</a>
|
||||||
|
|
||||||
|
<a href="/tags/remote">remote</a>
|
||||||
|
|
||||||
|
<a href="/tags/meshcentral">meshcentral</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="article-wrapper u-cf">
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
<a class="bubble" href="/post/install-asus-10g-nic-in-proxmox/">
|
<a class="bubble" href="/post/install-asus-10g-nic-in-proxmox/">
|
||||||
@@ -776,80 +861,6 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="article-wrapper u-cf">
|
|
||||||
|
|
||||||
<a class="bubble" href="/post/install-ubuntu1804-on-dell-6ir-raid-controller/">
|
|
||||||
<i class="fa fa-fw fa-pencil"></i>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<article class="default article">
|
|
||||||
|
|
||||||
<div class="featured-image">
|
|
||||||
<a href="/post/install-ubuntu1804-on-dell-6ir-raid-controller/">
|
|
||||||
<img src="/images/post-default-11.jpg" alt="">
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="content">
|
|
||||||
<h3><a href="/post/install-ubuntu1804-on-dell-6ir-raid-controller/">用DELL 6 i/R 建立RAID,並在上面安裝ubuntu 18.04 </a></h3>
|
|
||||||
<div class="meta">
|
|
||||||
|
|
||||||
|
|
||||||
<span class="date moment">2019-01-16</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>買了一張 DELL 6/iR 低階的raid 卡</p>
|
|
||||||
|
|
||||||
<p>來測試把系統裝在硬體做的RAID上,結果沒想到居然不能開機…
|
|
||||||
</p>
|
|
||||||
|
|
||||||
|
|
||||||
<a href="/post/install-ubuntu1804-on-dell-6ir-raid-controller/" class="more"></a>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="footer">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="tags">
|
|
||||||
<i class="fa fa-tags"></i>
|
|
||||||
<div class="links">
|
|
||||||
|
|
||||||
<a href="/tags/ubuntu">ubuntu</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
@@ -880,6 +891,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -904,10 +919,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -918,7 +929,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -5,11 +5,30 @@
|
|||||||
<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>Mon, 17 Jun 2019 13:20:57 +0800</lastBuildDate>
|
<lastBuildDate>Thu, 20 Jun 2019 11:03:12 +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>linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</title>
|
||||||
|
<link>https://h.cowbay.org/post/remote-management-system-meshcentral/</link>
|
||||||
|
<pubDate>Thu, 20 Jun 2019 11:03:12 +0800</pubDate>
|
||||||
|
|
||||||
|
<guid>https://h.cowbay.org/post/remote-management-system-meshcentral/</guid>
|
||||||
|
<description><p>之前在LAN/windows環境下,一直都是用ultravnc/winvnc/tigervnc之類的VNC軟體</p>
|
||||||
|
|
||||||
|
<p>但是如果要過 internet ,就會碰到各種開port的問題</p>
|
||||||
|
|
||||||
|
<p>在這種環境下,就有了當時 teamviewer 的橫空出世</p>
|
||||||
|
|
||||||
|
<p>解決了開PORT的問題,讓被控端(通常是資訊技術相對弱勢,需要接受幫助的一方)不需要懂太多</p>
|
||||||
|
|
||||||
|
<p>只要下載teamviewer被控端,開啟後報ID 給協助者就好了</p>
|
||||||
|
|
||||||
|
<p></p></description>
|
||||||
|
</item>
|
||||||
|
|
||||||
<item>
|
<item>
|
||||||
<title>Install Asus 10G NIC XG-C100C in Proxmox</title>
|
<title>Install Asus 10G NIC XG-C100C in Proxmox</title>
|
||||||
<link>https://h.cowbay.org/post/install-asus-10g-nic-in-proxmox/</link>
|
<link>https://h.cowbay.org/post/install-asus-10g-nic-in-proxmox/</link>
|
||||||
|
|||||||
@@ -90,6 +90,80 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
|
<a class="bubble" href="/post/install-ubuntu1804-on-dell-6ir-raid-controller/">
|
||||||
|
<i class="fa fa-fw fa-pencil"></i>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<article class="default article">
|
||||||
|
|
||||||
|
<div class="featured-image">
|
||||||
|
<a href="/post/install-ubuntu1804-on-dell-6ir-raid-controller/">
|
||||||
|
<img src="/images/post-default-11.jpg" alt="">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
<h3><a href="/post/install-ubuntu1804-on-dell-6ir-raid-controller/">用DELL 6 i/R 建立RAID,並在上面安裝ubuntu 18.04 </a></h3>
|
||||||
|
<div class="meta">
|
||||||
|
|
||||||
|
|
||||||
|
<span class="date moment">2019-01-16</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>買了一張 DELL 6/iR 低階的raid 卡</p>
|
||||||
|
|
||||||
|
<p>來測試把系統裝在硬體做的RAID上,結果沒想到居然不能開機…
|
||||||
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
<a href="/post/install-ubuntu1804-on-dell-6ir-raid-controller/" class="more"></a>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="footer">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="tags">
|
||||||
|
<i class="fa fa-tags"></i>
|
||||||
|
<div class="links">
|
||||||
|
|
||||||
|
<a href="/tags/ubuntu">ubuntu</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="article-wrapper u-cf">
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
<a class="bubble" href="/post/ubuntu-1804-install-root-on-raid/">
|
<a class="bubble" href="/post/ubuntu-1804-install-root-on-raid/">
|
||||||
@@ -863,87 +937,6 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="article-wrapper u-cf">
|
|
||||||
|
|
||||||
<a class="bubble" href="/post/copy_role_in_pgsql/">
|
|
||||||
<i class="fa fa-fw fa-pencil"></i>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<article class="default article">
|
|
||||||
|
|
||||||
<div class="featured-image">
|
|
||||||
<a href="/post/copy_role_in_pgsql/">
|
|
||||||
<img src="/images/post-default-7.jpg" alt="">
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="content">
|
|
||||||
<h3><a href="/post/copy_role_in_pgsql/">PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</a></h3>
|
|
||||||
<div class="meta">
|
|
||||||
|
|
||||||
|
|
||||||
<span class="date moment">2018-11-12</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>因為工作上的需求,有個資料庫需要開放給不同team的人去存取</p>
|
|
||||||
|
|
||||||
<p>雖然都是在同一台機器上的同一個資料庫</p>
|
|
||||||
|
|
||||||
<p>但是希望能夠不同team的人用不同的資料庫使用者</p>
|
|
||||||
|
|
||||||
<p>這樣萬一出事,會比較好抓兇手??</p>
|
|
||||||
|
|
||||||
<p></p>
|
|
||||||
|
|
||||||
|
|
||||||
<a href="/post/copy_role_in_pgsql/" class="more"></a>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="footer">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="tags">
|
|
||||||
<i class="fa fa-tags"></i>
|
|
||||||
<div class="links">
|
|
||||||
|
|
||||||
<a href="/tags/psql">psql</a>
|
|
||||||
|
|
||||||
<a href="/tags/%E7%AD%86%E8%A8%98">筆記</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
@@ -976,6 +969,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -1000,10 +997,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -1014,7 +1007,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -90,6 +90,87 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
|
<a class="bubble" href="/post/copy_role_in_pgsql/">
|
||||||
|
<i class="fa fa-fw fa-pencil"></i>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<article class="default article">
|
||||||
|
|
||||||
|
<div class="featured-image">
|
||||||
|
<a href="/post/copy_role_in_pgsql/">
|
||||||
|
<img src="/images/post-default-7.jpg" alt="">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
<h3><a href="/post/copy_role_in_pgsql/">PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</a></h3>
|
||||||
|
<div class="meta">
|
||||||
|
|
||||||
|
|
||||||
|
<span class="date moment">2018-11-12</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>因為工作上的需求,有個資料庫需要開放給不同team的人去存取</p>
|
||||||
|
|
||||||
|
<p>雖然都是在同一台機器上的同一個資料庫</p>
|
||||||
|
|
||||||
|
<p>但是希望能夠不同team的人用不同的資料庫使用者</p>
|
||||||
|
|
||||||
|
<p>這樣萬一出事,會比較好抓兇手??</p>
|
||||||
|
|
||||||
|
<p></p>
|
||||||
|
|
||||||
|
|
||||||
|
<a href="/post/copy_role_in_pgsql/" class="more"></a>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="footer">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="tags">
|
||||||
|
<i class="fa fa-tags"></i>
|
||||||
|
<div class="links">
|
||||||
|
|
||||||
|
<a href="/tags/psql">psql</a>
|
||||||
|
|
||||||
|
<a href="/tags/%E7%AD%86%E8%A8%98">筆記</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="article-wrapper u-cf">
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
<a class="bubble" href="/post/weird-client-server-connection/">
|
<a class="bubble" href="/post/weird-client-server-connection/">
|
||||||
@@ -529,6 +610,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -553,10 +638,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -567,7 +648,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</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 (25)</a></li>
|
<li><a href="/author/eric-chang">Eric chang (26)</a></li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
@@ -120,6 +120,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -144,10 +148,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -158,7 +158,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</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>Mon, 17 Jun 2019 13:20:57 +0800</pubDate>
|
<pubDate>Thu, 20 Jun 2019 11:03:12 +0800</pubDate>
|
||||||
|
|
||||||
<guid>https://h.cowbay.org/author/eric-chang/</guid>
|
<guid>https://h.cowbay.org/author/eric-chang/</guid>
|
||||||
<description></description>
|
<description></description>
|
||||||
|
|||||||
@@ -109,7 +109,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">筆記 (19)</a></li>
|
<li><a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</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>
|
||||||
|
|
||||||
@@ -130,6 +130,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -154,10 +158,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -168,7 +168,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -48,7 +48,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>Tue, 21 May 2019 17:25:15 +0800</pubDate>
|
<pubDate>Thu, 20 Jun 2019 11:03:12 +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>
|
||||||
|
|||||||
@@ -190,6 +190,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -214,10 +218,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -228,7 +228,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -192,6 +192,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -216,10 +220,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -230,7 +230,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -179,6 +179,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -203,10 +207,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -217,7 +217,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -192,6 +192,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -216,10 +220,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -230,7 +230,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -90,6 +90,91 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
|
<a class="bubble" href="/post/remote-management-system-meshcentral/">
|
||||||
|
<i class="fa fa-fw fa-pencil"></i>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<article class="default article">
|
||||||
|
|
||||||
|
<div class="featured-image">
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">
|
||||||
|
<img src="/images/post-default-5.jpg" alt="">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
<h3><a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a></h3>
|
||||||
|
<div class="meta">
|
||||||
|
|
||||||
|
|
||||||
|
<span class="date moment">2019-06-20</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>之前在LAN/windows環境下,一直都是用ultravnc/winvnc/tigervnc之類的VNC軟體</p>
|
||||||
|
|
||||||
|
<p>但是如果要過 internet ,就會碰到各種開port的問題</p>
|
||||||
|
|
||||||
|
<p>在這種環境下,就有了當時 teamviewer 的橫空出世</p>
|
||||||
|
|
||||||
|
<p>解決了開PORT的問題,讓被控端(通常是資訊技術相對弱勢,需要接受幫助的一方)不需要懂太多</p>
|
||||||
|
|
||||||
|
<p>只要下載teamviewer被控端,開啟後報ID 給協助者就好了</p>
|
||||||
|
|
||||||
|
<p></p>
|
||||||
|
|
||||||
|
|
||||||
|
<a href="/post/remote-management-system-meshcentral/" class="more"></a>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="footer">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="tags">
|
||||||
|
<i class="fa fa-tags"></i>
|
||||||
|
<div class="links">
|
||||||
|
|
||||||
|
<a href="/tags/linux">linux</a>
|
||||||
|
|
||||||
|
<a href="/tags/remote">remote</a>
|
||||||
|
|
||||||
|
<a href="/tags/meshcentral">meshcentral</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="article-wrapper u-cf">
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
<a class="bubble" href="/post/change-timezone-in-docker/">
|
<a class="bubble" href="/post/change-timezone-in-docker/">
|
||||||
@@ -788,85 +873,6 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="article-wrapper u-cf">
|
|
||||||
|
|
||||||
<a class="bubble" href="/post/create-portable-vim-environment/">
|
|
||||||
<i class="fa fa-fw fa-pencil"></i>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<article class="default article">
|
|
||||||
|
|
||||||
<div class="featured-image">
|
|
||||||
<a href="/post/create-portable-vim-environment/">
|
|
||||||
<img src="/images/post-default-8.jpg" alt="">
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="content">
|
|
||||||
<h3><a href="/post/create-portable-vim-environment/">[筆記] 建立一個帶著走的 VIM 環境 Creating portable Vim environment</a></h3>
|
|
||||||
<div class="meta">
|
|
||||||
|
|
||||||
|
|
||||||
<span class="date moment">2018-12-07</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>因為工作的關係,現在很多時間都花在VIM的操作上</p>
|
|
||||||
|
|
||||||
<p>所以之前花了滿多時間,調整出一個適合自己的VIM環境</p>
|
|
||||||
|
|
||||||
<p>原本的作法是把這個設定好的環境,丟到自己建立的gitea 上面</p>
|
|
||||||
|
|
||||||
<p>然後每到一台新的機器,就要去clone 下來</p>
|
|
||||||
|
|
||||||
<p></p>
|
|
||||||
|
|
||||||
|
|
||||||
<a href="/post/create-portable-vim-environment/" class="more"></a>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="footer">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="tags">
|
|
||||||
<i class="fa fa-tags"></i>
|
|
||||||
<div class="links">
|
|
||||||
|
|
||||||
<a href="/tags/vim">vim</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
@@ -897,6 +903,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -921,10 +931,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -935,7 +941,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -5,11 +5,30 @@
|
|||||||
<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>Tue, 21 May 2019 17:25:15 +0800</lastBuildDate>
|
<lastBuildDate>Thu, 20 Jun 2019 11:03:12 +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>linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</title>
|
||||||
|
<link>https://h.cowbay.org/post/remote-management-system-meshcentral/</link>
|
||||||
|
<pubDate>Thu, 20 Jun 2019 11:03:12 +0800</pubDate>
|
||||||
|
|
||||||
|
<guid>https://h.cowbay.org/post/remote-management-system-meshcentral/</guid>
|
||||||
|
<description><p>之前在LAN/windows環境下,一直都是用ultravnc/winvnc/tigervnc之類的VNC軟體</p>
|
||||||
|
|
||||||
|
<p>但是如果要過 internet ,就會碰到各種開port的問題</p>
|
||||||
|
|
||||||
|
<p>在這種環境下,就有了當時 teamviewer 的橫空出世</p>
|
||||||
|
|
||||||
|
<p>解決了開PORT的問題,讓被控端(通常是資訊技術相對弱勢,需要接受幫助的一方)不需要懂太多</p>
|
||||||
|
|
||||||
|
<p>只要下載teamviewer被控端,開啟後報ID 給協助者就好了</p>
|
||||||
|
|
||||||
|
<p></p></description>
|
||||||
|
</item>
|
||||||
|
|
||||||
<item>
|
<item>
|
||||||
<title>[筆記] 修改 docker 容器內的時區 - Change Timezone in Docker</title>
|
<title>[筆記] 修改 docker 容器內的時區 - Change Timezone in Docker</title>
|
||||||
<link>https://h.cowbay.org/post/change-timezone-in-docker/</link>
|
<link>https://h.cowbay.org/post/change-timezone-in-docker/</link>
|
||||||
|
|||||||
@@ -90,6 +90,85 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
|
<a class="bubble" href="/post/create-portable-vim-environment/">
|
||||||
|
<i class="fa fa-fw fa-pencil"></i>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<article class="default article">
|
||||||
|
|
||||||
|
<div class="featured-image">
|
||||||
|
<a href="/post/create-portable-vim-environment/">
|
||||||
|
<img src="/images/post-default-8.jpg" alt="">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
<h3><a href="/post/create-portable-vim-environment/">[筆記] 建立一個帶著走的 VIM 環境 Creating portable Vim environment</a></h3>
|
||||||
|
<div class="meta">
|
||||||
|
|
||||||
|
|
||||||
|
<span class="date moment">2018-12-07</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>因為工作的關係,現在很多時間都花在VIM的操作上</p>
|
||||||
|
|
||||||
|
<p>所以之前花了滿多時間,調整出一個適合自己的VIM環境</p>
|
||||||
|
|
||||||
|
<p>原本的作法是把這個設定好的環境,丟到自己建立的gitea 上面</p>
|
||||||
|
|
||||||
|
<p>然後每到一台新的機器,就要去clone 下來</p>
|
||||||
|
|
||||||
|
<p></p>
|
||||||
|
|
||||||
|
|
||||||
|
<a href="/post/create-portable-vim-environment/" class="more"></a>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="footer">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="tags">
|
||||||
|
<i class="fa fa-tags"></i>
|
||||||
|
<div class="links">
|
||||||
|
|
||||||
|
<a href="/tags/vim">vim</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="article-wrapper u-cf">
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
<a class="bubble" href="/post/10g-lab-using-proxmox-and-mellanox/">
|
<a class="bubble" href="/post/10g-lab-using-proxmox-and-mellanox/">
|
||||||
@@ -913,6 +992,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -937,10 +1020,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -951,7 +1030,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -202,6 +202,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -226,10 +230,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -240,7 +240,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -179,6 +179,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -203,10 +207,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -217,7 +217,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -191,6 +191,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -215,10 +219,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -229,7 +229,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -95,6 +95,93 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
|
<a class="bubble" href="/post/remote-management-system-meshcentral/">
|
||||||
|
<i class="fa fa-fw fa-pencil"></i>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<article class="default article">
|
||||||
|
|
||||||
|
<div class="featured-image">
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">
|
||||||
|
<img src="/images/post-default-5.jpg" alt="">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
<h3><a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a></h3>
|
||||||
|
<div class="meta">
|
||||||
|
|
||||||
|
|
||||||
|
<span class="date moment">2019-06-20</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>之前在LAN/windows環境下,一直都是用ultravnc/winvnc/tigervnc之類的VNC軟體</p>
|
||||||
|
|
||||||
|
<p>但是如果要過 internet ,就會碰到各種開port的問題</p>
|
||||||
|
|
||||||
|
<p>在這種環境下,就有了當時 teamviewer 的橫空出世</p>
|
||||||
|
|
||||||
|
<p>解決了開PORT的問題,讓被控端(通常是資訊技術相對弱勢,需要接受幫助的一方)不需要懂太多</p>
|
||||||
|
|
||||||
|
<p>只要下載teamviewer被控端,開啟後報ID 給協助者就好了</p>
|
||||||
|
|
||||||
|
<p></p>
|
||||||
|
|
||||||
|
|
||||||
|
<a href="/post/remote-management-system-meshcentral/" class="more"></a>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="footer">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="tags">
|
||||||
|
<i class="fa fa-tags"></i>
|
||||||
|
<div class="links">
|
||||||
|
|
||||||
|
<a href="/tags/linux">linux</a>
|
||||||
|
|
||||||
|
<a href="/tags/remote">remote</a>
|
||||||
|
|
||||||
|
<a href="/tags/meshcentral">meshcentral</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="article-wrapper u-cf">
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
<a class="bubble" href="/post/install-asus-10g-nic-in-proxmox/">
|
<a class="bubble" href="/post/install-asus-10g-nic-in-proxmox/">
|
||||||
@@ -797,82 +884,6 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="article-wrapper u-cf">
|
|
||||||
|
|
||||||
<a class="bubble" href="/post/install-ubuntu1804-on-dell-6ir-raid-controller/">
|
|
||||||
<i class="fa fa-fw fa-pencil"></i>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<article class="default article">
|
|
||||||
|
|
||||||
<div class="featured-image">
|
|
||||||
<a href="/post/install-ubuntu1804-on-dell-6ir-raid-controller/">
|
|
||||||
<img src="/images/post-default-11.jpg" alt="">
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="content">
|
|
||||||
<h3><a href="/post/install-ubuntu1804-on-dell-6ir-raid-controller/">用DELL 6 i/R 建立RAID,並在上面安裝ubuntu 18.04 </a></h3>
|
|
||||||
<div class="meta">
|
|
||||||
|
|
||||||
|
|
||||||
<span class="date moment">2019-01-16</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>買了一張 DELL 6/iR 低階的raid 卡</p>
|
|
||||||
|
|
||||||
<p>來測試把系統裝在硬體做的RAID上,結果沒想到居然不能開機…
|
|
||||||
</p>
|
|
||||||
|
|
||||||
|
|
||||||
<a href="/post/install-ubuntu1804-on-dell-6ir-raid-controller/" class="more"></a>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="footer">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="tags">
|
|
||||||
<i class="fa fa-tags"></i>
|
|
||||||
<div class="links">
|
|
||||||
|
|
||||||
<a href="/tags/ubuntu">ubuntu</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
@@ -904,6 +915,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -928,10 +943,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -942,7 +953,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -153,6 +153,13 @@
|
|||||||
"type": "tag",
|
"type": "tag",
|
||||||
"url": "https://h.cowbay.org/tags/mellanox"
|
"url": "https://h.cowbay.org/tags/mellanox"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"iconClass": "fa-tag",
|
||||||
|
"objectID": "https://h.cowbay.org/tags/meshcentral",
|
||||||
|
"title": "Meshcentral",
|
||||||
|
"type": "tag",
|
||||||
|
"url": "https://h.cowbay.org/tags/meshcentral"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"iconClass": "fa-tag",
|
"iconClass": "fa-tag",
|
||||||
"objectID": "https://h.cowbay.org/tags/metabase",
|
"objectID": "https://h.cowbay.org/tags/metabase",
|
||||||
@@ -195,6 +202,13 @@
|
|||||||
"type": "tag",
|
"type": "tag",
|
||||||
"url": "https://h.cowbay.org/tags/raid"
|
"url": "https://h.cowbay.org/tags/raid"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"iconClass": "fa-tag",
|
||||||
|
"objectID": "https://h.cowbay.org/tags/remote",
|
||||||
|
"title": "Remote",
|
||||||
|
"type": "tag",
|
||||||
|
"url": "https://h.cowbay.org/tags/remote"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"iconClass": "fa-tag",
|
"iconClass": "fa-tag",
|
||||||
"objectID": "https://h.cowbay.org/tags/ssh",
|
"objectID": "https://h.cowbay.org/tags/ssh",
|
||||||
|
|||||||
@@ -5,11 +5,30 @@
|
|||||||
<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>Mon, 17 Jun 2019 13:20:57 +0800</lastBuildDate>
|
<lastBuildDate>Thu, 20 Jun 2019 11:03:12 +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>linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</title>
|
||||||
|
<link>https://h.cowbay.org/post/remote-management-system-meshcentral/</link>
|
||||||
|
<pubDate>Thu, 20 Jun 2019 11:03:12 +0800</pubDate>
|
||||||
|
|
||||||
|
<guid>https://h.cowbay.org/post/remote-management-system-meshcentral/</guid>
|
||||||
|
<description><p>之前在LAN/windows環境下,一直都是用ultravnc/winvnc/tigervnc之類的VNC軟體</p>
|
||||||
|
|
||||||
|
<p>但是如果要過 internet ,就會碰到各種開port的問題</p>
|
||||||
|
|
||||||
|
<p>在這種環境下,就有了當時 teamviewer 的橫空出世</p>
|
||||||
|
|
||||||
|
<p>解決了開PORT的問題,讓被控端(通常是資訊技術相對弱勢,需要接受幫助的一方)不需要懂太多</p>
|
||||||
|
|
||||||
|
<p>只要下載teamviewer被控端,開啟後報ID 給協助者就好了</p>
|
||||||
|
|
||||||
|
<p></p></description>
|
||||||
|
</item>
|
||||||
|
|
||||||
<item>
|
<item>
|
||||||
<title>Install Asus 10G NIC XG-C100C in Proxmox</title>
|
<title>Install Asus 10G NIC XG-C100C in Proxmox</title>
|
||||||
<link>https://h.cowbay.org/post/install-asus-10g-nic-in-proxmox/</link>
|
<link>https://h.cowbay.org/post/install-asus-10g-nic-in-proxmox/</link>
|
||||||
|
|||||||
@@ -95,6 +95,82 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
|
<a class="bubble" href="/post/install-ubuntu1804-on-dell-6ir-raid-controller/">
|
||||||
|
<i class="fa fa-fw fa-pencil"></i>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<article class="default article">
|
||||||
|
|
||||||
|
<div class="featured-image">
|
||||||
|
<a href="/post/install-ubuntu1804-on-dell-6ir-raid-controller/">
|
||||||
|
<img src="/images/post-default-11.jpg" alt="">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
<h3><a href="/post/install-ubuntu1804-on-dell-6ir-raid-controller/">用DELL 6 i/R 建立RAID,並在上面安裝ubuntu 18.04 </a></h3>
|
||||||
|
<div class="meta">
|
||||||
|
|
||||||
|
|
||||||
|
<span class="date moment">2019-01-16</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>買了一張 DELL 6/iR 低階的raid 卡</p>
|
||||||
|
|
||||||
|
<p>來測試把系統裝在硬體做的RAID上,結果沒想到居然不能開機…
|
||||||
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
<a href="/post/install-ubuntu1804-on-dell-6ir-raid-controller/" class="more"></a>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="footer">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="tags">
|
||||||
|
<i class="fa fa-tags"></i>
|
||||||
|
<div class="links">
|
||||||
|
|
||||||
|
<a href="/tags/ubuntu">ubuntu</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="article-wrapper u-cf">
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
<a class="bubble" href="/post/ubuntu-1804-install-root-on-raid/">
|
<a class="bubble" href="/post/ubuntu-1804-install-root-on-raid/">
|
||||||
@@ -884,89 +960,6 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="article-wrapper u-cf">
|
|
||||||
|
|
||||||
<a class="bubble" href="/post/copy_role_in_pgsql/">
|
|
||||||
<i class="fa fa-fw fa-pencil"></i>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<article class="default article">
|
|
||||||
|
|
||||||
<div class="featured-image">
|
|
||||||
<a href="/post/copy_role_in_pgsql/">
|
|
||||||
<img src="/images/post-default-7.jpg" alt="">
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="content">
|
|
||||||
<h3><a href="/post/copy_role_in_pgsql/">PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</a></h3>
|
|
||||||
<div class="meta">
|
|
||||||
|
|
||||||
|
|
||||||
<span class="date moment">2018-11-12</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>因為工作上的需求,有個資料庫需要開放給不同team的人去存取</p>
|
|
||||||
|
|
||||||
<p>雖然都是在同一台機器上的同一個資料庫</p>
|
|
||||||
|
|
||||||
<p>但是希望能夠不同team的人用不同的資料庫使用者</p>
|
|
||||||
|
|
||||||
<p>這樣萬一出事,會比較好抓兇手??</p>
|
|
||||||
|
|
||||||
<p></p>
|
|
||||||
|
|
||||||
|
|
||||||
<a href="/post/copy_role_in_pgsql/" class="more"></a>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="footer">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="tags">
|
|
||||||
<i class="fa fa-tags"></i>
|
|
||||||
<div class="links">
|
|
||||||
|
|
||||||
<a href="/tags/psql">psql</a>
|
|
||||||
|
|
||||||
<a href="/tags/%E7%AD%86%E8%A8%98">筆記</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
@@ -1000,6 +993,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -1024,10 +1021,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -1038,7 +1031,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -95,6 +95,89 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
|
<a class="bubble" href="/post/copy_role_in_pgsql/">
|
||||||
|
<i class="fa fa-fw fa-pencil"></i>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<article class="default article">
|
||||||
|
|
||||||
|
<div class="featured-image">
|
||||||
|
<a href="/post/copy_role_in_pgsql/">
|
||||||
|
<img src="/images/post-default-7.jpg" alt="">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
<h3><a href="/post/copy_role_in_pgsql/">PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</a></h3>
|
||||||
|
<div class="meta">
|
||||||
|
|
||||||
|
|
||||||
|
<span class="date moment">2018-11-12</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>因為工作上的需求,有個資料庫需要開放給不同team的人去存取</p>
|
||||||
|
|
||||||
|
<p>雖然都是在同一台機器上的同一個資料庫</p>
|
||||||
|
|
||||||
|
<p>但是希望能夠不同team的人用不同的資料庫使用者</p>
|
||||||
|
|
||||||
|
<p>這樣萬一出事,會比較好抓兇手??</p>
|
||||||
|
|
||||||
|
<p></p>
|
||||||
|
|
||||||
|
|
||||||
|
<a href="/post/copy_role_in_pgsql/" class="more"></a>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="footer">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="tags">
|
||||||
|
<i class="fa fa-tags"></i>
|
||||||
|
<div class="links">
|
||||||
|
|
||||||
|
<a href="/tags/psql">psql</a>
|
||||||
|
|
||||||
|
<a href="/tags/%E7%AD%86%E8%A8%98">筆記</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="article-wrapper u-cf">
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
<a class="bubble" href="/post/weird-client-server-connection/">
|
<a class="bubble" href="/post/weird-client-server-connection/">
|
||||||
@@ -543,6 +626,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -567,10 +654,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -581,7 +664,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -415,6 +415,10 @@ TCP window size: 85.0 KByte (default)
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -439,10 +443,6 @@ TCP window size: 85.0 KByte (default)
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</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">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -218,6 +218,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -242,10 +246,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -256,7 +256,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -329,6 +329,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -353,10 +357,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -367,7 +367,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -284,6 +284,10 @@ b8d74048eba1 mysql:5.7.21 "docker-entrypoint.s…&qu
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -308,10 +312,6 @@ b8d74048eba1 mysql:5.7.21 "docker-entrypoint.s…&qu
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</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">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -258,6 +258,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -282,10 +286,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -296,7 +296,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -321,6 +321,10 @@ Tue May 21 17:39:48 CST 2019
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -345,10 +349,6 @@ Tue May 21 17:39:48 CST 2019
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -359,7 +359,7 @@ Tue May 21 17:39:48 CST 2019
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -392,6 +392,10 @@ openssl s_client -showcerts -connect mail.example.com:465
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -416,10 +420,6 @@ openssl s_client -showcerts -connect mail.example.com:465
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</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">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -216,6 +216,10 @@ GRANT a TO b;
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -240,10 +244,6 @@ GRANT a TO b;
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</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">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -229,6 +229,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -253,10 +257,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -267,7 +267,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -302,6 +302,10 @@ admin@storage:~$
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -326,10 +330,6 @@ admin@storage:~$
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -340,7 +340,7 @@ admin@storage:~$
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -249,6 +249,10 @@ root@pve:~#
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -273,10 +277,6 @@ root@pve:~#
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -287,7 +287,7 @@ root@pve:~#
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -272,6 +272,10 @@ unused devices: <none>
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -296,10 +300,6 @@ unused devices: <none>
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</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">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -90,6 +90,91 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
|
<a class="bubble" href="/post/remote-management-system-meshcentral/">
|
||||||
|
<i class="fa fa-fw fa-pencil"></i>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<article class="default article">
|
||||||
|
|
||||||
|
<div class="featured-image">
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">
|
||||||
|
<img src="/images/post-default-5.jpg" alt="">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
<h3><a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a></h3>
|
||||||
|
<div class="meta">
|
||||||
|
|
||||||
|
|
||||||
|
<span class="date moment">2019-06-20</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>之前在LAN/windows環境下,一直都是用ultravnc/winvnc/tigervnc之類的VNC軟體</p>
|
||||||
|
|
||||||
|
<p>但是如果要過 internet ,就會碰到各種開port的問題</p>
|
||||||
|
|
||||||
|
<p>在這種環境下,就有了當時 teamviewer 的橫空出世</p>
|
||||||
|
|
||||||
|
<p>解決了開PORT的問題,讓被控端(通常是資訊技術相對弱勢,需要接受幫助的一方)不需要懂太多</p>
|
||||||
|
|
||||||
|
<p>只要下載teamviewer被控端,開啟後報ID 給協助者就好了</p>
|
||||||
|
|
||||||
|
<p></p>
|
||||||
|
|
||||||
|
|
||||||
|
<a href="/post/remote-management-system-meshcentral/" class="more"></a>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="footer">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="tags">
|
||||||
|
<i class="fa fa-tags"></i>
|
||||||
|
<div class="links">
|
||||||
|
|
||||||
|
<a href="/tags/linux">linux</a>
|
||||||
|
|
||||||
|
<a href="/tags/remote">remote</a>
|
||||||
|
|
||||||
|
<a href="/tags/meshcentral">meshcentral</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="article-wrapper u-cf">
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
<a class="bubble" href="/post/install-asus-10g-nic-in-proxmox/">
|
<a class="bubble" href="/post/install-asus-10g-nic-in-proxmox/">
|
||||||
@@ -776,80 +861,6 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="article-wrapper u-cf">
|
|
||||||
|
|
||||||
<a class="bubble" href="/post/install-ubuntu1804-on-dell-6ir-raid-controller/">
|
|
||||||
<i class="fa fa-fw fa-pencil"></i>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<article class="default article">
|
|
||||||
|
|
||||||
<div class="featured-image">
|
|
||||||
<a href="/post/install-ubuntu1804-on-dell-6ir-raid-controller/">
|
|
||||||
<img src="/images/post-default-11.jpg" alt="">
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="content">
|
|
||||||
<h3><a href="/post/install-ubuntu1804-on-dell-6ir-raid-controller/">用DELL 6 i/R 建立RAID,並在上面安裝ubuntu 18.04 </a></h3>
|
|
||||||
<div class="meta">
|
|
||||||
|
|
||||||
|
|
||||||
<span class="date moment">2019-01-16</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>買了一張 DELL 6/iR 低階的raid 卡</p>
|
|
||||||
|
|
||||||
<p>來測試把系統裝在硬體做的RAID上,結果沒想到居然不能開機…
|
|
||||||
</p>
|
|
||||||
|
|
||||||
|
|
||||||
<a href="/post/install-ubuntu1804-on-dell-6ir-raid-controller/" class="more"></a>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="footer">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="tags">
|
|
||||||
<i class="fa fa-tags"></i>
|
|
||||||
<div class="links">
|
|
||||||
|
|
||||||
<a href="/tags/ubuntu">ubuntu</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
@@ -880,6 +891,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -904,10 +919,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -918,7 +929,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -5,11 +5,30 @@
|
|||||||
<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>Mon, 17 Jun 2019 13:20:57 +0800</lastBuildDate>
|
<lastBuildDate>Thu, 20 Jun 2019 11:03:12 +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>linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</title>
|
||||||
|
<link>https://h.cowbay.org/post/remote-management-system-meshcentral/</link>
|
||||||
|
<pubDate>Thu, 20 Jun 2019 11:03:12 +0800</pubDate>
|
||||||
|
|
||||||
|
<guid>https://h.cowbay.org/post/remote-management-system-meshcentral/</guid>
|
||||||
|
<description><p>之前在LAN/windows環境下,一直都是用ultravnc/winvnc/tigervnc之類的VNC軟體</p>
|
||||||
|
|
||||||
|
<p>但是如果要過 internet ,就會碰到各種開port的問題</p>
|
||||||
|
|
||||||
|
<p>在這種環境下,就有了當時 teamviewer 的橫空出世</p>
|
||||||
|
|
||||||
|
<p>解決了開PORT的問題,讓被控端(通常是資訊技術相對弱勢,需要接受幫助的一方)不需要懂太多</p>
|
||||||
|
|
||||||
|
<p>只要下載teamviewer被控端,開啟後報ID 給協助者就好了</p>
|
||||||
|
|
||||||
|
<p></p></description>
|
||||||
|
</item>
|
||||||
|
|
||||||
<item>
|
<item>
|
||||||
<title>Install Asus 10G NIC XG-C100C in Proxmox</title>
|
<title>Install Asus 10G NIC XG-C100C in Proxmox</title>
|
||||||
<link>https://h.cowbay.org/post/install-asus-10g-nic-in-proxmox/</link>
|
<link>https://h.cowbay.org/post/install-asus-10g-nic-in-proxmox/</link>
|
||||||
|
|||||||
@@ -310,6 +310,10 @@ root@pve:~#
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -334,10 +338,6 @@ root@pve:~#
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -348,7 +348,7 @@ root@pve:~#
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -774,6 +774,10 @@ sudo apt install joe-jupp
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -798,10 +802,6 @@ sudo apt install joe-jupp
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</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">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -234,6 +234,10 @@ GRUB_CMDLINE_LINUX="rootdelay=90"
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -258,10 +262,6 @@ GRUB_CMDLINE_LINUX="rootdelay=90"
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</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">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -320,6 +320,10 @@ bbs089.abc.com ansible_ssh_host=192.168.0.89 ansible_ssh_user=root
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -344,10 +348,6 @@ bbs089.abc.com ansible_ssh_host=192.168.0.89 ansible_ssh_user=root
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -358,7 +358,7 @@ bbs089.abc.com ansible_ssh_host=192.168.0.89 ansible_ssh_user=root
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -253,6 +253,10 @@ Apr 23 15:18:48 hqs010 minion: minion [30832]: ip addr [0]
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -277,10 +281,6 @@ Apr 23 15:18:48 hqs010 minion: minion [30832]: ip addr [0]
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -291,7 +291,7 @@ Apr 23 15:18:48 hqs010 minion: minion [30832]: ip addr [0]
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -251,6 +251,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -275,10 +279,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -289,7 +289,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -90,6 +90,80 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
|
<a class="bubble" href="/post/install-ubuntu1804-on-dell-6ir-raid-controller/">
|
||||||
|
<i class="fa fa-fw fa-pencil"></i>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<article class="default article">
|
||||||
|
|
||||||
|
<div class="featured-image">
|
||||||
|
<a href="/post/install-ubuntu1804-on-dell-6ir-raid-controller/">
|
||||||
|
<img src="/images/post-default-11.jpg" alt="">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
<h3><a href="/post/install-ubuntu1804-on-dell-6ir-raid-controller/">用DELL 6 i/R 建立RAID,並在上面安裝ubuntu 18.04 </a></h3>
|
||||||
|
<div class="meta">
|
||||||
|
|
||||||
|
|
||||||
|
<span class="date moment">2019-01-16</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>買了一張 DELL 6/iR 低階的raid 卡</p>
|
||||||
|
|
||||||
|
<p>來測試把系統裝在硬體做的RAID上,結果沒想到居然不能開機…
|
||||||
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
<a href="/post/install-ubuntu1804-on-dell-6ir-raid-controller/" class="more"></a>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="footer">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="tags">
|
||||||
|
<i class="fa fa-tags"></i>
|
||||||
|
<div class="links">
|
||||||
|
|
||||||
|
<a href="/tags/ubuntu">ubuntu</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="article-wrapper u-cf">
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
<a class="bubble" href="/post/ubuntu-1804-install-root-on-raid/">
|
<a class="bubble" href="/post/ubuntu-1804-install-root-on-raid/">
|
||||||
@@ -863,87 +937,6 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="article-wrapper u-cf">
|
|
||||||
|
|
||||||
<a class="bubble" href="/post/copy_role_in_pgsql/">
|
|
||||||
<i class="fa fa-fw fa-pencil"></i>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<article class="default article">
|
|
||||||
|
|
||||||
<div class="featured-image">
|
|
||||||
<a href="/post/copy_role_in_pgsql/">
|
|
||||||
<img src="/images/post-default-7.jpg" alt="">
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="content">
|
|
||||||
<h3><a href="/post/copy_role_in_pgsql/">PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</a></h3>
|
|
||||||
<div class="meta">
|
|
||||||
|
|
||||||
|
|
||||||
<span class="date moment">2018-11-12</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>因為工作上的需求,有個資料庫需要開放給不同team的人去存取</p>
|
|
||||||
|
|
||||||
<p>雖然都是在同一台機器上的同一個資料庫</p>
|
|
||||||
|
|
||||||
<p>但是希望能夠不同team的人用不同的資料庫使用者</p>
|
|
||||||
|
|
||||||
<p>這樣萬一出事,會比較好抓兇手??</p>
|
|
||||||
|
|
||||||
<p></p>
|
|
||||||
|
|
||||||
|
|
||||||
<a href="/post/copy_role_in_pgsql/" class="more"></a>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="footer">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="tags">
|
|
||||||
<i class="fa fa-tags"></i>
|
|
||||||
<div class="links">
|
|
||||||
|
|
||||||
<a href="/tags/psql">psql</a>
|
|
||||||
|
|
||||||
<a href="/tags/%E7%AD%86%E8%A8%98">筆記</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
@@ -976,6 +969,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -1000,10 +997,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -1014,7 +1007,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -90,6 +90,87 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
|
<a class="bubble" href="/post/copy_role_in_pgsql/">
|
||||||
|
<i class="fa fa-fw fa-pencil"></i>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<article class="default article">
|
||||||
|
|
||||||
|
<div class="featured-image">
|
||||||
|
<a href="/post/copy_role_in_pgsql/">
|
||||||
|
<img src="/images/post-default-7.jpg" alt="">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
<h3><a href="/post/copy_role_in_pgsql/">PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</a></h3>
|
||||||
|
<div class="meta">
|
||||||
|
|
||||||
|
|
||||||
|
<span class="date moment">2018-11-12</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>因為工作上的需求,有個資料庫需要開放給不同team的人去存取</p>
|
||||||
|
|
||||||
|
<p>雖然都是在同一台機器上的同一個資料庫</p>
|
||||||
|
|
||||||
|
<p>但是希望能夠不同team的人用不同的資料庫使用者</p>
|
||||||
|
|
||||||
|
<p>這樣萬一出事,會比較好抓兇手??</p>
|
||||||
|
|
||||||
|
<p></p>
|
||||||
|
|
||||||
|
|
||||||
|
<a href="/post/copy_role_in_pgsql/" class="more"></a>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="footer">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="tags">
|
||||||
|
<i class="fa fa-tags"></i>
|
||||||
|
<div class="links">
|
||||||
|
|
||||||
|
<a href="/tags/psql">psql</a>
|
||||||
|
|
||||||
|
<a href="/tags/%E7%AD%86%E8%A8%98">筆記</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="article-wrapper u-cf">
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
<a class="bubble" href="/post/weird-client-server-connection/">
|
<a class="bubble" href="/post/weird-client-server-connection/">
|
||||||
@@ -461,6 +542,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -485,10 +570,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -499,7 +580,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
519
public/post/remote-management-system-meshcentral/index.html
Normal file
519
public/post/remote-management-system-meshcentral/index.html
Normal file
@@ -0,0 +1,519 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html class="no-js" lang="tw">
|
||||||
|
<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="What’s the Worst That Could Happen?">
|
||||||
|
<meta name="keywords" content="linux,blog,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||||
|
<meta name="generator" content="Hugo 0.50" />
|
||||||
|
<title> linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral | MCの飄狂山莊㊣</title>
|
||||||
|
<meta name="description" content="linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral - What’s the Worst That Could Happen?">
|
||||||
|
<meta itemprop="name" content="linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral">
|
||||||
|
<meta itemprop="description" content="linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral - What’s the Worst That Could Happen?">
|
||||||
|
<meta property="og:title" content="linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral">
|
||||||
|
<meta property="og:description" content="linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral - What’s the Worst That Could Happen?">
|
||||||
|
<meta property="og:image" content="https://h.cowbay.org/images/post-default-5.jpg">
|
||||||
|
<meta property="og:url" content="https://h.cowbay.org/post/remote-management-system-meshcentral/">
|
||||||
|
<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.a89dfa577f701bffe9659f476ef61241cb2a3452b913e793463b0074a10c0a59.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="">
|
||||||
|
</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">What’s the Worst That Could Happen?</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/remote-management-system-meshcentral/">
|
||||||
|
<i class="fa fa-fw fa-pencil"></i>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<article class="default article">
|
||||||
|
|
||||||
|
<div class="featured-image">
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">
|
||||||
|
<img src="/images/post-default-5.jpg" alt="">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
<h3><a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a></h3>
|
||||||
|
<div class="meta">
|
||||||
|
|
||||||
|
|
||||||
|
<span class="date moment">2019-06-20</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>之前在LAN/windows環境下,一直都是用ultravnc/winvnc/tigervnc之類的VNC軟體</p>
|
||||||
|
|
||||||
|
<p>但是如果要過 internet ,就會碰到各種開port的問題</p>
|
||||||
|
|
||||||
|
<p>在這種環境下,就有了當時 teamviewer 的橫空出世</p>
|
||||||
|
|
||||||
|
<p>解決了開PORT的問題,讓被控端(通常是資訊技術相對弱勢,需要接受幫助的一方)不需要懂太多</p>
|
||||||
|
|
||||||
|
<p>只要下載teamviewer被控端,開啟後報ID 給協助者就好了</p>
|
||||||
|
|
||||||
|
<p></p>
|
||||||
|
|
||||||
|
<p>好景不常…ㄟ,好像也不能這麼說</p>
|
||||||
|
|
||||||
|
<p>teamviewer 是一套商業授權軟體,要買license的</p>
|
||||||
|
|
||||||
|
<p>不知道用什麼方式偵測,一開始可以用,但是後來會出現視窗警告,再來就不讓你用了。</p>
|
||||||
|
|
||||||
|
<p>於是又有了 anydesk 的出現</p>
|
||||||
|
|
||||||
|
<p>anydesk 的定義就是免費軟體,所以沒有授權問題</p>
|
||||||
|
|
||||||
|
<p>可是 anydesk 在初期有頗多狀況,比如像是windows的UAC,或者是畫面反應速度過慢</p>
|
||||||
|
|
||||||
|
<p>又或者是常常自動變成view only ,無法操作的狀況</p>
|
||||||
|
|
||||||
|
<p>當使用者需要讓我用anydesk連線進去時,通常就已經是電腦有些什麼狀況了</p>
|
||||||
|
|
||||||
|
<p>然後還要面對anydesk的種種問題,實在是讓人很抓狂!</p>
|
||||||
|
|
||||||
|
<p>終於某次因緣際會,讓我找到了這篇的主角</p>
|
||||||
|
|
||||||
|
<h2 id="meshcentral">Meshcentral</h2>
|
||||||
|
|
||||||
|
<p>簡單介紹一下Meshcentral 的優點</p>
|
||||||
|
|
||||||
|
<h3 id="安全性高">安全性高</h3>
|
||||||
|
|
||||||
|
<p>teamviewer & anydesk 之所以不需要開port,就是被控/遙控兩邊都是先連線到他們提供的伺服器(通常在國外)</p>
|
||||||
|
|
||||||
|
<p>有人會擔心這樣畫面會不會被擷取之類的 我是認為想太多了啦,但就真的有人會擔心這種問題啊(嘆</p>
|
||||||
|
|
||||||
|
<p>meshcentral則不同,他是安裝在LAN的機器上(當然,要跨WAN也可以,就開port吧)</p>
|
||||||
|
|
||||||
|
<p>所以原則上從server到client這段的連線,都是在LAN中加密進行,不會有需要上傳到廠商伺服器的問題</p>
|
||||||
|
|
||||||
|
<p>自然安全性就高了很多</p>
|
||||||
|
|
||||||
|
<h3 id="速度快">速度快</h3>
|
||||||
|
|
||||||
|
<p>如同前面所述,因為都在LAN中進行,不需要透過廠商在國外的Server,所以操作的速度很快!</p>
|
||||||
|
|
||||||
|
<h3 id="操作簡單">操作簡單</h3>
|
||||||
|
|
||||||
|
<p>一開始meshcentral 會需要在client 安裝agent,在比較早期一點的版本,這個動作需要先用anydesk連上被控端</p>
|
||||||
|
|
||||||
|
<p>然後去開啟連結、以管理者權限進行安裝</p>
|
||||||
|
|
||||||
|
<p>新版改善了這個問題,可以直接產生一個invite url ,直接發信給user ,請user去點連結進行安裝</p>
|
||||||
|
|
||||||
|
<p>當然要先做好安裝步驟說明就是了,不然windows會判斷這個是有問題的檔案,不讓執行</p>
|
||||||
|
|
||||||
|
<p>裝完之後,被控端就不會再看到這東西了(所以也無從關閉,除非從service.msc 去stop)</p>
|
||||||
|
|
||||||
|
<p>而且也不會碰到煩人的UAC訊息跳出來時,畫面上的按鈕無法點選的問題(anydesk就有這種狀況,需要透過config去排除)</p>
|
||||||
|
|
||||||
|
<h3 id="安裝容易">安裝容易</h3>
|
||||||
|
|
||||||
|
<p>meshcentral的安裝很簡單,在ubuntu 18.04 server 的環境底下執行以下指令</p>
|
||||||
|
|
||||||
|
<pre><code> #install nodejs/npm
|
||||||
|
sudo apt install nodejs npm
|
||||||
|
#make meshcentral working folder
|
||||||
|
sudo mkdir -p /opt/meshcentral
|
||||||
|
#install meshcentral
|
||||||
|
cd /opt/meshcentral;npm install meshcentral
|
||||||
|
# start meshcentral
|
||||||
|
cd /opt/meshcentral/node_modules/meshcentral;node meshcentral --cert {{ servier_ip_address }}
|
||||||
|
</code></pre>
|
||||||
|
|
||||||
|
<p>這樣就把meshcentral安裝&啟動了</p>
|
||||||
|
|
||||||
|
<p>應該是可以改用systemd or supervisor 來控制了,那個是另外的部份了</p>
|
||||||
|
|
||||||
|
<hr />
|
||||||
|
|
||||||
|
<h3 id="meshcentral-簡易操作說明">Meshcentral 簡易操作說明</h3>
|
||||||
|
|
||||||
|
<p>meshcentral 在操作上也很簡單,第一次安裝成功後,開啟meshcentral的頁面</p>
|
||||||
|
|
||||||
|
<p>首先建立一個管理者帳號,接著用管理者帳號進入後,建立一個group</p>
|
||||||
|
|
||||||
|
<p>然後進入這個group ,會看到一個 invite的連結</p>
|
||||||
|
|
||||||
|
<p><img src="https://i.imgur.com/MNrv2Sw.png" alt="" /></p>
|
||||||
|
|
||||||
|
<p>點擊invite之後,會詢問要產生多長有效時間的連結,如果很懶,就直接選unlimited</p>
|
||||||
|
|
||||||
|
<p>然後把這串URL記下來,發給所有user(最好自己先run過一遍,做一份安裝步驟一起發給使用者)</p>
|
||||||
|
|
||||||
|
<p><img src="https://i.imgur.com/cXQBEWU.png" alt="" /></p>
|
||||||
|
|
||||||
|
<p>等到user照說明,安裝agent之後,在管理界面上就會看到client出現了</p>
|
||||||
|
|
||||||
|
<p><img src="https://i.imgur.com/bQL6JJE.png" alt="" /></p>
|
||||||
|
|
||||||
|
<p>有亮起來的圖示就代表client online ,可以直接進去操作</p>
|
||||||
|
|
||||||
|
<p>操作畫面可以操考以下影片,我是透過internet(兩邊都是CHT雙向100) 去控制遠端電腦播放youtube</p>
|
||||||
|
|
||||||
|
<p>可以看到畫面是非常地流暢!</p>
|
||||||
|
|
||||||
|
|
||||||
|
<div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;">
|
||||||
|
<iframe src="//www.youtube.com/embed/p6-BBYW51qc" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" allowfullscreen title="YouTube Video"></iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<h3 id="總結">總結</h3>
|
||||||
|
|
||||||
|
<p>這麼好用的系統,還不快去裝一套起來!</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="footer">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="tags">
|
||||||
|
<i class="fa fa-tags"></i>
|
||||||
|
<div class="links">
|
||||||
|
|
||||||
|
<a href="/tags/linux">linux</a>
|
||||||
|
|
||||||
|
<a href="/tags/remote">remote</a>
|
||||||
|
|
||||||
|
<a href="/tags/meshcentral">meshcentral</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></strong>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/change-timezone-in-docker/">[筆記] 修改 docker 容器內的時區 - Change Timezone in Docker</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/transfer-file-content-using-xclip-in-terminal/">Transfer File Content Using Xclip in Terminal</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/inx-collect-detail-hardware-info/">[筆記] inxi 蒐集詳盡的硬體資訊 / inxi Collect Detail Hardware Info</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="categories">
|
||||||
|
<a href="/categories/"><strong></strong></a>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/proxmox">Proxmox (1)</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></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>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a href="https://www.yapee.tw/mvc/onlinePay/webLink?key=lMC74kucH21JChCR77-wJ80ZZ-Poh11amP24BwiDdHw" target="_blank"><img border="0" src="https://www.yapee.tw/mvc/file/publicFile?pathType=data/linkLogo/B0S0F0002585.jpg"></img></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://www.yapee.tw/mvc/onlinePay/webLink?key=lMC74kucH21JChCR77-wJ80ZZ-Poh11amP24BwiDdHw" 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-138954876-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( "tw" )
|
||||||
|
.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'></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>
|
||||||
@@ -214,6 +214,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -238,10 +242,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -252,7 +252,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -264,6 +264,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -288,10 +292,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -302,7 +302,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -579,6 +579,10 @@ df -h
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -603,10 +607,6 @@ df -h
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -617,7 +617,7 @@ df -h
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -263,6 +263,10 @@ Processing triggers for man-db (2.8.3-2ubuntu0.1) ...
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -287,10 +291,6 @@ Processing triggers for man-db (2.8.3-2ubuntu0.1) ...
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -301,7 +301,7 @@ Processing triggers for man-db (2.8.3-2ubuntu0.1) ...
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -326,6 +326,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -350,10 +354,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -364,7 +364,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -295,6 +295,10 @@ acl CONNECT method CONNECT
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -319,10 +323,6 @@ acl CONNECT method CONNECT
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</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">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -14,7 +14,7 @@
|
|||||||
<sitemap>
|
<sitemap>
|
||||||
<loc>https://h.cowbay.org/tw/sitemap.xml</loc>
|
<loc>https://h.cowbay.org/tw/sitemap.xml</loc>
|
||||||
|
|
||||||
<lastmod>2019-06-17T13:20:57+08:00</lastmod>
|
<lastmod>2019-06-20T11:03:12+08:00</lastmod>
|
||||||
|
|
||||||
</sitemap>
|
</sitemap>
|
||||||
|
|
||||||
|
|||||||
@@ -204,6 +204,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -228,10 +232,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -242,7 +242,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -306,6 +306,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -330,10 +334,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -344,7 +344,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -192,6 +192,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -216,10 +220,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -230,7 +230,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -202,6 +202,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -226,10 +230,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -240,7 +240,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -196,6 +196,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -220,10 +224,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -234,7 +234,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -187,6 +187,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -211,10 +215,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -225,7 +225,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -277,6 +277,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -301,10 +305,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -315,7 +315,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -189,6 +189,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -213,10 +217,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -227,7 +227,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -194,6 +194,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -218,10 +222,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -232,7 +232,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -190,6 +190,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -214,10 +218,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -228,7 +228,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -123,7 +123,7 @@
|
|||||||
|
|
||||||
<li><a href="/tags/inventory">Inventory (1)</a></li>
|
<li><a href="/tags/inventory">Inventory (1)</a></li>
|
||||||
|
|
||||||
<li><a href="/tags/linux">Linux (5)</a></li>
|
<li><a href="/tags/linux">Linux (6)</a></li>
|
||||||
|
|
||||||
<li><a href="/tags/log">Log (1)</a></li>
|
<li><a href="/tags/log">Log (1)</a></li>
|
||||||
|
|
||||||
@@ -131,6 +131,8 @@
|
|||||||
|
|
||||||
<li><a href="/tags/mellanox">Mellanox (1)</a></li>
|
<li><a href="/tags/mellanox">Mellanox (1)</a></li>
|
||||||
|
|
||||||
|
<li><a href="/tags/meshcentral">Meshcentral (1)</a></li>
|
||||||
|
|
||||||
<li><a href="/tags/metabase">Metabase (1)</a></li>
|
<li><a href="/tags/metabase">Metabase (1)</a></li>
|
||||||
|
|
||||||
<li><a href="/tags/nas">Nas (2)</a></li>
|
<li><a href="/tags/nas">Nas (2)</a></li>
|
||||||
@@ -143,6 +145,8 @@
|
|||||||
|
|
||||||
<li><a href="/tags/raid">Raid (1)</a></li>
|
<li><a href="/tags/raid">Raid (1)</a></li>
|
||||||
|
|
||||||
|
<li><a href="/tags/remote">Remote (1)</a></li>
|
||||||
|
|
||||||
<li><a href="/tags/ssh">Ssh (1)</a></li>
|
<li><a href="/tags/ssh">Ssh (1)</a></li>
|
||||||
|
|
||||||
<li><a href="/tags/synology">Synology (2)</a></li>
|
<li><a href="/tags/synology">Synology (2)</a></li>
|
||||||
@@ -178,6 +182,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -202,10 +210,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -216,7 +220,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -112,7 +112,7 @@
|
|||||||
<item>
|
<item>
|
||||||
<title>Linux</title>
|
<title>Linux</title>
|
||||||
<link>https://h.cowbay.org/tags/linux/</link>
|
<link>https://h.cowbay.org/tags/linux/</link>
|
||||||
<pubDate>Fri, 17 May 2019 12:18:54 +0800</pubDate>
|
<pubDate>Thu, 20 Jun 2019 11:03:12 +0800</pubDate>
|
||||||
|
|
||||||
<guid>https://h.cowbay.org/tags/linux/</guid>
|
<guid>https://h.cowbay.org/tags/linux/</guid>
|
||||||
<description></description>
|
<description></description>
|
||||||
@@ -145,6 +145,15 @@
|
|||||||
<description></description>
|
<description></description>
|
||||||
</item>
|
</item>
|
||||||
|
|
||||||
|
<item>
|
||||||
|
<title>Meshcentral</title>
|
||||||
|
<link>https://h.cowbay.org/tags/meshcentral/</link>
|
||||||
|
<pubDate>Thu, 20 Jun 2019 11:03:12 +0800</pubDate>
|
||||||
|
|
||||||
|
<guid>https://h.cowbay.org/tags/meshcentral/</guid>
|
||||||
|
<description></description>
|
||||||
|
</item>
|
||||||
|
|
||||||
<item>
|
<item>
|
||||||
<title>Metabase</title>
|
<title>Metabase</title>
|
||||||
<link>https://h.cowbay.org/tags/metabase/</link>
|
<link>https://h.cowbay.org/tags/metabase/</link>
|
||||||
@@ -199,6 +208,15 @@
|
|||||||
<description></description>
|
<description></description>
|
||||||
</item>
|
</item>
|
||||||
|
|
||||||
|
<item>
|
||||||
|
<title>Remote</title>
|
||||||
|
<link>https://h.cowbay.org/tags/remote/</link>
|
||||||
|
<pubDate>Thu, 20 Jun 2019 11:03:12 +0800</pubDate>
|
||||||
|
|
||||||
|
<guid>https://h.cowbay.org/tags/remote/</guid>
|
||||||
|
<description></description>
|
||||||
|
</item>
|
||||||
|
|
||||||
<item>
|
<item>
|
||||||
<title>Ssh</title>
|
<title>Ssh</title>
|
||||||
<link>https://h.cowbay.org/tags/ssh/</link>
|
<link>https://h.cowbay.org/tags/ssh/</link>
|
||||||
|
|||||||
@@ -196,6 +196,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -220,10 +224,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -234,7 +234,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -90,6 +90,91 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
|
<a class="bubble" href="/post/remote-management-system-meshcentral/">
|
||||||
|
<i class="fa fa-fw fa-pencil"></i>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<article class="default article">
|
||||||
|
|
||||||
|
<div class="featured-image">
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">
|
||||||
|
<img src="/images/post-default-5.jpg" alt="">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
<h3><a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a></h3>
|
||||||
|
<div class="meta">
|
||||||
|
|
||||||
|
|
||||||
|
<span class="date moment">2019-06-20</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>之前在LAN/windows環境下,一直都是用ultravnc/winvnc/tigervnc之類的VNC軟體</p>
|
||||||
|
|
||||||
|
<p>但是如果要過 internet ,就會碰到各種開port的問題</p>
|
||||||
|
|
||||||
|
<p>在這種環境下,就有了當時 teamviewer 的橫空出世</p>
|
||||||
|
|
||||||
|
<p>解決了開PORT的問題,讓被控端(通常是資訊技術相對弱勢,需要接受幫助的一方)不需要懂太多</p>
|
||||||
|
|
||||||
|
<p>只要下載teamviewer被控端,開啟後報ID 給協助者就好了</p>
|
||||||
|
|
||||||
|
<p></p>
|
||||||
|
|
||||||
|
|
||||||
|
<a href="/post/remote-management-system-meshcentral/" class="more"></a>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="footer">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="tags">
|
||||||
|
<i class="fa fa-tags"></i>
|
||||||
|
<div class="links">
|
||||||
|
|
||||||
|
<a href="/tags/linux">linux</a>
|
||||||
|
|
||||||
|
<a href="/tags/remote">remote</a>
|
||||||
|
|
||||||
|
<a href="/tags/meshcentral">meshcentral</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="article-wrapper u-cf">
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
<a class="bubble" href="/post/transfer-file-content-using-xclip-in-terminal/">
|
<a class="bubble" href="/post/transfer-file-content-using-xclip-in-terminal/">
|
||||||
@@ -547,6 +632,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -571,10 +660,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -585,7 +670,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -5,11 +5,30 @@
|
|||||||
<link>https://h.cowbay.org/tags/linux/</link>
|
<link>https://h.cowbay.org/tags/linux/</link>
|
||||||
<description>Recent content in Linux on MCの飄狂山莊㊣</description>
|
<description>Recent content in Linux on MCの飄狂山莊㊣</description>
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
<lastBuildDate>Fri, 17 May 2019 12:18:54 +0800</lastBuildDate>
|
<lastBuildDate>Thu, 20 Jun 2019 11:03:12 +0800</lastBuildDate>
|
||||||
|
|
||||||
<atom:link href="https://h.cowbay.org/tags/linux/index.xml" rel="self" type="application/rss+xml" />
|
<atom:link href="https://h.cowbay.org/tags/linux/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
|
||||||
|
|
||||||
|
<item>
|
||||||
|
<title>linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</title>
|
||||||
|
<link>https://h.cowbay.org/post/remote-management-system-meshcentral/</link>
|
||||||
|
<pubDate>Thu, 20 Jun 2019 11:03:12 +0800</pubDate>
|
||||||
|
|
||||||
|
<guid>https://h.cowbay.org/post/remote-management-system-meshcentral/</guid>
|
||||||
|
<description><p>之前在LAN/windows環境下,一直都是用ultravnc/winvnc/tigervnc之類的VNC軟體</p>
|
||||||
|
|
||||||
|
<p>但是如果要過 internet ,就會碰到各種開port的問題</p>
|
||||||
|
|
||||||
|
<p>在這種環境下,就有了當時 teamviewer 的橫空出世</p>
|
||||||
|
|
||||||
|
<p>解決了開PORT的問題,讓被控端(通常是資訊技術相對弱勢,需要接受幫助的一方)不需要懂太多</p>
|
||||||
|
|
||||||
|
<p>只要下載teamviewer被控端,開啟後報ID 給協助者就好了</p>
|
||||||
|
|
||||||
|
<p></p></description>
|
||||||
|
</item>
|
||||||
|
|
||||||
<item>
|
<item>
|
||||||
<title>Transfer File Content Using Xclip in Terminal</title>
|
<title>Transfer File Content Using Xclip in Terminal</title>
|
||||||
<link>https://h.cowbay.org/post/transfer-file-content-using-xclip-in-terminal/</link>
|
<link>https://h.cowbay.org/post/transfer-file-content-using-xclip-in-terminal/</link>
|
||||||
|
|||||||
@@ -190,6 +190,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -214,10 +218,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -228,7 +228,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -192,6 +192,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -216,10 +220,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -230,7 +230,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -204,6 +204,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -228,10 +232,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -242,7 +242,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
402
public/tags/meshcentral/index.html
Normal file
402
public/tags/meshcentral/index.html
Normal file
@@ -0,0 +1,402 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html class="no-js" lang="tw">
|
||||||
|
<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="What’s the Worst That Could Happen?">
|
||||||
|
<meta name="keywords" content="linux,blog,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||||
|
<meta name="generator" content="Hugo 0.50" />
|
||||||
|
<title> Meshcentral | MCの飄狂山莊㊣</title>
|
||||||
|
<meta name="description" content="Meshcentral - What’s the Worst That Could Happen?">
|
||||||
|
<meta itemprop="name" content="Meshcentral">
|
||||||
|
<meta itemprop="description" content="Meshcentral - What’s the Worst That Could Happen?">
|
||||||
|
<meta property="og:title" content="Meshcentral">
|
||||||
|
<meta property="og:description" content="Meshcentral - What’s the Worst That Could Happen?">
|
||||||
|
<meta property="og:image" content="https://www.gravatar.com/avatar/e4eb1f8e016ffb73e9889f87d16e15f0?size=200">
|
||||||
|
<meta property="og:url" content="https://h.cowbay.org/tags/meshcentral/">
|
||||||
|
<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/meshcentral/index.xml" rel="alternate" type="application/rss+xml" title="MCの飄狂山莊㊣" />
|
||||||
|
<link href="https://h.cowbay.org/tags/meshcentral/index.xml" rel="feed" type="application/rss+xml" title="MCの飄狂山莊㊣" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.a89dfa577f701bffe9659f476ef61241cb2a3452b913e793463b0074a10c0a59.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="">
|
||||||
|
</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">What’s the Worst That Could Happen?</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/remote-management-system-meshcentral/">
|
||||||
|
<i class="fa fa-fw fa-pencil"></i>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<article class="default article">
|
||||||
|
|
||||||
|
<div class="featured-image">
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">
|
||||||
|
<img src="/images/post-default-5.jpg" alt="">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
<h3><a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a></h3>
|
||||||
|
<div class="meta">
|
||||||
|
|
||||||
|
|
||||||
|
<span class="date moment">2019-06-20</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>之前在LAN/windows環境下,一直都是用ultravnc/winvnc/tigervnc之類的VNC軟體</p>
|
||||||
|
|
||||||
|
<p>但是如果要過 internet ,就會碰到各種開port的問題</p>
|
||||||
|
|
||||||
|
<p>在這種環境下,就有了當時 teamviewer 的橫空出世</p>
|
||||||
|
|
||||||
|
<p>解決了開PORT的問題,讓被控端(通常是資訊技術相對弱勢,需要接受幫助的一方)不需要懂太多</p>
|
||||||
|
|
||||||
|
<p>只要下載teamviewer被控端,開啟後報ID 給協助者就好了</p>
|
||||||
|
|
||||||
|
<p></p>
|
||||||
|
|
||||||
|
|
||||||
|
<a href="/post/remote-management-system-meshcentral/" class="more"></a>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="footer">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="tags">
|
||||||
|
<i class="fa fa-tags"></i>
|
||||||
|
<div class="links">
|
||||||
|
|
||||||
|
<a href="/tags/linux">linux</a>
|
||||||
|
|
||||||
|
<a href="/tags/remote">remote</a>
|
||||||
|
|
||||||
|
<a href="/tags/meshcentral">meshcentral</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="paginator">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<div class="container">
|
||||||
|
|
||||||
|
|
||||||
|
<div class="recent-posts">
|
||||||
|
<strong></strong>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/change-timezone-in-docker/">[筆記] 修改 docker 容器內的時區 - Change Timezone in Docker</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/transfer-file-content-using-xclip-in-terminal/">Transfer File Content Using Xclip in Terminal</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/inx-collect-detail-hardware-info/">[筆記] inxi 蒐集詳盡的硬體資訊 / inxi Collect Detail Hardware Info</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="categories">
|
||||||
|
<a href="/categories/"><strong></strong></a>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/proxmox">Proxmox (1)</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></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>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a href="https://www.yapee.tw/mvc/onlinePay/webLink?key=lMC74kucH21JChCR77-wJ80ZZ-Poh11amP24BwiDdHw" target="_blank"><img border="0" src="https://www.yapee.tw/mvc/file/publicFile?pathType=data/linkLogo/B0S0F0002585.jpg"></img></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/meshcentral/index.xml">RSS</a>
|
||||||
|
</div>
|
||||||
|
<div class="author">
|
||||||
|
<a href="https://www.yapee.tw/mvc/onlinePay/webLink?key=lMC74kucH21JChCR77-wJ80ZZ-Poh11amP24BwiDdHw" 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-138954876-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( "tw" )
|
||||||
|
.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'></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>
|
||||||
33
public/tags/meshcentral/index.xml
Normal file
33
public/tags/meshcentral/index.xml
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
|
||||||
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
|
<channel>
|
||||||
|
<title>Meshcentral on MCの飄狂山莊㊣</title>
|
||||||
|
<link>https://h.cowbay.org/tags/meshcentral/</link>
|
||||||
|
<description>Recent content in Meshcentral on MCの飄狂山莊㊣</description>
|
||||||
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
|
<lastBuildDate>Thu, 20 Jun 2019 11:03:12 +0800</lastBuildDate>
|
||||||
|
|
||||||
|
<atom:link href="https://h.cowbay.org/tags/meshcentral/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
|
||||||
|
|
||||||
|
<item>
|
||||||
|
<title>linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</title>
|
||||||
|
<link>https://h.cowbay.org/post/remote-management-system-meshcentral/</link>
|
||||||
|
<pubDate>Thu, 20 Jun 2019 11:03:12 +0800</pubDate>
|
||||||
|
|
||||||
|
<guid>https://h.cowbay.org/post/remote-management-system-meshcentral/</guid>
|
||||||
|
<description><p>之前在LAN/windows環境下,一直都是用ultravnc/winvnc/tigervnc之類的VNC軟體</p>
|
||||||
|
|
||||||
|
<p>但是如果要過 internet ,就會碰到各種開port的問題</p>
|
||||||
|
|
||||||
|
<p>在這種環境下,就有了當時 teamviewer 的橫空出世</p>
|
||||||
|
|
||||||
|
<p>解決了開PORT的問題,讓被控端(通常是資訊技術相對弱勢,需要接受幫助的一方)不需要懂太多</p>
|
||||||
|
|
||||||
|
<p>只要下載teamviewer被控端,開啟後報ID 給協助者就好了</p>
|
||||||
|
|
||||||
|
<p></p></description>
|
||||||
|
</item>
|
||||||
|
|
||||||
|
</channel>
|
||||||
|
</rss>
|
||||||
1
public/tags/meshcentral/page/1/index.html
Normal file
1
public/tags/meshcentral/page/1/index.html
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<!DOCTYPE html><html><head><title>https://h.cowbay.org/tags/meshcentral/</title><link rel="canonical" href="https://h.cowbay.org/tags/meshcentral/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://h.cowbay.org/tags/meshcentral/" /></head></html>
|
||||||
@@ -194,6 +194,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -218,10 +222,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -232,7 +232,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -294,6 +294,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -318,10 +322,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -332,7 +332,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -192,6 +192,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -216,10 +220,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -230,7 +230,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -179,6 +179,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -203,10 +207,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -217,7 +217,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -192,6 +192,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -216,10 +220,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -230,7 +230,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -190,6 +190,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -214,10 +218,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -228,7 +228,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
402
public/tags/remote/index.html
Normal file
402
public/tags/remote/index.html
Normal file
@@ -0,0 +1,402 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html class="no-js" lang="tw">
|
||||||
|
<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="What’s the Worst That Could Happen?">
|
||||||
|
<meta name="keywords" content="linux,blog,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||||
|
<meta name="generator" content="Hugo 0.50" />
|
||||||
|
<title> Remote | MCの飄狂山莊㊣</title>
|
||||||
|
<meta name="description" content="Remote - What’s the Worst That Could Happen?">
|
||||||
|
<meta itemprop="name" content="Remote">
|
||||||
|
<meta itemprop="description" content="Remote - What’s the Worst That Could Happen?">
|
||||||
|
<meta property="og:title" content="Remote">
|
||||||
|
<meta property="og:description" content="Remote - What’s the Worst That Could Happen?">
|
||||||
|
<meta property="og:image" content="https://www.gravatar.com/avatar/e4eb1f8e016ffb73e9889f87d16e15f0?size=200">
|
||||||
|
<meta property="og:url" content="https://h.cowbay.org/tags/remote/">
|
||||||
|
<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/remote/index.xml" rel="alternate" type="application/rss+xml" title="MCの飄狂山莊㊣" />
|
||||||
|
<link href="https://h.cowbay.org/tags/remote/index.xml" rel="feed" type="application/rss+xml" title="MCの飄狂山莊㊣" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.a89dfa577f701bffe9659f476ef61241cb2a3452b913e793463b0074a10c0a59.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="">
|
||||||
|
</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">What’s the Worst That Could Happen?</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/remote-management-system-meshcentral/">
|
||||||
|
<i class="fa fa-fw fa-pencil"></i>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<article class="default article">
|
||||||
|
|
||||||
|
<div class="featured-image">
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">
|
||||||
|
<img src="/images/post-default-5.jpg" alt="">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
<h3><a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a></h3>
|
||||||
|
<div class="meta">
|
||||||
|
|
||||||
|
|
||||||
|
<span class="date moment">2019-06-20</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>之前在LAN/windows環境下,一直都是用ultravnc/winvnc/tigervnc之類的VNC軟體</p>
|
||||||
|
|
||||||
|
<p>但是如果要過 internet ,就會碰到各種開port的問題</p>
|
||||||
|
|
||||||
|
<p>在這種環境下,就有了當時 teamviewer 的橫空出世</p>
|
||||||
|
|
||||||
|
<p>解決了開PORT的問題,讓被控端(通常是資訊技術相對弱勢,需要接受幫助的一方)不需要懂太多</p>
|
||||||
|
|
||||||
|
<p>只要下載teamviewer被控端,開啟後報ID 給協助者就好了</p>
|
||||||
|
|
||||||
|
<p></p>
|
||||||
|
|
||||||
|
|
||||||
|
<a href="/post/remote-management-system-meshcentral/" class="more"></a>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="footer">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="tags">
|
||||||
|
<i class="fa fa-tags"></i>
|
||||||
|
<div class="links">
|
||||||
|
|
||||||
|
<a href="/tags/linux">linux</a>
|
||||||
|
|
||||||
|
<a href="/tags/remote">remote</a>
|
||||||
|
|
||||||
|
<a href="/tags/meshcentral">meshcentral</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="paginator">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<div class="container">
|
||||||
|
|
||||||
|
|
||||||
|
<div class="recent-posts">
|
||||||
|
<strong></strong>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/change-timezone-in-docker/">[筆記] 修改 docker 容器內的時區 - Change Timezone in Docker</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/transfer-file-content-using-xclip-in-terminal/">Transfer File Content Using Xclip in Terminal</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/inx-collect-detail-hardware-info/">[筆記] inxi 蒐集詳盡的硬體資訊 / inxi Collect Detail Hardware Info</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="categories">
|
||||||
|
<a href="/categories/"><strong></strong></a>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/proxmox">Proxmox (1)</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></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>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a href="https://www.yapee.tw/mvc/onlinePay/webLink?key=lMC74kucH21JChCR77-wJ80ZZ-Poh11amP24BwiDdHw" target="_blank"><img border="0" src="https://www.yapee.tw/mvc/file/publicFile?pathType=data/linkLogo/B0S0F0002585.jpg"></img></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/remote/index.xml">RSS</a>
|
||||||
|
</div>
|
||||||
|
<div class="author">
|
||||||
|
<a href="https://www.yapee.tw/mvc/onlinePay/webLink?key=lMC74kucH21JChCR77-wJ80ZZ-Poh11amP24BwiDdHw" 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-138954876-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( "tw" )
|
||||||
|
.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'></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>
|
||||||
33
public/tags/remote/index.xml
Normal file
33
public/tags/remote/index.xml
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
|
||||||
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
|
<channel>
|
||||||
|
<title>Remote on MCの飄狂山莊㊣</title>
|
||||||
|
<link>https://h.cowbay.org/tags/remote/</link>
|
||||||
|
<description>Recent content in Remote on MCの飄狂山莊㊣</description>
|
||||||
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
|
<lastBuildDate>Thu, 20 Jun 2019 11:03:12 +0800</lastBuildDate>
|
||||||
|
|
||||||
|
<atom:link href="https://h.cowbay.org/tags/remote/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
|
||||||
|
|
||||||
|
<item>
|
||||||
|
<title>linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</title>
|
||||||
|
<link>https://h.cowbay.org/post/remote-management-system-meshcentral/</link>
|
||||||
|
<pubDate>Thu, 20 Jun 2019 11:03:12 +0800</pubDate>
|
||||||
|
|
||||||
|
<guid>https://h.cowbay.org/post/remote-management-system-meshcentral/</guid>
|
||||||
|
<description><p>之前在LAN/windows環境下,一直都是用ultravnc/winvnc/tigervnc之類的VNC軟體</p>
|
||||||
|
|
||||||
|
<p>但是如果要過 internet ,就會碰到各種開port的問題</p>
|
||||||
|
|
||||||
|
<p>在這種環境下,就有了當時 teamviewer 的橫空出世</p>
|
||||||
|
|
||||||
|
<p>解決了開PORT的問題,讓被控端(通常是資訊技術相對弱勢,需要接受幫助的一方)不需要懂太多</p>
|
||||||
|
|
||||||
|
<p>只要下載teamviewer被控端,開啟後報ID 給協助者就好了</p>
|
||||||
|
|
||||||
|
<p></p></description>
|
||||||
|
</item>
|
||||||
|
|
||||||
|
</channel>
|
||||||
|
</rss>
|
||||||
1
public/tags/remote/page/1/index.html
Normal file
1
public/tags/remote/page/1/index.html
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<!DOCTYPE html><html><head><title>https://h.cowbay.org/tags/remote/</title><link rel="canonical" href="https://h.cowbay.org/tags/remote/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://h.cowbay.org/tags/remote/" /></head></html>
|
||||||
@@ -203,6 +203,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -227,10 +231,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -241,7 +241,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -294,6 +294,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -318,10 +322,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -332,7 +332,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -186,6 +186,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -210,10 +214,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -224,7 +224,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -432,6 +432,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -456,10 +460,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -470,7 +470,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -190,6 +190,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -214,10 +218,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -228,7 +228,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -188,6 +188,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -212,10 +216,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -226,7 +226,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -179,6 +179,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -203,10 +207,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -217,7 +217,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -547,6 +547,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -571,10 +575,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -585,7 +585,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -202,6 +202,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -226,10 +230,6 @@
|
|||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
<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>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -240,7 +240,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (19)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</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/remote-management-system-meshcentral/</loc>
|
||||||
|
<lastmod>2019-06-20T11:03:12+08:00</lastmod>
|
||||||
|
</url>
|
||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://h.cowbay.org/post/install-asus-10g-nic-in-proxmox/</loc>
|
<loc>https://h.cowbay.org/post/install-asus-10g-nic-in-proxmox/</loc>
|
||||||
<lastmod>2019-06-17T13:20:57+08:00</lastmod>
|
<lastmod>2019-06-17T13:20:57+08:00</lastmod>
|
||||||
@@ -217,7 +222,7 @@
|
|||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://h.cowbay.org/author/eric-chang/</loc>
|
<loc>https://h.cowbay.org/author/eric-chang/</loc>
|
||||||
<lastmod>2019-06-17T13:20:57+08:00</lastmod>
|
<lastmod>2019-06-20T11:03:12+08:00</lastmod>
|
||||||
<priority>0</priority>
|
<priority>0</priority>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
@@ -247,7 +252,7 @@
|
|||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://h.cowbay.org/tags/linux/</loc>
|
<loc>https://h.cowbay.org/tags/linux/</loc>
|
||||||
<lastmod>2019-05-17T12:18:54+08:00</lastmod>
|
<lastmod>2019-06-20T11:03:12+08:00</lastmod>
|
||||||
<priority>0</priority>
|
<priority>0</priority>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
@@ -265,7 +270,7 @@
|
|||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://h.cowbay.org/</loc>
|
<loc>https://h.cowbay.org/</loc>
|
||||||
<lastmod>2019-06-17T13:20:57+08:00</lastmod>
|
<lastmod>2019-06-20T11:03:12+08:00</lastmod>
|
||||||
<priority>0</priority>
|
<priority>0</priority>
|
||||||
<xhtml:link
|
<xhtml:link
|
||||||
rel="alternate"
|
rel="alternate"
|
||||||
@@ -296,6 +301,12 @@
|
|||||||
<priority>0</priority>
|
<priority>0</priority>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
|
<url>
|
||||||
|
<loc>https://h.cowbay.org/tags/meshcentral/</loc>
|
||||||
|
<lastmod>2019-06-20T11:03:12+08:00</lastmod>
|
||||||
|
<priority>0</priority>
|
||||||
|
</url>
|
||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://h.cowbay.org/tags/metabase/</loc>
|
<loc>https://h.cowbay.org/tags/metabase/</loc>
|
||||||
<lastmod>2018-11-15T11:06:28+08:00</lastmod>
|
<lastmod>2018-11-15T11:06:28+08:00</lastmod>
|
||||||
@@ -310,7 +321,7 @@
|
|||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://h.cowbay.org/post/</loc>
|
<loc>https://h.cowbay.org/post/</loc>
|
||||||
<lastmod>2019-06-17T13:20:57+08:00</lastmod>
|
<lastmod>2019-06-20T11:03:12+08:00</lastmod>
|
||||||
<priority>0</priority>
|
<priority>0</priority>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
@@ -350,6 +361,12 @@
|
|||||||
<priority>0</priority>
|
<priority>0</priority>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
|
<url>
|
||||||
|
<loc>https://h.cowbay.org/tags/remote/</loc>
|
||||||
|
<lastmod>2019-06-20T11:03:12+08:00</lastmod>
|
||||||
|
<priority>0</priority>
|
||||||
|
</url>
|
||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://h.cowbay.org/tags/ssh/</loc>
|
<loc>https://h.cowbay.org/tags/ssh/</loc>
|
||||||
<lastmod>2018-11-05T14:16:54+08:00</lastmod>
|
<lastmod>2018-11-05T14:16:54+08:00</lastmod>
|
||||||
@@ -427,7 +444,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-05-21T17:25:15+08:00</lastmod>
|
<lastmod>2019-06-20T11:03:12+08:00</lastmod>
|
||||||
<priority>0</priority>
|
<priority>0</priority>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user