hugo daily push 2018-11-29 22:00:01
This commit is contained in:
40
content/post/ansible-selectattr-filter.md
Normal file
40
content/post/ansible-selectattr-filter.md
Normal file
@@ -0,0 +1,40 @@
|
||||
---
|
||||
title: "[筆記] 還是 Ansible Selectattr "
|
||||
date: 2018-11-29T11:22:28+08:00
|
||||
|
||||
featuredImage: "https://h.cowbay.org/images/post-default-11.jpg"
|
||||
categories: ['筆記']
|
||||
tags: ['ansible']
|
||||
author: "Eric Chang"
|
||||
---
|
||||
|
||||
在上一篇 [Ansible how to use 'list' in yaml file ](https://h.cowbay.org/post/ansible-selectattr/)
|
||||
|
||||
有提到怎麼用 with_items / set_fact 來取得在yaml 檔案中的清單
|
||||
|
||||
不過就是有點醜
|
||||
|
||||
<!--more-->
|
||||
|
||||
這兩天又修改了一下,不需要用 when 來指定條件,改成用 filter 來篩選資料
|
||||
|
||||
將list整理成我們需要的「部份」資料就好,而不是所有資料都塞進來
|
||||
|
||||
```yaml
|
||||
- name: set dc_users
|
||||
tags:
|
||||
- dcusers
|
||||
- depot_folder
|
||||
- env
|
||||
set_fact:
|
||||
dc_users: "{{ item.users }}"
|
||||
with_items: "{{ teams|selectattr('name','equalto','dc')|map(attribute='users')|list }}"
|
||||
```
|
||||
|
||||
有沒有比較「優雅」(自己說...
|
||||
|
||||
先把 teams 這個 var 抓進來,然後用 selectattr 這個filter 選出 name == dc 的資料
|
||||
|
||||
再將篩選後的資料,用 map 去抓出 users 這個屬性,最後轉成 list
|
||||
|
||||
這樣子就可以直接得到 users 了
|
||||
@@ -115,6 +115,10 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/ansible-selectattr-filter/">[筆記] 還是 Ansible Selectattr </a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/ansible-selectattr/">[筆記] Ansible how to use 'list' in yaml file </a>
|
||||
</li>
|
||||
@@ -139,10 +143,6 @@
|
||||
<a href="/post/bookstack-docker/">Bookstack Docker</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/enable-synology-public-ssh/">筆記- 啟用群暉NAS (Synology NAS)的SSH Server 透過Publickey 認證免密碼登入</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@@ -153,7 +153,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (7)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (8)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -1,393 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> Name of the work 1 | My cool new Blog</title>
|
||||
<meta name="description" content="Name of the work 1 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="Name of the work 1">
|
||||
<meta itemprop="description" content="Name of the work 1 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="Name of the work 1">
|
||||
<meta property="og:description" content="Name of the work 1 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/1/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/1/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/1/">Name of the work 1</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2016-11-05</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>Section1</p>
|
||||
|
||||
<p>
|
||||
Section2</p>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,467 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> 2014.3.24-手無寸鐵的民眾-被警方強力驅趕-備份 | My cool new Blog</title>
|
||||
<meta name="description" content="2014.3.24-手無寸鐵的民眾-被警方強力驅趕-備份 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="2014.3.24-手無寸鐵的民眾-被警方強力驅趕-備份">
|
||||
<meta itemprop="description" content="2014.3.24-手無寸鐵的民眾-被警方強力驅趕-備份 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="2014.3.24-手無寸鐵的民眾-被警方強力驅趕-備份">
|
||||
<meta property="og:description" content="2014.3.24-手無寸鐵的民眾-被警方強力驅趕-備份 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/2014-3-24-e6-89-8b-e7-84-a1-e5-af-b8-e9-90-b5-e7-9a-84-e6-b0-91-e7-9c-be-e8-a2-ab-e8-ad-a6-e6-96-b9-e5-bc-b7-e5-8a-9b-e9-a9-85-e8-b6-95-e5-82-99-e4-bb-bd/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/2014-3-24-e6-89-8b-e7-84-a1-e5-af-b8-e9-90-b5-e7-9a-84-e6-b0-91-e7-9c-be-e8-a2-ab-e8-ad-a6-e6-96-b9-e5-bc-b7-e5-8a-9b-e9-a9-85-e8-b6-95-e5-82-99-e4-bb-bd/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/2014-3-24-e6-89-8b-e7-84-a1-e5-af-b8-e9-90-b5-e7-9a-84-e6-b0-91-e7-9c-be-e8-a2-ab-e8-ad-a6-e6-96-b9-e5-bc-b7-e5-8a-9b-e9-a9-85-e8-b6-95-e5-82-99-e4-bb-bd/">2014.3.24-手無寸鐵的民眾-被警方強力驅趕-備份</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2014-03-24</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>在外頭鎮暴都還沒派來之前,裡頭的警察就先動作打人了</p>
|
||||
|
||||
<p>[video width=“400” height=“224” mp4=“<a href="http://www.cowbay.org/wp-content/uploads/2014/03/在外頭鎮暴都還沒派來之前,裡頭的警察就先動作打人了-YouTube-360p.mp4"][/video">http://www.cowbay.org/wp-content/uploads/2014/03/在外頭鎮暴都還沒派來之前,裡頭的警察就先動作打人了-YouTube-360p.mp4"][/video</a>]</p>
|
||||
|
||||
<p>中山南路與忠孝東路交岔口的行政院,院內已經開始將水柱噴向民眾了,現場傳出一股刺鼻氣味,民眾不斷驚恐尖叫</p>
|
||||
|
||||
<p>[video width=“1280” height=“720” mp4=“<a href="http://www.cowbay.org/wp-content/uploads/2014/03/中山南路與忠孝東路交岔口的行政院,院內已經開始將水柱噴向民眾了,現場傳出一股刺鼻氣味,民眾不斷驚恐尖叫-YouTube-720p.mp4"][/video">http://www.cowbay.org/wp-content/uploads/2014/03/中山南路與忠孝東路交岔口的行政院,院內已經開始將水柱噴向民眾了,現場傳出一股刺鼻氣味,民眾不斷驚恐尖叫-YouTube-720p.mp4"][/video</a>]</p>
|
||||
|
||||
<p>千警清空政院後門 52學生受傷</p>
|
||||
|
||||
<p>[video width=“640” height=“360” mp4=“<a href="http://www.cowbay.org/wp-content/uploads/2014/03/千警清空政院後門 52學生受傷-YouTube-360p.mp4"][/video">http://www.cowbay.org/wp-content/uploads/2014/03/千警清空政院後門 52學生受傷-YouTube-360p.mp4"][/video</a>] [video width=“1280” height=“720” mp4=“<a href="http://www.cowbay.org/wp-content/uploads/2014/03/20140324-行政院台灣警察打人,非常暴力-YouTube-720p1.mp4"][/video">http://www.cowbay.org/wp-content/uploads/2014/03/20140324-行政院台灣警察打人,非常暴力-YouTube-720p1.mp4"][/video</a>]</p>
|
||||
|
||||
<p>警察驅趕媒體</p>
|
||||
|
||||
<p>[video width=“1280” height=“718” mp4=“<a href="http://www.cowbay.org/wp-content/uploads/2014/03/2014-03-24-警察驅趕媒體-YouTube-720p.mp4"][/video">http://www.cowbay.org/wp-content/uploads/2014/03/2014-03-24-警察驅趕媒體-YouTube-720p.mp4"][/video</a>] [video width=“568” height=“320” mp4=“<a href="http://www.cowbay.org/wp-content/uploads/2014/03/警察持續噴辣椒水驅離-YouTube-360p.mp4"][/video">http://www.cowbay.org/wp-content/uploads/2014/03/警察持續噴辣椒水驅離-YouTube-360p.mp4"][/video</a>]</p>
|
||||
|
||||
<p>警察持警盾惡意狂歐靜坐無攻擊動作學生</p>
|
||||
|
||||
<p>[video width=“1280” height=“720” mp4=“<a href="http://www.cowbay.org/wp-content/uploads/2014/03/警察持警盾惡意狂歐靜坐無攻擊動作學生-YouTube-720p.mp4"][/video">http://www.cowbay.org/wp-content/uploads/2014/03/警察持警盾惡意狂歐靜坐無攻擊動作學生-YouTube-720p.mp4"][/video</a>]</p>
|
||||
|
||||
<p>警察在門口圍起人牆不讓媒體拍攝,行政院內外大喊讓媒體進去、媒體監督</p>
|
||||
|
||||
<p>[video width=“568” height=“320” mp4=“<a href="http://www.cowbay.org/wp-content/uploads/2014/03/警察在門口圍起人牆不讓媒體拍攝,行政院內外大喊讓媒體進去、媒體監督。-YouTube-360p.mp4"][/video">http://www.cowbay.org/wp-content/uploads/2014/03/警察在門口圍起人牆不讓媒體拍攝,行政院內外大喊讓媒體進去、媒體監督。-YouTube-360p.mp4"][/video</a>]</p>
|
||||
|
||||
<p>這就是馬英九對學生訴求的回答</p>
|
||||
|
||||
<p>[video width=“400” height=“300” mp4=“<a href="http://www.cowbay.org/wp-content/uploads/2014/03/這就是馬英九對學生訴求的回答-YouTube-360p.mp4"][/video">http://www.cowbay.org/wp-content/uploads/2014/03/這就是馬英九對學生訴求的回答-YouTube-360p.mp4"][/video</a>]</p>
|
||||
|
||||
<p>我多麼希望這不是真的</p>
|
||||
|
||||
<p>[video width=“1280” height=“720” mp4=“<a href="http://www.cowbay.org/wp-content/uploads/2014/03/我多麼希望這不是真的-YouTube-720p.mp4"][/video">http://www.cowbay.org/wp-content/uploads/2014/03/我多麼希望這不是真的-YouTube-720p.mp4"][/video</a>]</p>
|
||||
|
||||
<p>拍到警察故意用盾牌打了從2_01開始</p>
|
||||
|
||||
<p>[video width=“480” height=“360” mp4=“<a href="http://www.cowbay.org/wp-content/uploads/2014/03/拍到警察故意用盾牌打了從2_01開始-YouTube-360p.mp4"][/video">http://www.cowbay.org/wp-content/uploads/2014/03/拍到警察故意用盾牌打了從2_01開始-YouTube-360p.mp4"][/video</a>]</p>
|
||||
|
||||
<p>行政院介於後門與側門的民眾進入最後的驅離。鎮暴警察先是衝撞,接著再拉出民眾。雙方在拉扯過程中,開始零星對話,雙方都很無奈</p>
|
||||
|
||||
<p>[video width=“1280” height=“720” mp4=“<a href="http://www.cowbay.org/wp-content/uploads/2014/03/行政院介於後門與側門的民眾進入最後的驅離。鎮暴警察先是衝撞,接著再拉出民眾。雙方在拉扯過程中,開始零星對話,雙方都很無奈。-YouTube-720p.mp4"][/video">http://www.cowbay.org/wp-content/uploads/2014/03/行政院介於後門與側門的民眾進入最後的驅離。鎮暴警察先是衝撞,接著再拉出民眾。雙方在拉扯過程中,開始零星對話,雙方都很無奈。-YouTube-720p.mp4"][/video</a>]</p>
|
||||
|
||||
<p>行政院側門部分聲援民眾撤出,一路高喊「馬英九下台、江宜樺下台、退回服貿」往立法院走,他們決定要回去守護立法院。但正門部分仍有聲援民眾與警方拉扯。</p>
|
||||
|
||||
<p>[video width=“568” height=“320” mp4=“<a href="http://www.cowbay.org/wp-content/uploads/2014/03/行政院側門部分聲援民眾撤出,一路高喊「馬英九下台、江宜樺下台、退回服貿」往立法院走,他們決定要回去守護立法院。但正門部分仍有聲援民眾與警方拉扯。-YouTube-360p.mp4"][/video">http://www.cowbay.org/wp-content/uploads/2014/03/行政院側門部分聲援民眾撤出,一路高喊「馬英九下台、江宜樺下台、退回服貿」往立法院走,他們決定要回去守護立法院。但正門部分仍有聲援民眾與警方拉扯。-YouTube-360p.mp4"][/video</a>]</p>
|
||||
|
||||
<p>行政院驅離現場紀錄</p>
|
||||
|
||||
<p>[video width=“480” height=“360” mp4=“<a href="http://www.cowbay.org/wp-content/uploads/2014/03/行政院驅離現場紀錄-YouTube-360p.mp4"][/video">http://www.cowbay.org/wp-content/uploads/2014/03/行政院驅離現場紀錄-YouTube-360p.mp4"][/video</a>]</p>
|
||||
|
||||
<p>2014.3.24-手無寸鐵的民眾-被警方強力驅趕-備份</p>
|
||||
|
||||
<p>[video width=“480” height=“360” mp4=“<a href="http://www.cowbay.org/wp-content/uploads/2014/03/▶-2014.3.24-手無寸鐵的民眾-被警方強力驅趕-備份-YouTube-360p.mp4"][/video">http://www.cowbay.org/wp-content/uploads/2014/03/▶-2014.3.24-手無寸鐵的民眾-被警方強力驅趕-備份-YouTube-360p.mp4"][/video</a>]</p>
|
||||
|
||||
<p>林森北路與北平東路口有警備車駛入,警察強行前進</p>
|
||||
|
||||
<p>[video width=“568” height=“320” mp4=“<a href="http://www.cowbay.org/wp-content/uploads/2014/03/林森北路與北平東路口有警備車駛入,警察強行前進。-YouTube-360p.mp4"][/video">http://www.cowbay.org/wp-content/uploads/2014/03/林森北路與北平東路口有警備車駛入,警察強行前進。-YouTube-360p.mp4"][/video</a>]</p>
|
||||
|
||||
<p>流血的真相</p>
|
||||
|
||||
<p>[video width=“202” height=“360” mp4=“<a href="http://www.cowbay.org/wp-content/uploads/2014/03/流血的真相-YouTube-360p.mp4"][/video">http://www.cowbay.org/wp-content/uploads/2014/03/流血的真相-YouTube-360p.mp4"][/video</a>]</p>
|
||||
|
||||
<p>20140324-行政院台灣警察打人,非常暴力</p>
|
||||
|
||||
<p>[video width=“1280” height=“720” mp4=“<a href="http://www.cowbay.org/wp-content/uploads/2014/03/20140324-行政院台灣警察打人,非常暴力-YouTube-720p.mp4"][/video">http://www.cowbay.org/wp-content/uploads/2014/03/20140324-行政院台灣警察打人,非常暴力-YouTube-720p.mp4"][/video</a>]</p>
|
||||
|
||||
<p>【行政院現場】稍早後門第一波清場畫面</p>
|
||||
|
||||
<p>[video width=“320” height=“180” mp4=“<a href="http://www.cowbay.org/wp-content/uploads/2014/03/【行政院現場】稍早後門第一波清場畫面-YouTube-360p.mp4"][/video">http://www.cowbay.org/wp-content/uploads/2014/03/【行政院現場】稍早後門第一波清場畫面-YouTube-360p.mp4"][/video</a>]</p>
|
||||
|
||||
<p>警察以盾打手無寸鐵民眾!!!(高調)</p>
|
||||
|
||||
<p>[video width=“598” height=“360” mp4=“<a href="http://www.cowbay.org/wp-content/uploads/2014/03/Anti-riot-police-HIT-the-protest-people-警察以盾打手無寸鐵民眾!!!(高調)-YouTube-360p.mp4"][/video">http://www.cowbay.org/wp-content/uploads/2014/03/Anti-riot-police-HIT-the-protest-people-警察以盾打手無寸鐵民眾!!!(高調)-YouTube-360p.mp4"][/video</a>]</p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,407 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [測試]同步多個Wordpress | My cool new Blog</title>
|
||||
<meta name="description" content="[測試]同步多個Wordpress - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[測試]同步多個Wordpress">
|
||||
<meta itemprop="description" content="[測試]同步多個Wordpress - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[測試]同步多個Wordpress">
|
||||
<meta property="og:description" content="[測試]同步多個Wordpress - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/321123/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/321123/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/321123/">[測試]同步多個Wordpress</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2015-01-10</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>在GCE上搞了一個測試用的 Wordpress</p>
|
||||
|
||||
<p>想說來玩玩看多個WP同步</p>
|
||||
|
||||
<p>下載了 WP2WP 的plugin ,設定很簡單</p>
|
||||
|
||||
<p>底下試試看能不能同步圖片等等</p>
|
||||
|
||||
<p><a href="http://www.cowbay.org/wp-content/uploads/2014/02/yoyo.jpg"><img src="http://www.cowbay.org/wp-content/uploads/2014/02/yoyo.jpg" alt="瑤瑤" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,482 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [筆記] DIY FC Storage | My cool new Blog</title>
|
||||
<meta name="description" content="[筆記] DIY FC Storage - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[筆記] DIY FC Storage">
|
||||
<meta itemprop="description" content="[筆記] DIY FC Storage - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[筆記] DIY FC Storage">
|
||||
<meta property="og:description" content="[筆記] DIY FC Storage - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/733/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/733/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/733/">[筆記] DIY FC Storage</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2014-03-31</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>因為工作上的需求,最近在測試VDI的環境,雖然我本來已經有DELL的MD系列Storage
|
||||
但是走的是iscsi的架構,原本只有 1G的頻寬,
|
||||
考慮到VDI在某些特定時段會發生大量的流量吞吐的情形,而且SI對於在現有環境下
|
||||
實際測試出來的數據不滿意,覺得不是很適合拿來建置VDI的環境。
|
||||
當然啦,廠商想要賺硬體的錢,這種想法我可以接受
|
||||
不過總是要知道如果改走8G甚至16G的fiber channel storage
|
||||
和升級成10G的ISCSI 效能會差多少
|
||||
可是廠商表示要借到整組走光纖的Server + Switch + Storage 可能有困難
|
||||
而且基本上我手邊的機器也沒辦法停機下來裝HBA卡,畢竟只是為了測試而已
|
||||
再加上不好光明正大的跟老闆要個五萬十萬的預算就為了看看跑出來的效果如何,
|
||||
老闆大概只會回我「共體時艱」…</p>
|
||||
|
||||
<p>那借又借不到,老闆又不給預算,那怎麼辦呢?
|
||||
想來想去,乾脆來土炮一組好了!
|
||||
機房內有一些零組件,還有一台退役的R410,要搞起來應該不算太困難吧.</p>
|
||||
|
||||
<p>底下簡單介紹這次測試用到的配備,其實光算硬體的價錢,真的不高,
|
||||
畢竟都是一些散置在機房的備品,真正的額外支出很少</p>
|
||||
|
||||
<p>1.DELL 4G HBA 卡
|
||||
DELL QLE2460 4G HBA Adapter x 2 / 300 RMB以內
|
||||
淘寶購買,一張一百多塊RMB
|
||||
這是最具風險的部分,因為要從淘寶買過來,不敢保證東西到底會不會有問題
|
||||
不過因為便宜,還是跟他賭賭看,8G的HBA售價幾乎是10倍以上,所以不考慮
|
||||
請大陸的同事買了之後直送台灣,很快就收到了</p>
|
||||
|
||||
<p>2.5.25轉 2.5 x4 / 1500 台幣
|
||||
這次我計畫要測試4G的FC實際上到底能夠跑到多少速度,
|
||||
如果用2.5”傳統硬碟,擔心硬碟速度會跟不上,
|
||||
所以找了退役的四顆M4 64G SSD作為儲存空間
|
||||
因為一般PC不會有這麼多的SATA電源可以用,所以找了一個這種設備
|
||||
<a href="http://www.icydock.com.tw/goods.php?id=97">http://www.icydock.com.tw/goods.php?id=97</a>
|
||||
<a href="http://www.pcstore.com.tw/megabid/M13937041.htm">http://www.pcstore.com.tw/megabid/M13937041.htm</a>
|
||||
把機殼上的一個5.25空間轉成4 x 2.5,
|
||||
本來這樣子做會擔心的就是硬碟溫度,剛好我這次用SSD來測試,不擔心溫度的問題
|
||||
而且這個東西只需要一個大4pin電源就可以了。
|
||||
3.光纖線 / 300 台幣
|
||||
其實我一開始沒想到光纖線居然這麼貴,短短五米都開價一千多..
|
||||
後來直接找協力廠商幫忙搞一條LC-LC的線來,
|
||||
算成本價 300塊 (我本來想請他喝杯飲料就算了 XD )</p>
|
||||
|
||||
<p>4. DELL H700 Raid Controller
|
||||
拍賣購買,含電池、線材 5000左右</p>
|
||||
|
||||
<p>5.其他硬體配備
|
||||
CPU : i7 型號忘了 一點點重要,因為有大量IO,所以會吃CPU運算,
|
||||
不過大概也就是i3等級可以輕鬆應付
|
||||
M/B : ASUS P8Z68 Deluxe 主機板部分滿重要的,因為HBA & Raid 都走PCI-E
|
||||
而Z68本身沒有內建顯卡,所以顯示卡又吃掉一個PCI-E 還好這張版子有
|
||||
四個PCI-E 足夠使用(除了HBA/RAID/VGA,我還多加了一張 Intel 網卡,
|
||||
其實沒啥必要,這張主機板本身就內建雙網卡,其中一個也是Intel晶片)
|
||||
RAM: Kingston 4Gx4 不是很重要,當作STORAGE用,RAM的用量不多
|
||||
PSU: 隨便
|
||||
CASE:隨便
|
||||
硬碟: WD Sata 160G 灌系統用,不重要
|
||||
OS: OSNexus QuantaStor 這東西滿有趣的,可以用來管NFS/SMB/ISCSI/FC,
|
||||
有興趣可以下載來玩玩看,免費版可以用 6T的空間,綽綽有餘。</p>
|
||||
|
||||
<p>花費不到 5000 台幣
|
||||
其他配備就算都買新的,我想應該也是一萬以內可以搞定
|
||||
主要就是注意PCI-E的數量要夠就好
|
||||
SSD如果用128G的下去玩,四顆 大概也是一萬
|
||||
不過因為我有多的M4 所以就沒有另外買了</p>
|
||||
|
||||
<p>組裝過程就略過了
|
||||
除了買來的HBA沒有短檔版,要上R410時,必須拆檔版,而且不太穩之外,沒什麼大問題
|
||||
在R410上裝好VMWARE ESXI5 會自動抓到這張HBA卡,不需要管驅動,在PC上也是,
|
||||
安裝好QuantaStor,就可以看到HBA卡了</p>
|
||||
|
||||
<p>設定步驟也略過….</p>
|
||||
|
||||
<p>硬體、作業系統、VM都搞定之後
|
||||
在ESXI上起一台Win8,然後跑Crystal Disk Mark 測試看看
|
||||
HBA跑 2G 速度時,CDM測試出來的數據大概是 <sup>170</sup>⁄<sub>170</sub> MB
|
||||
HBA跑 4G 速度時,CDM測試出來的數據大概是 <sup>300</sup>⁄<sub>300</sub> MB</p>
|
||||
|
||||
<p><a href="http://www.cowbay.org/wp-content/uploads/2014/03/fc-4G-300MB.png"><img src="http://www.cowbay.org/wp-content/uploads/2014/03/fc-4G-300MB-1024x866.png" alt="fc-4G-300MB" /></a>
|
||||
距離理論數據(2G: 250MB/ 4G: 500MB) 都還有一段距離,其實這也是讓我一直百思不解的地方
|
||||
所以想上來問問看,是不是在家用PC上,PCI-E的頻寬其實是「共用」的,
|
||||
導致從RAID丟資料到HBA,受限於頻寬,才達不到理論數據?
|
||||
因為在我印象中,光纖的儲存設備似乎不像ISCSI這種走ETHERNET的協定,會有衰減的問
|
||||
題吧?
|
||||
或者是有人用過FC SAN的,有沒有數據可以參考看看?</p>
|
||||
|
||||
<p>找時間我再來把SSD裝去R410,然後改從R410提供空間給PC
|
||||
看看這樣會不會比較快..</p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,409 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [BLOG] 再次搬家! | My cool new Blog</title>
|
||||
<meta name="description" content="[BLOG] 再次搬家! - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[BLOG] 再次搬家!">
|
||||
<meta itemprop="description" content="[BLOG] 再次搬家! - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[BLOG] 再次搬家!">
|
||||
<meta property="og:description" content="[BLOG] 再次搬家! - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/blog-e5-86-8d-e6-ac-a1-e6-90-ac-e5-ae-b6-ef-bc-81/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/blog-e5-86-8d-e6-ac-a1-e6-90-ac-e5-ae-b6-ef-bc-81/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/blog-e5-86-8d-e6-ac-a1-e6-90-ac-e5-ae-b6-ef-bc-81/">[BLOG] 再次搬家!</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-10-06</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>之前用的123systems 雖然一年只要30美金,就有1core / 2G RAM/20G H.D.D的規格可以用,</p>
|
||||
|
||||
<p>但是速度越來越慢,只有跑個wordpress,卻常常發生網頁開不起來,連SSH登入都近乎停擺的情況。</p>
|
||||
|
||||
<p>剛好時間也快到了,就順勢換成另一個VPS空間 <a href="https://inceptionhosting.com/">https://inceptionhosting.com/</a></p>
|
||||
|
||||
<p>月租費 5.35歐元,換算大概6塊多7塊美金左右,規格同樣是 1 core/2G RAM,硬碟增加到50G。</p>
|
||||
|
||||
<p>而且目前看起來,除了yum在安裝軟體的時候,速度比較慢,還有下載檔案速度大概只有六七百 K左右,</p>
|
||||
|
||||
<p>其他的效能都還算不錯,開網頁、登入發表文章等等都很快速,應該就此定居下來了吧。</p>
|
||||
|
||||
<p>另外,這次順便把很吃資源的apache給換成了 nginx ,對於網站的效能應該也多少有點幫助!</p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,405 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [BLOG] 又搬家啦! | My cool new Blog</title>
|
||||
<meta name="description" content="[BLOG] 又搬家啦! - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[BLOG] 又搬家啦!">
|
||||
<meta itemprop="description" content="[BLOG] 又搬家啦! - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[BLOG] 又搬家啦!">
|
||||
<meta property="og:description" content="[BLOG] 又搬家啦! - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/blog-e5-8f-88-e6-90-ac-e5-ae-b6-e5-95-a6-ef-bc-81/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/blog-e5-8f-88-e6-90-ac-e5-ae-b6-e5-95-a6-ef-bc-81/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/blog-e5-8f-88-e6-90-ac-e5-ae-b6-e5-95-a6-ef-bc-81/">[BLOG] 又搬家啦!</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2016-03-08</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>最近DigitalOcean(DO) 新加坡機房的速度越來越慢</p>
|
||||
|
||||
<p>只是拿來做跳板上 PTT 而已,就常常頓爹,用得很不爽</p>
|
||||
|
||||
<p>剛好在測試vultr 的機器,發現日本機房速度滿快的,而且也有FreeBSD可以用</p>
|
||||
|
||||
<p>就花了點時間從DO轉到vultr來,觀察一段時間看看吧..</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,752 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [BLOG] 新增 Vultr Storage VPS 提供 iscsi 給wordpress 主機使用 | My cool new Blog</title>
|
||||
<meta name="description" content="[BLOG] 新增 Vultr Storage VPS 提供 iscsi 給wordpress 主機使用 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[BLOG] 新增 Vultr Storage VPS 提供 iscsi 給wordpress 主機使用">
|
||||
<meta itemprop="description" content="[BLOG] 新增 Vultr Storage VPS 提供 iscsi 給wordpress 主機使用 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[BLOG] 新增 Vultr Storage VPS 提供 iscsi 給wordpress 主機使用">
|
||||
<meta property="og:description" content="[BLOG] 新增 Vultr Storage VPS 提供 iscsi 給wordpress 主機使用 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/blog-e6-96-b0-e5-a2-9e-vultr-storage-vps-e6-8f-90-e4-be-9b-iscsi-e7-b5-a6wordpress-e4-b8-bb-e6-a9-9f-e4-bd-bf-e7-94-a8/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/blog-e6-96-b0-e5-a2-9e-vultr-storage-vps-e6-8f-90-e4-be-9b-iscsi-e7-b5-a6wordpress-e4-b8-bb-e6-a9-9f-e4-bd-bf-e7-94-a8/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/blog-e6-96-b0-e5-a2-9e-vultr-storage-vps-e6-8f-90-e4-be-9b-iscsi-e7-b5-a6wordpress-e4-b8-bb-e6-a9-9f-e4-bd-bf-e7-94-a8/">[BLOG] 新增 Vultr Storage VPS 提供 iscsi 給wordpress 主機使用</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2016-03-10</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/blog">BLOG</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<h2 id="新增-vultr-storage-vps-提供-iscsi-給wordpress-主機使用"><strong>新增 Vultr Storage VPS 提供 iscsi 給wordpress 主機使用</strong></h2>
|
||||
|
||||
<p>前幾天因為DO的WP主機速度不理想,就連拿來當作上PTT的跳板都會頓爹</p>
|
||||
|
||||
<p>所以把主機換到了vultr 的東京機房,光是ping值就從 14x ms 下降到了 4x ms,整個大改善啊!</p>
|
||||
|
||||
<p>而且方案從原本的 10USD 換成了 5USD (1 cpu / 768M/15G) ,裝好FreeBSD拿來跑 WP算是綽綽有餘</p>
|
||||
|
||||
<p>不過因為這台還當作 pydio 主機來用, 15G的空間實在不夠用</p>
|
||||
|
||||
<p>發TICKET詢問客服能不能增加硬碟空間,客服表示只能upgrade plan</p>
|
||||
|
||||
<p>但是再往上一級的10 USD方案,也只有 20G,多了 5 USD 只有多5G空間(好啦 還有流量也增加,問題是我用不到流量啊…)</p>
|
||||
|
||||
<p>算一算,實在不是很划算</p>
|
||||
|
||||
<p>就在這個摸門特,發現了 vultr 有 Storage Instance !</p>
|
||||
|
||||
<p>只要 5USD 就有一台虛擬主機 (1 cpu / 512M/125G SATA HD)</p>
|
||||
|
||||
<p>怎麼算都比upgrade 到 10USD的方案划算,而且價格一樣!</p>
|
||||
|
||||
<p>二話不說,馬上申請一台,一樣跑FreeBSD 10.2,打算拿來當作儲存空間用</p>
|
||||
|
||||
<p>至於要用 sshfs / curlftpfs / nfs /iscsi 則是還沒決定,且戰且走</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<hr />
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p></p>
|
||||
|
||||
<p>系統開起來之後,先到管理介面替兩台主機都新增一個 private IP,然後兩台主機都需要重新開機</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2016/03/firefox_2016-03-10_11-36-04.png"><img src="http://wp.cowbay.org/wp-content/uploads/2016/03/firefox_2016-03-10_11-36-04-1024x722.png" alt="firefox_2016-03-10_11-36-04" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>重新開機後,必須要手動到系統內去新增虛擬 IP</p>
|
||||
|
||||
<p>就分別ssh 到這兩台機器,然後用bsdconfig 去設定 Network Management</p>
|
||||
|
||||
<p>(By the way , Storage Instance 的效能真的差滿多的,兩台一起設定,就能比較出來)</p>
|
||||
|
||||
<p>設定完之後,兩台ping 一下,應該要能通
|
||||
> root@wpstorage:/etc # ping 10.99.0.11
|
||||
>
|
||||
> PING 10.99.0.11 (10.99.0.11): 56 data bytes
|
||||
>
|
||||
> 64 bytes from 10.99.0.11: icmp_seq=0 ttl=64 time=0.469 ms
|
||||
>
|
||||
> 64 bytes from 10.99.0.11: icmp_seq=1 ttl=64 time=0.715 ms
|
||||
>
|
||||
> 64 bytes from 10.99.0.11: icmp_seq=2 ttl=64 time=0.511 ms
|
||||
>
|
||||
> 64 bytes from 10.99.0.11: icmp_seq=3 ttl=64 time=0.755 ms
|
||||
>
|
||||
> ^C
|
||||
>
|
||||
> — 10.99.0.11 ping statistics —
|
||||
>
|
||||
> 4 packets transmitted, 4 packets received, 0.0% packet loss
|
||||
>
|
||||
> round-trip min/avg/max/stddev = 0.<sup>469</sup>⁄<sub>0</sub>.<sup>612</sup>⁄<sub>0</sub>.<sup>755</sup>⁄<sub>0</sub>.124 ms
|
||||
接下來就來測試怎麼把Storage Instance的空間掛來 WP 使用</p>
|
||||
|
||||
<p>先測試比較簡單的 sshfs</p>
|
||||
|
||||
<p>在WP主機上,先載入fuse.ko
|
||||
> kldload fuse.ko
|
||||
然後 sshfs root@10.99.0.11 /mnt</p>
|
||||
|
||||
<p>輸入密碼之後,就把Storage主機的硬碟掛載 /mnt 底下了</p>
|
||||
|
||||
<p>測試一下速度</p>
|
||||
|
||||
<p>root@wp:/iscsi # dd if=/dev/zero of=testfile bs=1k count=100000
|
||||
100000+0 records in
|
||||
100000+0 records out
|
||||
102400000 bytes transferred in 17.661407 secs (1056241 bytes/sec)</p>
|
||||
|
||||
<p>WHAT !!!!!?????</p>
|
||||
|
||||
<p>這效能是怎麼回事???糟糕到一個不行啊!!!換算起來才 1mb 不到!?</p>
|
||||
|
||||
<p>有沒有那麼糟糕啊??看來用 sshfs 行不通!</p>
|
||||
|
||||
<p>馬上 umount</p>
|
||||
|
||||
<p>既然用fuse 去掛載進來的效能這麼糟糕,那 curlftpfs 應該也不用測試了,跳過,改用 iscsi 好了</p>
|
||||
|
||||
<p>翻了一下 google ,好像 FreeBSD 10.2的 iscsi 改用 ctl 來處理</p>
|
||||
|
||||
<p>於是參考這篇文章 <a href="http://jxtm.jzu.cn/?p=3238">用FreeBSD10搭建基于ZFS的iSCSI服务 </a>跳過 ZFS 的部分來建立iscsi target</p>
|
||||
|
||||
<hr />
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>以下這段在 storage 主機操作</p>
|
||||
|
||||
<p>首先修改 /etc/rc.conf 加入
|
||||
> <pre class="brush:java;">ctld_enable=“YES”
|
||||
>
|
||||
>
|
||||
> </pre>
|
||||
</p>
|
||||
|
||||
<p>接著編輯 ctld 的設定檔</p>
|
||||
|
||||
<p>vim /etc/ctld.conf
|
||||
> <pre class="brush:java;">portal-group san {
|
||||
>
|
||||
> discovery-auth-group no-authentication
|
||||
>
|
||||
> listen 10.99.0.10 #改成自己的 IP
|
||||
>
|
||||
> }
|
||||
>
|
||||
>
|
||||
> target iqn.2014-05.com.example:target0 { #target name 可改可不改,就先保留,不要動吧
|
||||
>
|
||||
> auth-group no-authentication
|
||||
>
|
||||
> portal-group san
|
||||
>
|
||||
> lun 0 {
|
||||
>
|
||||
> path /mnt/iscsifile #指定 iscsi file 的位置
|
||||
>
|
||||
> blocksize 4096
|
||||
>
|
||||
> size 100G #指定大小
|
||||
>
|
||||
> }
|
||||
>
|
||||
> }</pre>
|
||||
建立一個 target(iqn.2014-05.com.example:target0 )、一個 portal-group (san) 不需要認證 (反正這個LAN只有我自己的主機能存取)</p>
|
||||
|
||||
<p>再來修改ctld.conf 的權限
|
||||
> <pre class="brush:java;">chmod 600 /etc/ctl.conf</pre>
|
||||
啟動 ctld 服務
|
||||
> <pre class="brush:java;">service ctld start</pre>
|
||||
檢查 /var/log/messages 看看有沒有啥錯誤,正常來說應該不會有啥問題。</p>
|
||||
|
||||
<hr />
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>iscsi target 到這邊設定OK,接著來去WP主機建立 iscsi initiator</p>
|
||||
|
||||
<p>先載入 iscsi_initiator.ko
|
||||
> kldload -v iscsi_initiator.ko
|
||||
如果以後開機要自動載入的話</p>
|
||||
|
||||
<p>vim /boot/loader.conf
|
||||
新增底下這一行
|
||||
> iscsi_initiator_load=”YES”
|
||||
存檔後離開,修改檔案權限
|
||||
> chmod 755 /boot/loader.conf
|
||||
再來,搜尋一下 iscsi target
|
||||
> iscontrol -v -d targetaddress=10.99.0.10 initiatorname=iqn
|
||||
>
|
||||
>
|
||||
> #targetaddress 要改成 storage主機的 IP
|
||||
如果一切沒問題,應該會出現這樣的訊息
|
||||
> adding ‘targetaddress=10.99.0.10’
|
||||
>
|
||||
> I-: cmd=0x3 len=265
|
||||
>
|
||||
> SessionType=Discovery
|
||||
>
|
||||
> InitiatorName=nxl
|
||||
>
|
||||
> MaxBurstLength=131072
|
||||
>
|
||||
> HeaderDigest=None,CRC32C
|
||||
>
|
||||
> DataDigest=None,CRC32C
|
||||
>
|
||||
> MaxRecvDataSegmentLength=65536
|
||||
>
|
||||
> ErrorRecoveryLevel=0
|
||||
>
|
||||
> DefaultTime2Wait=0
|
||||
>
|
||||
> DefaultTime2Retain=0
|
||||
>
|
||||
> DataPDUInOrder=Yes
|
||||
>
|
||||
> DataSequenceInOrder=Yes
|
||||
>
|
||||
> MaxOutstandingR2T=1
|
||||
>
|
||||
> T-: cmd=0x23 len=212
|
||||
>
|
||||
> MaxBurstLength=131072
|
||||
>
|
||||
> HeaderDigest=None
|
||||
>
|
||||
> DataDigest=None
|
||||
>
|
||||
> MaxRecvDataSegmentLength=131072
|
||||
>
|
||||
> ErrorRecoveryLevel=0
|
||||
>
|
||||
> DefaultTime2Wait=0
|
||||
>
|
||||
> DefaultTime2Retain=0
|
||||
>
|
||||
> DataPDUInOrder=Yes
|
||||
>
|
||||
> DataSequenceInOrder=Yes
|
||||
>
|
||||
> MaxOutstandingR2T=1
|
||||
>
|
||||
> I-: cmd=0x4 len=16
|
||||
>
|
||||
> SendTargets=All
|
||||
>
|
||||
> T-: cmd=0x24 len=75
|
||||
>
|
||||
> TargetName=iqn.2014-05.com.example:target0
|
||||
>
|
||||
> TargetAddress=10.99.0.10:3260,2
|
||||
>
|
||||
> TargetName=iqn.2014-05.com.example:target0
|
||||
>
|
||||
> TargetAddress=10.99.0.10:3260,2
|
||||
>
|
||||
> I-: cmd=0x6 len=0
|
||||
>
|
||||
> T-: cmd=0x26 len=0
|
||||
雖然很多看不懂,但是看樣子似乎是有找到,把 targetName / TargetAddress 抄下來</p>
|
||||
|
||||
<p>接著設定 iscsi initiator的設定檔</p>
|
||||
|
||||
<p>vim /etc/iscsi.conf
|
||||
> wpiscsi {
|
||||
>
|
||||
> authmethod = CHAP
|
||||
>
|
||||
> chapIName = YOUR-ISCSI-USERNAME #認證名稱 沒用到
|
||||
>
|
||||
> chapSecret = YOUR-ISCSI-PASSWORD #認證密碼 沒用到
|
||||
>
|
||||
> initiatorname = iqn
|
||||
>
|
||||
> TargetName = iqn.2014-05.com.example:target0 #改成剛剛搜尋回傳的結果
|
||||
>
|
||||
> TargetAddress = 10.99.0.10:3260,2 # 改成剛剛搜尋回傳的結果
|
||||
>
|
||||
> }
|
||||
存檔離開、設定權限
|
||||
> chmod 755 /etc/iscsi.conf
|
||||
測試連線
|
||||
> iscontrol -c /etc/iscsi.conf -n wpiscsi
|
||||
正常的話,會出現類似這樣的訊息
|
||||
> <span style="font-family: Consolas,Monaco,Menlo,Courier,Verdana,sans-serif;"><span style="color: #111111;">iscontrol[8146]: running</span></span>
|
||||
dmesg 看一下,最底下應該會出現找到新磁碟的訊息
|
||||
> da0 at iscsi0 bus 0 scbus2 target 0 lun 0
|
||||
>
|
||||
> da0: <FREEBSD CTLDISK 0001> Fixed Direct Access SPC-4 SCSI device
|
||||
>
|
||||
> da0: Serial Number MYSERIAL 0
|
||||
>
|
||||
> da0: 102400MB (26214400 4096 byte sectors: 255H 63S/T 1631C)
|
||||
BINGO !抓到了!</p>
|
||||
|
||||
<p>再來就是去bsdconfig 分割,然後掛載
|
||||
> root@wp:/iscsi # mount
|
||||
>
|
||||
> /dev/vtbd0p2 on / (ufs, local, soft-updates)
|
||||
>
|
||||
> devfs on /dev (devfs, local, multilabel)
|
||||
>
|
||||
> /dev/da0s1a on /iscsi (ufs, local, journaled soft-updates)
|
||||
>
|
||||
> root@wp:/iscsi #
|
||||
馬上來測試一下速度看看!可以發現磁碟寫入速度有大幅度的增加!!
|
||||
> root@wp:/iscsi # dd if=/dev/zero of=testfile bs=1k count=1000
|
||||
>
|
||||
> 1000+0 records in
|
||||
>
|
||||
> 1000+0 records out
|
||||
>
|
||||
> 1024000 bytes transferred in 0.005329 secs (192151364 bytes/sec)
|
||||
>
|
||||
> root@wp:/iscsi # dd if=/dev/zero of=testfile bs=1k count=10000
|
||||
>
|
||||
> 10000+0 records in
|
||||
>
|
||||
> 10000+0 records out
|
||||
>
|
||||
> 10240000 bytes transferred in 0.196187 secs (52195094 bytes/sec)
|
||||
>
|
||||
> root@wp:/iscsi # dd if=/dev/zero of=testfile bs=1k count=100000
|
||||
>
|
||||
> 100000+0 records in
|
||||
>
|
||||
> 100000+0 records out
|
||||
>
|
||||
> 102400000 bytes transferred in 17.661407 secs (5797953 bytes/sec)
|
||||
>
|
||||
> root@wp:/iscsi # dd if=/dev/zero of=testfile bs=1k count=100000
|
||||
>
|
||||
> 100000+0 records in
|
||||
>
|
||||
> 100000+0 records out
|
||||
>
|
||||
> 102400000 bytes transferred in 9.815858 secs (10432099 bytes/sec)
|
||||
</p>
|
||||
|
||||
<p>接著編輯 /root/iscsi.sh ,重開機就去執行這個指令,把iscsi 掛進來
|
||||
> #!/bin/sh
|
||||
>
|
||||
> iscontrol -c /etc/iscsi.conf -n wpiscsi
|
||||
>
|
||||
> sleep 60
|
||||
>
|
||||
> mount /dev/da0s1d /iscsi
|
||||
chmod u+rwx /root/iscsi.sh</p>
|
||||
|
||||
<p>大功告成!</p>
|
||||
|
||||
<p>日後重開機的話,手動執行 iscsi.sh ,就可以了!</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer">
|
||||
|
||||
|
||||
|
||||
<div class="tags">
|
||||
<i class="fa fa-tags"></i>
|
||||
<div class="links">
|
||||
|
||||
<a href="/tags/iscsi">iscsi</a>
|
||||
|
||||
<a href="/tags/storage">storage</a>
|
||||
|
||||
<a href="/tags/vps">vps</a>
|
||||
|
||||
<a href="/tags/vultr">Vultr</a>
|
||||
|
||||
<a href="/tags/wordpress">wordpress</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,421 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [BLOG]Wordpress上超好用的備份外掛 BackWPup | My cool new Blog</title>
|
||||
<meta name="description" content="[BLOG]Wordpress上超好用的備份外掛 BackWPup - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[BLOG]Wordpress上超好用的備份外掛 BackWPup ">
|
||||
<meta itemprop="description" content="[BLOG]Wordpress上超好用的備份外掛 BackWPup - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[BLOG]Wordpress上超好用的備份外掛 BackWPup ">
|
||||
<meta property="og:description" content="[BLOG]Wordpress上超好用的備份外掛 BackWPup - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/blogwordpress-e4-b8-8a-e8-b6-85-e5-a5-bd-e7-94-a8-e7-9a-84-e5-82-99-e4-bb-bd-e5-a4-96-e6-8e-9b-backwpup/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/blogwordpress-e4-b8-8a-e8-b6-85-e5-a5-bd-e7-94-a8-e7-9a-84-e5-82-99-e4-bb-bd-e5-a4-96-e6-8e-9b-backwpup/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/blogwordpress-e4-b8-8a-e8-b6-85-e5-a5-bd-e7-94-a8-e7-9a-84-e5-82-99-e4-bb-bd-e5-a4-96-e6-8e-9b-backwpup/">[BLOG]Wordpress上超好用的備份外掛 BackWPup </a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-10-07</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/blog">BLOG</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>這兩天因為VPS搬家的關係,又稍微研究了一下WP的備份外掛。</p>
|
||||
|
||||
<p>本來我是用snapshot backup / simple backup</p>
|
||||
|
||||
<p>這兩個都支援自動排程和備份到遠端的功能。</p>
|
||||
|
||||
<p>不過,都不支援RESTORE…雖說我在還原時,大部分都是在CONSOLE底下直接操作,不過還是希望外掛能夠考慮到這一點。</p>
|
||||
|
||||
<p>看到snapshot backup的作者,有開發了另一套新的備份外掛– <a href="http://wordpress.org/plugins/backwpup/">BackWPup</a></p>
|
||||
|
||||
<p>可以排程、備份到遠端(FTP/AMAZON S3/DROPBOX),也加入了還原的功能!(不過我大概還是不會去軟體裡面用吧,直接在CONSOLE底下解壓縮、MYSQLDUMP快多了),而且LOG很詳細!可以直接看到BACKUP SCRIPT在執行的情況,非常方便!</p>
|
||||
|
||||
<p>可以在備份工作列表中,直接啟動備份。還會有進度可以看!</p>
|
||||
|
||||
<p><a href="http://www.cowbay.org/wp-content/uploads/2013/10/backwpup-02.png"><img src="http://www.cowbay.org/wp-content/uploads/2013/10/backwpup-02-1024x510.png" alt="backwpup-02" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>按下 Display Working Log ,就會出現備份SCRIPT執行的狀況,拿來DEBUG再方便不過了!</p>
|
||||
|
||||
<p><a href="http://www.cowbay.org/wp-content/uploads/2013/10/backwpup-03.png"><img src="http://www.cowbay.org/wp-content/uploads/2013/10/backwpup-03-1024x507.png" alt="backwpup-03" /></a></p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,515 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [筆記] Daily backup Websites and Offsite Backup using FTP 網頁備份 | My cool new Blog</title>
|
||||
<meta name="description" content="[筆記] Daily backup Websites and Offsite Backup using FTP 網頁備份 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[筆記] Daily backup Websites and Offsite Backup using FTP 網頁備份">
|
||||
<meta itemprop="description" content="[筆記] Daily backup Websites and Offsite Backup using FTP 網頁備份 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[筆記] Daily backup Websites and Offsite Backup using FTP 網頁備份">
|
||||
<meta property="og:description" content="[筆記] Daily backup Websites and Offsite Backup using FTP 網頁備份 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/daily-autobackup-websites-offsite-backup-using-ftp/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/daily-autobackup-websites-offsite-backup-using-ftp/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/daily-autobackup-websites-offsite-backup-using-ftp/">[筆記] Daily backup Websites and Offsite Backup using FTP 網頁備份</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2016-04-14</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<h2 id="daily-backup-websites-and-offsite-backup-using-ftp-網頁備份"><strong> Daily backup Websites and Offsite Backup using FTP 網頁備份</strong></h2>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>1.多個資料庫一起備份 (事實上應該說備份MySQL Server內的所有資料庫) backup multiple databases , in facts , all databases will be dump and backup</p>
|
||||
|
||||
<p>2.每一天都是完整備份,所以空間使用量請自行斟酌 in my case , there`s a little more than 500MB per day , that means 180GB per year</p>
|
||||
|
||||
<p>3.備份完的資料透過FTP 外推到其他空間 backup files will be push to another sites using FTP</p>
|
||||
|
||||
<p>4.變數請自行替換成符合個人的環境 please consider to change the variables in the script</p>
|
||||
|
||||
<p>
|
||||
> #!/bin/bash
|
||||
>
|
||||
>
|
||||
> ############### Infos - Edit them accordingly ########################
|
||||
>
|
||||
>
|
||||
> DATE=<code>date +%Y-%m-%d</code>
|
||||
>
|
||||
>
|
||||
> DATECODE=<code>date +%Y%m%d</code>
|
||||
>
|
||||
> LOCAL_BACKUP_DIR=“/backups”
|
||||
>
|
||||
> #DB_NAME1=“DB1”
|
||||
>
|
||||
> #DB_NAME2=“DB2”
|
||||
>
|
||||
> #DB_NAME3=“DB3”
|
||||
>
|
||||
> #DB_NAME4=“DB4”
|
||||
>
|
||||
> DB_USER=“DBadmin”
|
||||
>
|
||||
> DB_PASSWORD=“DBadminpassword”
|
||||
>
|
||||
>
|
||||
> FTP_SERVER=“ftp.abc.com”
|
||||
>
|
||||
> FTP_USERNAME=“ftpuser”
|
||||
>
|
||||
> FTP_PASSWORD=“ftpuserpassword”
|
||||
>
|
||||
> FTP_UPLOAD_DIR=“/website_backup”
|
||||
>
|
||||
>
|
||||
> LOG_FILE=/backups/backup-DATE.log
|
||||
>
|
||||
>
|
||||
> ############### Local Backup ########################
|
||||
>
|
||||
> #<del>mysqldump -u $DB_USER -p$DB_PASSWORD –databases $DB_NAME1 $DB_NAME2 $DB_NAME3 $DB_NAME4 |gzip > $LOCAL_BACKUP<em>DIR/$DATE-DB.sql.gz</del>
|
||||
>
|
||||
> #<del>mysql -uDBadmin -pDBadminpassword -e ‘show databases’ | while read dbname; do mysqldump -uroot -pu6hk4 “$dbname” > “$dbname”</em>$datecode.sql; done</del>
|
||||
>
|
||||
> mysql -uroot -pDBadmin -e ‘show databases’|grep -v Databas|grep -v information | while read dbname; do mysqldump -uDBadmin -pDBadminpassword “$dbname” > /backups/“$dbname”<em>$DATECODE.sql; done
|
||||
>
|
||||
> ls /backups/*.sql|while read dbname;do gzip -9 “$dbname”;done
|
||||
>
|
||||
> #############################################
|
||||
>
|
||||
> #網頁原始程式備份 ##
|
||||
>
|
||||
> #############################################
|
||||
>
|
||||
>
|
||||
> ls -l /var/www/html |egrep “^d”|awk -F “ ” ‘{print $9}’|while read sitename;do tar czvf /backups/“$sitename”</em>$DATECODE.tgz /var/www/html/$sitename;done
|
||||
>
|
||||
> #mysqldump -u $DB_USER -p$DB_PASSWORD $DB_NAME | gzip > $LOCAL_BACKUP_DIR/$DATE-$DB_NAME.sql.gz
|
||||
>
|
||||
>
|
||||
> ############### UPLOAD to FTP Server ################
|
||||
>
|
||||
>
|
||||
> ftp -nv $FTP_SERVER << EndFTP
|
||||
>
|
||||
> user “$FTP_USERNAME” “$FTP_PASSWORD”
|
||||
>
|
||||
> binary
|
||||
>
|
||||
> cd $FTP_UPLOAD_DIR
|
||||
>
|
||||
> lcd $LOCAL_BACKUP_DIR
|
||||
>
|
||||
> prom
|
||||
>
|
||||
> mput *.sql.gz
|
||||
>
|
||||
> mput *.tgz
|
||||
>
|
||||
> bye
|
||||
>
|
||||
> EndFTP
|
||||
>
|
||||
>
|
||||
> ############### Check and save log, also send an email ################
|
||||
>
|
||||
>
|
||||
> if test $? = 0
|
||||
>
|
||||
> then
|
||||
>
|
||||
> echo “Database Successfully Uploaded to the Ftp Server!”
|
||||
>
|
||||
> echo -e “Database Successfully created and uploaded to the FTP Server!” | mail -s “Backup from $DATE” user@abc.com
|
||||
>
|
||||
>
|
||||
> else
|
||||
>
|
||||
> echo “Error in database Upload to Ftp Server” > $LOG_FILE
|
||||
>
|
||||
> fi
|
||||
</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,442 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> 依稀-安靜聽完這一首 | My cool new Blog</title>
|
||||
<meta name="description" content="依稀-安靜聽完這一首 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="依稀-安靜聽完這一首">
|
||||
<meta itemprop="description" content="依稀-安靜聽完這一首 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="依稀-安靜聽完這一首">
|
||||
<meta property="og:description" content="依稀-安靜聽完這一首 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e4-be-9d-e7-a8-80-e5-ae-89-e9-9d-9c-e8-81-bd-e5-ae-8c-e9-80-99-e4-b8-80-e9-a6-96/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e4-be-9d-e7-a8-80-e5-ae-89-e9-9d-9c-e8-81-bd-e5-ae-8c-e9-80-99-e4-b8-80-e9-a6-96/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e4-be-9d-e7-a8-80-e5-ae-89-e9-9d-9c-e8-81-bd-e5-ae-8c-e9-80-99-e4-b8-80-e9-a6-96/">依稀-安靜聽完這一首</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-07-29</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>他说过就算分手 也要做朋友
|
||||
他笑的时候光芒都将我刺透
|
||||
回想那甜蜜的温馨的每一刻
|
||||
流着泪也要你快乐
|
||||
祝福的话 我要怎么备注
|
||||
把想他的话 一句句变音符
|
||||
收拾好情绪 避免 渐渐麻木
|
||||
忘记他已经 有了归属
|
||||
要看开一点 微笑却没余地
|
||||
没有他在 学不会收拾那情绪
|
||||
是他不懂珍惜 还是我太任性
|
||||
时间会将 这一切治愈
|
||||
可我还是不习惯 没有他的温柔
|
||||
拿着相片情不自禁发呆 我想我还爱
|
||||
他说过就算分手 也要做朋友
|
||||
他笑的时候 光芒都将我刺透
|
||||
回想那甜蜜的 温馨的每一刻
|
||||
流着泪 也要你快乐
|
||||
他说过他会爱我 一直到永久
|
||||
他说了太多 分手要给我自由
|
||||
既然无法承受 也别再多找借口
|
||||
就安静 听完这一首
|
||||
要看开一点 微笑却没余地
|
||||
没有他在 学不会收拾那情绪
|
||||
是他不懂珍惜 还是我太任性
|
||||
时间会将 这一切治愈
|
||||
可我还是不习惯 没有他的温柔
|
||||
拿着相片情不自禁发呆 我想我还爱
|
||||
他说过就算分手 也要做朋友
|
||||
他笑的时候 光芒都将我刺透
|
||||
回想那甜蜜的 温馨的每一刻
|
||||
流着泪 也要你快乐
|
||||
他说过他会爱我 一直到永久
|
||||
他说了太多 分手要给我自由
|
||||
既然无法承受 也别再多找借口
|
||||
就安静 听完这一首
|
||||
他说过就算分手 也要做朋友
|
||||
他笑的时候 光芒都将我刺透
|
||||
回想那甜蜜的 温馨的每一刻
|
||||
流着泪 也要你快乐
|
||||
他说过他会爱我 一直到永久
|
||||
他说了太多 分手要给我自由
|
||||
既然无法承受 也别再多找借口
|
||||
就安静 听完这一首</p>
|
||||
|
||||
<p><a href="http://www.youtube.com/watch?v=ZXL1_oP4sCQ">http://www.youtube.com/watch?v=ZXL1_oP4sCQ</a></p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,875 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> 個人/家庭 資料備份到百度雲端空間 | My cool new Blog</title>
|
||||
<meta name="description" content="個人/家庭 資料備份到百度雲端空間 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="個人/家庭 資料備份到百度雲端空間">
|
||||
<meta itemprop="description" content="個人/家庭 資料備份到百度雲端空間 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="個人/家庭 資料備份到百度雲端空間">
|
||||
<meta property="og:description" content="個人/家庭 資料備份到百度雲端空間 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e5-80-8b-e4-ba-ba-e5-ae-b6-e5-ba-ad-e8-b3-87-e6-96-99-e5-82-99-e4-bb-bd-e5-88-b0-e7-99-be-e5-ba-a6-e9-9b-b2-e7-ab-af-e7-a9-ba-e9-96-93/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e5-80-8b-e4-ba-ba-e5-ae-b6-e5-ba-ad-e8-b3-87-e6-96-99-e5-82-99-e4-bb-bd-e5-88-b0-e7-99-be-e5-ba-a6-e9-9b-b2-e7-ab-af-e7-a9-ba-e9-96-93/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e5-80-8b-e4-ba-ba-e5-ae-b6-e5-ba-ad-e8-b3-87-e6-96-99-e5-82-99-e4-bb-bd-e5-88-b0-e7-99-be-e5-ba-a6-e9-9b-b2-e7-ab-af-e7-a9-ba-e9-96-93/">個人/家庭 資料備份到百度雲端空間</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2015-04-09</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>1.前言</p>
|
||||
|
||||
<p>2.雲端空間介紹</p>
|
||||
|
||||
<p>3.申請雲端空間(以百度雲為例)</p>
|
||||
|
||||
<p>4.下載、安裝雲端同步軟體</p>
|
||||
|
||||
<p>5.設置雲端同步軟體,自動上傳特定路徑內的檔案到雲端空間</p>
|
||||
|
||||
<p>6.與備份軟體的結合,達成檔案壓縮加密後自動上傳</p>
|
||||
|
||||
<p><del>7.資料分級、保密</del></p>
|
||||
|
||||
<p>feathers : Sync to remote and delete local</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p></p>
|
||||
|
||||
<p><strong>一、前言</strong></p>
|
||||
|
||||
<p>在3C產品越來越發達的現代,每天在不同裝置上產生的資料與日俱增,有的是網路下載來的影片、音樂,有的是手機、相機拍攝的照片、短片,這些資料平常散佈在各個裝置上,使用起來總是不那麼方便,而且因為儲存空間有限,但是欲望無窮,總是想要拍更多的照片,抓最新的影片,<s>偷拍更多的短片</s>….</p>
|
||||
|
||||
<p>於是乎,有部份使用者就想到了把這些裝置上的資料都複製到平常使用的桌機/筆電上進行分類、整理、上傳,這個看似方便的動作,卻常常因為機器停電、硬碟故障、使用者誤刪等等原因,進而造成資料遺失的重大危機。如果只是一般不重要的資料倒也就罷了,萬一是學生的畢業論文資料、工作論文資料、料倒所需文件、又或者是小孩從小到大的紀錄,這些資料如果遺失了,那可真是損失慘重啊!透過專業廠商進行資料救援,所費不貲,動輒數千上萬,還不一定能夠救回所有資料!</p>
|
||||
|
||||
<p><strong>二、雲端空間介紹</strong></p>
|
||||
|
||||
<p>當然,有部份廠商嗅到這部份的商機,於是推出了「雲端空間」的服務,所謂的雲端空間,其實就是廠商提供了不定容量的儲存空間,讓使用者上傳、存放資料。由於大部分廠商的機房可靠度遠高於家庭內的環境,因此可以把這些雲端空間視為資料的備份倉庫,萬一本機的電腦因為種種原因造成資料遺失,就可以透過雲端空間把備份資料救回。包括了Amazon 的Cloud Drive、Google 的 Google Drive、微軟的 OneDrive 等等,這些廠商為了吸引用戶上門,多半都會提供免費的空間使用,像Cloud Drive 有免費5G,Google Drive 有免費 15G ,OneDrive也是15G,但是在普遍追求高解析影像的現在,對於儲存空間的需求是越來越大,於是,在中國大陸開始推出了以TB為單位的雲端空間,像是百度的百度雲(2T)、360雲盤更是號稱「無限容量」,滿足使用者對於空間的渴望。底下就簡單介紹如何透過百度雲的同步工具,將影像、照片、文件等等各種資料同步到百度雲空間上。</p>
|
||||
|
||||
<p>然而,中國畢竟是中國,「詭異」的網路政策,總是讓人無法安心的將資料上傳在中國的伺服器上,如果對於資料安全有比較多的考量,建議還是改用「私有雲」的方式進行備份,不過這就跟本篇文章要介紹的作法不同了,而且也需要支出一筆額外的費用,這部份就看看以後有沒有機會再來介紹。</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><strong>申請雲端空間</strong><strong>(</strong><strong>以百度雲為例</strong><strong>)</strong></p>
|
||||
|
||||
<p>百度雲 <a href="http://pan.baidu.com">http://pan.baidu.com</a> 提供了數種登入方式,也提供了外部帳號認證的機制(像是 QQ /微博/人人網),不過都不是台灣熟知的網站,所以建議還是直接申請帳號就好。</p>
|
||||
|
||||
<p>首先開啟 百度雲首頁 <a href="http://pan.baidu.com">http://pan.baidu.com</a>,點選立即註冊百度帳號</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-12-19.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-12-19_thumb.png" alt="2015-04-07_16-12-19" title="2015-04-07_16-12-19" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>由於一般不會擁有大陸的手機號碼,所以建議用郵件帳號註冊,順道提一下,這邊的驗證碼還算「親民」的</p>
|
||||
|
||||
<p>在大陸網站碰過驗證碼是簡體中文字…整個傻眼</p>
|
||||
|
||||
<p>輸入郵件位址、密碼、驗證碼,確認勾選「我已閱讀並接受<百度用戶協議>」後,按下註冊按鈕</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-17-51.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-17-51_thumb.png" alt="2015-04-07_16-17-51" title="2015-04-07_16-17-51" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>接著就到郵箱去檢查是不是有收到帳號「激活」的信件</p>
|
||||
|
||||
<p>信件中會有個「激活」的連結,可以直接點選來啟用帳號</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-18-41.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-18-41_thumb.png" alt="2015-04-07_16-18-41" title="2015-04-07_16-18-41" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>點選連結之後,還要經過一次手機簡訊的驗證手續(大陸很愛搞這套)</p>
|
||||
|
||||
<p>輸入手機號碼點發送之後,過不久手機上就會收到帶有六位數驗證碼的簡訊</p>
|
||||
|
||||
<p>填好驗證碼之後,按下提交,帳號註冊、啟動、驗證的步驟就完成了,會直接把頁面轉到百度雲的首頁</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-19-45.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-19-45_thumb.png" alt="2015-04-07_16-19-45" title="2015-04-07_16-19-45" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>首次進入百度雲首頁時,會有一些功能說明,有興趣可以慢慢欣賞。</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-20-13.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-20-13_thumb.png" alt="2015-04-07_16-20-13" title="2015-04-07_16-20-13" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>接著我們要下載百度雲同步的工具,要提醒一下,百度雲的工具軟體有兩種</p>
|
||||
|
||||
<p>一個叫百度雲管家,一個叫百度雲同步盤</p>
|
||||
|
||||
<p>這次要下載的是百度雲同步盤,在畫面上點擊 PC版下載</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-20-39.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-20-39_thumb.png" alt="2015-04-07_16-20-39" title="2015-04-07_16-20-39" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>點擊下載 Windows版</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-09_10-22-38.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-09_10-22-38_thumb.png" alt="2015-04-09_10-22-38" title="2015-04-09_10-22-38" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>下載完成後開始進行安裝</p>
|
||||
|
||||
<p>順帶一提,不管安裝什麼軟體,請注意在進行安裝程序時,畫面上的提示,不要不管說啥都一路下一步…很容易被裝了一些有的沒的軟體</p>
|
||||
|
||||
<p>這邊有兩個組件(plugin) ,一個是將 outlook 附件存到百度,一個是網頁上傳的功能,看個人需要決定要不要裝,我是兩個都取消後,再點選安裝</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-39-37.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-39-37_thumb.png" alt="2015-04-07_16-39-37" title="2015-04-07_16-39-37" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><strong>設置雲端同步軟體,自動上傳特定路徑內的檔案到雲端空間</strong></p>
|
||||
|
||||
<p>安裝完成後,會開啟百度雲同步盤的程式</p>
|
||||
|
||||
<p>要求輸入帳號密碼,就輸入剛剛申請過的帳號、密碼,如果不是多人使用同一台電腦的環境,又或者不怕別人看到雲端空間的內容的話</p>
|
||||
|
||||
<p>這邊就把記住密碼勾選起來,按下登錄</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-40-02.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-40-02_thumb.png" alt="2015-04-07_16-40-02" title="2015-04-07_16-40-02" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>第一次進入,會要求選擇要同步的文件夾,第一次玩就用預設值吧,如果不滿意,在程式的設定裡也可以進行修改,接著按下確定</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-40-16.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-40-16_thumb.png" alt="2015-04-07_16-40-16" title="2015-04-07_16-40-16" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>這邊直接按確定就好(我也不知道問這個問題是幹嘛用的 )</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-40-35.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-40-35_thumb.png" alt="2015-04-07_16-40-35" title="2015-04-07_16-40-35" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>接下來會出現 <span style="text-decoration: line-through;">新手村教學 </span>引導說明</p>
|
||||
|
||||
<p>這邊 <span style="text-decoration: line-through;">打怪不會有經驗值,更不會掉寶物</span> ,直接跳過吧…</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-40-43.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-40-43_thumb.png" alt="2015-04-07_16-40-43" title="2015-04-07_16-40-43" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>真囉唆…當然是確定退出!</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-40-50.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-40-50_thumb.png" alt="2015-04-07_16-40-50" title="2015-04-07_16-40-50" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>接著程式會打開百度雲同步盤的目錄,我先隨手複製一個檔案進去</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-42-10.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-42-10_thumb.png" alt="2015-04-07_16-42-10" title="2015-04-07_16-42-10" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>接著切換到剛剛瀏覽器的畫面,就會看到剛剛拉進同步盤的檔案,在瀏覽器上也看到了!(實際上需要一點時間,看個人的網路速度而定,中華電信雙向100M跑上下傳都還滿順的)</p>
|
||||
|
||||
<p>畫面左下方有個免費領取 2048G 容量的連結,點進去之後,會提示你如果在手機等等行動裝置上,也下載百度雲的同步工具</p>
|
||||
|
||||
<p>就可以免費增加 2T的空間,這部份不領白不領,就花點時間去依照說明操作吧,這邊就先不說明了</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-44-31.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-44-31_thumb.png" alt="2015-04-07_16-44-31" title="2015-04-07_16-44-31" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>進行到這邊,已經把基本的帳號申請、啟用、驗證,以及安裝同步工具、測試同步檔案的部份完成,接下來將說明透過備份軟體,把檔案加密壓縮後丟到雲端空間的操作</p>
|
||||
|
||||
<hr />
|
||||
|
||||
<h2 id="span-style-font-weight-bold-與備份軟體的結合-達成檔案壓縮加密後自動上傳-span"><span style="font-weight: bold;">與備份軟體的結合,達成檔案壓縮加密後自動上傳</span></h2>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>網路上可以找到的備份軟體實在太多了!這邊僅介紹自己使用上比較順手的 <strong>Cobian Backup</strong></p>
|
||||
|
||||
<p><a href="http://www.cobiansoft.com/" title="http://www.cobiansoft.com/">http://www.cobiansoft.com/</a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>一開始當然還是從網頁上把檔案下載回來,開始進行安裝</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-17-39.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-17-39_thumb.png" alt="2015-04-07_17-17-39" title="2015-04-07_17-17-39" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>授權說明,沒問題就勾選 「 I accept the conditions」,有問題就 Exit 吧(廢話…</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-17-49.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-17-49_thumb.png" alt="2015-04-07_17-17-49" title="2015-04-07_17-17-49" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>選擇安裝路徑,這邊不太需要去更改,下面的選項,請特別留意第三個 Install the Volume Shadow Copy requester</p>
|
||||
|
||||
<p>Volume Shadow Copy 中文叫陰影複製? 簡單說就是會針對現在的硬碟資料作一份快照,然後備份軟體將這份快照掛載到軟體內</p>
|
||||
|
||||
<p>再從這個掛載進來的磁區進行資料備份,這樣可以避免備份工作進行時,有些檔案因為已經被開啟,造成無法進行備份的狀況</p>
|
||||
|
||||
<p>詳細資料可以問問 google</p>
|
||||
|
||||
<p><a href="https://www.google.com.tw/search?q=volume+shadow+copy&amp;ie=utf-8&amp;oe=utf-8&amp;gws_rd=cr&amp;ei=EHUnVbK7CczX8gWFiYHADA" title="https://www.google.com.tw/search?q=volume+shadow+copy&amp;ie=utf-8&amp;oe=utf-8&amp;gws_rd=cr&amp;ei=EHUnVbK7CczX8gWFiYHADA">https://www.google.com.tw/search?q=volume+shadow+copy&ie=utf-8&oe=utf-8&gws_rd=cr&ei=EHUnVbK7CczX8gWFiYHADA</a></p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-18-07.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-18-07_thumb.png" alt="2015-04-07_17-18-07" title="2015-04-07_17-18-07" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>安裝的類型,我選擇以服務形式進行安裝,如果選這個,底下會詢問要用什麼帳號進行安裝</p>
|
||||
|
||||
<p>Windows 系統預設會有一個本機系統帳戶,可以管理這些服務,那為什麼還要用其他帳號進行安裝呢?</p>
|
||||
|
||||
<p>這是因為如果備份的來源/目的假如是 NAS 的話,就會需要輸入帳號密碼來登入NAS,這時候如果選擇 local system account</p>
|
||||
|
||||
<p>就會發生帳號密碼不對,進而無法存取的狀況</p>
|
||||
|
||||
<p>雖然這次沒有要存取 NAS ,不過還是習慣改成自己的帳號密碼了..</p>
|
||||
|
||||
<p>接著按下 Next</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-18-15.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-18-15_thumb.png" alt="2015-04-07_17-18-15" title="2015-04-07_17-18-15" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>如果選擇用本機系統帳號,就會提示可能發生的問題</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-19-08.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-19-08_thumb.png" alt="2015-04-07_17-19-08" title="2015-04-07_17-19-08" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>設定完成,可以開始進行安裝了</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-19-18.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-19-18_thumb.png" alt="2015-04-07_17-19-18" title="2015-04-07_17-19-18" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>安裝過程都會在視窗上顯示訊息,中間會暫停個幾秒鐘安裝、啟動服務</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-19-33.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-19-33_thumb.png" alt="2015-04-07_17-19-33" title="2015-04-07_17-19-33" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>裝完了!</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-19-58.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-19-58_thumb.png" alt="2015-04-07_17-19-58" title="2015-04-07_17-19-58" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>安裝完成後,進入主畫面,先來修改語言設定,Cobian Backup 預設內建多國語言,所以有繁體中文可以選</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-20-41.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-20-41_thumb.png" alt="2015-04-07_17-20-41" title="2015-04-07_17-20-41" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>先來新增一個備份工作</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-21-17.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-21-17_thumb.png" alt="2015-04-07_17-21-17" title="2015-04-07_17-21-17" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>首先會進入一般選項,這裡要注意備份類型,簡單解釋如下</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>完整備份: 美一次進行備份工作時,來源目錄內有哪些檔案、目錄,通通備份起來</p>
|
||||
|
||||
<p>增量備份:備份上次備份後,新增、修改過的檔案</p>
|
||||
|
||||
<p>差異備份:備份上次完整備份後,新增、修改過的檔案</p>
|
||||
|
||||
<p>虛擬備份: Dry Run 只是試跑,不會真正進行備份</p>
|
||||
|
||||
<p>增量備份和差異備份的差異,可以問問 google <a href="http://is.gd/POPGql" title="http://is.gd/POPGql">http://is.gd/POPGql</a></p>
|
||||
|
||||
<p>一開始可能不太好理解,不過就這次操作的目的而言,增量、差異備份對我們來說沒差</p>
|
||||
|
||||
<p>基於個人習慣,我還是選擇差異備份,同時檢查上面的五個選項是否都有勾選</p>
|
||||
|
||||
<p>ok之後,點畫面左邊的檔案設定來源和目的地</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-10_15-11-25.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-10_15-11-25_thumb.png" alt="2015-04-10_15-11-25" title="2015-04-10_15-11-25" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>上面是來源目錄,下面是目的地目錄,我們可以直接按新增去選擇</p>
|
||||
|
||||
<p>這邊的來源我選擇我的文件夾裡面的圖片目錄,目的則是前面安裝完的百度雲同步盤目錄</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-22-35.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-22-35_thumb.png" alt="2015-04-07_17-22-35" title="2015-04-07_17-22-35" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>選擇目的地目錄的視窗</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-22-20.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-22-20_thumb.png" alt="2015-04-07_17-22-20" title="2015-04-07_17-22-20" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>來源、目的設定完成後,就切換到設定排程視窗,這邊設定每天晚上的 11:59:59 自動進行備份,當然可以依照個人需求去進行調整</p>
|
||||
|
||||
<p>如果排程類型選擇定時,底下的間隔選擇 1分鐘,那就是每一分鐘都會進行一次備份工作,不過我想應該不會有這麼迫切進行備份的需求吧…</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-23-29.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-23-29_thumb.png" alt="2015-04-07_17-23-29" title="2015-04-07_17-23-29" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>再來是動態設定,這邊可以設定備份工作執行時,在系統上的優先順序</p>
|
||||
|
||||
<p>還有要保留幾份備份資料,不過我們這次的目的,不需要保留多份備份,所以都不修改</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-10_15-24-57.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-10_15-24-57_thumb.png" alt="2015-04-10_15-24-57" title="2015-04-10_15-24-57" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>再來是設定「封存」條件</p>
|
||||
|
||||
<p>這邊其實就是設定在備份時,會先把來源目錄壓縮、加上密碼保護</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-10_15-26-41.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-10_15-26-41_thumb.png" alt="2015-04-10_15-26-41" title="2015-04-10_15-26-41" /></a></p>
|
||||
|
||||
<p>前面提過,因為這次選擇的雲端空間是中國的百度雲,如果對於資料有安全上的疑慮</p>
|
||||
|
||||
<p>那就可以在這邊選擇壓縮、加密</p>
|
||||
|
||||
<p>當然,在數學的角度來說,加密一定可以破,要花多久時間而已</p>
|
||||
|
||||
<p>建議是用英文大小寫、數字、符號當作密碼,增加破解密碼的難度</p>
|
||||
|
||||
<p>如果實在想不出來,這邊建議可以考慮找一個字串,然後在記事本中,不要切換輸入法,但是用自己常用的輸入法把這個字串打出來,用這個按鍵組合作為密碼</p>
|
||||
|
||||
<p>舉例來說,我常用注音,那我想用中華民國的注音輸入按鍵組合作為密碼</p>
|
||||
|
||||
<p>那我就開個記事本,在記事本中,英數輸入法狀態下,盲打「中華民國」的注音,就會得到圖中的結果,就用這串文字當作密碼</p>
|
||||
|
||||
<p>以後要輸入密碼時,就在英數輸入法的狀態下,打出中華民國的注音按鍵就可以</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-10_15-32-03.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-10_15-32-03_thumb.png" alt="2015-04-10_15-32-03" title="2015-04-10_15-32-03" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>接著是過濾條件,這邊可以設定只要備份哪些類型的條件、要排除哪些類型的條件不要備份</p>
|
||||
|
||||
<p>同樣的,這次我們是要全部備份,所以也不需要另外進行設定</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-10_15-34-57.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-10_15-34-57_thumb.png" alt="2015-04-10_15-34-57" title="2015-04-10_15-34-57" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>「事件」屬性</p>
|
||||
|
||||
<p>這邊是設定在備份工作開始前、結束後,要不要進行其他的工作,一般也不需要設定</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-10_15-36-44.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-10_15-36-44_thumb.png" alt="2015-04-10_15-36-44" title="2015-04-10_15-36-44" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>終於到最後的「進階」屬性了</p>
|
||||
|
||||
<p>這邊只需要確認清除存檔屬性、包含備份類型這兩個選項有勾選就好,ok之後,按下確定,回到Cobian Backup 主畫面</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-10_15-37-58.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-10_15-37-58_thumb.png" alt="2015-04-10_15-37-58" title="2015-04-10_15-37-58" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>回到主畫面後,在剛剛設定的工作上按右鍵,選擇執行已選取的工作,就會開始進行備份</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-10_15-39-32.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-10_15-39-32_thumb.png" alt="2015-04-10_15-39-32" title="2015-04-10_15-39-32" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>這是我的來源路徑裡面的檔案,預設我只放了一個圖片1.jpg的圖檔在裡面</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-08_09-01-08.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-08_09-01-08_thumb.png" alt="2015-04-08_09-01-08" title="2015-04-08_09-01-08" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>第一次備份完成後,在百度雲同步盤的目錄中,可以看到多了一個壓縮檔</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-08_09-01-52.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-08_09-01-52_thumb.png" alt="2015-04-08_09-01-52" title="2015-04-08_09-01-52" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>這個壓縮檔的內容,就是剛剛看到的圖片 1.jpg</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-10_15-42-34.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-10_15-42-34_thumb.png" alt="2015-04-10_15-42-34" title="2015-04-10_15-42-34" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>接著我放了一個檔案大小比較大的檔案進去,取名叫圖片2.jpg</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-08_09-02-43.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-08_09-02-43_thumb.png" alt="2015-04-08_09-02-43" title="2015-04-08_09-02-43" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>然後再次手動執行備份工作</p>
|
||||
|
||||
<p>執行完成後,點開第二次備份建立的壓縮檔案,會發現檔案只有一個圖片2.jpg</p>
|
||||
|
||||
<p>Why ??</p>
|
||||
|
||||
<p>前面說過,差異備份只會進行從上一次的完整備份之後,進行新增/修改的檔案</p>
|
||||
|
||||
<p>從上次備份之後,我只新增了這個檔案,所以當然只備份這個</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-10_15-44-23.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-10_15-44-23_thumb.png" alt="2015-04-10_15-44-23" title="2015-04-10_15-44-23" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>同時,在瀏覽器中,開啟百度雲網盤的頁面,也可以看到這些檔案</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-10_15-47-03.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-10_15-47-03_thumb.png" alt="2015-04-10_15-47-03" title="2015-04-10_15-47-03" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>到這邊,資料自動備份、上傳雲端的設定就已經全部完成</p>
|
||||
|
||||
<p>以後只要把數位相機、手機上的照片先複製到「我的文件夾」底下的「圖片」目錄</p>
|
||||
|
||||
<p>先進行重新命名、排序、美容(!?)等等步驟後,只要等到晚上 11:59:59</p>
|
||||
|
||||
<p>Cobian Backup 就會自動將這些檔案同步到雲端去了!</p>
|
||||
|
||||
<p>只要經過備份,那麼一份資料同時間就會有原本的裝置、本機硬碟、還有雲端空間三份存在</p>
|
||||
|
||||
<p>就不用再擔心在裝置上誤刪檔案,或者本機硬碟壞掉引起的檔案遺失了!</p>
|
||||
|
||||
<p>硬碟壞了,換掉就好。</p>
|
||||
|
||||
<p>照片沒了,總沒辦法重新再照一次吧!</p>
|
||||
|
||||
<p>希望這篇po文能幫到各位!</p>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer">
|
||||
|
||||
|
||||
|
||||
<div class="tags">
|
||||
<i class="fa fa-tags"></i>
|
||||
<div class="links">
|
||||
|
||||
<a href="/tags/%E7%99%BE%E5%BA%A6%E9%9B%B2">百度雲</a>
|
||||
|
||||
<a href="/tags/%E8%B3%87%E6%96%99%E5%82%99%E4%BB%BD">資料備份</a>
|
||||
|
||||
<a href="/tags/%E9%9B%B2%E7%AB%AF">雲端</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,473 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [其他] 假冒 Apple 的詐騙信件 | My cool new Blog</title>
|
||||
<meta name="description" content="[其他] 假冒 Apple 的詐騙信件 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[其他] 假冒 Apple 的詐騙信件">
|
||||
<meta itemprop="description" content="[其他] 假冒 Apple 的詐騙信件 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[其他] 假冒 Apple 的詐騙信件">
|
||||
<meta property="og:description" content="[其他] 假冒 Apple 的詐騙信件 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e5-85-b6-e4-bb-96-e5-81-87-e5-86-92-apple-e7-9a-84-e8-a9-90-e9-a8-99-e4-bf-a1-e4-bb-b6/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e5-85-b6-e4-bb-96-e5-81-87-e5-86-92-apple-e7-9a-84-e8-a9-90-e9-a8-99-e4-bf-a1-e4-bb-b6/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e5-85-b6-e4-bb-96-e5-81-87-e5-86-92-apple-e7-9a-84-e8-a9-90-e9-a8-99-e4-bf-a1-e4-bb-b6/">[其他] 假冒 Apple 的詐騙信件</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-10-07</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>今天早上收到的,而且還真的是我的apple ID的信箱?</p>
|
||||
|
||||
<p>是真的APPLE被駭了?還是手機的APP有問題??</p>
|
||||
|
||||
<p>
|
||||
<table style="width: 100%;" cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td height="28"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<div><img src="http://images.apple.com/itunes/images/product_title.png" alt="" /></div></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<div><img src="http://image.alerts.v.me/webdocs/images/left%21%20_banner.png?1368444358" alt="" /></div>
|
||||
<div><img src="http://image.alerts.v.me/webdocs/images/welcome.png?1368444358" alt="" /></div>
|
||||
<div><img src="http://image.alerts.v.me/webdocs/images/right_banner.png?1368444358" alt="" /></div>
|
||||
<table cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<div>Dear Apple Customer,</div></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<div>To g! et back into your apple account, you’ll need to confirm your account . It’s easy: Click the button below to open a secure browser window. Confirm that you’re the owner of the account and then follow the instructions.</div></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<div>Before log in your account will be Confirmed, let us know right away.</div></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<div></p>
|
||||
|
||||
<ul>
|
||||
<li>Reporting it is important because it helps us prevent fraudsters from stealing your information. Yours s! incerely, apple .
|
||||
</div></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<div>Thanks,</div></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<div>The Apple Team</div></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<div>Please do not reply to this email. It was sent from an email address that cannot accept incoming messages.</div></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table></li>
|
||||
</ul>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,409 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [其他]沒想到我的網頁在GOOGLE排名這麼高? | My cool new Blog</title>
|
||||
<meta name="description" content="[其他]沒想到我的網頁在GOOGLE排名這麼高? - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[其他]沒想到我的網頁在GOOGLE排名這麼高?">
|
||||
<meta itemprop="description" content="[其他]沒想到我的網頁在GOOGLE排名這麼高? - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[其他]沒想到我的網頁在GOOGLE排名這麼高?">
|
||||
<meta property="og:description" content="[其他]沒想到我的網頁在GOOGLE排名這麼高? - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e5-85-b6-e4-bb-96-e6-b2-92-e6-83-b3-e5-88-b0-e6-88-91-e7-9a-84-e7-b6-b2-e9-a0-81-e5-9c-a8google-e6-8e-92-e5-90-8d-e9-80-99-e9-ba-bc-e9-ab-98-ef-bc-9f/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e5-85-b6-e4-bb-96-e6-b2-92-e6-83-b3-e5-88-b0-e6-88-91-e7-9a-84-e7-b6-b2-e9-a0-81-e5-9c-a8google-e6-8e-92-e5-90-8d-e9-80-99-e9-ba-bc-e9-ab-98-ef-bc-9f/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e5-85-b6-e4-bb-96-e6-b2-92-e6-83-b3-e5-88-b0-e6-88-91-e7-9a-84-e7-b6-b2-e9-a0-81-e5-9c-a8google-e6-8e-92-e5-90-8d-e9-80-99-e9-ba-bc-e9-ab-98-ef-bc-9f/">[其他]沒想到我的網頁在GOOGLE排名這麼高?</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-07-05</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/blog">BLOG</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>早上意外收到群暉的客服主管來信,大意是說之前PO了一篇<a href="http://www.cowbay.org/?p=213" title="[雜念] 群暉科技 synology 的Support 客服人員 請不要再犯一樣的錯誤了,好嗎?">對群暉客服的碎碎念</a></p>
|
||||
|
||||
<p>結果在GOOGLE搜尋時,因為排名比較前面,不小心被這位主管看到了,所以來信致意一下這樣。</p>
|
||||
|
||||
<p>我就很好奇,隨手去搜尋了一下「群暉 客服」,結果跑出來的結果排第四,小輸官網、104、還有M01 <img src="http://www.cowbay.org/wp-content/plugins/ultimate-tinymce/addons/emotions/img/popobig/boss.png" alt="Big Boss" title="Big Boss" /></p>
|
||||
|
||||
<p><a href="http://www.cowbay.org/wp-content/uploads/2013/07/google-search-synology-no-4.png"><img src="http://www.cowbay.org/wp-content/uploads/2013/07/google-search-synology-no-4.png" alt="google-search-synology-no-4" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>該說wordpress的SEO作太好了嗎? <img src="http://www.cowbay.org/wp-content/plugins/ultimate-tinymce/addons/emotions/img/popobig/big_smile.png" alt="Big Smile" title="Big Smile" /></p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,851 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [其它] 在marvel看過最恐怖的經驗/故事(補連結+整理) | My cool new Blog</title>
|
||||
<meta name="description" content="[其它] 在marvel看過最恐怖的經驗/故事(補連結+整理) - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[其它] 在marvel看過最恐怖的經驗/故事(補連結+整理)">
|
||||
<meta itemprop="description" content="[其它] 在marvel看過最恐怖的經驗/故事(補連結+整理) - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[其它] 在marvel看過最恐怖的經驗/故事(補連結+整理)">
|
||||
<meta property="og:description" content="[其它] 在marvel看過最恐怖的經驗/故事(補連結+整理) - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e5-85-b6-e5-ae-83-e5-9c-a8marvel-e7-9c-8b-e9-81-8e-e6-9c-80-e6-81-90-e6-80-96-e7-9a-84-e7-b6-93-e9-a9-97-e6-95-85-e4-ba-8b-e8-a3-9c-e9-80-a3-e7-b5-90-e6-95-b4-e7-90-86/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e5-85-b6-e5-ae-83-e5-9c-a8marvel-e7-9c-8b-e9-81-8e-e6-9c-80-e6-81-90-e6-80-96-e7-9a-84-e7-b6-93-e9-a9-97-e6-95-85-e4-ba-8b-e8-a3-9c-e9-80-a3-e7-b5-90-e6-95-b4-e7-90-86/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e5-85-b6-e5-ae-83-e5-9c-a8marvel-e7-9c-8b-e9-81-8e-e6-9c-80-e6-81-90-e6-80-96-e7-9a-84-e7-b6-93-e9-a9-97-e6-95-85-e4-ba-8b-e8-a3-9c-e9-80-a3-e7-b5-90-e6-95-b4-e7-90-86/">[其它] 在marvel看過最恐怖的經驗/故事(補連結+整理)</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2015-12-22</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>作者unicrysfish (獨晶魚) 看板marvel</p>
|
||||
|
||||
<p>標題Re[其它] 在marvel看過最恐怖的經驗/故事(補連結+整理)</p>
|
||||
|
||||
<p>時間Tue Dec 8 00:47:23 2015</p>
|
||||
|
||||
<p>大家好我是原po</p>
|
||||
|
||||
<p>轉眼間已經過一年了</p>
|
||||
|
||||
<p>很開心剛剛看到板上有人整理2014跟2015的推薦文^^</p>
|
||||
|
||||
<p>我這篇算是舊文的總整理</p>
|
||||
|
||||
<p>有興趣也可以參考看看
|
||||
</p>
|
||||
|
||||
<p>當初心血來潮整理的經典好文中間經過連結失效的慘劇</p>
|
||||
|
||||
<p>剛剛已全數更換成google短網址</p>
|
||||
|
||||
<p>手更新到發抖XD</p>
|
||||
|
||||
<p>供舊朋友想回味</p>
|
||||
|
||||
<p>新朋友想一窺好文作參考^^</p>
|
||||
|
||||
<p>想要投票的也可以繼續投</p>
|
||||
|
||||
<p>有空時會補上</p>
|
||||
|
||||
<p>有段時間沒來看板了不太熟悉現在的板規</p>
|
||||
|
||||
<p>這篇沒有M點</p>
|
||||
|
||||
<p>希望不會被刪文XD</p>
|
||||
|
||||
<p>網頁板</p>
|
||||
|
||||
<p><a href="https://www.ptt.cc/bbs/marvel/M.1415526249.A.F3C.html">https://www.ptt.cc/bbs/marvel/M.1415526249.A.F3C.html</a></p>
|
||||
|
||||
<p>※ 引述《unicrysfish》之銘言:</p>
|
||||
|
||||
<p>作者unicrysfish (獨晶魚) 看板marvel</p>
|
||||
|
||||
<p>標題[其它] 在marvel看過最恐怖的經驗/故事</p>
|
||||
|
||||
<p>時間Sun Nov 9 17:44:06 2014</p>
|
||||
|
||||
<p>最近在複習幾篇經典文</p>
|
||||
|
||||
<p>看得超毛但又很過癮</p>
|
||||
|
||||
<p>想問大家覺得本版最恐怖的是哪一篇?</p>
|
||||
|
||||
<p>翻譯創作的也可以討論</p>
|
||||
|
||||
<p>感謝啦^^</p>
|
||||
|
||||
<p>ps我覺得很毛的:</p>
|
||||
|
||||
<p>(4票)二技時的經驗(紙人)<a href="https://goo.gl/MJDgme">https://goo.gl/MJDgme</a></p>
|
||||
|
||||
<p>(34票)美山路異聞錄(高雄)(全集)<a href="https://goo.gl/1QJC81">https://goo.gl/1QJC81</a></p>
|
||||
|
||||
<p>(5票)陶瓷娃娃<a href="https://goo.gl/ss0PIH">https://goo.gl/ss0PIH</a></p>
|
||||
|
||||
<p>尹清楓怪遇記事</p>
|
||||
|
||||
<p><a href="https://goo.gl/9im8r8">https://goo.gl/9im8r8</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/SLZDmW">https://goo.gl/SLZDmW</a></p>
|
||||
|
||||
<p>鬼娶親(推文有附吳君如電影片段超有畫面)</p>
|
||||
|
||||
<p><a href="https://goo.gl/EOeAUz">https://goo.gl/EOeAUz</a></p>
|
||||
|
||||
<p>吳君如電影片段 <a href="https://goo.gl/JcuN5R">https://goo.gl/JcuN5R</a></p>
|
||||
|
||||
<p>(不敢點膽大的板友跟我分享吧)</p>
|
||||
|
||||
<p>(8票)國中時的靈驗照片(有圖囉)</p>
|
||||
|
||||
<p><a href="https://goo.gl/sJC5PH">https://goo.gl/sJC5PH</a></p>
|
||||
|
||||
<p>圖在這篇</p>
|
||||
|
||||
<p><a href="https://goo.gl/cEp1ro">https://goo.gl/cEp1ro</a></p>
|
||||
|
||||
<p>(2票)五樓那間套房(真人真事推文也很精彩)</p>
|
||||
|
||||
<p><a href="https://goo.gl/2DI3AG">https://goo.gl/2DI3AG</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/83dtfV">https://goo.gl/83dtfV</a></p>
|
||||
|
||||
<p>(5票)2007 in the usa(六部分)</p>
|
||||
|
||||
<p><a href="https://goo.gl/CiMi6e">https://goo.gl/CiMi6e</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/V6cST7">https://goo.gl/V6cST7</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/Ky2U9O">https://goo.gl/Ky2U9O</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/w0iykC">https://goo.gl/w0iykC</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/OjN23A">https://goo.gl/OjN23A</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/XeOoeG">https://goo.gl/XeOoeG</a></p>
|
||||
|
||||
<p>一點點恐怖</p>
|
||||
|
||||
<p><a href="https://goo.gl/pySZEs">https://goo.gl/pySZEs</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/gqYHBn">https://goo.gl/gqYHBn</a></p>
|
||||
|
||||
<p>還有一篇在電梯前面跪著的學姐(忘記篇名)</p>
|
||||
|
||||
<p>謝謝Z大補充:地下室的女人</p>
|
||||
|
||||
<p><a href="https://goo.gl/iETQbc">https://goo.gl/iETQbc</a></p>
|
||||
|
||||
<p>這幾篇在這個連結都有</p>
|
||||
|
||||
<p><a href="http://goo.gl/AWIURg">http://goo.gl/AWIURg</a></p>
|
||||
|
||||
<p>(5票)ps想問大家有沒有看過一個卡通叫學校有鬼-花子來了嗎?</p>
|
||||
|
||||
<p>小時候看都超害怕的到現在有幾集都記得超清楚</p>
|
||||
|
||||
<p>像是搭公車發現公車上的人都是死人</p>
|
||||
|
||||
<p>紅色書包有鬼跑出來要吃掉小女孩</p>
|
||||
|
||||
<p>那時候造成好大的陰影喔</p>
|
||||
|
||||
<p>我找到日文的影片</p>
|
||||
|
||||
<p><a href="http://goo.gl/gNAjBL">http://goo.gl/gNAjBL</a></p>
|
||||
|
||||
<p>我沒膽(遮臉)敢看的跟我分享</p>
|
||||
|
||||
<p>私心想推我當道士這些年這部小說^^</p>
|
||||
|
||||
<hr />
|
||||
|
||||
<p>板友補充:</p>
|
||||
|
||||
<p>(4票)我們的鄰居 <a href="https://goo.gl/IeME3A">https://goo.gl/IeME3A</a></p>
|
||||
|
||||
<p>(10票)我的幾個小經驗3.在紐西蘭發生的事情</p>
|
||||
|
||||
<p><a href="https://goo.gl/ZZZ2Oz">https://goo.gl/ZZZ2Oz</a></p>
|
||||
|
||||
<p>活著的人偶 <a href="https://goo.gl/U3K0YI">https://goo.gl/U3K0YI</a></p>
|
||||
|
||||
<p>隔壁的女人 <a href="https://goo.gl/hIfNcS">https://goo.gl/hIfNcS</a></p>
|
||||
|
||||
<p>(殘穢)畢業旅行 <a href="https://goo.gl/RuwKZd">https://goo.gl/RuwKZd</a></p>
|
||||
|
||||
<p>(3票)取子箱 <a href="https://goo.gl/wldztk">https://goo.gl/wldztk</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/7xu9ce">https://goo.gl/7xu9ce</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/ba3ilJ">https://goo.gl/ba3ilJ</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/4gB96v">https://goo.gl/4gB96v</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/TN4Mxd">https://goo.gl/TN4Mxd</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/IHNDvv">https://goo.gl/IHNDvv</a></p>
|
||||
|
||||
<p>考據 <a href="https://goo.gl/yN1cmK">https://goo.gl/yN1cmK</a></p>
|
||||
|
||||
<p>外傳(印證)<a href="https://goo.gl/rr2uvp">https://goo.gl/rr2uvp</a></p>
|
||||
|
||||
<p>渡假地打工 <a href="http://goo.gl/nklVBl">http://goo.gl/nklVBl</a></p>
|
||||
|
||||
<p>Mshow俱樂部 <a href="https://goo.gl/YqqiG7">https://goo.gl/YqqiG7</a></p>
|
||||
|
||||
<p>G縣廚</p>
|
||||
|
||||
<p><a href="http://goo.gl/b3MNA0">http://goo.gl/b3MNA0</a></p>
|
||||
|
||||
<p>雨天的怪人</p>
|
||||
|
||||
<p><a href="https://goo.gl/i2ay8w">https://goo.gl/i2ay8w</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/D21jY8">https://goo.gl/D21jY8</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/sm3Lce">https://goo.gl/sm3Lce</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/A1Y1DG">https://goo.gl/A1Y1DG</a></p>
|
||||
|
||||
<p>(2票)沒有鬼的故事(大推)</p>
|
||||
|
||||
<p><a href="https://goo.gl/B3RvCe">https://goo.gl/B3RvCe</a></p>
|
||||
|
||||
<p>(5票)強者我朋友系列</p>
|
||||
|
||||
<p><a href="https://goo.gl/NAQcn4">https://goo.gl/NAQcn4</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/jKalHt">https://goo.gl/jKalHt</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/mH1wEQ">https://goo.gl/mH1wEQ</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/m443Gf">https://goo.gl/m443Gf</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/HBsS1W">https://goo.gl/HBsS1W</a></p>
|
||||
|
||||
<p>山中謎霧</p>
|
||||
|
||||
<p><a href="https://goo.gl/49YWsQ">https://goo.gl/49YWsQ</a></p>
|
||||
|
||||
<p>(3票)夜晚的估價</p>
|
||||
|
||||
<p><a href="https://goo.gl/cVSbxN">https://goo.gl/cVSbxN</a></p>
|
||||
|
||||
<p>你發現了嗎?</p>
|
||||
|
||||
<p><a href="https://goo.gl/2oECYH">https://goo.gl/2oECYH</a></p>
|
||||
|
||||
<p>(2票)晚上曬衣服</p>
|
||||
|
||||
<p><a href="https://goo.gl/QXdtjS">https://goo.gl/QXdtjS</a></p>
|
||||
|
||||
<p>(7票)八尺大人</p>
|
||||
|
||||
<p><a href="https://goo.gl/lpOAOV">https://goo.gl/lpOAOV</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/HQkuMW">https://goo.gl/HQkuMW</a></p>
|
||||
|
||||
<p>(2票)嘉明湖</p>
|
||||
|
||||
<p><a href="https://goo.gl/z5051m">https://goo.gl/z5051m</a></p>
|
||||
|
||||
<p>(2票 )土城青草山系列</p>
|
||||
|
||||
<p><a href="https://goo.gl/0CVIbM">https://goo.gl/0CVIbM</a></p>
|
||||
|
||||
<p>(4票)事故物件</p>
|
||||
|
||||
<p><a href="https://goo.gl/BLyDzg">https://goo.gl/BLyDzg</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/bDuSNQ">https://goo.gl/bDuSNQ</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/CdvmIO">https://goo.gl/CdvmIO</a></p>
|
||||
|
||||
<p>斯德哥爾摩街命案</p>
|
||||
|
||||
<p><a href="https://goo.gl/g7sOue">https://goo.gl/g7sOue</a></p>
|
||||
|
||||
<p>他的呢喃</p>
|
||||
|
||||
<p><a href="https://goo.gl/ba9Vwi">https://goo.gl/ba9Vwi</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/FPHqan">https://goo.gl/FPHqan</a></p>
|
||||
|
||||
<p>(9票)辦公室怪談</p>
|
||||
|
||||
<p><a href="https://goo.gl/zCf2iy">https://goo.gl/zCf2iy</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/V0uY9B">https://goo.gl/V0uY9B</a></p>
|
||||
|
||||
<p>(2票)大園空難預知錄</p>
|
||||
|
||||
<p><a href="https://goo.gl/g6SrOK">https://goo.gl/g6SrOK</a></p>
|
||||
|
||||
<p>(3票)房號733</p>
|
||||
|
||||
<p><a href="https://goo.gl/c8qvdc">https://goo.gl/c8qvdc</a></p>
|
||||
|
||||
<hr />
|
||||
|
||||
<p>恐懼罐頭系列(這很多篇大家就自己蒐關鍵字了^^)</p>
|
||||
|
||||
<p>(3票)想請問一個軍中鬼故事</p>
|
||||
|
||||
<p><a href="https://goo.gl/QCvGpN">https://goo.gl/QCvGpN</a></p>
|
||||
|
||||
<p>重慶紅衣男孩(這篇我覺得要搭配dark angel 一起看雖說沒有人能證明確實有關)</p>
|
||||
|
||||
<p><a href="http://goo.gl/2hN3Ak">http://goo.gl/2hN3Ak</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/XDvcBq">https://goo.gl/XDvcBq</a></p>
|
||||
|
||||
<p>(2票)檳榔園的阿婆</p>
|
||||
|
||||
<p><a href="https://goo.gl/8xCVJK">https://goo.gl/8xCVJK</a></p>
|
||||
|
||||
<p>(2票)毛骨聳然撞鬼經驗(義莊篇)</p>
|
||||
|
||||
<p><a href="https://goo.gl/Hv8Q1G">https://goo.gl/Hv8Q1G</a></p>
|
||||
|
||||
<p>(3票)海報</p>
|
||||
|
||||
<p><a href="https://goo.gl/krXHyk">https://goo.gl/krXHyk</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/tDo2e9">https://goo.gl/tDo2e9</a></p>
|
||||
|
||||
<p>婚紗店夜驚魂</p>
|
||||
|
||||
<p><a href="https://goo.gl/CYOaDL">https://goo.gl/CYOaDL</a></p>
|
||||
|
||||
<p>電梯來了,你搭不搭呢?</p>
|
||||
|
||||
<p><a href="https://goo.gl/sfUxpA">https://goo.gl/sfUxpA</a></p>
|
||||
|
||||
<p>(2票)蠟燭灣奇譚</p>
|
||||
|
||||
<p><a href="https://goo.gl/Kq6Am1">https://goo.gl/Kq6Am1</a></p>
|
||||
|
||||
<p>禁后</p>
|
||||
|
||||
<p><a href="http://goo.gl/pidblt">http://goo.gl/pidblt</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/ZRcqaG">https://goo.gl/ZRcqaG</a></p>
|
||||
|
||||
<p><a href="http://goo.gl/fDm6Cm">http://goo.gl/fDm6Cm</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/qJocfY">https://goo.gl/qJocfY</a></p>
|
||||
|
||||
<p>屋頂揮手的女人</p>
|
||||
|
||||
<p><a href="https://goo.gl/UMSXvl">https://goo.gl/UMSXvl</a></p>
|
||||
|
||||
<p>(2票)揮手的女人影片</p>
|
||||
|
||||
<p><a href="https://goo.gl/tZIU7m">https://goo.gl/tZIU7m</a></p>
|
||||
|
||||
<p>黑特板鬧鬼事件之從拍窗事件</p>
|
||||
|
||||
<p><a href="https://goo.gl/mpYlpl">https://goo.gl/mpYlpl</a></p>
|
||||
|
||||
<p>信義區百貨(S百貨回文)</p>
|
||||
|
||||
<p><a href="https://goo.gl/wnrthw">https://goo.gl/wnrthw</a></p>
|
||||
|
||||
<p>醫院工作經驗</p>
|
||||
|
||||
<p><a href="https://goo.gl/QqC4HC">https://goo.gl/QqC4HC</a></p>
|
||||
|
||||
<p>(2票)兇殺案托夢</p>
|
||||
|
||||
<p><a href="https://goo.gl/AENWLQ">https://goo.gl/AENWLQ</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/4ksyCM">https://goo.gl/4ksyCM</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/WnC6Q0">https://goo.gl/WnC6Q0</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/kwt3KA">https://goo.gl/kwt3KA</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/mGnLWg">https://goo.gl/mGnLWg</a></p>
|
||||
|
||||
<p>房子的主人</p>
|
||||
|
||||
<p><a href="https://goo.gl/7lbGYu">https://goo.gl/7lbGYu</a></p>
|
||||
|
||||
<p>奧克拉荷馬州:黑山</p>
|
||||
|
||||
<p><a href="https://goo.gl/CBQjcz">https://goo.gl/CBQjcz</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/1qEqh5">https://goo.gl/1qEqh5</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/0mwumS">https://goo.gl/0mwumS</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/fuddGt">https://goo.gl/fuddGt</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/p32Hy1">https://goo.gl/p32Hy1</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/TZEXRq">https://goo.gl/TZEXRq</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/4Kngrc">https://goo.gl/4Kngrc</a></p>
|
||||
|
||||
<p>好朋友日本混血的台灣電梯事件</p>
|
||||
|
||||
<p><a href="https://goo.gl/lH4Ug9">https://goo.gl/lH4Ug9</a></p>
|
||||
|
||||
<p>海龜湯</p>
|
||||
|
||||
<p><a href="https://goo.gl/GLt5L7">https://goo.gl/GLt5L7</a></p>
|
||||
|
||||
<p>剪指甲的人</p>
|
||||
|
||||
<p><a href="https://goo.gl/cbDAZL">https://goo.gl/cbDAZL</a></p>
|
||||
|
||||
<p>室設的故事</p>
|
||||
|
||||
<p><a href="https://goo.gl/aJvxzT">https://goo.gl/aJvxzT</a></p>
|
||||
|
||||
<p>Re[分享] 日本都市傳說:危險的好奇心 (完)</p>
|
||||
|
||||
<p><a href="http://goo.gl/V6F955">http://goo.gl/V6F955</a></p>
|
||||
|
||||
<p>這篇是單獨一篇但是是回文^^</p>
|
||||
|
||||
<p>ID</p>
|
||||
|
||||
<p><a href="http://goo.gl/m7sYh3">http://goo.gl/m7sYh3</a></p>
|
||||
|
||||
<p>(4票)山中傳奇 奇萊山</p>
|
||||
|
||||
<p><a href="https://goo.gl/o6bFI8">https://goo.gl/o6bFI8</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/4EUWgP">https://goo.gl/4EUWgP</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/ZkJH1C">https://goo.gl/ZkJH1C</a></p>
|
||||
|
||||
<p><a href="http://goo.gl/D7W4SD">http://goo.gl/D7W4SD</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/PVas2j">https://goo.gl/PVas2j</a></p>
|
||||
|
||||
<p><a href="http://goo.gl/5HBRKS">http://goo.gl/5HBRKS</a></p>
|
||||
|
||||
<p>奇萊山小人</p>
|
||||
|
||||
<p><a href="http://goo.gl/Vma43o">http://goo.gl/Vma43o</a></p>
|
||||
|
||||
<p>圖</p>
|
||||
|
||||
<p><a href="http://goo.gl/w3hLHf">http://goo.gl/w3hLHf</a></p>
|
||||
|
||||
<p>夢境</p>
|
||||
|
||||
<p><a href="https://goo.gl/WHvplD">https://goo.gl/WHvplD</a></p>
|
||||
|
||||
<p>日本怪談:對講機</p>
|
||||
|
||||
<p><a href="https://goo.gl/C9w6aM">https://goo.gl/C9w6aM</a></p>
|
||||
|
||||
<p>冰庫女鬼</p>
|
||||
|
||||
<p><a href="https://goo.gl/qOcmqB">https://goo.gl/qOcmqB</a></p>
|
||||
|
||||
<p>海嬤仔</p>
|
||||
|
||||
<p><a href="https://goo.gl/AcBkBi">https://goo.gl/AcBkBi</a></p>
|
||||
|
||||
<p>賣房子</p>
|
||||
|
||||
<p><a href="https://goo.gl/2t7U17">https://goo.gl/2t7U17</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/hYqv1V">https://goo.gl/hYqv1V</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/xHGgIC">https://goo.gl/xHGgIC</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/994tX3">https://goo.gl/994tX3</a></p>
|
||||
|
||||
<p>不要再吸毒了</p>
|
||||
|
||||
<p><a href="https://goo.gl/4GYkNM">https://goo.gl/4GYkNM</a></p>
|
||||
|
||||
<p>憨吉a番麥</p>
|
||||
|
||||
<p><a href="https://goo.gl/tDArQp">https://goo.gl/tDArQp</a></p>
|
||||
|
||||
<p>有遺漏或希望我補的跟我說^^</p>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,427 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [分流] 蓮蕂芠競選總部 - 加州樂透篇 | My cool new Blog</title>
|
||||
<meta name="description" content="[分流] 蓮蕂芠競選總部 - 加州樂透篇 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[分流] 蓮蕂芠競選總部 - 加州樂透篇">
|
||||
<meta itemprop="description" content="[分流] 蓮蕂芠競選總部 - 加州樂透篇 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[分流] 蓮蕂芠競選總部 - 加州樂透篇">
|
||||
<meta property="og:description" content="[分流] 蓮蕂芠競選總部 - 加州樂透篇 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e5-88-86-e6-b5-81-e8-93-ae-e8-95-82-e8-8a-a0-e7-ab-b6-e9-81-b8-e7-b8-bd-e9-83-a8-ef-bc-8d-e5-8a-a0-e5-b7-9e-e6-a8-82-e9-80-8f-e7-af-87/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e5-88-86-e6-b5-81-e8-93-ae-e8-95-82-e8-8a-a0-e7-ab-b6-e9-81-b8-e7-b8-bd-e9-83-a8-ef-bc-8d-e5-8a-a0-e5-b7-9e-e6-a8-82-e9-80-8f-e7-af-87/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e5-88-86-e6-b5-81-e8-93-ae-e8-95-82-e8-8a-a0-e7-ab-b6-e9-81-b8-e7-b8-bd-e9-83-a8-ef-bc-8d-e5-8a-a0-e5-b7-9e-e6-a8-82-e9-80-8f-e7-af-87/">[分流] 蓮蕂芠競選總部 - 加州樂透篇</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2014-10-28</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>在八卦版看到的</p>
|
||||
|
||||
<p>作者: WatPoint (華點) 看板: joke
|
||||
標題: [kuso] 蓮蕂芠競選總部-加州樂透篇(完全同步版)
|
||||
時間: Tue Oct 28 16:53:32 2014</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>蓮蕂芠競選總部 - 加州樂透篇 (純屬虛構,不要告我QQ):
|
||||
<a href="http://youtu.be/BEtxA8_85a4">http://youtu.be/BEtxA8_85a4</a></p>
|
||||
|
||||
<p>影片說明:
|
||||
今天早上,連勝文的食安競選廣告,被發現跟加州樂透的廣告很像
|
||||
為了確定到底有多像,特地做了這個影片將兩者同步。沒想到同步率根本…</p>
|
||||
|
||||
<p>※※※※※※註:加州樂透的廣告有經過縮放並調整時間軸※※※※※※
|
||||
※註:加州樂透的廣告有經過縮放處理</p>
|
||||
|
||||
<p>連勝文競選總部-食安篇:
|
||||
<a href="http://youtu.be/zQRd0PL-Ot4">http://youtu.be/zQRd0PL-Ot4</a>
|
||||
加州樂透廣告:
|
||||
<a href="https://www.youtube.com/watch?v=15hT5TOSVAg">https://www.youtube.com/watch?v=15hT5TOSVAg</a>
|
||||
<a href="https://www.youtube.com/watch?v=FUd99lU3A9c">https://www.youtube.com/watch?v=FUd99lU3A9c</a></p>
|
||||
|
||||
<p>因登入次數不足,無法在八卦發文,求勇者幫轉八卦</p>
|
||||
|
||||
<p>[video width=“1280” height=“720” mp4=“<a href="http://www.cowbay.org/wp-content/uploads/2014/10/蓮蕂芠競選總部---加州樂透篇-純屬虛構,不要告我QQ.mp4"][/video">http://www.cowbay.org/wp-content/uploads/2014/10/蓮蕂芠競選總部---加州樂透篇-純屬虛構,不要告我QQ.mp4"][/video</a>]</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,435 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [剪報] 2歲童近視500度 都是iPad惹的禍? | My cool new Blog</title>
|
||||
<meta name="description" content="[剪報] 2歲童近視500度 都是iPad惹的禍? - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[剪報] 2歲童近視500度 都是iPad惹的禍?">
|
||||
<meta itemprop="description" content="[剪報] 2歲童近視500度 都是iPad惹的禍? - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[剪報] 2歲童近視500度 都是iPad惹的禍?">
|
||||
<meta property="og:description" content="[剪報] 2歲童近視500度 都是iPad惹的禍? - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e5-89-aa-e5-a0-b1-2-e6-ad-b2-e7-ab-a5-e8-bf-91-e8-a6-96500-e5-ba-a6-e9-83-bd-e6-98-afipad-e6-83-b9-e7-9a-84-e7-a6-8d-ef-bc-9f/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e5-89-aa-e5-a0-b1-2-e6-ad-b2-e7-ab-a5-e8-bf-91-e8-a6-96500-e5-ba-a6-e9-83-bd-e6-98-afipad-e6-83-b9-e7-9a-84-e7-a6-8d-ef-bc-9f/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e5-89-aa-e5-a0-b1-2-e6-ad-b2-e7-ab-a5-e8-bf-91-e8-a6-96500-e5-ba-a6-e9-83-bd-e6-98-afipad-e6-83-b9-e7-9a-84-e7-a6-8d-ef-bc-9f/">[剪報] 2歲童近視500度 都是iPad惹的禍?</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-04-18</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p><table style="width: 100%;" border="0" cellspacing="3" cellpadding="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="130%"><img src="http://udn.com/2010/images/linedot.gif" alt="" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table style="width: 100%;" border="0" cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="75%">
|
||||
<div id="story_author">【聯合報╱記者汪莉絹/綜合報導】</div></td>
|
||||
<td width="25%">
|
||||
<div id="story_update" align="right">2013.04.18 03:49 am</div></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top">
|
||||
<div id="story"></p>
|
||||
|
||||
<p>大陸兒童近視眼出現低齡化趨勢,而電子產品正是兒童的視力殺手,武漢一名兩歲半男童因長期玩iPad,近視達五百度,大陸國家衛生和計畫生育委員會日前發布警示,提醒家長儘量避免讓兩歲以下兒童操作電子影像產品。</p>
|
||||
|
||||
<p>武漢晚報報導,一名男童華華(假名)今年兩歲半,最近一段時間,他的媽媽發現他看東西常瞇著眼睛,帶到醫院眼科檢查,發現近視達五百度。華華的媽媽說,華 華一歲半就開始接觸iPad,大人也樂得輕鬆,只要孩子哭鬧,就拿出iPad給他玩。半年前華華的媽媽又買回iPad3,華華玩iPad的時間越來越長。 醫生說,正是由於過度使用iPad,華華才會假性近視。</p>
|
||||
|
||||
<p>中南醫院眼科醫生說,因過多接觸電子產品導致視力損傷的幼兒,並不少見。兒童醫院裡近視的孩子越來越多,兒童近視有提早的趨勢。</p>
|
||||
|
||||
<p></div></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<div>
|
||||
全文網址: <a href="http://udn.com/NEWS/MAINLAND/MAI2/7838770.shtml#ixzz2QlpnG37I">2歲童近視500度 都是iPad惹的禍? | 陸港傳真 | 兩岸台商 | 聯合新聞網</a>
|
||||
Power By udn.com</div></p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,421 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [剪報] 《要千人只4人錄取》佳能大林廠 作業員難找 | My cool new Blog</title>
|
||||
<meta name="description" content="[剪報] 《要千人只4人錄取》佳能大林廠 作業員難找 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[剪報] 《要千人只4人錄取》佳能大林廠 作業員難找">
|
||||
<meta itemprop="description" content="[剪報] 《要千人只4人錄取》佳能大林廠 作業員難找 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[剪報] 《要千人只4人錄取》佳能大林廠 作業員難找">
|
||||
<meta property="og:description" content="[剪報] 《要千人只4人錄取》佳能大林廠 作業員難找 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e5-89-aa-e5-a0-b1-e3-80-8a-e8-a6-81-e5-8d-83-e4-ba-ba-e5-8f-aa4-e4-ba-ba-e9-8c-84-e5-8f-96-e3-80-8b-e4-bd-b3-e8-83-bd-e5-a4-a7-e6-9e-97-e5-bb-a0-e4-bd-9c-e6-a5-ad-e5-93-a1-e9-9b-a3-e6-89-be/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e5-89-aa-e5-a0-b1-e3-80-8a-e8-a6-81-e5-8d-83-e4-ba-ba-e5-8f-aa4-e4-ba-ba-e9-8c-84-e5-8f-96-e3-80-8b-e4-bd-b3-e8-83-bd-e5-a4-a7-e6-9e-97-e5-bb-a0-e4-bd-9c-e6-a5-ad-e5-93-a1-e9-9b-a3-e6-89-be/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e5-89-aa-e5-a0-b1-e3-80-8a-e8-a6-81-e5-8d-83-e4-ba-ba-e5-8f-aa4-e4-ba-ba-e9-8c-84-e5-8f-96-e3-80-8b-e4-bd-b3-e8-83-bd-e5-a4-a7-e6-9e-97-e5-bb-a0-e4-bd-9c-e6-a5-ad-e5-93-a1-e9-9b-a3-e6-89-be/">[剪報] 《要千人只4人錄取》佳能大林廠 作業員難找</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-04-14</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>每月可領二萬元,是一般薪資的中上程度</p>
|
||||
|
||||
<p>連這種話都說得出口!?這種資方媽的腦袋是有什麼問題??</p>
|
||||
|
||||
<p>為什麼不去非洲國家開這種薪資,好讓大家把你當神崇拜!?</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>《要千人只4人錄取》佳能大林廠 作業員難找
|
||||
<div id="K3"> <span style="font-size: 14px; line-height: 1.5;">地偏徵人不易 廠方考慮調整薪資與工作量</span></div>
|
||||
〔記者吳世聰/嘉縣報導〕去年六月開始營運的台灣佳能大林廠,有千人的正式作業員缺額,但昨天在嘉義縣政府創新學院舉辦的徵才活動,竟只有十八人投遞履歷表,經面試只錄取四人,廠方坦承徵人不易,會想辦法調整工作量及薪資待遇,改善「人才荒」的問題。</p>
|
||||
|
||||
<p>來台設廠的日本佳能公司,在大林鎮大埔美智慧工業區設立大林廠,去年六月開始營運,以製造數位相機及交換鏡頭為主,目前已經僱用二千二百名員工。</p>
|
||||
|
||||
<p>廠方表示,目前每個月不足的正式作業人員約有二百人,累積到年底預估不足近千人,廠方「強力招募」人力,希望年底僱用的人員能達到三千人的目標。</p>
|
||||
|
||||
<p>廠方為了補足人力,除了每天在廠內受理面試外,昨天也在創新學院舉辦徵才活動,但場面十分冷清,只有十八人投遞履歷表,面試雙方合議,只錄取四人,廠方坦承招募作業員有困難度,但會設法克服。</p>
|
||||
|
||||
<p>廠方指出,大林廠與台中廠的薪資及福利都一樣,但台中廠找的到人力,大林廠卻應徵不到人,分析原因,有可能是大林廠已經僱用了二千二百人,而嘉義地區的子弟原本就有限,加上大林廠區地點偏僻,生活機能較不完備,無法吸引外來人口及年輕人留下來工作。</p>
|
||||
|
||||
<p><span style="font-size: 28px; color: #ff0000;">廠方人員表示,目前台灣佳能的正式作業員,時薪是一百零九元,享有勞、健保及六%的勞退金,也有婚喪喜慶補助及免費提供員工宿舍,每月可領約二萬元,是一般薪資的中上程度。</span>不過,有應徵及離職者認為,廠方所開出的薪水普遍偏低,難以維持基本生活需求。</p>
|
||||
|
||||
<p>廠方強調,將持續徵人,若「人才荒」無法解決的話,將考量調整工作量、薪資及提高福利,以吸引更多人加入。</p>
|
||||
|
||||
<p>原文: <a href="http://www.libertytimes.com.tw/2013/new/apr/14/today-center1.htm">http://www.libertytimes.com.tw/2013/new/apr/14/today-center1.htm</a></p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,420 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [剪報] 全市光纖上網 「內容恐被監控」 | My cool new Blog</title>
|
||||
<meta name="description" content="[剪報] 全市光纖上網 「內容恐被監控」 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[剪報] 全市光纖上網 「內容恐被監控」">
|
||||
<meta itemprop="description" content="[剪報] 全市光纖上網 「內容恐被監控」 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[剪報] 全市光纖上網 「內容恐被監控」">
|
||||
<meta property="og:description" content="[剪報] 全市光纖上網 「內容恐被監控」 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e5-89-aa-e5-a0-b1-e5-85-a8-e5-b8-82-e5-85-89-e7-ba-96-e4-b8-8a-e7-b6-b2-e3-80-8c-e5-85-a7-e5-ae-b9-e6-81-90-e8-a2-ab-e7-9b-a3-e6-8e-a7-e3-80-8d/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e5-89-aa-e5-a0-b1-e5-85-a8-e5-b8-82-e5-85-89-e7-ba-96-e4-b8-8a-e7-b6-b2-e3-80-8c-e5-85-a7-e5-ae-b9-e6-81-90-e8-a2-ab-e7-9b-a3-e6-8e-a7-e3-80-8d/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e5-89-aa-e5-a0-b1-e5-85-a8-e5-b8-82-e5-85-89-e7-ba-96-e4-b8-8a-e7-b6-b2-e3-80-8c-e5-85-a7-e5-ae-b9-e6-81-90-e8-a2-ab-e7-9b-a3-e6-8e-a7-e3-80-8d/">[剪報] 全市光纖上網 「內容恐被監控」</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-05-07</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>值得追蹤的消息</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>【聯合報╱記者陳雅芃/台北報導】</p>
|
||||
|
||||
<p>市議員王世堅昨天質詢說,北市府為推動新十大建設之一「全市光纖到府」政策,現已建置通訊監察設備,提供調查局「以通訊監察之名,行監控200多萬市民之實」。</p>
|
||||
|
||||
<p><span style="font-size: 16px; color: #ff0000;">北市府資訊局長詹德存說,此光纖案依法須將光纖轉接的通訊備及系統,送具有通訊監察執行機關調查局審核。調查局未來必須依法進行監聽,事前無須告知市府。</span></p>
|
||||
|
||||
<p>市府推動「光纖網路全面化」政策,委由「台灣智慧光網聯盟」建置並營運,目前合約訂出目標為家戶覆蓋率為80%,不過朝95%以上邁進。換言之,約250萬市民可享有該服務。</p>
|
||||
|
||||
<p>不過王世堅指出,資訊局依規定向NCC申請網路建設許可證前,需具有通訊監察執行機關調查局審核其建置的光纖相關通訊監察系統及設備。</p>
|
||||
|
||||
<p>王世堅說,他曾發文詢問資訊局,有關調查局未來監聽事宜,卻得到「無法知悉調查局執行細節」。民眾若使用全市光纖上網,內容訊息勢必會經調查局監控,嚴重侵害民眾個資及憲法所保障的通訊自由。</p>
|
||||
|
||||
<p>此外,市議員林世宗也說,依市府與「台灣智慧光網聯盟」合約,廠商年營業額達15億以上才開始收取0.5%權利金,簡直是賤租市府資源。</p>
|
||||
|
||||
<p>詹德存說,廠商年營業額達15億以上才能回本,預估8年後市府就可開始收取權利金。</p>
|
||||
|
||||
<p>林世宗說,市府和「台灣智慧光網聯盟」合約簽訂只收保證金6000萬,權利金需該廠商達15億以上年營業額後,才開始每年收取0.5%權利金750萬。
|
||||
<div>
|
||||
全文網址: <a href="http://mag.udn.com/mag/digital/storypage.jsp?f_ART_ID=454426#ixzz2SZFppTRE">全市光纖上網 「內容恐被監控」 | 網路衝浪 | 線上漫遊 | udn數位資訊</a>
|
||||
Power By udn.com</div></p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,447 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [剪報] 到站就出不去 上班族氣:叫主管出來罰站 | My cool new Blog</title>
|
||||
<meta name="description" content="[剪報] 到站就出不去 上班族氣:叫主管出來罰站 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[剪報] 到站就出不去 上班族氣:叫主管出來罰站 ">
|
||||
<meta itemprop="description" content="[剪報] 到站就出不去 上班族氣:叫主管出來罰站 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[剪報] 到站就出不去 上班族氣:叫主管出來罰站 ">
|
||||
<meta property="og:description" content="[剪報] 到站就出不去 上班族氣:叫主管出來罰站 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e5-89-aa-e5-a0-b1-e5-88-b0-e7-ab-99-e5-b0-b1-e5-87-ba-e4-b8-8d-e5-8e-bb-e4-b8-8a-e7-8f-ad-e6-97-8f-e6-b0-a3-ef-bc-9a-e5-8f-ab-e4-b8-bb-e7-ae-a1-e5-87-ba-e4-be-86-e7-bd-b0-e7-ab-99/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e5-89-aa-e5-a0-b1-e5-88-b0-e7-ab-99-e5-b0-b1-e5-87-ba-e4-b8-8d-e5-8e-bb-e4-b8-8a-e7-8f-ad-e6-97-8f-e6-b0-a3-ef-bc-9a-e5-8f-ab-e4-b8-bb-e7-ae-a1-e5-87-ba-e4-be-86-e7-bd-b0-e7-ab-99/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e5-89-aa-e5-a0-b1-e5-88-b0-e7-ab-99-e5-b0-b1-e5-87-ba-e4-b8-8d-e5-8e-bb-e4-b8-8a-e7-8f-ad-e6-97-8f-e6-b0-a3-ef-bc-9a-e5-8f-ab-e4-b8-bb-e7-ae-a1-e5-87-ba-e4-be-86-e7-bd-b0-e7-ab-99/">[剪報] 到站就出不去 上班族氣:叫主管出來罰站 </a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-04-26</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>最後不知道是台鐵先到還是高鐵先到??
|
||||
<table style="width: 100%;" border="0" cellspacing="3" cellpadding="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="76%">
|
||||
<div id="story_title">到站就出不去 上班族氣:叫主管出來罰站</div></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<table style="width: 100%;" border="0" cellspacing="3" cellpadding="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="130%"><img src="http://udn.com/2010/images/linedot.gif" alt="" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table style="width: 100%;" border="0" cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="75%">
|
||||
<div id="story_author">【聯合報╱記者<a href="http://blog.udn.com/hsinchu">李奕昕<img src="http://udn.com/1024/BLOG/blog.gif" alt="" /></a>、<a href="http://blog.udn.com/tainanshen">周宗禎<img src="http://udn.com/1024/BLOG/blog.gif" alt="" /></a>、<a href="http://blog.udn.com/hsinchu">羅緗綸<img src="http://udn.com/1024/BLOG/blog.gif" alt="" /></a>、梁雅雯/連線報導】</div></td>
|
||||
<td width="25%">
|
||||
<div id="story_update" align="right">2013.04.26 03:06 am</div></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<div>
|
||||
<div id="story">高鐵昨停擺四小時,正值尖峰通勤時間,上班族趕不上開會、病人跟醫師約診「放鴿子」,有旅客「叫主管出來罰站!」怒火聲中,也有旅客很淡定,美籍工程師大衛就說:「搭過紐約地鐵就不會抱怨!」高鐵停擺,通勤族到站發現列車不開,焦急如熱鍋螞蟻,直說「慘了,會被客戶罵死!」</p>
|
||||
|
||||
<p><span style="font-size: 16px; color: #ff0000;">日用品公司業務員何餘芳跟客戶約在台北談合約,眼見高鐵始終沒有告知明確發車時間,忍不住埋怨,「就算遲到,禮貌上也要說明到達時間,但完全估算不出來!」結果同事搭自強號,他等高鐵,「看誰先到台北。」</span></p>
|
||||
|
||||
<p>網路公司林姓工程師十點要到高雄開會,「人家董事長、總經理已經坐在會議室,我回去怎麼向老闆交代?」一名從台南到台中的乘客,得知只能退回與對號座的差價廿五元,痛罵「叫主管罰站四小時,我給他廿五元!」</p>
|
||||
|
||||
<p>站務人員說,除了颱風或地震,從沒遇過如此大規模停駛,考驗危機處理能力,被旅客罵到灰頭土臉,只能摸摸鼻子檢討,「難得的震撼教育!」</p>
|
||||
|
||||
<p>眾人一片罵聲中,紐約美籍工程師大衛說,多次搭高鐵第一次誤點,他在美國老家搭地鐵曾受困數小時,連大哥大都不通,要抱怨還不知該找誰。</p>
|
||||
|
||||
<p>加拿大媳婦瑪莉安家人原本約了攝影師,要在台北為她與新生兒拍紀念照,等了兩個多小時仍等不到車,最後被迫放棄行程,不會說中文的瑪莉安笑說,「就改天吧,沒關係啦!」</p>
|
||||
|
||||
<p>「我們遠足,很好啊!」新竹縣五峰鄉花園國小和竹林分校四十九名師生畢業旅行,師生清晨六點卅從山區出發,到中午才上車,參訪高雄橋頭糖廠行程取消,師生利用等車時間,前往新竹新瓦屋文化保存區遊覽。</p>
|
||||
|
||||
<p></div>
|
||||
【2013/04/26 聯合報】<a href="http://udn.com/">@ </a><a href="http://udn.com/">http://udn.com/</a>
|
||||
<div>
|
||||
全文網址: <a href="http://udn.com/NEWS/NATIONAL/NATS2/%E5%88%B0%E7%AB%99%E5%B0%B1%E5%87%BA%E4%B8%8D%E5%8E%BB%20%E4%B8%8A%E7%8F%AD%E6%97%8F%E6%B0%A3%EF%BC%9A%E5%8F%AB%E4%B8%BB%E7%AE%A1%E5%87%BA%E4%BE%86%E7%BD%B0%E7%AB%99-7857117.shtml#ixzz2RWevNau0">到站就出不去 上班族氣:叫主管出來罰站 | 高鐵首次大停駛 | 國內要聞 | 聯合新聞網</a>
|
||||
Power By udn.com</div>
|
||||
</div></p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,422 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [剪報] 南韓偶像不自愛 喝酒召妓壞軍紀 | My cool new Blog</title>
|
||||
<meta name="description" content="[剪報] 南韓偶像不自愛 喝酒召妓壞軍紀 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[剪報] 南韓偶像不自愛 喝酒召妓壞軍紀">
|
||||
<meta itemprop="description" content="[剪報] 南韓偶像不自愛 喝酒召妓壞軍紀 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[剪報] 南韓偶像不自愛 喝酒召妓壞軍紀">
|
||||
<meta property="og:description" content="[剪報] 南韓偶像不自愛 喝酒召妓壞軍紀 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e5-89-aa-e5-a0-b1-e5-8d-97-e9-9f-93-e5-81-b6-e5-83-8f-e4-b8-8d-e8-87-aa-e6-84-9b-e5-96-9d-e9-85-92-e5-8f-ac-e5-a6-93-e5-a3-9e-e8-bb-8d-e7-b4-80/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e5-89-aa-e5-a0-b1-e5-8d-97-e9-9f-93-e5-81-b6-e5-83-8f-e4-b8-8d-e8-87-aa-e6-84-9b-e5-96-9d-e9-85-92-e5-8f-ac-e5-a6-93-e5-a3-9e-e8-bb-8d-e7-b4-80/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e5-89-aa-e5-a0-b1-e5-8d-97-e9-9f-93-e5-81-b6-e5-83-8f-e4-b8-8d-e8-87-aa-e6-84-9b-e5-96-9d-e9-85-92-e5-8f-ac-e5-a6-93-e5-a3-9e-e8-bb-8d-e7-b4-80/">[剪報] 南韓偶像不自愛 喝酒召妓壞軍紀</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-06-27</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>事實證明,睜眼說瞎話這種事,古今中外皆然。</p>
|
||||
|
||||
<p>韓國有偶像藝人膝蓋不適到按摩院治療。</p>
|
||||
|
||||
<p>台灣有政府高官蹺班按摩,還說政務官沒有上下班時間! What the FUCK !</p>
|
||||
|
||||
<hr />
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>南韓偶像不自愛 喝酒召妓壞軍紀
|
||||
【聯合報╱記者梅衍儂/綜合報導】</p>
|
||||
|
||||
<p>2013.06.27 02:58 am</p>
|
||||
|
||||
<p>南韓偶像當兵期間不自愛,喝酒召妓敗壞軍紀!南韓SBS電視台節目「報導21」25日指出,正在服役的Rain、SE7EN與Mighty Mouth成員生菜等人,21日參加勞軍活動結束後,一行人先是違反軍紀飲酒作樂,隨後SE7EN和生菜半夜偷溜上街,到按摩院找性服務!</p>
|
||||
|
||||
<p>SE7EN與亮麗女星朴寒星交往10年,在南韓演藝圈傳為佳話。他今年3月入伍,21日和Rain、生菜等藝工隊同袍在春川市參加勞軍,台上載歌載舞與阿兵哥親切互動,不料一下台原形畢露,不僅身穿便服外出,還飲酒作樂,私藏手機,嚴重違反軍紀。</p>
|
||||
|
||||
<p>據該節目報導,Rain等人酒足飯飽後回旅館休息,SE7EN與生菜半夜偷溜出來,直奔按摩店。記者詢問,業者坦承「做黑的」,並透露SE7EN支付17萬韓元(約台幣4700元),猴急問何時提供「服務」,最後因等太久,拿回費用後離開。</p>
|
||||
|
||||
<p>記者欲確認身分,兩人驚慌遮臉,SE7EN與記者爆發肢體衝突。被問是否上按摩店找小姐,兩人答道:「我們絕對沒犯法。」隨即跳上計程車離開。</p>
|
||||
|
||||
<p>至於Rain雖未陷入「嫖妓疑雲」,但他今年1月違規外出與金泰希約會,如今又違紀喝酒、穿便服,再次受批評。<span style="color: #ff0000;">而國防部表示,兩位士兵因膝蓋不適才去按摩店治療</span>,但媒體吐槽:「那應該去醫院才對。」</p>
|
||||
|
||||
<p><a href="http://udn.com/NEWS/ENTERTAINMENT/ENT5/7990251.shtml#ixzz2XN9ns7E">http://udn.com/NEWS/ENTERTAINMENT/ENT5/7990251.shtml#ixzz2XN9ns7E</a></p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,444 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [剪報] 在野黨打反貪 馬來西亞等待變天? | My cool new Blog</title>
|
||||
<meta name="description" content="[剪報] 在野黨打反貪 馬來西亞等待變天? - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[剪報] 在野黨打反貪 馬來西亞等待變天?">
|
||||
<meta itemprop="description" content="[剪報] 在野黨打反貪 馬來西亞等待變天? - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[剪報] 在野黨打反貪 馬來西亞等待變天?">
|
||||
<meta property="og:description" content="[剪報] 在野黨打反貪 馬來西亞等待變天? - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e5-89-aa-e5-a0-b1-e5-9c-a8-e9-87-8e-e9-bb-a8-e6-89-93-e5-8f-8d-e8-b2-aa-e9-a6-ac-e4-be-86-e8-a5-bf-e4-ba-9e-e7-ad-89-e5-be-85-e8-ae-8a-e5-a4-a9-ef-bc-9f/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e5-89-aa-e5-a0-b1-e5-9c-a8-e9-87-8e-e9-bb-a8-e6-89-93-e5-8f-8d-e8-b2-aa-e9-a6-ac-e4-be-86-e8-a5-bf-e4-ba-9e-e7-ad-89-e5-be-85-e8-ae-8a-e5-a4-a9-ef-bc-9f/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e5-89-aa-e5-a0-b1-e5-9c-a8-e9-87-8e-e9-bb-a8-e6-89-93-e5-8f-8d-e8-b2-aa-e9-a6-ac-e4-be-86-e8-a5-bf-e4-ba-9e-e7-ad-89-e5-be-85-e8-ae-8a-e5-a4-a9-ef-bc-9f/">[剪報] 在野黨打反貪 馬來西亞等待變天?</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-05-02</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>這句話聽起來頗熟悉吶…</p>
|
||||
|
||||
<p>「國陣」以往執政期間內,常發生「任用私人、貪瀆與施政不力等弊端,內部分裂,民意支持度不斷下滑。」</p>
|
||||
|
||||
<p>
|
||||
<table style="width: 100%;" border="0" cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="75%">
|
||||
<div id="story_author">【聯合報╱新加坡記者林以君】</div></td>
|
||||
<td width="25%">
|
||||
<div id="story_update" align="right">2013.05.02 03:42 am</div></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<div>
|
||||
<div id="story"></p>
|
||||
|
||||
<p><strong>前言:</strong></p>
|
||||
|
||||
<p><strong>馬來西亞國會下議院、州議會選舉將於五月五日舉行,今天是倒數三天。</strong></p>
|
||||
|
||||
<p><strong>五年前,大馬最大黨「巫統」領導的「國陣」輸掉國會三分之二多數的優勢席次;五年後,反對陣營「民聯」主打「五月五,換政府」。本報今起貼近馬來西亞,報導大馬最可能「變天」的大選。</strong></p>
|
||||
|
||||
<p>馬來西亞五月五日將舉行國會與州議會大選,可能發生史上首度政黨輪替,卻沒有人敢打包票一定會變天。可確定的是,目前執政的「國民陣線(國陣)」,以及在野「人民聯盟(民聯)」,都是背水一戰;而「反貪腐」是此次選舉攻防重點。</p>
|
||||
|
||||
<p>中國輸出入銀行二○一二年對馬來西亞政經情勢分析報告中指出,<span style="font-size: 16px; color: #ff0000;">「國陣」以往執政期間內,常發生「任用私人、貪瀆與施政不力等弊端,內部分裂,民意支持度不斷下滑。」</span></p>
|
||||
|
||||
<p>馬來西亞在「國際透明組織」二○一二年調查卅國的三千位管理人員後,在貪汙嚴重程度排名第一。調查訪問全球卅個國家的三千位經理人,「你是否曾經因為競爭對手賄賂而失去合約」,有百分之五十的大馬受訪者回答「YES」,排名第一。</p>
|
||||
|
||||
<p>國際透明組織大馬負責人洛爾說:「這顯示,大馬私人公司把向公部門賄賂系統化,某種程度上甚至是制度化了。」</p>
|
||||
|
||||
<p>因此,反對陣營主打反貪腐,就頗得民心。檳城在五年前由華裔林冠英主政後,貪汙或許未見根絕,但城市變清潔,債務赤字大幅改善。二○○八年前,檳城州都是「國陣」執政,林冠英說:「(執政)這五年,檳州債務下降百分之九十五,中央債務卻增加百分之九十五。」</p>
|
||||
|
||||
<p>檳城人很自豪五年來的改變,也是說服別州用選票變天的最佳理由。林冠英不僅一次表示,民聯有信心在中央執政,其中重要原因之一是痛打執政的「國陣」的最大弱點,貪腐。</p>
|
||||
|
||||
<p>林冠英五年前代表民主行動黨參選,拉下在檳城執政卅九年的民政黨,獲選檳城首席部長(Chief Minister),相當於一州最高行政官員。他身兼民主行動黨祕書長,也是「民聯」陣營中的「執政模範」。</p>
|
||||
|
||||
<p>他說:「你看檳(城)州,我們也是沒有執政經驗,但五年來,檳州成為全馬來西亞最傑出的州,外資累計三百六十一億令吉(約合台幣三千五百億),比過去高出百分之一百八十七。」</p>
|
||||
|
||||
<p>林冠英表示,國陣最大的問題是貪汙,「要改變就必須嚴厲肅貪」;他也說,「肅貪的話,『巫統』就完蛋,不肅貪,國家就完蛋。」</p>
|
||||
|
||||
<p></div>
|
||||
【2013/05/02 聯合報】<a href="http://udn.com/">@ </a><a href="http://udn.com/">http://udn.com/</a>
|
||||
<div>
|
||||
全文網址: <a href="http://udn.com/NEWS/WORLD/WOR3/7869813.shtml#ixzz2S5xKq0WC">在野黨打反貪 馬來西亞等待變天? | 國際焦點 | 全球觀察 | 聯合新聞網</a>
|
||||
Power By udn.com</div>
|
||||
</div></p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,454 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [剪報] 張柏芝玩跳水 遭陸官方打回票 | My cool new Blog</title>
|
||||
<meta name="description" content="[剪報] 張柏芝玩跳水 遭陸官方打回票 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[剪報] 張柏芝玩跳水 遭陸官方打回票">
|
||||
<meta itemprop="description" content="[剪報] 張柏芝玩跳水 遭陸官方打回票 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[剪報] 張柏芝玩跳水 遭陸官方打回票">
|
||||
<meta property="og:description" content="[剪報] 張柏芝玩跳水 遭陸官方打回票 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e5-89-aa-e5-a0-b1-e5-bc-b5-e6-9f-8f-e8-8a-9d-e7-8e-a9-e8-b7-b3-e6-b0-b4-e9-81-ad-e9-99-b8-e5-ae-98-e6-96-b9-e6-89-93-e5-9b-9e-e7-a5-a8/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e5-89-aa-e5-a0-b1-e5-bc-b5-e6-9f-8f-e8-8a-9d-e7-8e-a9-e8-b7-b3-e6-b0-b4-e9-81-ad-e9-99-b8-e5-ae-98-e6-96-b9-e6-89-93-e5-9b-9e-e7-a5-a8/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e5-89-aa-e5-a0-b1-e5-bc-b5-e6-9f-8f-e8-8a-9d-e7-8e-a9-e8-b7-b3-e6-b0-b4-e9-81-ad-e9-99-b8-e5-ae-98-e6-96-b9-e6-89-93-e5-9b-9e-e7-a5-a8/">[剪報] 張柏芝玩跳水 遭陸官方打回票</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-04-11</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>這種鬼理由,全世界大概也只有中國敢明目張膽這樣搞吧!
|
||||
<table style="width: 100%;" border="0" cellspacing="3" cellpadding="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="76%">
|
||||
<div id="story_title">張柏芝玩跳水 遭陸官方打回票</div>
|
||||
<div id="bq"></div></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<table style="width: 100%;" border="0" cellspacing="3" cellpadding="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="130%"><img src="http://udn.com/2010/images/linedot.gif" alt="" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table style="width: 100%;" border="0" cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="75%">
|
||||
<div id="story_author">【聯合報╱記者闕志儒/台北報導】</div></td>
|
||||
<td width="25%">
|
||||
<div id="story_update" align="right">2013.04.11 03:20 am</div></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top">
|
||||
<div id="story"></p>
|
||||
|
||||
<p>
|
||||
<table style="width: 214px;" border="0" cellspacing="0" cellpadding="6" align="right">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="200">
|
||||
<div id="media_file" align="center"><img src="http://udn.com/NEWS/MEDIA/7822832-3043473.jpg?sn=1365547323435" alt="" /></div></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>張柏芝資格審查未過,目前難登「水立方」。
|
||||
圖/CFP</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
被 港媒虧「票房毒藥」的張柏芝,近來轉型為「綜藝咖」,頻登大陸綜藝節目秀才藝,外傳她以每集200萬台幣天價參加江蘇衛視「星跳水立方」,並已在香港練習 跳水多時,也為「水立方」拍攝宣傳影片,卻遲遲未見她現身比賽,據查,張柏芝仍未通過大陸廣電總局批准,理由竟是「<span style="font-size: 16px;"><strong><span style="color: #ff0000;">中共老幹部不喜歡張柏芝穿泳裝</span></strong></span>」。</p>
|
||||
|
||||
<p></div></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<div>全文網址: <a href="http://udn.com/NEWS/ENTERTAINMENT/ENT1/7822832.shtml#ixzz2Q6yN2ldk">張柏芝玩跳水 遭陸官方打回票 | 熱門星聞 | 娛樂追星 | 聯合新聞網</a> <a href="http://udn.com/NEWS/ENTERTAINMENT/ENT1/7822832.shtml#ixzz2Q6yN2ldk">http://udn.com/NEWS/ENTERTAINMENT/ENT1/7822832.shtml#ixzz2Q6yN2ldk</a>
|
||||
Power By udn.com</div>
|
||||
</p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,462 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [剪報] 彰化直擊/二林病死雞池塘 無關H7N9 | My cool new Blog</title>
|
||||
<meta name="description" content="[剪報] 彰化直擊/二林病死雞池塘 無關H7N9 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[剪報] 彰化直擊/二林病死雞池塘 無關H7N9 ">
|
||||
<meta itemprop="description" content="[剪報] 彰化直擊/二林病死雞池塘 無關H7N9 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[剪報] 彰化直擊/二林病死雞池塘 無關H7N9 ">
|
||||
<meta property="og:description" content="[剪報] 彰化直擊/二林病死雞池塘 無關H7N9 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e5-89-aa-e5-a0-b1-e5-bd-b0-e5-8c-96-e7-9b-b4-e6-93-8a-ef-bc-8f-e4-ba-8c-e6-9e-97-e7-97-85-e6-ad-bb-e9-9b-9e-e6-b1-a0-e5-a1-98-e7-84-a1-e9-97-9ch7n9/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e5-89-aa-e5-a0-b1-e5-bd-b0-e5-8c-96-e7-9b-b4-e6-93-8a-ef-bc-8f-e4-ba-8c-e6-9e-97-e7-97-85-e6-ad-bb-e9-9b-9e-e6-b1-a0-e5-a1-98-e7-84-a1-e9-97-9ch7n9/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e5-89-aa-e5-a0-b1-e5-bd-b0-e5-8c-96-e7-9b-b4-e6-93-8a-ef-bc-8f-e4-ba-8c-e6-9e-97-e7-97-85-e6-ad-bb-e9-9b-9e-e6-b1-a0-e5-a1-98-e7-84-a1-e9-97-9ch7n9/">[剪報] 彰化直擊/二林病死雞池塘 無關H7N9 </a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-04-06</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>史上最厲害檢疫人員出現,連採樣送驗都不用,看腐爛的屍體就知道跟H7N9無關!</p>
|
||||
|
||||
<p>這人根本是國寶啊!請政府好好保護,必要時直接派去需要如此高超技術的國家協助作檢疫工作!</p>
|
||||
|
||||
<p>
|
||||
<table style="width: 100%;" border="0" cellspacing="3" cellpadding="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="130%"><img src="http://udn.com/2010/images/linedot.gif" alt="" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table style="width: 100%;" border="0" cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="75%">
|
||||
<div id="story_author">【聯合報╱記者凌筠婷、<a href="http://blog.udn.com/500changhua">簡慧珍<img src="http://udn.com/1024/BLOG/blog.gif" alt="" /></a>/彰化縣報導】</div></td>
|
||||
<td width="25%">
|
||||
<div id="story_update" align="right">2013.04.06 03:14 am</div></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top">
|
||||
<div id="story"></p>
|
||||
|
||||
<p>
|
||||
<div>
|
||||
<table style="width: 214px;" border="0" cellspacing="0" cellpadding="6" align="center">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="200">
|
||||
<div id="media_file" align="center"><img src="http://udn.com/NEWS/MEDIA/7812185-3039966.jpg?sn=1365115355180" alt="" /></div></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>彰化二林鎮許姓養豬戶的池塘,昨發現一百多隻死雞,初步排除與H7N9禽流感有關。
|
||||
記者凌筠婷/攝影</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
大陸H7N9疫情持續的敏感時刻,彰化二林鎮許姓養豬戶的池塘,昨發現一百多隻死雞,還有不少病懨懨活雞;防疫人員排除與H7N9禽流感有關,懷疑許以死雞做為豬食,他否認,辯稱是被人偷載丟棄。</p>
|
||||
|
||||
<p>許姓養豬戶的養豬場在二林鎮北平里照西路旁,昨天有民眾檢舉堆放病死雞;防疫人員前往處理時病死雞已不見蹤影,卻在養豬場後方約一百公尺的池塘,發現浮滿病死雞的屍體。</p>
|
||||
|
||||
<p>防疫人員表示,死雞腐爛快,所以很難辨別已堆放幾天,「但絕對不只一天」。許姓養豬戶表示,他和太太平常餵豬後就離開,沒看到可疑車輛,也沒有聞到雞屍臭味。</p>
|
||||
|
||||
<p>許表示,池塘雖是他所有,當初想要養吳郭魚,後來因為實在太忙沒空照料,就閒置在那裡;不知道是誰把死雞丟來這裡,他的豬都是吃餿水和飼料。</p>
|
||||
|
||||
<p><span style="color: #ff0000;">動物防疫所人員找來怪手,撈起池塘裡一百多隻病死雞,全都是蛋雞。因腐爛嚴重無法採集完整檢體,初步排除與H7N9禽流感有關,防疫人員將雞屍噴灑消毒液後就地掩埋。</span></p>
|
||||
|
||||
<p>彰化縣養雞協會聽說二林鎮出現病死雞,十分重視,下午派員前往了解。理事長陳國村表示,養雞場的正常折損率為萬分之五,彰化縣包括肉雞與蛋雞每天約有一萬隻雞死亡,都交給禽畜化製場再製成動物飼料,不可能外流。</p>
|
||||
|
||||
<p>彰化縣農業局長郭丑哲表示,目前正值大陸H7N9疫情蔓延的敏感時刻,為確保防疫沒有缺口,將與警方連繫,調閱路口監視畫面追查,並加強管控病死雞流向。</p>
|
||||
|
||||
<p></div></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
全文網址: <a href="http://udn.com/NEWS/NATIONAL/NATS5/7812185.shtml#ixzz2PeZeoI00">彰化直擊/二林病死雞池塘 無關H7N9 | 禽流感疫情延燒 | 國內要聞 | 聯合新聞網</a> <a href="http://udn.com/NEWS/NATIONAL/NATS5/7812185.shtml#ixzz2PeZeoI00">
|
||||
</a></p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,421 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [剪報] 志工送餐 扁嗑光鼎泰豐小籠包 | My cool new Blog</title>
|
||||
<meta name="description" content="[剪報] 志工送餐 扁嗑光鼎泰豐小籠包 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[剪報] 志工送餐 扁嗑光鼎泰豐小籠包">
|
||||
<meta itemprop="description" content="[剪報] 志工送餐 扁嗑光鼎泰豐小籠包 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[剪報] 志工送餐 扁嗑光鼎泰豐小籠包">
|
||||
<meta property="og:description" content="[剪報] 志工送餐 扁嗑光鼎泰豐小籠包 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e5-89-aa-e5-a0-b1-e5-bf-97-e5-b7-a5-e9-80-81-e9-a4-90-e6-89-81-e5-97-91-e5-85-89-e9-bc-8e-e6-b3-b0-e8-b1-90-e5-b0-8f-e7-b1-a0-e5-8c-85/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e5-89-aa-e5-a0-b1-e5-bf-97-e5-b7-a5-e9-80-81-e9-a4-90-e6-89-81-e5-97-91-e5-85-89-e9-bc-8e-e6-b3-b0-e8-b1-90-e5-b0-8f-e7-b1-a0-e5-8c-85/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e5-89-aa-e5-a0-b1-e5-bf-97-e5-b7-a5-e9-80-81-e9-a4-90-e6-89-81-e5-97-91-e5-85-89-e9-bc-8e-e6-b3-b0-e8-b1-90-e5-b0-8f-e7-b1-a0-e5-8c-85/">[剪報] 志工送餐 扁嗑光鼎泰豐小籠包</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-04-22</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>坐牢的人,住得比我大間,吃得比我好上不知道多少,馬的,我真該好好檢討檢討!
|
||||
<table style="width: 100%;" border="0" cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="75%">
|
||||
<div id="story_author">【聯合報╱記者<a href="http://blog.udn.com/taichungnews">趙容萱<img src="http://udn.com/1024/BLOG/blog.gif" alt="" /></a>、<a href="http://blog.udn.com/taichungshen">游振昇<img src="http://udn.com/1024/BLOG/blog.gif" alt="" /></a>/台中報導】</div></td>
|
||||
<td width="25%">
|
||||
<div id="story_update" align="right">2013.04.22 04:30 am</div></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<div>
|
||||
前總統陳水扁移監台中監獄培德醫院第三天,<span style="color: #ff0000; font-size: 18px;">扁仍拒吃獄中伙食,三餐都吃光支持者送來的食物,昨天午餐吃牛肉炒麵、牛肉湯,晚餐有鼎泰豐小籠包、雞湯等,阿扁胃口不錯,都吃光了。</span>挺扁團體台灣志工隊成員林一方及鄭羽秀連續三天送餐,她說,很多支持者希望送食物給阿扁,拜託志工隊代轉,但志工隊知道阿扁個性,扁不接受不熟悉者送來的食物,因此婉拒支持者好意,由志工隊負責採買、送餐。</p>
|
||||
|
||||
<p>林一方說,他和鄭羽秀都是和阿扁熟識十多年的好朋友,阿扁的伙食一向由扁辦統籌,負責平日的送餐,台灣志工隊則負責假日送餐,阿扁移監台中,剛到一個新環境,不信任獄方提供的食物,昨天他和鄭羽秀來送餐,就是要讓阿扁放心、心情也會好一點。</p>
|
||||
|
||||
<p>台中監獄副典獄長陳金峰說,送進監獄給扁的食物,和其他受刑人一樣,都須經過嚴格檢查,雞、鴨、魚、肉須煮熟後切開,豬需去骨以利檢查,湯類、冷凍品、結冰品、含酒精成分的菜,如燒酒雞等都拒收。</p>
|
||||
|
||||
<p>此外,台中監獄外陸續有陳水扁的支持者聚集、聲援,並表示要長期如此,經警方與獄方協調後,同意比照江陳會在台中舉辦模式,今天起劃設意見表達專區,開放支持者使用。</p>
|
||||
|
||||
<p>警方說,闢設意見表達專區,可避免挺扁民眾聲援行動影響其他探監家屬的進出,也比較不會發生突發事件。
|
||||
<div>
|
||||
全文網址: <a href="http://udn.com/NEWS/NATIONAL/NAT3/7846610.shtml#ixzz2R9K7XzFc">志工送餐 扁嗑光鼎泰豐小籠包 | 陳水扁轉送培德 | 國內要聞 | 聯合新聞網</a>
|
||||
Power By udn.com</div>
|
||||
</div></p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,440 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [剪報] 日本發表世界最速2Gbps光纖網路 | My cool new Blog</title>
|
||||
<meta name="description" content="[剪報] 日本發表世界最速2Gbps光纖網路 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[剪報] 日本發表世界最速2Gbps光纖網路">
|
||||
<meta itemprop="description" content="[剪報] 日本發表世界最速2Gbps光纖網路 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[剪報] 日本發表世界最速2Gbps光纖網路">
|
||||
<meta property="og:description" content="[剪報] 日本發表世界最速2Gbps光纖網路 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e5-89-aa-e5-a0-b1-e6-97-a5-e6-9c-ac-e7-99-bc-e8-a1-a8-e4-b8-96-e7-95-8c-e6-9c-80-e9-80-9f2gbps-e5-85-89-e7-ba-96-e7-b6-b2-e8-b7-af/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e5-89-aa-e5-a0-b1-e6-97-a5-e6-9c-ac-e7-99-bc-e8-a1-a8-e4-b8-96-e7-95-8c-e6-9c-80-e9-80-9f2gbps-e5-85-89-e7-ba-96-e7-b6-b2-e8-b7-af/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e5-89-aa-e5-a0-b1-e6-97-a5-e6-9c-ac-e7-99-bc-e8-a1-a8-e4-b8-96-e7-95-8c-e6-9c-80-e9-80-9f2gbps-e5-85-89-e7-ba-96-e7-b6-b2-e8-b7-af/">[剪報] 日本發表世界最速2Gbps光纖網路</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-04-15</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>今天在PTT八卦版看到的PO文</p>
|
||||
|
||||
<p>作者 nemesis0 (レイ) 看板 Gossiping
|
||||
標題 [爆卦] 日本發表世界最速2Gbps光纖網路
|
||||
時間 Mon Apr 15 16:39:07 2013
|
||||
───────────────────────────────────────</p>
|
||||
|
||||
<p>So-net、“世界最速”最大2GbpsのFTTHサービス「NURO 光」~月額4980円から</p>
|
||||
|
||||
<p>ソネットエンタテインメント株式会社は15日、光ファイバーインターネット通信
|
||||
サービスの新ブランド「NURO 光」を発表した。</p>
|
||||
|
||||
<p>最大通信速度は下り2Gbps、上り1Gbps。</p>
|
||||
|
||||
<p>個人用の商用FTTHサービスでは世界最速だという。</p>
|
||||
|
||||
<p>宅内終端装置には1Gbpsの有線LANポートのほか、</p>
|
||||
|
||||
<p>最大450Mbpsの無線LAN機能(IEEE 802.11a/b/g/n、2.4GHz/5GHz)も標準装備する。</p>
|
||||
|
||||
<p>月額料金は、2年継続の場合で4980円。このほか契約料が840円、</p>
|
||||
|
||||
<p>基本工事費が3万1500円。</p>
|
||||
|
||||
<p>提供エリアは、関東1都6県。</p>
|
||||
|
||||
<p>戸建て住宅および2階建て以下の集合住宅を対象に、同日より受付を開始する。
|
||||
摘要:So-net於15日發表下載2Gbps 上傳1Gbps的光纖網路服務「NURO 光」。</p>
|
||||
|
||||
<p>為目前世界最快的個人商用光纖網路。</p>
|
||||
|
||||
<p>費用為每月4980yen(約台幣1500元),提供服務範圍為關東1都6縣。</p>
|
||||
|
||||
<p>補充:最後一行的意思是,當天開始為獨棟住戶及二層樓以下的公寓住戶提供服務。</p>
|
||||
|
||||
<p>住日本的快去申請!!!</p>
|
||||
|
||||
<p>其中有位鄉民的推文</p>
|
||||
|
||||
<p>推 faratia:人家都叫雞了,我們還在把妹 04/15 16:41</p>
|
||||
|
||||
<p>說得真好啊!</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,458 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [剪報] 瘋路跑/北市0退件…3年147場 投訴313通 | My cool new Blog</title>
|
||||
<meta name="description" content="[剪報] 瘋路跑/北市0退件…3年147場 投訴313通 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[剪報] 瘋路跑/北市0退件…3年147場 投訴313通">
|
||||
<meta itemprop="description" content="[剪報] 瘋路跑/北市0退件…3年147場 投訴313通 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[剪報] 瘋路跑/北市0退件…3年147場 投訴313通">
|
||||
<meta property="og:description" content="[剪報] 瘋路跑/北市0退件…3年147場 投訴313通 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e5-89-aa-e5-a0-b1-e7-98-8b-e8-b7-af-e8-b7-91-ef-bc-8f-e5-8c-97-e5-b8-820-e9-80-80-e4-bb-b63-e5-b9-b4147-e5-a0-b4-e6-8a-95-e8-a8-b4313-e9-80-9a/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e5-89-aa-e5-a0-b1-e7-98-8b-e8-b7-af-e8-b7-91-ef-bc-8f-e5-8c-97-e5-b8-820-e9-80-80-e4-bb-b63-e5-b9-b4147-e5-a0-b4-e6-8a-95-e8-a8-b4313-e9-80-9a/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e5-89-aa-e5-a0-b1-e7-98-8b-e8-b7-af-e8-b7-91-ef-bc-8f-e5-8c-97-e5-b8-820-e9-80-80-e4-bb-b63-e5-b9-b4147-e5-a0-b4-e6-8a-95-e8-a8-b4313-e9-80-9a/">[剪報] 瘋路跑/北市0退件…3年147場 投訴313通</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2014-07-18</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>原文: <a href="http://udn.com/NEWS/SPORTS/SPO2/8811600.shtml#104">http://udn.com/NEWS/SPORTS/SPO2/8811600.shtml#104</a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>假設先不考慮什麼贈品啦、人力支出等等,辦這樣動輒上萬人的活動,場地費用只要幾萬塊?報名費卻一個人收個幾百上千的??</p>
|
||||
|
||||
<p>這不是暴利,什麼才是暴利!?</p>
|
||||
|
||||
<p>
|
||||
<div id="story_title" class="story_title" style="float: left;"></div>
|
||||
<table style="width: 100%;" border="0" cellspacing="3" cellpadding="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="130%"><img src="http://s.udn.com.tw/2010/images/linedot.gif" alt="" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table style="width: 100%;" border="0" cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class="story_author" width="75%">
|
||||
<div id="story_author">【聯合報╱記者吳家宇/台北報導】</div></td>
|
||||
<td class="story_author" width="25%">
|
||||
<div id="story_update" align="right">2014.07.18 03:51 am</div></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="story_author"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top">
|
||||
<div id="story" class="story" style="font-size: 15px; line-height: 190%; overflow: hidden;"></p>
|
||||
|
||||
<p>全民瘋路跑,北市幾乎每周末都為路跑封街。北市議員要求北市府應訂定路跑活動審核標準,避免商業路跑浮濫,影響用路人權益。</p>
|
||||
|
||||
<p><span style="font-size: 18pt; color: #ff0000;">近幾年路跑活動夯,業者嗅到商機,紛紛投入舉辦。但活動只要和北市府掛名合辦,僅需支付半價的道路使用費兩萬元,甚至免費。市議員要求,收費標準應比照運動中心場館租用辦法以差別訂價,對營利的路跑活動收費較高。</span></p>
|
||||
|
||||
<p>北市議員吳思瑤統計,二○一一年至今,台北市辦過一百四十七場路跑,賽事品質良莠不齊,北市府卻零退件,不見評鑑把關。市府體育局回應,路跑為新興運動產業,因此鼓勵推動。</p>
|
||||
|
||||
<p>吳思瑤以東京馬拉松為例,除分區段開跑、控管人流,並有志工隨處收垃圾,相較之下,「台北馬拉松」應辦得更專業,而非只讓企業賺飽飽。</p>
|
||||
|
||||
<p>此外,活動期間市府需出動警力維持交通,吳思瑤認為主辦單位應自負交通維護責任,避免排擠警察正常勤務。她並建議路跑活動應移往河濱公園等交通衝擊較小的地區,在鼓勵運動風氣之餘,也要兼顧用路人權益。</p>
|
||||
|
||||
<p>體育局副局長丁若亭表示,已提出試辦計畫,將市區路線分等級,限制在重要道路舉辦路跑次數,預計明年實施。</p>
|
||||
|
||||
<p>【記者吳家宇/台北報導】路跑活動盛行,帶動全民運動風氣,但規畫不良的路跑活動,也造成民眾困擾,又以阻礙交通、製造髒亂抱怨最多。</p>
|
||||
|
||||
<p>北市府統計,1999市民專線從二○一一年起,共接獲三百一十三通路跑投訴電話,抱怨路跑造成交通打結,或交管時間未依公告,無故提早或延長。</p>
|
||||
|
||||
<p>雖然路跑多在假日舉行,但幾乎都使用仁愛路、凱達格蘭大道等主要幹道。此外,路線規畫宣導不足,也使開車的民眾未能避開封路區而延誤行程。其次是活動結束後垃圾滿地,造成市容髒亂,先前的彩色路跑甚至引發破壞環境、有害健康的討論。</p>
|
||||
|
||||
<p></div></p>
|
||||
|
||||
<p><span id="source_name" class="story" style="overflow: hidden;">【2014/07/18 聯合報】</span><span class="author"><a href="http://udn.com/">@ </a><a href="http://udn.com/">http://udn.com/</a></span></p>
|
||||
|
||||
<p></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table></p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,444 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [剪報] 被控隱瞞凶宅 仲介判賠225萬 | My cool new Blog</title>
|
||||
<meta name="description" content="[剪報] 被控隱瞞凶宅 仲介判賠225萬 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[剪報] 被控隱瞞凶宅 仲介判賠225萬">
|
||||
<meta itemprop="description" content="[剪報] 被控隱瞞凶宅 仲介判賠225萬 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[剪報] 被控隱瞞凶宅 仲介判賠225萬">
|
||||
<meta property="og:description" content="[剪報] 被控隱瞞凶宅 仲介判賠225萬 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e5-89-aa-e5-a0-b1-e8-a2-ab-e6-8e-a7-e9-9a-b1-e7-9e-9e-e5-87-b6-e5-ae-85-e4-bb-b2-e4-bb-8b-e5-88-a4-e8-b3-a0225-e8-90-ac/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e5-89-aa-e5-a0-b1-e8-a2-ab-e6-8e-a7-e9-9a-b1-e7-9e-9e-e5-87-b6-e5-ae-85-e4-bb-b2-e4-bb-8b-e5-88-a4-e8-b3-a0225-e8-90-ac/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e5-89-aa-e5-a0-b1-e8-a2-ab-e6-8e-a7-e9-9a-b1-e7-9e-9e-e5-87-b6-e5-ae-85-e4-bb-b2-e4-bb-8b-e5-88-a4-e8-b3-a0225-e8-90-ac/">[剪報] 被控隱瞞凶宅 仲介判賠225萬</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-04-25</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>96-100年 ,成交價從300—–> 525</p>
|
||||
|
||||
<p>巧的是買賣的人持有都不久,這不是炒房是啥?</p>
|
||||
|
||||
<p>啊不就最後一手最倒楣所以才爆出來…<img src="http://www.cowbay.org/wp-content/plugins/ultimate-tinymce/addons/emotions/img/popobig/doubt.png" alt="Doubt it!" title="Doubt it!" />
|
||||
<table style="width: 100%;" border="0" cellspacing="3" cellpadding="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<table style="width: 100%;" border="0" cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="75%">
|
||||
<div id="story_author">【聯合報╱記者歐陽良盈、蘇郁涵/高雄報導】</div></td>
|
||||
<td width="25%">
|
||||
<div id="story_update" align="right">2013.04.25 03:26 am</div></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top">
|
||||
<div id="story"></p>
|
||||
|
||||
<p>高雄市三民區91年發生一件女講師命案,事隔多年,房子幾次轉手買賣都不順,100年買家陳淑貞透過仲介買下這間房子,後來發現自己買的是凶宅提告,高雄地院審理判仲介公司賠償225萬元。全案還在上訴中。</p>
|
||||
|
||||
<p>判決指出,<span style="color: #ff0000; font-size: 16px;">紀姓男子96年時向蔡姓屋主購買這間凶宅,後來紀男想賣屋,和買家陳聯進談妥以300萬元交易房子,事後陳聯進不買了,替紀姓屋主委託仲介公司找買主,買家陳慧雯以430萬元購得,當時陳慧雯並不知道自己買的是凶宅。</span></p>
|
||||
|
||||
<p><span style="color: #ff0000; font-size: 16px;">據了解,陳慧雯從事服飾買賣,簽約買屋後發現資金不足,再透過同家仲介找買家,100年7月時和新買主陳淑貞以525萬元成交。陳淑貞付完錢並辦妥權轉登記後,發現自己買到的是重大刑案凶宅,求償225萬元和13萬多的房屋稅和保險費等。</span></p>
|
||||
|
||||
<p>判決指出,陳聯進委託仲介售屋時在房地產標的現況說明書上的「曾發生凶殺或自殺致死情事」欄中勾選「是」,後來與陳慧雯成交要簽訂房屋買賣契約時又塗改,改成在「否」欄項打勾。</p>
|
||||
|
||||
<p>法官認為,仲介公司沒有善盡調查的義務,這件女講師命案當時震驚社會,後來嫌犯還被判死刑定讞,列為重大刑案,被媒體多次報導披露,承接的張姓仲介員是有證照的專業人員,且凶宅左鄰右舍常主動向有意洽購者提醒該屋是凶宅,認為張姓仲介不應該不知情。</p>
|
||||
|
||||
<p>張姓仲介認為判決結果與事實不符,表示公司會再上訴,她辯稱,自己當初是與陳聯進接洽,談買賣房屋的過程中,陳姓屋主否認房子是凶宅,「我全程有錄音,這可成為呈堂證供」。為了保險起見,她還問了附近居民、警察,及上「凶宅網」查詢,結果顯示房子不是凶宅。</p>
|
||||
|
||||
<p></div>
|
||||
【2013/04/25 聯合報】<a href="http://udn.com/">@ </a><a href="http://udn.com/">http://udn.com/</a></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<div>
|
||||
全文網址: <a href="http://udn.com/NEWS/SOCIETY/SOC6/7854038.shtml#ixzz2RQspw7GC">被控隱瞞凶宅 仲介判賠225萬 | 法律前線 | 社會新聞 | 聯合新聞網</a>
|
||||
Power By udn.com</div></p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,438 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [剪報] 賴素如 觸犯「不違背職務收賄」 | My cool new Blog</title>
|
||||
<meta name="description" content="[剪報] 賴素如 觸犯「不違背職務收賄」 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[剪報] 賴素如 觸犯「不違背職務收賄」">
|
||||
<meta itemprop="description" content="[剪報] 賴素如 觸犯「不違背職務收賄」 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[剪報] 賴素如 觸犯「不違背職務收賄」">
|
||||
<meta property="og:description" content="[剪報] 賴素如 觸犯「不違背職務收賄」 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e5-89-aa-e5-a0-b1-e8-b3-b4-e7-b4-a0-e5-a6-82-e8-a7-b8-e7-8a-af-e3-80-8c-e4-b8-8d-e9-81-95-e8-83-8c-e8-81-b7-e5-8b-99-e6-94-b6-e8-b3-84-e3-80-8d/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e5-89-aa-e5-a0-b1-e8-b3-b4-e7-b4-a0-e5-a6-82-e8-a7-b8-e7-8a-af-e3-80-8c-e4-b8-8d-e9-81-95-e8-83-8c-e8-81-b7-e5-8b-99-e6-94-b6-e8-b3-84-e3-80-8d/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e5-89-aa-e5-a0-b1-e8-b3-b4-e7-b4-a0-e5-a6-82-e8-a7-b8-e7-8a-af-e3-80-8c-e4-b8-8d-e9-81-95-e8-83-8c-e8-81-b7-e5-8b-99-e6-94-b6-e8-b3-84-e3-80-8d/">[剪報] 賴素如 觸犯「不違背職務收賄」</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-03-29</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p><table style="width: 100%;" border="0" cellspacing="3" cellpadding="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<table style="width: 100%;" border="0" cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="75%">
|
||||
<div id="story_author">【聯合報╱記者林志函/台北報導】</div></td>
|
||||
<td width="25%">
|
||||
<div id="story_update" align="right">2013.03.29 03:07 am</div></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top">
|
||||
<div id="story"></p>
|
||||
|
||||
<p>台北市議員賴素如被控收賄,再利用質詢、提案等方式,幫廠商取得優先議約權,觸犯「不違背職務收賄」。什麼是不違背職務收賄?什麼又是違背職務收賄?</p>
|
||||
|
||||
<p>舉例來說,如果甲承包政府工程,沒有依合約規定施工,依法不能通過驗收。甲希望工程過關,拿錢給監督驗收的公務員,或是招待喝花酒,公務員讓驗收通過,便觸犯「違背職務收賄」。</p>
|
||||
|
||||
<p>如果甲的工程都依約並符合驗收標準,但是為了快速通過驗收,請公務員喝花酒或提供性招待、給予其他好處,這名公務員便觸犯「不違背職務收賄」。</p>
|
||||
|
||||
<p>一名法官說,分辨兩者很簡單,只要考慮「公務員不收錢,他的行為有沒有違法」,如果觸法就是違背職務,沒犯法便是不違背職務。刑法規定,違背職務收受賄賂可處十年以上有期徒刑,最重能判到無期徒刑,不違背職務收賄的刑度則是七年以上有期徒刑。</p>
|
||||
|
||||
<p><span style="color: #ff0000;">一名律師表示,賴素如若沒收錢只是護航圖利廠商,可能只構成貪汙治罪條例第六條,處五年以上有期徒刑;她若收錢,還得確認她有沒有主動開口要錢、有沒有和廠商約定,質詢時是否施壓或超出質詢範圍,才能認定構不構成犯罪</span>。</p>
|
||||
|
||||
<p></div></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<div></div>
|
||||
<div>這麼早就已經在開始預告將來的步數了??真的是很難看…</div>
|
||||
<div></div>
|
||||
<div>全文網址: <a href="http://udn.com/NEWS/NATIONAL/NATS4/7796085.shtml#ixzz2OsvcFiRi">賴素如 觸犯「不違背職務收賄」 | 檢調查雙子星案 | 國內要聞 | 聯合新聞網</a> <a href="http://udn.com/NEWS/NATIONAL/NATS4/7796085.shtml#ixzz2OsvcFiRi">http://udn.com/NEWS/NATIONAL/NATS4/7796085.shtml#ixzz2OsvcFiRi</a>
|
||||
Power By udn.com</div></p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,432 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [剪報] 顏炳立:北市高房價 問題在求過於供 | My cool new Blog</title>
|
||||
<meta name="description" content="[剪報] 顏炳立:北市高房價 問題在求過於供 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[剪報] 顏炳立:北市高房價 問題在求過於供">
|
||||
<meta itemprop="description" content="[剪報] 顏炳立:北市高房價 問題在求過於供 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[剪報] 顏炳立:北市高房價 問題在求過於供">
|
||||
<meta property="og:description" content="[剪報] 顏炳立:北市高房價 問題在求過於供 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e5-89-aa-e5-a0-b1-e9-a1-8f-e7-82-b3-e7-ab-8b-ef-bc-9a-e5-8c-97-e5-b8-82-e9-ab-98-e6-88-bf-e5-83-b9-e5-95-8f-e9-a1-8c-e5-9c-a8-e6-b1-82-e9-81-8e-e6-96-bc-e4-be-9b/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e5-89-aa-e5-a0-b1-e9-a1-8f-e7-82-b3-e7-ab-8b-ef-bc-9a-e5-8c-97-e5-b8-82-e9-ab-98-e6-88-bf-e5-83-b9-e5-95-8f-e9-a1-8c-e5-9c-a8-e6-b1-82-e9-81-8e-e6-96-bc-e4-be-9b/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e5-89-aa-e5-a0-b1-e9-a1-8f-e7-82-b3-e7-ab-8b-ef-bc-9a-e5-8c-97-e5-b8-82-e9-ab-98-e6-88-bf-e5-83-b9-e5-95-8f-e9-a1-8c-e5-9c-a8-e6-b1-82-e9-81-8e-e6-96-bc-e4-be-9b/">[剪報] 顏炳立:北市高房價 問題在求過於供</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-04-02</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p><div>這不是愚人節笑話….</div>
|
||||
<div></div>
|
||||
<div></div>
|
||||
<div id="story_title">顏炳立:北市高房價 問題在求過於供</div>
|
||||
2013/04/01
|
||||
<div id="story">【聯合晚報╱記者游智文╱台北報導】張金鶚今天上任台北市副市長,並在臉書公布五大目標方向,戴德梁行總經理顏炳立上午表示,張金鶚提出的方向,如能落實,可解決北市高房價困境,降低民怨,但要做到不容易,他期待張金鶚能夠做得到。</p>
|
||||
|
||||
<p>顏炳立和張金鶚這幾年對房市看法南轅北側,市場分別給與多頭和空頭總司令稱號,雙方上電視時並常常激烈交火。張金鶚在臉書所說的五大目標方向,對房市較有關聯的包括加速都更腳步、推動公營住宅普及化及空屋利用、強化不動產市場資訊透明度、對民間發布的市場資訊進行管理與規範、推動實價課稅,但自用、出租住宅宜輕稅,其他加重等。</p>
|
||||
|
||||
<p>顏炳立表示,台北市高房價的根本的問題在需求遠大於供給,如果張金鶚能縮短都更時程,短時間內能夠提供一定量體,擴大市場供給,確可解決高房價問題。</p>
|
||||
|
||||
<p>至於張金鶚提出實價課稅,目前能做的就是提高精華地段或豪宅公告現值或房屋評定現值,但再怎麼提高對豪宅屋主仍是九牛一毛,影響不大,至於交易資訊公開透明,以已上路的實價揭露來看,對市場並沒有直接影響,房市好壞關鍵仍在大環境經濟景氣。</p>
|
||||
|
||||
<p></div>
|
||||
全文網址:<a href="http://money.udn.com/house/storypage.jsp?f_MAIN_ID=419&amp;f_SUB_ID=4104&amp;f_ART_ID=286881#ixzz2PGJBaxmQ">udn房市情報 - 達人專欄 - 名人看房市 - 顏炳立:北市高房價 問題在求過於供</a><a href="http://money.udn.com/house/storypage.jsp?f_MAIN_ID=419&amp;f_SUB_ID=4104&amp;f_ART_ID=286881#ixzz2PGJBaxmQ">
|
||||
</a></p>
|
||||
|
||||
<p>底下是2011年的一份報導</p>
|
||||
|
||||
<p>全台空屋率創高 156萬戶 自由時報 – 2011年10月26日記者林美芬/台北報導</p>
|
||||
|
||||
<p>根據行政院主計處2010年住宅普查數據,全台的空屋率達到19.4%,換成戶數高達156萬戶,創歷年新高,其中空屋率最嚴重的是台中市26.2%,但空屋最多的卻是新北市33萬戶,其次是桃園縣15.37萬戶。</p>
|
||||
|
||||
<p>行政院主計處是每十年做一次住宅普查,其中空屋率是空屋佔住宅數比率,空屋定義則是無人經常居住,且未供其他用途。這份資料已經內部完成,不過尚未對外公布,是一份尚未正式核定的初步統計資料。</p>
|
||||
|
||||
<p>根據同一份調查,1990年的空屋數是67萬戶,2000年調查全台空屋122萬戶,2010年增加了34萬戶,達到156萬戶,也就是20年來,全台累計增加的空屋高達89萬戶。</p>
|
||||
|
||||
<p>全台主要都會空屋情況,<span>空屋率最高的是台中市</span>,達到26.2%,約是12.3萬戶,十年來是沒有多大變動,其次是基隆市25.2%,不過戶數其實只有5萬戶而已。</p>
|
||||
|
||||
<p>但是,<span>空屋率跳升最快的是新北市</span>,從2000年22萬戶的17.4%,2010年跳升到<span>33萬戶</span>,<span>空屋率上升約5%,達到22.1%</span>,桃園縣則是比例減少,但空屋一樣增加, 2000年13.2萬戶、23.2%; 2010年增加2萬多戶,達15.37萬戶、21%。</p>
|
||||
|
||||
<p><span style="color: #ff0000;">至於最受到矚目的台北市,2010年的空屋是12.7萬戶,空屋率13.8%,相較於2000年,空屋10萬戶、比率為12.2%,多2.7萬戶。</span></p>
|
||||
|
||||
<p>新竹縣是近來房市最夯的縣市之一,根據調查結果,2000年空屋數為2.5萬戶、20%;到了2010年空屋數提高至3.2萬戶,空屋存量約是近7000戶。至於合併前的高雄市空屋數11.4萬戶、19.4%,高雄縣則是約6萬戶。</p>
|
||||
|
||||
<p>台北市的空屋率還有13.8% ,這樣的數據叫做需求大於供給??這種話,這些商人怎麼能夠昧著良心,毫不猶疑就在大眾媒體上發表??</p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,435 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [剪報] Google下一波「清倉計畫」,旗下五項服務恐將關閉 | My cool new Blog</title>
|
||||
<meta name="description" content="[剪報] Google下一波「清倉計畫」,旗下五項服務恐將關閉 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[剪報] Google下一波「清倉計畫」,旗下五項服務恐將關閉">
|
||||
<meta itemprop="description" content="[剪報] Google下一波「清倉計畫」,旗下五項服務恐將關閉 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[剪報] Google下一波「清倉計畫」,旗下五項服務恐將關閉">
|
||||
<meta property="og:description" content="[剪報] Google下一波「清倉計畫」,旗下五項服務恐將關閉 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e5-89-aa-e5-a0-b1-google-e4-b8-8b-e4-b8-80-e6-b3-a2-e3-80-8c-e6-b8-85-e5-80-89-e8-a8-88-e7-95-ab-e3-80-8d-ef-bc-8c-e6-97-97-e4-b8-8b-e4-ba-94-e9-a0-85-e6-9c-8d-e5-8b-99-e6-81-90-e5-b0-87-e9-97-9c/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e5-89-aa-e5-a0-b1-google-e4-b8-8b-e4-b8-80-e6-b3-a2-e3-80-8c-e6-b8-85-e5-80-89-e8-a8-88-e7-95-ab-e3-80-8d-ef-bc-8c-e6-97-97-e4-b8-8b-e4-ba-94-e9-a0-85-e6-9c-8d-e5-8b-99-e6-81-90-e5-b0-87-e9-97-9c/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e5-89-aa-e5-a0-b1-google-e4-b8-8b-e4-b8-80-e6-b3-a2-e3-80-8c-e6-b8-85-e5-80-89-e8-a8-88-e7-95-ab-e3-80-8d-ef-bc-8c-e6-97-97-e4-b8-8b-e4-ba-94-e9-a0-85-e6-9c-8d-e5-8b-99-e6-81-90-e5-b0-87-e9-97-9c/">[剪報] Google下一波「清倉計畫」,旗下五項服務恐將關閉</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-03-20</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>原文發表於:<a href="http://wired.tw/2013/03/20/five-google-products-at-risk/index.html">http://wired.tw/2013/03/20/five-google-products-at-risk/index.html</a></p>
|
||||
|
||||
<p>上星期,Google總裁Larry Page一聲令下,Google立刻舉起大刀,腰斬了五項服務,其中最讓人不捨的,莫過於一去不復返的Google Reader。這波整肅行動,其實是Google實施的「春季清倉計畫」(spring cleaning)。</p>
|
||||
|
||||
<p>這項計畫,正是由2011年4月接任總裁的Page所提出。自上任以來,他致力裁減旗下程式服務,去年九月,他執行了「秋季清倉計畫」(fall cleaning),將八項服務砍得乾乾淨淨,還對另外兩個開發介面虎視眈眈,意圖除之後快。</p>
|
||||
|
||||
<p>Google的清倉計畫看似言之成理,實則啟人疑竇。就倖存的商品與服務來看,種類依舊是五花八門,而且許多仍在測試階段,從自動駕車程式、高科技玻璃,一路到各種社群網站、行動裝置、手機作業系統,可說是無奇不有。</p>
|
||||
|
||||
<p>反之,功能強大、讓大批使用者為之傾倒的Google Reader,卻難逃遭驅逐的命運。兩相對照之下,Google的清倉原則顯得匪夷所思。</p>
|
||||
|
||||
<p>根據本次大清倉透露出的開鍘標準,下回Google再開殺戒時,以下五項服務恐怕難逃一死:</p>
|
||||
|
||||
<p>1. Google TV</p>
|
||||
|
||||
<p>Google為了讓使用者能在客廳裡瀏覽網頁、開啟YouTube及Google Play,便打造了這款電視機介面,希望讓公司年營收增加30億美金。可惜,這項服務始終乏人問津,且負評不斷,加上硬體配件銷量不佳,連開發商羅技公司的總裁Guerrino De Luca都搖頭,稱其為「天大失策」。</p>
|
||||
|
||||
<p>2. Google Groups</p>
|
||||
|
||||
<p>這項線上社群組織服務,相較於曾經紅極一時的Yahoo家族功能,確實較受青睞。不過Google Groups依舊留不住用戶,許多人早已紛紛轉向更加客製化、採垂直頁面顯示的網站(如StackOverflow),或是前去投靠如Discourse及phpBB等原始碼開放的介面了。</p>
|
||||
|
||||
<p>想當年,Google Groups推出了Usenet介面,讓Google成為搜尋引擎始祖,但隨著金主興趣漸失,慢慢撤退,這項服務也該收山了。</p>
|
||||
|
||||
<p>3. Blogger</p>
|
||||
|
||||
<p>Blogger於1999年問世,是推特出現前最好用的部落格介面,只是,隨著競爭對手紛紛出籠,Blogger腹背受敵,不但社群功能遜於Tumblr,客製化程度及開發團隊實力也大輸WordPress。Google之所以不開鍘,多半是擔心掀起反彈聲浪,但若要關閉發文功能,其實也易如反掌。</p>
|
||||
|
||||
<p>4. Google Offers</p>
|
||||
|
||||
<p>2011年,Google嘗試併購團購網Groupon未果,遂推出自家的團購服務Google Offers。後來,Groupon和同業Living Social的業績起起伏伏,但Google Offers卻未能乘勝追擊,坐享漁翁之利,Google 如果還繼續投資,顯然不太划算。</p>
|
||||
|
||||
<p>5. Google Apps</p>
|
||||
|
||||
<p>Google Apps據稱讓Google年營收多了10億美金,而其功能之前衛多元,可望開啟雲端運算時代。然而,所謂的10億美金,只不過佔Google年營收的2%。若Google真想走服務專一路線,根本不必向百般挑剔的大公司兜售軟體,好好和廣告商合作,賺進更大筆的廣告費用,豈不輕鬆自在多了?</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>連blooger 也要收掉了!?</p>
|
||||
|
||||
<p>Google Apps 要收掉真的很可惜啊…</p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,455 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [剪報] http://tw.news.yahoo.com/兒與店家套招-失智母親上門免費-195100978.html | My cool new Blog</title>
|
||||
<meta name="description" content="[剪報] http://tw.news.yahoo.com/兒與店家套招-失智母親上門免費-195100978.html - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[剪報] http://tw.news.yahoo.com/兒與店家套招-失智母親上門免費-195100978.html">
|
||||
<meta itemprop="description" content="[剪報] http://tw.news.yahoo.com/兒與店家套招-失智母親上門免費-195100978.html - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[剪報] http://tw.news.yahoo.com/兒與店家套招-失智母親上門免費-195100978.html">
|
||||
<meta property="og:description" content="[剪報] http://tw.news.yahoo.com/兒與店家套招-失智母親上門免費-195100978.html - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e5-89-aa-e5-a0-b1-httptw-news-yahoo-com-e5-85-92-e8-88-87-e5-ba-97-e5-ae-b6-e5-a5-97-e6-8b-9b-e5-a4-b1-e6-99-ba-e6-af-8d-e8-a6-aa-e4-b8-8a-e9-96-80-e5-85-8d-e8-b2-bb-195100978-html/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e5-89-aa-e5-a0-b1-httptw-news-yahoo-com-e5-85-92-e8-88-87-e5-ba-97-e5-ae-b6-e5-a5-97-e6-8b-9b-e5-a4-b1-e6-99-ba-e6-af-8d-e8-a6-aa-e4-b8-8a-e9-96-80-e5-85-8d-e8-b2-bb-195100978-html/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e5-89-aa-e5-a0-b1-httptw-news-yahoo-com-e5-85-92-e8-88-87-e5-ba-97-e5-ae-b6-e5-a5-97-e6-8b-9b-e5-a4-b1-e6-99-ba-e6-af-8d-e8-a6-aa-e4-b8-8a-e9-96-80-e5-85-8d-e8-b2-bb-195100978-html/">[剪報] http://tw.news.yahoo.com/兒與店家套招-失智母親上門免費-195100978.html</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-10-08</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>好溫馨啊~~~~</p>
|
||||
|
||||
<p><a href="http://tw.news.yahoo.com/%E5%85%92%E8%88%87%E5%BA%97%E5%AE%B6%E5%A5%97%E6%8B%9B-%E5%A4%B1%E6%99%BA%E6%AF%8D%E8%A6%AA%E4%B8%8A%E9%96%80%E5%85%8D%E8%B2%BB-195100978.html">原文</a>
|
||||
<div id="mediaarticlehead">
|
||||
<div></p>
|
||||
|
||||
<h1 id="兒與店家套招-失智母親上門免費">兒與店家套招 失智母親上門免費</h1>
|
||||
|
||||
<p><a href="http://udn.com/NEWS/"><img src="http://l.yimg.com/bt/api/res/1.2/fSeNJAxh518JWiS31IIbwg--/YXBwaWQ9eW5ld3M7Zmk9Zml0O2g9Mjc-/http://media.zenfs.com/155/2011/06/16/udn-jpg-89x27_175027.jpg" alt="聯合新聞網" /></a><cite>作者: 記者趙容萱╱台中報導 | 聯合新聞網 – <abbr title="2013-10-07T19:51:00Z">2013年10月8日 上午3:51</abbr></cite></p>
|
||||
|
||||
<p></div>
|
||||
</div>
|
||||
<div id="yui_3_9_1_1_1381200643826_742">
|
||||
<div></div>
|
||||
<div id="yui_3_9_1_1_1381200643826_741">
|
||||
<div id="yui_3_9_1_1_1381200643826_740" itemscope="" itemtype="http://schema.org/Article">
|
||||
<div id="mediaarticlebody" itemprop="articleBody">
|
||||
<div id="yui_3_9_1_1_1381200643826_739"></p>
|
||||
|
||||
<p>這是現代版孝子娛親。魏姓男子見母親失智,老抱怨自己「無路用」變得不愛出門;男子買通附近店家,只要母親上門消費,就誇「老太太人緣好、免錢」,魏母果真重拾歡顏。</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>「阿嬤,妳最近好像很快樂喔?」魏母日前到醫院回診,開心地回應中山醫學大學附設醫院神經內科醫師周希諴:「對啊,大家都對我很好,不跟我收錢。」眼睛瞇成一線笑著,沉醉在幸福裡。</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>跟診的護士順口讚美說:「一定是阿嬤太可愛,到處吃喝都不用花錢,好好喔!」魏母突然抬起頭,揮手說:「小姐,我告訴妳,還有洗頭髮也是免費!」</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>醫師表示,八十歲的魏母,在未患失智症之前個性開朗,很受街坊鄰居歡迎,三年前出現話講完就忘,常拿著鈔票卻看不懂是多少錢,無法出門購物,有時和鄰居聊天,常抱怨「無路用」。</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>兒子帶母親到醫院,確診為失智症。剛開始魏母排拒吃藥,家人、看護得連哄帶騙,相當折騰。兒子觀察發現母親沒體力走遠,但偶爾會想吃美食,因失智對金錢沒概念,付帳常搞錯,一、二次挫折後,就裹足不前。</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>為鼓勵媽媽出門,兒子心生一計,每個月都先付錢給媽媽常去的店家,並和店家套招,請對方在媽媽來消費時都要說「老太太做人真好、免錢」。</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>兒子說,這招很管用,母親每次出門返家都笑得合不攏嘴,逢人就說「我的運氣很好,老闆都不跟我收錢。」兒子說,每月只花一、兩千元就能換得母親快樂,很值得。</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>周希諴說,失智症患者與腦組織退化有關,很多患者會自我封閉,加速退化,想辦法讓他們與人互動,確有助於減緩病情。</p>
|
||||
|
||||
<p></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,415 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [剪報] MSN昨關閉 粉絲:真的回不來了 | My cool new Blog</title>
|
||||
<meta name="description" content="[剪報] MSN昨關閉 粉絲:真的回不來了 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[剪報] MSN昨關閉 粉絲:真的回不來了">
|
||||
<meta itemprop="description" content="[剪報] MSN昨關閉 粉絲:真的回不來了 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[剪報] MSN昨關閉 粉絲:真的回不來了">
|
||||
<meta property="og:description" content="[剪報] MSN昨關閉 粉絲:真的回不來了 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e5-89-aa-e5-a0-b1-msn-e6-98-a8-e9-97-9c-e9-96-89-e7-b2-89-e7-b5-b2-ef-bc-9a-e7-9c-9f-e7-9a-84-e5-9b-9e-e4-b8-8d-e4-be-86-e4-ba-86/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e5-89-aa-e5-a0-b1-msn-e6-98-a8-e9-97-9c-e9-96-89-e7-b2-89-e7-b5-b2-ef-bc-9a-e7-9c-9f-e7-9a-84-e5-9b-9e-e4-b8-8d-e4-be-86-e4-ba-86/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e5-89-aa-e5-a0-b1-msn-e6-98-a8-e9-97-9c-e9-96-89-e7-b2-89-e7-b5-b2-ef-bc-9a-e7-9c-9f-e7-9a-84-e5-9b-9e-e4-b8-8d-e4-be-86-e4-ba-86/">[剪報] MSN昨關閉 粉絲:真的回不來了</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-04-26</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>【聯合報╱記者陳信升、江碩涵/台北報導】</p>
|
||||
|
||||
<p>對多數使用者來說,MSN昨天真的結束了!許多人昨天一早無法登錄MSN後,便開始在臉書發表MSN追悼文,「感嘆逝去的青春,真的回不來了。」 許多人對MSN一定會有「末日」冷淡以對,堅不轉進SKYPE,這時也被其它網友譏為「不見棺材不掉淚」!</p>
|
||||
|
||||
<p>雖然網路上也有出現抗議微軟「粗暴的」停用MSN的聲音,但多數使用者見大勢已去,且已轉用其他通訊軟體,因次並未激起太多漣漪。不過,更多使用者向親友留言,希望能夠留下帳號,讓聯絡人清單可以重新「整隊」。</p>
|
||||
|
||||
<p>許多用戶昨天無法登入MSN,也無法轉換Skype,行動通訊被迫中斷;台灣微軟表示,四月八日起MSN已陸續分批停用,建議使用者盡快轉換到Skype;至於昨天無法登入Skype,工程人員已修復,相關問題將陸續解決。</p>
|
||||
|
||||
<p>台灣微軟表示,MSN原訂四月八日停用,系統原設定分批結束使用者登入時間,絕非昨天才強制所有使用者轉換使用介面至Skype。台灣微軟仍重申一貫立場,建議使用者盡快轉換至Skype平台,以免造成使用困擾。</p>
|
||||
|
||||
<p>網路傳出,昨天因為過多網友同時進行平台轉換,系統無法負荷,才造成相關問題。但對此傳聞,台灣微軟不願意評論。記者實測,目前僅手機版的MSN仍可使用。</p>
|
||||
|
||||
<p>3C達人楊士範表示,昨天的確不少人抱怨行動通訊中斷,只好透過其他聯絡方式,像是打電話、寫e-mail、用臉書的訊息連繫,或用LINE、Whats app、Google Talk等溝通,反而加速其他通訊軟體的成長。
|
||||
<div></div>
|
||||
<div>全文網址: <a href="http://mag.udn.com/mag/digital/storypage.jsp?f_ART_ID=452674#ixzz2RWg2GZH3">MSN昨關閉 粉絲:真的回不來了 | 網路衝浪 | 線上漫遊 | udn數位資訊</a> <a href="http://mag.udn.com/mag/digital/storypage.jsp?f_ART_ID=452674#ixzz2RWg2GZH3">http://mag.udn.com/mag/digital/storypage.jsp?f_ART_ID=452674#ixzz2RWg2GZH3</a>
|
||||
Power By udn.com</div>
|
||||
<div>原始圖片發表於: <a href="http://www.a-fei.idv.tw/blog/archives/1912/n3_1185_052_p1_6__pic1?variant=zh-tw">http://www.a-fei.idv.tw/blog/archives/1912/n3_1185_052_p1_6__pic1?variant=zh-tw</a></div></p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,400 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [剪報]台大醫之死/學者憂心拚論文 像吃藥上癮 - 新聞追追追 - 文教要聞 - udn文教職考 | My cool new Blog</title>
|
||||
<meta name="description" content="[剪報]台大醫之死/學者憂心拚論文 像吃藥上癮 - 新聞追追追 - 文教要聞 - udn文教職考 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[剪報]台大醫之死/學者憂心拚論文 像吃藥上癮 - 新聞追追追 - 文教要聞 - udn文教職考 ">
|
||||
<meta itemprop="description" content="[剪報]台大醫之死/學者憂心拚論文 像吃藥上癮 - 新聞追追追 - 文教要聞 - udn文教職考 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[剪報]台大醫之死/學者憂心拚論文 像吃藥上癮 - 新聞追追追 - 文教要聞 - udn文教職考 ">
|
||||
<meta property="og:description" content="[剪報]台大醫之死/學者憂心拚論文 像吃藥上癮 - 新聞追追追 - 文教要聞 - udn文教職考 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e5-89-aa-e5-a0-b1/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e5-89-aa-e5-a0-b1/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e5-89-aa-e5-a0-b1/">[剪報]台大醫之死/學者憂心拚論文 像吃藥上癮 - 新聞追追追 - 文教要聞 - udn文教職考 </a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-03-14</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>台灣的大學評鑑、教授升等、院聘教授或傑出學者的選拔,都只重視SCI的論文指數,「校園內充斥著低頭盤算論文數量,就像累積便利商店的點數」,形成一窩蜂<span style="color: #800000;">為發表而發表的論文,卻與實際應用及產業需求嚴重脫節</span>,最後變成偏離正軌。
|
||||
<div></div>
|
||||
<div>全文網址: <a href="http://mag.udn.com/mag/education/storypage.jsp?f_ART_ID=445556#ixzz2NTCkwSjO">台大醫之死/學者憂心拚論文 像吃藥上癮 - 新聞追追追 - 文教要聞 - udn文教職考</a> <a href="http://mag.udn.com/mag/education/storypage.jsp?f_ART_ID=445556#ixzz2NTCkwSjO">
|
||||
</a></div></p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,416 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> 劉德華 - 練習 | My cool new Blog</title>
|
||||
<meta name="description" content="劉德華 - 練習 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="劉德華 - 練習">
|
||||
<meta itemprop="description" content="劉德華 - 練習 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="劉德華 - 練習">
|
||||
<meta property="og:description" content="劉德華 - 練習 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e5-8a-89-e5-be-b7-e8-8f-af-e7-b7-b4-e7-bf-92/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e5-8a-89-e5-be-b7-e8-8f-af-e7-b7-b4-e7-bf-92/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e5-8a-89-e5-be-b7-e8-8f-af-e7-b7-b4-e7-bf-92/">劉德華 - 練習</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-07-21</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>如果留下多一秒鐘可以減少明天想你的痛</p>
|
||||
|
||||
<p>我會願意放下所有交換任何一絲絲可能的佔有
|
||||
幸福只剩一杯沙漏 眼睜睜看著一幕幕甜蜜不會再有
|
||||
原本平凡無奇的擁有
|
||||
到現在竟像是無助的奢求</p>
|
||||
|
||||
<p>我已開始練習 開始慢慢著急著急這世界沒有你
|
||||
已經和眼淚說好不哭泣
|
||||
但倒數計時的愛該怎麼繼續
|
||||
我天天練習 天天都會熟悉
|
||||
在沒有你的城市裡試著刪除每個兩人世界裡
|
||||
那些曾經共同擁有的一切美好和回憶</p>
|
||||
|
||||
<p>愛是一萬公頃的森林迷了路的卻是我和你
|
||||
不是說好一起闖出去怎能剩我一人回去…回去</p>
|
||||
|
||||
<p><a href="http://www.youtube.com/watch?v=BUgwXRhVla4">http://www.youtube.com/watch?v=BUgwXRhVla4</a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,424 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> 周杰倫Jay & 田馥甄Hebe - 答應不愛你 | My cool new Blog</title>
|
||||
<meta name="description" content="周杰倫Jay & 田馥甄Hebe - 答應不愛你 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="周杰倫Jay & 田馥甄Hebe - 答應不愛你">
|
||||
<meta itemprop="description" content="周杰倫Jay & 田馥甄Hebe - 答應不愛你 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="周杰倫Jay & 田馥甄Hebe - 答應不愛你">
|
||||
<meta property="og:description" content="周杰倫Jay & 田馥甄Hebe - 答應不愛你 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e5-91-a8-e6-9d-b0-e5-80-abjay-e7-94-b0-e9-a6-a5-e7-94-84hebe-e7-ad-94-e6-87-89-e4-b8-8d-e6-84-9b-e4-bd-a0/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e5-91-a8-e6-9d-b0-e5-80-abjay-e7-94-b0-e9-a6-a5-e7-94-84hebe-e7-ad-94-e6-87-89-e4-b8-8d-e6-84-9b-e4-bd-a0/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e5-91-a8-e6-9d-b0-e5-80-abjay-e7-94-b0-e9-a6-a5-e7-94-84hebe-e7-ad-94-e6-87-89-e4-b8-8d-e6-84-9b-e4-bd-a0/">周杰倫Jay & 田馥甄Hebe - 答應不愛你</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-07-12</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>幽,妳能瞭解嗎?</p>
|
||||
|
||||
<p>明明愛很清晰 卻又接受分離
|
||||
我只剩思念的權利
|
||||
難過還來不及 愛早已融入呼吸
|
||||
不存在的存在心底</p>
|
||||
|
||||
<p>雖然很努力 練習著忘記
|
||||
我的心卻還沒答應可以放棄了你
|
||||
真的對不起 答應了你不再愛你
|
||||
我卻還沒答應我自己</p>
|
||||
|
||||
<p>明明愛很清晰 卻要接受分離
|
||||
我只剩思念的權利
|
||||
難過還來不及 就讓愛融入空氣
|
||||
不存在的存在心底</p>
|
||||
|
||||
<p>說好要忘記 偏偏又想起
|
||||
原來我的心還沒有答應放棄了你
|
||||
真的對不起 雖然曾經答應了你
|
||||
我卻還沒答應我自己
|
||||
卻又如何真的不愛你</p>
|
||||
|
||||
<p><a href="http://www.youtube.com/watch?v=dDqHcW4Q7oo">http://www.youtube.com/watch?v=dDqHcW4Q7oo</a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,467 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [夢想] 大宅院 | My cool new Blog</title>
|
||||
<meta name="description" content="[夢想] 大宅院 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[夢想] 大宅院">
|
||||
<meta itemprop="description" content="[夢想] 大宅院 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[夢想] 大宅院">
|
||||
<meta property="og:description" content="[夢想] 大宅院 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e5-a4-a2-e6-83-b3-e5-a4-a7-e5-ae-85-e9-99-a2/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e5-a4-a2-e6-83-b3-e5-a4-a7-e5-ae-85-e9-99-a2/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e5-a4-a2-e6-83-b3-e5-a4-a7-e5-ae-85-e9-99-a2/">[夢想] 大宅院</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2015-06-19</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>一塊農地 裡面蓋三間房子</p>
|
||||
|
||||
<p>一棟自己住,一棟給爸媽,另一間給妹妹們或者給訪客</p>
|
||||
|
||||
<p>空地要有造景山水、要有樹</p>
|
||||
|
||||
<p>室內主屋走高科技 都用觸控面板還有聲控控制</p>
|
||||
|
||||
<p>可以用聲控下指令控制家電</p>
|
||||
|
||||
<p>「Alice ,開啟一樓客廳空調」</p>
|
||||
|
||||
<p>「開啟一樓客廳空調,請問溫度要設定幾度?」</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>「Alice,一樓大門解鎖」</p>
|
||||
|
||||
<p>「一樓大門已解鎖」</p>
|
||||
|
||||
<p>電視頻道固定某一台播放大門 IPCAM 訊號</p>
|
||||
|
||||
<p>「Alice,檢查大門影像」 就會把電視切換到大門的鏡頭</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>每間房間有一張識別卡 卡片放在床頭固定位置可以啟用平板控制房間內的設備</p>
|
||||
|
||||
<p>地下室有停車場</p>
|
||||
|
||||
<p>房子周圍有護城河</p>
|
||||
|
||||
<p>邊上有HD IPCAM</p>
|
||||
|
||||
<p>IPCAM 的影像會即時上傳到雲端空間</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>其中一間房子的背後有個小房間 所有線路集中在那邊</p>
|
||||
|
||||
<p>裡面有溫控的抽風機</p>
|
||||
|
||||
<p>頂上也有溫控的排氣設備</p>
|
||||
|
||||
<p>備有專用的發電機組</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>院子要有菜園??不要有草皮,但是要有山水造景</p>
|
||||
|
||||
<p>要養兩隻大白熊,戶外休息的陰涼處要裝溫控的抽風機或風扇</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>訪客停車導引到地下室</p>
|
||||
|
||||
<p>要有車道到大門前</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>浴室要用下沉式的浴缸,貼黑色片岩質感</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,562 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> 宇瞻 Apacer 的客服/維修服務真是好! | My cool new Blog</title>
|
||||
<meta name="description" content="宇瞻 Apacer 的客服/維修服務真是好! - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="宇瞻 Apacer 的客服/維修服務真是好!">
|
||||
<meta itemprop="description" content="宇瞻 Apacer 的客服/維修服務真是好! - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="宇瞻 Apacer 的客服/維修服務真是好!">
|
||||
<meta property="og:description" content="宇瞻 Apacer 的客服/維修服務真是好! - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e5-ae-87-e7-9e-bb-apacer-e7-9a-84-e5-ae-a2-e6-9c-8d-e7-b6-ad-e4-bf-ae-e6-9c-8d-e5-8b-99-e7-9c-9f-e6-98-af-e5-a5-bd-ef-bc-81/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e5-ae-87-e7-9e-bb-apacer-e7-9a-84-e5-ae-a2-e6-9c-8d-e7-b6-ad-e4-bf-ae-e6-9c-8d-e5-8b-99-e7-9c-9f-e6-98-af-e5-a5-bd-ef-bc-81/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e5-ae-87-e7-9e-bb-apacer-e7-9a-84-e5-ae-a2-e6-9c-8d-e7-b6-ad-e4-bf-ae-e6-9c-8d-e5-8b-99-e7-9c-9f-e6-98-af-e5-a5-bd-ef-bc-81/">宇瞻 Apacer 的客服/維修服務真是好!</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-10-01</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>剛剛電腦上的例行備份工作跳出警告,顯示無法寫入目標磁區,
|
||||
開檔案總管一看,代號還在,但是無法進入,顯示無法讀取。
|
||||
嘗試格式化,也發生錯誤,無法格式化,想說終保(應該吧)
|
||||
花個掛號費去換一張回來好了。
|
||||
所以我從NB內建的SD卡槽直接把SD卡抽出來,
|
||||
然後這張卡就在我抽出來的同時解體了!!….WTF !
|
||||
這張卡從買來就一直插在NB上,印象中沒有抽拔過幾次。
|
||||
沒想到這次拔出來要送修就整張解體 = =
|
||||
等等還是硬著頭皮送看看好了…..
|
||||
解體圖…<a href="http://www.flickr.com/photos/chang0206/9930290464/">http://www.flickr.com/photos/chang0206/9930290464/</a>
|
||||
<table style="width: 850px;" border="0" cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Dear Customer,</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Please be informed that below RMA goods were packed on 2013/9/30 and will be sent to you shortly.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>親愛的客戶您好:</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>您的RMA貨物已於 2013/9/30 備貨完畢,將於近日寄送給您.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></p>
|
||||
|
||||
<p>Apacer RMA Shipping Report Summary</p>
|
||||
|
||||
<p></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table style="width: 850px;" border="1" cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<div align="center">
|
||||
<table style="width: 100%;" border="0" cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<div align="center">
|
||||
<table style="width: 100%;" border="0" cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>RMA NO: XXXXXXXXXXXXXXXXXXX</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Customer: User 寄送</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Shipping Date: 2013/9/30</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div align="center">
|
||||
<table style="width: 100%;" border="1" cellspacing="0" cellpadding="0">
|
||||
<thead>
|
||||
<tr>
|
||||
<td rowspan="2" width="3%"></p>
|
||||
|
||||
<p>Item</p>
|
||||
|
||||
<p></td>
|
||||
<td colspan="2" width="38%"></p>
|
||||
|
||||
<p>Received</p>
|
||||
|
||||
<p></td>
|
||||
<td colspan="2" width="38%"></p>
|
||||
|
||||
<p>Shipping</p>
|
||||
|
||||
<p></td>
|
||||
<td rowspan="2" width="7%"></p>
|
||||
|
||||
<p>Qty</p>
|
||||
|
||||
<p></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="11%"></p>
|
||||
|
||||
<p>PN</p>
|
||||
|
||||
<p></td>
|
||||
<td width="16%"></p>
|
||||
|
||||
<p>Description</p>
|
||||
|
||||
<p></td>
|
||||
<td width="11%"></p>
|
||||
|
||||
<p>PN</p>
|
||||
|
||||
<p></td>
|
||||
<td width="16%"></p>
|
||||
|
||||
<p>Description</p>
|
||||
|
||||
<p></td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>1</td>
|
||||
<td>AP32GSDHC10-R</td>
|
||||
<td>SDHC Class10 32GB RP</td>
|
||||
<td>AP32GSDHC10-R</td>
|
||||
<td>SDHC Class10 32GB RP</td>
|
||||
<td>1</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Kind regards,</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Apacer Technology Inc.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>4F., No.32, Zhongcheng Rd., Tucheng Dist., New Taipei City 236, Taiwan (R.O.C.)</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,501 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> 尿尿發電 讓手機永遠都滿格 | My cool new Blog</title>
|
||||
<meta name="description" content="尿尿發電 讓手機永遠都滿格 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="尿尿發電 讓手機永遠都滿格">
|
||||
<meta itemprop="description" content="尿尿發電 讓手機永遠都滿格 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="尿尿發電 讓手機永遠都滿格">
|
||||
<meta property="og:description" content="尿尿發電 讓手機永遠都滿格 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e5-b0-bf-e5-b0-bf-e7-99-bc-e9-9b-bb-e8-ae-93-e6-89-8b-e6-a9-9f-e6-b0-b8-e9-81-a0-e9-83-bd-e6-bb-bf-e6-a0-bc/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e5-b0-bf-e5-b0-bf-e7-99-bc-e9-9b-bb-e8-ae-93-e6-89-8b-e6-a9-9f-e6-b0-b8-e9-81-a0-e9-83-bd-e6-bb-bf-e6-a0-bc/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e5-b0-bf-e5-b0-bf-e7-99-bc-e9-9b-bb-e8-ae-93-e6-89-8b-e6-a9-9f-e6-b0-b8-e9-81-a0-e9-83-bd-e6-bb-bf-e6-a0-bc/">尿尿發電 讓手機永遠都滿格</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2014-10-16</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p><table style="width: 100%;" border="0" cellspacing="3" cellpadding="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="76%">
|
||||
<div id="story_title" class="story_title">尿尿發電 讓手機永遠都滿格</div>
|
||||
<div id="bq"></div></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<table style="width: 100%;" border="0" cellspacing="3" cellpadding="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="130%"><img src="http://s.udn.com.tw/2010/images/linedot.gif" alt="" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table style="width: 100%;" border="0" cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class="story_author" width="75%">
|
||||
<div id="story_author">【經濟日報╱文/編譯余曉惠】</div></td>
|
||||
<td class="story_author" width="25%">
|
||||
<div id="story_update" align="right">2014.10.04 08:39 am</div></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="story_author"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top">
|
||||
<div id="story" class="story">
|
||||
<div>
|
||||
<table class="border" border="0" cellspacing="0" cellpadding="6" align="center">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="200">
|
||||
<div id="media_file" align="center"><img src="http://uc.udn.com.tw/NEWS/MEDIA/8977566-3567625.jpg?sn=14123813561993" alt="" /></div></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="photo_explanation"><span id="media_desc"><span id="media_desc_1">習慣小解完馬上沖水?別急!布里斯托機器人學實驗室(Bristol Robotics Laboratory,BRL)能把尿轉化成電力,幫手機充電。</span></span>
|
||||
<span id="media_producer_1"><span id="media_producer">圖/網路</span><a href="http://www.facebook.com/sharer.php?s=100&amp;p[images][0]=http://uc.udn.com.tw/NEWS/MEDIA/8977566-3567625.jpg?sn=14123813561993&amp;p[url]=http://udn.com/NEWS/WORLD/WOR4/8977566.shtml?ch=fb_share_photo&amp;p[summary]=%E7%BF%92%E6%85%A3%E5%B0%8F%E8%A7%A3%E5%AE%8C%E9%A6%AC%E4%B8%8A%E6%B2%96%E6%B0%B4%EF%BC%9F%E5%88%A5%E6%80%A5%EF%BC%81%E5%B8%83%E9%87%8C%E6%96%AF%E6%89%98%E6%A9%9F%E5%99%A8%E4%BA%BA%E5%AD%B8%E5%AF%A6%E9%A9%97%E5%AE%A4%EF%BC%88Bristol%20Robotics%20Laboratory%EF%BC%8CBRL%EF%BC%89%E8%83%BD%E6%8A%8A%E5%B0%BF%E8%BD%89%E5%8C%96%E6%88%90%E9%9B%BB%E5%8A%9B%EF%BC%8C%E5%B9%AB%E6%89%8B%E6%A9%9F%E5%85%85%E9%9B%BB%E3%80%82&amp;p[title]=%E5%B0%BF%E5%B0%BF%E7%99%BC%E9%9B%BB%20%E8%AE%93%E6%89%8B%E6%A9%9F%E6%B0%B8%E9%81%A0%E9%83%BD%E6%BB%BF%E6%A0%BC%20%7C%20%E5%9C%8B%E9%9A%9B%E8%90%AC%E8%B1%A1%20%7C%20%E5%85%A8%E7%90%83%E8%A7%80%E5%AF%9F%20%7C%20%E8%81%AF%E5%90%88%E6%96%B0%E8%81%9E%E7%B6%B2"><img src="http://s.udn.com.tw/2010MAIN/img/fb_share.png" alt="" /></a></span></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
習慣小解完馬上沖水?別急!布里斯托機器人學實驗室(Bristol Robotics Laboratory,BRL)能把尿轉化成電力,幫手機充電。</p>
|
||||
|
||||
<p>這個作法聽來有點荒唐,但在今年初由印度生技部和蓋茲基金會共同主辦的「廁所改造展」上,英國布里斯托大學和西英格蘭大學合組的BRL團隊,展示這種有特殊功能的小便斗。</p>
|
||||
|
||||
<p>布里斯托生物能源中心主任艾羅包洛斯(Yannis Ieropoulos)說:「原理很簡單,只要讓小便斗排水管直接通向微生物燃料電池(MFCs)就成了。不用幫浦,也不必準備什麼過濾網或細胞膜。」</p>
|
||||
|
||||
<p>艾羅包洛斯說,微生物燃料電池可以透過活生生的微生物體,把有機物質直接轉化為電力。</p>
|
||||
|
||||
<p>這種電力是微生物自然生命循環的的副產品,當他們吃下愈多尿液這種東西,就能產生愈多能量,提供更多電力。</p>
|
||||
|
||||
<p>目前全球每年可生產超過6兆公噸的尿液,代表發展成再生能源的商機很可觀。
|
||||
<div>
|
||||
<table class="border" border="0" cellspacing="0" cellpadding="6" align="center">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="200">
|
||||
<div id="media_file" align="center"><img src="http://uc.udn.com.tw/NEWS/MEDIA/8977566-3567621.jpg?sn=14123813561993" alt="" /></div></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="photo_explanation"><span id="media_desc"><span id="media_desc_1"><a href="http://uc.udn.com.tw/NEWS/MEDIA/8977566-3567623.jpg"><strong>點此看大圖。</strong></a> 圖/經濟日報提供</span></span>
|
||||
<span id="media_producer_1"><span id="media_producer"> </span><a href="http://www.facebook.com/sharer.php?s=100&amp;p[images][0]=http://uc.udn.com.tw/NEWS/MEDIA/8977566-3567621.jpg?sn=14123813561993&amp;p[url]=http://udn.com/NEWS/WORLD/WOR4/8977566.shtml?ch=fb_share_photo&amp;p[summary]=%E9%BB%9E%E6%AD%A4%E7%9C%8B%E5%A4%A7%E5%9C%96%E3%80%82%20%E5%9C%96%EF%BC%8F%E7%B6%93%E6%BF%9F%E6%97%A5%E5%A0%B1%E6%8F%90%E4%BE%9B&amp;p[title]=%E5%B0%BF%E5%B0%BF%E7%99%BC%E9%9B%BB%20%E8%AE%93%E6%89%8B%E6%A9%9F%E6%B0%B8%E9%81%A0%E9%83%BD%E6%BB%BF%E6%A0%BC%20%7C%20%E5%9C%8B%E9%9A%9B%E8%90%AC%E8%B1%A1%20%7C%20%E5%85%A8%E7%90%83%E8%A7%80%E5%AF%9F%20%7C%20%E8%81%AF%E5%90%88%E6%96%B0%E8%81%9E%E7%B6%B2"><img src="http://s.udn.com.tw/2010MAIN/img/fb_share.png" alt="" /></a></span></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
BRL團隊利用尿液發電的微生物燃料電池,已經可供智慧手機傳簡訊、短時間通話與瀏覽網頁。</p>
|
||||
|
||||
<p>艾羅包洛斯說:「打電話是手機最耗電的功能,但我們會努力提高發電量,延長使用時間。」</p>
|
||||
|
||||
<p>這個計畫已經獲得蓋茲基金會等機構投資,未來將應用在廁所不足、供電不穩的開發中國家。</p>
|
||||
|
||||
<p>BRL團隊還希望把這種「電力尿」(urine-tricity)推廣到富裕國家,只要把微生物燃料電池加裝在現成的廁所,就能發電。終極目標則是善用廢物來生產能源,同時改善環境衛生,提高人類的生活品質。
|
||||
<table class="border" border="0" cellspacing="0" cellpadding="6" align="right">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="200">
|
||||
<div id="media_file" align="center"><img src="http://uc.udn.com.tw/NEWS/MEDIA/8977566-3567626.jpg?sn=14123813561993" alt="" /></div></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="photo_explanation"><span id="media_desc"><span id="media_desc_1"> </span></span>
|
||||
<span id="media_producer_1"><span id="media_producer"> </span><a href="http://www.facebook.com/sharer.php?s=100&amp;p[images][0]=http://uc.udn.com.tw/NEWS/MEDIA/8977566-3567626.jpg?sn=14123813561993&amp;p[url]=http://udn.com/NEWS/WORLD/WOR4/8977566.shtml?ch=fb_share_photo&amp;p[summary]=%20&amp;p[title]=%E5%B0%BF%E5%B0%BF%E7%99%BC%E9%9B%BB%20%E8%AE%93%E6%89%8B%E6%A9%9F%E6%B0%B8%E9%81%A0%E9%83%BD%E6%BB%BF%E6%A0%BC%20%7C%20%E5%9C%8B%E9%9A%9B%E8%90%AC%E8%B1%A1%20%7C%20%E5%85%A8%E7%90%83%E8%A7%80%E5%AF%9F%20%7C%20%E8%81%AF%E5%90%88%E6%96%B0%E8%81%9E%E7%B6%B2"><img src="http://s.udn.com.tw/2010MAIN/img/fb_share.png" alt="" /></a></span></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
哥本哈根資訊科技大學(ITU)有一群科學家,也在研究如何把尿轉化成微生物燃料電池並發電,但不同之處在於,他們自己研發出名為「EVOBOT」的機器人,專門負責重複性高且耗時費力的實驗,用來證明初步研究結果的準確性。利用機器人做實驗,引發人類有朝一日被機器人取代的辯論,不過丹麥實驗室技術員協會(DALT)認為目前沒有這個問題。</p>
|
||||
|
||||
<p>協會主席巴恩韓森說,未來打算把EVOBOT送到率先研究微生物燃料電池的布里斯托大學,協助他們進行更多研究。</p>
|
||||
|
||||
<p></div></p>
|
||||
|
||||
<p><span id="source_name" class="story">【2014/10/04 經濟日報】</span><span class="author"><a href="http://udn.com/">@ </a><a href="http://udn.com/">http://udn.com/</a></span></p>
|
||||
|
||||
<p></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,397 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [影片]SONY作的NEX廣告,狠狠酸了現在很多拿DSLR的「專業」攝影師 | My cool new Blog</title>
|
||||
<meta name="description" content="[影片]SONY作的NEX廣告,狠狠酸了現在很多拿DSLR的「專業」攝影師 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[影片]SONY作的NEX廣告,狠狠酸了現在很多拿DSLR的「專業」攝影師">
|
||||
<meta itemprop="description" content="[影片]SONY作的NEX廣告,狠狠酸了現在很多拿DSLR的「專業」攝影師 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[影片]SONY作的NEX廣告,狠狠酸了現在很多拿DSLR的「專業」攝影師">
|
||||
<meta property="og:description" content="[影片]SONY作的NEX廣告,狠狠酸了現在很多拿DSLR的「專業」攝影師 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e5-bd-b1-e7-89-87sony-e4-bd-9c-e7-9a-84nex-e5-bb-a3-e5-91-8a-ef-bc-8c-e7-8b-a0-e7-8b-a0-e9-85-b8-e4-ba-86-e7-8f-be-e5-9c-a8-e5-be-88-e5-a4-9a-e6-8b-bfdslr-e7-9a-84-e3-80-8c-e5-b0-88-e6-a5-ad/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e5-bd-b1-e7-89-87sony-e4-bd-9c-e7-9a-84nex-e5-bb-a3-e5-91-8a-ef-bc-8c-e7-8b-a0-e7-8b-a0-e9-85-b8-e4-ba-86-e7-8f-be-e5-9c-a8-e5-be-88-e5-a4-9a-e6-8b-bfdslr-e7-9a-84-e3-80-8c-e5-b0-88-e6-a5-ad/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e5-bd-b1-e7-89-87sony-e4-bd-9c-e7-9a-84nex-e5-bb-a3-e5-91-8a-ef-bc-8c-e7-8b-a0-e7-8b-a0-e9-85-b8-e4-ba-86-e7-8f-be-e5-9c-a8-e5-be-88-e5-a4-9a-e6-8b-bfdslr-e7-9a-84-e3-80-8c-e5-b0-88-e6-a5-ad/">[影片]SONY作的NEX廣告,狠狠酸了現在很多拿DSLR的「專業」攝影師</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-04-02</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p><a href="http://www.youtube.com/watch?v=gW9alBidf3w">http://www.youtube.com/watch?v=gW9alBidf3w</a></p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,490 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [心得] ovo 電視盒 + VPN + 小米路由器 mini + PPTP | My cool new Blog</title>
|
||||
<meta name="description" content="[心得] ovo 電視盒 + VPN + 小米路由器 mini + PPTP - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[心得] ovo 電視盒 + VPN + 小米路由器 mini + PPTP">
|
||||
<meta itemprop="description" content="[心得] ovo 電視盒 + VPN + 小米路由器 mini + PPTP - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[心得] ovo 電視盒 + VPN + 小米路由器 mini + PPTP">
|
||||
<meta property="og:description" content="[心得] ovo 電視盒 + VPN + 小米路由器 mini + PPTP - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e5-bf-83-e5-be-97-ovo-e9-9b-bb-e8-a6-96-e7-9b-92-vpn-e5-b0-8f-e7-b1-b3-e8-b7-af-e7-94-b1-e5-99-a8-mini-pptp/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e5-bf-83-e5-be-97-ovo-e9-9b-bb-e8-a6-96-e7-9b-92-vpn-e5-b0-8f-e7-b1-b3-e8-b7-af-e7-94-b1-e5-99-a8-mini-pptp/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e5-bf-83-e5-be-97-ovo-e9-9b-bb-e8-a6-96-e7-9b-92-vpn-e5-b0-8f-e7-b1-b3-e8-b7-af-e7-94-b1-e5-99-a8-mini-pptp/">[心得] ovo 電視盒 + VPN + 小米路由器 mini + PPTP</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2015-03-12</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>老爸愛買東西的毛病又犯了,上網買了台 ovo的電視盒</p>
|
||||
|
||||
<p>在這種設備裡面, ovo 的東西算貴的,小米盒子 1400不到,就算 apple tv 也不過 2000不到</p>
|
||||
|
||||
<p>但是這台電視盒要價 2990 ,比 APPLE TV還貴!</p>
|
||||
|
||||
<p>他的特異功能,這邊就略過不提了,來講講實際操作時碰到的問題</p>
|
||||
|
||||
<p></p>
|
||||
|
||||
<p>1.原本我以為台灣自家出的設備,又是這種高價,說不定看影片可以不用像其他電視盒一樣去搞一堆囉哩八縮的 VPN/PROXY</p>
|
||||
|
||||
<p>事實證明,我想得太簡單了…</p>
|
||||
|
||||
<p>一開始在沒有特別去設定 VPN的情況下,我用家裡的中華電信雙向100M 去開兔子視頻裡面的我是歌手 3,居然出奇的流暢!</p>
|
||||
|
||||
<p>但是呢,雖然我已經選了高清(720P),但是畫面上看起來還是慘不忍睹…</p>
|
||||
|
||||
<p>試著用手機拍了一段影片如下</p>
|
||||
|
||||
<p><a href="https://www.flickr.com/photos/chang0206/16587146748/">https://www.flickr.com/photos/chang0206/16587146748/</a></p>
|
||||
|
||||
<p>可以看到快轉的速度很快,但是畫質很糟…</p>
|
||||
|
||||
<p>在ovo的論壇上發問,結果還被奚落..都說是片源的問題</p>
|
||||
|
||||
<p>但是我同時間用小米盒子透過 4G 線路去看一樣的片子,就不會有這種問題..</p>
|
||||
|
||||
<p>論壇上那些人都直接無視這種狀況…還要我去搞懂VPN做啥用….凸</p>
|
||||
|
||||
<p><a href="http://forum.ovomedia.tv/forum.php?mod=viewthread&tid=823&extra=page%3D1">http://forum.ovomedia.tv/forum.php?mod=viewthread&tid=823&extra=page%3D1</a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>2.裝好的第一個晚上,睡前我只關閉了電視的電源,機上盒、ovo電視盒的電源都沒關</p>
|
||||
|
||||
<p>隔天回來開電視卻發現電視有影像沒聲音,打給客服依照指示測試了一下</p>
|
||||
|
||||
<p>用APP播放有聲音、機上盒不透過OVO,直接接電視也OK,最後就機器重開、線重接,莫名其妙的好了..</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>3.既然播放還是不順,想說趁這個機會,來嘗試一下透過海外的VPS建立的 PPTP Server 來看大陸的影片好了</p>
|
||||
|
||||
<p>在 VPS 建立 PPTP 的部分就不說了,很多文章可以參考 (不建議 OPENVPN ,先弄個簡單的PPTP玩玩就好)</p>
|
||||
|
||||
<p>PPTP建立OK之後,分別用Win7 / iphone / android 去設定 PPTP VPN 測試連線成功,可是OVO 就是連不上!</p>
|
||||
|
||||
<p>所以我又去論壇發問了….</p>
|
||||
|
||||
<p><a href="http://forum.ovomedia.tv/forum.php?mod=viewthread&tid=833&extra=page%3D1">http://forum.ovomedia.tv/forum.php?mod=viewthread&tid=833&extra=page%3D1</a></p>
|
||||
|
||||
<p>這次回答的人似乎是官方的人? 總之就是這台機器的 PPTP 現在有問題,不能使用</p>
|
||||
|
||||
<p>論壇上有建議去安裝 穿越VPN (crossvpn) 但是我安裝好之後,雖然可以連上內建的VPN Server,可是影片都沒辦法看,而且連首頁都變得怪怪的。</p>
|
||||
|
||||
<p>一氣之下,就去google play 找了很多VPN Client,像是啥 vpnroot 之類的</p>
|
||||
|
||||
<p>在 android手機上測試會通,但是到了ovo 電視盒就是連不上</p>
|
||||
|
||||
<p>後來發現一個盲點,我手機有 root ….而很多VPN Client 都需要有root 權限才可以正常運作..</p>
|
||||
|
||||
<p>而不需要root 的VPN Client,又多半只是去呼叫系統內建的 PPTP ,可是這台的PPTP就有問題啊!</p>
|
||||
|
||||
<p>嘗試了好久,終於死心放棄,本來想說還是恢復原本的作法,透過 手機分享4G網路出來連線好了</p>
|
||||
|
||||
<p>後來想到前幾天剛好搶了第二台小米路由器 mini 進來</p>
|
||||
|
||||
<p>於是把第二台小米路由 mini 設定起來,從小烏龜的LAN拉一條網路線到 WAN 設定PPPOE,網路通了之後</p>
|
||||
|
||||
<p>在管理介面中就可以設定 L2TP/PPTP 了,輸入IP/ID/PASS,看到連線成功,事情終於告一段落………才怪!</p>
|
||||
|
||||
<p>不知道為何,這條PPTP的連線,沒幾分鐘就會斷線..</p>
|
||||
|
||||
<p>錯誤訊息是啥 message too long 的,這個在這兩天找VPN相關作法時有看到,要去修改server那邊的 mtu</p>
|
||||
|
||||
<p>參考這篇 <a href="http://blog.weiliang.org/linux/499.html">http://blog.weiliang.org/linux/499.html</a></p>
|
||||
|
||||
<p>去/etc/ppp/option.pptpd 最後一行加入 mtu 1356, service pptpd restart</p>
|
||||
|
||||
<p>小米路由上的 pptp 斷線重啟,ping 個五分鐘看看,好像是不會斷了..</p>
|
||||
|
||||
<p>再去 OVO 電視盒上,把無線改過來這台新的小米上,開兔子視頻出來,去找了個美劇 地球百子來看</p>
|
||||
|
||||
<p>終於可以用高清品質流暢的播放了!!! 感動啊!!!!</p>
|
||||
|
||||
<p>2015/03/15 update</p>
|
||||
|
||||
<p>推薦個 APP 叫酷TV 搭配這個方法 滿多影片都可以高清甚至超清播放!</p>
|
||||
|
||||
<p>不過也還是有很多美劇不能看 0rz</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,418 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [手機] Android 上的手機防盜軟體 Cerberus | My cool new Blog</title>
|
||||
<meta name="description" content="[手機] Android 上的手機防盜軟體 Cerberus - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[手機] Android 上的手機防盜軟體 Cerberus">
|
||||
<meta itemprop="description" content="[手機] Android 上的手機防盜軟體 Cerberus - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[手機] Android 上的手機防盜軟體 Cerberus">
|
||||
<meta property="og:description" content="[手機] Android 上的手機防盜軟體 Cerberus - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e6-89-8b-e6-a9-9f-android-e4-b8-8a-e7-9a-84-e6-89-8b-e6-a9-9f-e9-98-b2-e7-9b-9c-e8-bb-9f-e9-ab-94-cerberus/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e6-89-8b-e6-a9-9f-android-e4-b8-8a-e7-9a-84-e6-89-8b-e6-a9-9f-e9-98-b2-e7-9b-9c-e8-bb-9f-e9-ab-94-cerberus/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e6-89-8b-e6-a9-9f-android-e4-b8-8a-e7-9a-84-e6-89-8b-e6-a9-9f-e9-98-b2-e7-9b-9c-e8-bb-9f-e9-ab-94-cerberus/">[手機] Android 上的手機防盜軟體 Cerberus</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2015-05-15</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>今天早上解鎖手機的時候輸入錯誤,本來也沒想到啥</p>
|
||||
|
||||
<p>結果手機就收到 Cerberus 發出的兩封郵件</p>
|
||||
|
||||
<p></p>
|
||||
|
||||
<p>一封是解鎖錯誤當下,前鏡頭拍下的照片..</p>
|
||||
|
||||
<p>這部份礙於放照片上來有礙觀瞻,我就不放了 XD</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>另一份郵件會告知解鎖錯誤時,手機的所在位置..</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/05/2015-05-15_12-07-49.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/05/2015-05-15_12-07-49-1024x457.png" alt="2015-05-15_12-07-49" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>這軟體裝很久了,幾乎都忘記他的存在,不過目前看起來,還滿方便的啊!</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,449 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [抱怨]群暉的 Cloud Sync 設計邏輯真的是有夠....... | My cool new Blog</title>
|
||||
<meta name="description" content="[抱怨]群暉的 Cloud Sync 設計邏輯真的是有夠....... - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[抱怨]群暉的 Cloud Sync 設計邏輯真的是有夠.......">
|
||||
<meta itemprop="description" content="[抱怨]群暉的 Cloud Sync 設計邏輯真的是有夠....... - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[抱怨]群暉的 Cloud Sync 設計邏輯真的是有夠.......">
|
||||
<meta property="og:description" content="[抱怨]群暉的 Cloud Sync 設計邏輯真的是有夠....... - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e6-8a-b1-e6-80-a8-e7-be-a4-e6-9a-89-e7-9a-84-cloud-sync-e8-a8-ad-e8-a8-88-e9-82-8f-e8-bc-af-e7-9c-9f-e7-9a-84-e6-98-af-e6-9c-89-e5-a4-a0/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e6-8a-b1-e6-80-a8-e7-be-a4-e6-9a-89-e7-9a-84-cloud-sync-e8-a8-ad-e8-a8-88-e9-82-8f-e8-bc-af-e7-9c-9f-e7-9a-84-e6-98-af-e6-9c-89-e5-a4-a0/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e6-8a-b1-e6-80-a8-e7-be-a4-e6-9a-89-e7-9a-84-cloud-sync-e8-a8-ad-e8-a8-88-e9-82-8f-e8-bc-af-e7-9c-9f-e7-9a-84-e6-98-af-e6-9c-89-e5-a4-a0/">[抱怨]群暉的 Cloud Sync 設計邏輯真的是有夠.......</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2015-07-09</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>最近因為NAS檔案被USER誤刪,進而引發後續的資料備份、還原出錯的問題</p>
|
||||
|
||||
<p>想來測試一下把資料通通備份到Google Drive 減少這些錯誤</p>
|
||||
|
||||
<p>在群暉的NAS上,有出一個官方套件叫做 Cloud Sync ,可以將NAS上的資料備份到雲端空間上</p>
|
||||
|
||||
<p>這麼好用的工具,當然要拿來用啦!</p>
|
||||
|
||||
<p>興沖沖的安裝套件,開始設定,結果………</p>
|
||||
|
||||
<p></p>
|
||||
|
||||
<p>假設我的NAS底下,設定了10個共享目錄,分別叫做 AA/BB/CC…….</p>
|
||||
|
||||
<p>我先在Cloud Sync 內新增了一個同步 AA 目錄到 Google Drive 的工作</p>
|
||||
|
||||
<p>完成之後,我再次設定同步BB目錄到 Google Drive,就會發生錯誤</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/07/2015-07-09_12-04-16.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/07/2015-07-09_12-04-16-1024x541.png" alt="2015-07-09_12-04-16" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>想說是不是我不會用,打客服問問看專業的好了</p>
|
||||
|
||||
<p>p.s 這次等沒幾秒就被接起來了,不知道是運氣好,還是群暉客服電話人員有改善了</p>
|
||||
|
||||
<p>沒想到客服真的回答說:「目前沒有辦法一次同步所有資料夾到雲端,可能要請你先把這些資料夾都移到同一個目錄底下」…….</p>
|
||||
|
||||
<p>所以以我上面所提的狀況,我有十個資料夾要同步到不限容量的Google Drive 我就需要準備十個Google Drive 帳號!? WHAT THE HELL !??!?!?!? <img src="http://wp.cowbay.org/wp-content/plugins/wp-emoji-one/icons/1F631.png" alt="" /></p>
|
||||
|
||||
<p>真不知道群暉的人在設計這個功能時候,是怎麼想的!?</p>
|
||||
|
||||
<p>一台NAS只會開一個共享目錄,然後再從底下的子目錄去設定不同部門、人員的權限這樣?怎樣的公司會這樣做啊!!!!</p>
|
||||
|
||||
<p>正常當然是管理部有管理部的共享目錄,財務部有財務部的共享目錄才對啊!!</p>
|
||||
|
||||
<p>那依照這種正常的邏輯去設定出來的環境,反而不能使用官方開發出來的備份到雲端空間的套件一次全部備份!?</p>
|
||||
|
||||
<p>那如果我開了100個共享目錄,我不就要去生出100個google drive 的帳號來進行備份!?</p>
|
||||
|
||||
<p>拜託你們這些開發工程師,開發功能之前,可以好好想想看是不是真的符合一般人的需求嗎?!!?!?!?</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer">
|
||||
|
||||
|
||||
|
||||
<div class="tags">
|
||||
<i class="fa fa-tags"></i>
|
||||
<div class="links">
|
||||
|
||||
<a href="/tags/%E7%BE%A4%E6%9A%89">群暉</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,399 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [敗家] 【霹靂豹】矽分子塑料還原劑---舊車變新車的秘密武器 | My cool new Blog</title>
|
||||
<meta name="description" content="[敗家] 【霹靂豹】矽分子塑料還原劑---舊車變新車的秘密武器 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[敗家] 【霹靂豹】矽分子塑料還原劑---舊車變新車的秘密武器">
|
||||
<meta itemprop="description" content="[敗家] 【霹靂豹】矽分子塑料還原劑---舊車變新車的秘密武器 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[敗家] 【霹靂豹】矽分子塑料還原劑---舊車變新車的秘密武器">
|
||||
<meta property="og:description" content="[敗家] 【霹靂豹】矽分子塑料還原劑---舊車變新車的秘密武器 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e6-95-97-e5-ae-b6-e3-80-90-e9-9c-b9-e9-9d-82-e8-b1-b9-e3-80-91-e7-9f-bd-e5-88-86-e5-ad-90-e5-a1-91-e6-96-99-e9-82-84-e5-8e-9f-e5-8a-91-e8-88-8a-e8-bb-8a-e8-ae-8a-e6-96-b0-e8-bb-8a-e7-9a-84/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e6-95-97-e5-ae-b6-e3-80-90-e9-9c-b9-e9-9d-82-e8-b1-b9-e3-80-91-e7-9f-bd-e5-88-86-e5-ad-90-e5-a1-91-e6-96-99-e9-82-84-e5-8e-9f-e5-8a-91-e8-88-8a-e8-bb-8a-e8-ae-8a-e6-96-b0-e8-bb-8a-e7-9a-84/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e6-95-97-e5-ae-b6-e3-80-90-e9-9c-b9-e9-9d-82-e8-b1-b9-e3-80-91-e7-9f-bd-e5-88-86-e5-ad-90-e5-a1-91-e6-96-99-e9-82-84-e5-8e-9f-e5-8a-91-e8-88-8a-e8-bb-8a-e8-ae-8a-e6-96-b0-e8-bb-8a-e7-9a-84/">[敗家] 【霹靂豹】矽分子塑料還原劑---舊車變新車的秘密武器</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2014-03-18</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>【霹靂豹】矽分子塑料還原劑—舊車變新車的秘密武器
|
||||
<div>★新車V.S白化★永遠免換殼!!世界頂級塑膠車殼還原劑/白化/龜裂/抗UV/抗酸雨</div>
|
||||
<div>$199</div></p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,399 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [敗家] 小米路由器 Mini x 2 + 小米智能攝相機 夜視版 | My cool new Blog</title>
|
||||
<meta name="description" content="[敗家] 小米路由器 Mini x 2 + 小米智能攝相機 夜視版 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[敗家] 小米路由器 Mini x 2 + 小米智能攝相機 夜視版">
|
||||
<meta itemprop="description" content="[敗家] 小米路由器 Mini x 2 + 小米智能攝相機 夜視版 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[敗家] 小米路由器 Mini x 2 + 小米智能攝相機 夜視版">
|
||||
<meta property="og:description" content="[敗家] 小米路由器 Mini x 2 + 小米智能攝相機 夜視版 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e6-95-97-e5-ae-b6-e5-b0-8f-e7-b1-b3-e8-b7-af-e7-94-b1-e5-99-a8-mini-x-2-e5-b0-8f-e7-b1-b3-e6-99-ba-e8-83-bd-e6-94-9d-e7-9b-b8-e6-a9-9f-e5-a4-9c-e8-a6-96-e7-89-88/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e6-95-97-e5-ae-b6-e5-b0-8f-e7-b1-b3-e8-b7-af-e7-94-b1-e5-99-a8-mini-x-2-e5-b0-8f-e7-b1-b3-e6-99-ba-e8-83-bd-e6-94-9d-e7-9b-b8-e6-a9-9f-e5-a4-9c-e8-a6-96-e7-89-88/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e6-95-97-e5-ae-b6-e5-b0-8f-e7-b1-b3-e8-b7-af-e7-94-b1-e5-99-a8-mini-x-2-e5-b0-8f-e7-b1-b3-e6-99-ba-e8-83-bd-e6-94-9d-e7-9b-b8-e6-a9-9f-e5-a4-9c-e8-a6-96-e7-89-88/">[敗家] 小米路由器 Mini x 2 + 小米智能攝相機 夜視版</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2015-11-24</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>路由器 mini 打算作 wifi relay</p>
|
||||
|
||||
<p>智能攝相機就順便帶走的咩….</p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,403 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [敗家]有趣的東西,可以連接PC&MAC,用一組鍵盤滑鼠控制兩台電腦,支援傳檔、複製貼上 | My cool new Blog</title>
|
||||
<meta name="description" content="[敗家]有趣的東西,可以連接PC&MAC,用一組鍵盤滑鼠控制兩台電腦,支援傳檔、複製貼上 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[敗家]有趣的東西,可以連接PC&MAC,用一組鍵盤滑鼠控制兩台電腦,支援傳檔、複製貼上">
|
||||
<meta itemprop="description" content="[敗家]有趣的東西,可以連接PC&MAC,用一組鍵盤滑鼠控制兩台電腦,支援傳檔、複製貼上 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[敗家]有趣的東西,可以連接PC&MAC,用一組鍵盤滑鼠控制兩台電腦,支援傳檔、複製貼上">
|
||||
<meta property="og:description" content="[敗家]有趣的東西,可以連接PC&MAC,用一組鍵盤滑鼠控制兩台電腦,支援傳檔、複製貼上 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e6-95-97-e5-ae-b6-e6-9c-89-e8-b6-a3-e7-9a-84-e6-9d-b1-e8-a5-bf-ef-bc-8c-e5-8f-af-e4-bb-a5-e9-80-a3-e6-8e-a5pcmac-ef-bc-8c-e7-94-a8-e4-b8-80-e7-b5-84-e9-8d-b5-e7-9b-a4-e6-bb-91-e9-bc-a0-e6-8e-a7/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e6-95-97-e5-ae-b6-e6-9c-89-e8-b6-a3-e7-9a-84-e6-9d-b1-e8-a5-bf-ef-bc-8c-e5-8f-af-e4-bb-a5-e9-80-a3-e6-8e-a5pcmac-ef-bc-8c-e7-94-a8-e4-b8-80-e7-b5-84-e9-8d-b5-e7-9b-a4-e6-bb-91-e9-bc-a0-e6-8e-a7/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e6-95-97-e5-ae-b6-e6-9c-89-e8-b6-a3-e7-9a-84-e6-9d-b1-e8-a5-bf-ef-bc-8c-e5-8f-af-e4-bb-a5-e9-80-a3-e6-8e-a5pcmac-ef-bc-8c-e7-94-a8-e4-b8-80-e7-b5-84-e9-8d-b5-e7-9b-a4-e6-bb-91-e9-bc-a0-e6-8e-a7/">[敗家]有趣的東西,可以連接PC&MAC,用一組鍵盤滑鼠控制兩台電腦,支援傳檔、複製貼上</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-04-03</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/3c%E7%B2%BE%E5%93%81">3C精品</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>雖然我桌上一台MAC 一台 NB</p>
|
||||
|
||||
<p>不過用MAC的時間也不多,就暫時不考慮了…<img src="http://www.cowbay.org/wp-content/plugins/ultimate-tinymce/addons/emotions/img/popobig/boss.png" alt="Big Boss" title="Big Boss" /></p>
|
||||
|
||||
<p><a href="http://www.youtube.com/watch?v=5zN0mAcgVic">http://www.youtube.com/watch?v=5zN0mAcgVic</a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,399 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [敗家] 超多功能的薄外套 | My cool new Blog</title>
|
||||
<meta name="description" content="[敗家] 超多功能的薄外套 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[敗家] 超多功能的薄外套">
|
||||
<meta itemprop="description" content="[敗家] 超多功能的薄外套 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[敗家] 超多功能的薄外套">
|
||||
<meta property="og:description" content="[敗家] 超多功能的薄外套 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e6-95-97-e5-ae-b6-e8-b6-85-e5-a4-9a-e5-8a-9f-e8-83-bd-e7-9a-84-e8-96-84-e5-a4-96-e5-a5-97/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e6-95-97-e5-ae-b6-e8-b6-85-e5-a4-9a-e5-8a-9f-e8-83-bd-e7-9a-84-e8-96-84-e5-a4-96-e5-a5-97/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e6-95-97-e5-ae-b6-e8-b6-85-e5-a4-9a-e5-8a-9f-e8-83-bd-e7-9a-84-e8-96-84-e5-a4-96-e5-a5-97/">[敗家] 超多功能的薄外套</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2015-09-10</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>做個筆記,反正應該買不起….要一百七八十美金….</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/09/2015-09-10_13-33-45.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/09/2015-09-10_13-33-45.png" alt="2015-09-10_13-33-45" /></a></p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,488 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [敗家] FreeNas Mini | My cool new Blog</title>
|
||||
<meta name="description" content="[敗家] FreeNas Mini - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[敗家] FreeNas Mini">
|
||||
<meta itemprop="description" content="[敗家] FreeNas Mini - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[敗家] FreeNas Mini">
|
||||
<meta property="og:description" content="[敗家] FreeNas Mini - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e6-95-97-e5-ae-b6-freenas-mini/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e6-95-97-e5-ae-b6-freenas-mini/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e6-95-97-e5-ae-b6-freenas-mini/">[敗家] FreeNas Mini</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2014-03-19</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<p>今天在PTT看到鄉民推文說到這個東西</p>
|
||||
|
||||
<p>查了一下,頗有趣的! 空機大概1000 美金左右~</p>
|
||||
|
||||
<h4 id="freenas-mini-specifications">FreeNAS Mini Specifications</h4>
|
||||
|
||||
<table>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Model</td>
|
||||
<td>FreeNAS® Mini</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Case</td>
|
||||
<td>4-Bay Enclosure w/ Locking Front Bezel - Super Quiet Design (<50db w/ WD Red Drives)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Maximum Capacity</td>
|
||||
<td>Up to 16TB depending on RAID layout.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>CPU</td>
|
||||
<td>8-Core 2.4GHz Intel Processor with AES-NI (Low Power)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Memory</td>
|
||||
<td>16GB DDR3 with ECC standard, 32GB upgrade optional</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>RAID Level</td>
|
||||
<td>RAID-Z (RAID 5), ZFS Mirror (RAID 10), ZFS Stripe</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>RAID Engine</td>
|
||||
<td>ZFS</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Network</td>
|
||||
<td>2 x 10/100/1000 Gigabit Ethernet Port
|
||||
Dedicated RJ-45 IPMI Port (Remote Hardware Management)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Hard Drive Trays</td>
|
||||
<td>4 x SATA 3.5” Hot-Swappable Drive Bays
|
||||
2 x SATA 2.5" Internal Drive Bays</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Power Supply</td>
|
||||
<td>100V to 240V AC</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Power Frequency</td>
|
||||
<td>50/60 HZ, Single Phase</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Power Consumption</td>
|
||||
<td>Without Drives: 24W idle
|
||||
With 4 x WD Red NAS Drives: 37W idle; 47W @ max load</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>User Control Interface</td>
|
||||
<td>Web Browser and Remote Hardware Management</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Dimension (in.)</td>
|
||||
<td>9.45" W x 8.27 " D x 9.45" H (240 x 210 x 240mm)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Weight (lb)</td>
|
||||
<td>10.8lb (without drives)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Certifications</td>
|
||||
<td>CE, FCC, UL, RoHS</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Limited Warranty</td>
|
||||
<td>1 Year</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Package Contents</td>
|
||||
<td>FreeNAS Mini (1)
|
||||
Power Cord (1)
|
||||
Quick Start Guide (1)
|
||||
Case Door Key (2)
|
||||
Removable Disk Tray (4)
|
||||
Goodies! (?)</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,634 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [時事] 黑心油商 強冠 下游廠商明細 | My cool new Blog</title>
|
||||
<meta name="description" content="[時事] 黑心油商 強冠 下游廠商明細 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[時事] 黑心油商 強冠 下游廠商明細">
|
||||
<meta itemprop="description" content="[時事] 黑心油商 強冠 下游廠商明細 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[時事] 黑心油商 強冠 下游廠商明細">
|
||||
<meta property="og:description" content="[時事] 黑心油商 強冠 下游廠商明細 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e6-99-82-e4-ba-8b-e9-bb-91-e5-bf-83-e6-b2-b9-e5-95-86-e5-bc-b7-e5-86-a0-e4-b8-8b-e6-b8-b8-e5-bb-a0-e5-95-86-e6-98-8e-e7-b4-b0/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e6-99-82-e4-ba-8b-e9-bb-91-e5-bf-83-e6-b2-b9-e5-95-86-e5-bc-b7-e5-86-a0-e4-b8-8b-e6-b8-b8-e5-bb-a0-e5-95-86-e6-98-8e-e7-b4-b0/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e6-99-82-e4-ba-8b-e9-bb-91-e5-bf-83-e6-b2-b9-e5-95-86-e5-bc-b7-e5-86-a0-e4-b8-8b-e6-b8-b8-e5-bb-a0-e5-95-86-e6-98-8e-e7-b4-b0/">[時事] 黑心油商 強冠 下游廠商明細</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2014-09-05</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>8 M1526 合記10 台中市大里市愛心一街20號04-24062757
|
||||
14 M1617 榮華行20 台中市大里區仁化路310巷9號04-24922552
|
||||
11 M1588 英辰121 台中市大里區化工19路6號04-24919666
|
||||
17 M1634 順發商行25 台中市北屯區豐樂路11-1號04-24220129
|
||||
15 M1630 這一鍋餐飲191 台中市西屯區工業區32路51號04-36093100
|
||||
10 M1587 青海行20 台中市西屯區光明路52號04-24521699
|
||||
16 M1633 大謹發農產50 台中市沙鹿區福至路150巷10-1號04-26625943
|
||||
12 M1593 美食達人229 台中市南屯區工業區23路30號04-36091465
|
||||
1 M1057 忠興524 台中市南屯路2段162巷1號04-24753818
|
||||
9 M1569 宏茆83 台中市烏日區環中路七段221~223號04-23363030
|
||||
5 M1211 品欣食品450 台中市神岡區中山路228號04-25240698
|
||||
226 T1214 盛香珍491 台中市梧棲區自強一街146號042-6352711
|
||||
13 M1612 立晟食品51 台中市潭子區中山路三段491號04-25317979
|
||||
2 M1060 吉星30 台中縣大甲鎮信義路44號04-26884381
|
||||
19 M1955 麥可利40 台中縣神岡鄉社口街10巷10號04-25633579
|
||||
233 T2001 味王345 台北市中山北路二段79號5樓022-5717271-517
|
||||
89 N3400 皇品3 台北市內湖區內湖路一段203巷11號02-27971305
|
||||
230 T1377 工研4611 台北市信義區忠孝東路四段559巷38號2樓04-2407-8114
|
||||
95 N3485 美加源10 台北市龍江路356巷68號1樓02-25153071
|
||||
78 N3009 佛晨453 台北市龍江路429巷8號1樓02-25024707
|
||||
182 S3472 家華178 台東市中華路一段227號089-343780
|
||||
183 S3474 三能100 台東市四維路一段512號089-353589
|
||||
192 S3577 叢林之屋1 台東市光明路158號089-322268
|
||||
187 S3496 優品20 台東市康樂路3號 08-9356520
|
||||
181 S3466 明德75 台東市傳廣路369號089-336266
|
||||
188 S3498 成典164 台東市豐谷北路73號089-333595
|
||||
214 S4196 銘勝200 台南市中西區樹林街2段6號06-2132877
|
||||
202 S4032 滋味珍37 台南市中華西路一段103號 06-2614186#247
|
||||
213 S4189 糧元130 台南市中華東路2段208號06-2349696
|
||||
106 S1608 林太太60 台南市中華東路2段226巷47號928551393
|
||||
217 S4227 旺來鄉40 台南市仁德區仁德里中山路797號1樓06-2498701
|
||||
147 S2711 台糖3 台南市仁德區田厝村文華路2段326號0921-220788
|
||||
216 S4212 大東233 台南市永康區大橋3街52號06-2022955
|
||||
209 S4149 唐明1009 台南市永康區大灣路187號06-2712590
|
||||
204 S4068 美而美600 台南市安平工業區新平路7-1號06-2970033
|
||||
199 S4022 正裕650 台南市西門路一段368號 06-2633687
|
||||
198 S4021 慶泰260 台南市西區府前路2段220號2220227
|
||||
105 S1605 陳清田30 台南市佳里區延平路215號956098177
|
||||
218 S4233 金德108 台南市府安路5段144巷3號06-2595359
|
||||
220 S4278 久芳113 台南市東山區聖賢里頂窩68號06-6328479
|
||||
203 S4039 長安農產300 台南市長溪路3段380巷100一1號06-2552553
|
||||
197 S4012 信益2748 台南市長榮路五段419號2515206
|
||||
200 S4029 永豐4 台南市南區賢南街51號 06-2911031
|
||||
210 S4161 永昌50 台南市崇學路203巷2號06-2377115
|
||||
208 S4137 品味軒40 台南市麻豆區苓子林16號0937-<sup>362155</sup>⁄<sub>06</sub>- 5700007
|
||||
215 S4204 葉忠誠500 台南市善化區什乃里18-22號06-5837253
|
||||
219 S4267 五花馬900 台南市新化區大智路(竹子腳)200號0918-804046
|
||||
224 T1060 協和30 台南市新化區大新路18號06-5982783
|
||||
211 S4173 好帝一926 台南市新市區大營里豐榮160號06-5994665</p>
|
||||
|
||||
<p>196 S4007 姚錫銘20 台南市新建路53巷4號06-2634602
|
||||
212 S4186 永全190 台南市歸仁區七甲里南丁路401號06-2394503
|
||||
206 S4084 祥發50 台南縣佳里鎮忠孝路217號06-7225687
|
||||
201 S4031 元茂55 台南縣麻豆鎮興南路181號06-5726447
|
||||
195 S4002 金泰70 台南縣新營市三民路119號06-6324623
|
||||
207 S4089 楊記80 台南縣新營市民生路420巷29號 06-6572250
|
||||
205 S4076 豐泉580 台南縣關廟鄉深坑村南雄路一段395號06-5957632
|
||||
93 N3447 日升行100 宜蘭市力行街力行巷27-5號03-9322182
|
||||
85 N3347 津展403 宜蘭市延平路39-8號03-9380555
|
||||
97 N3496 天送埤230 宜蘭縣三星鄉三星路七段305號03-9892960
|
||||
82 N3343 裕順116 宜蘭縣五結鄉五結路三段438號03-9605500
|
||||
94 N3476 福客來50 宜蘭縣員山鄉永同路一段183號937535355
|
||||
86 N3356 宏陽300 宜蘭縣羅東鎮興東路243巷22號03-9542430
|
||||
87 N3368 大永進70 宜蘭縣蘇澳鎮中原路85號03-9962264
|
||||
83 N3344 本居立125 花蓮市中華路219號03-8360784
|
||||
98 N3506 丰禾興156 花蓮市中華路296-2號03-8323436
|
||||
90 N3403 龍丸20 花蓮市吉安鄉民治路90號03-8527715
|
||||
91 N3426 順興102 花蓮市進豐街32號03-8324014
|
||||
84 N3345 相正400 花蓮縣吉安鄉和平路一段138號03-8460087
|
||||
20 M1972 金懋豐200 南投縣埔里鎮中正路890號049-2982780
|
||||
3 M1089 信通行41 南投縣草屯鎮太平路2段60號04-92318369
|
||||
4 M1096 凰淋209 南投縣草屯鎮東山路自強巷16號04-92550031
|
||||
151 S3011 順記20 屏東市大埔柳州街10-1號08-7323955
|
||||
152 S3012 四海35 屏東市民生路180-5號7335595
|
||||
164 S3147 清香57 屏東市自立南路18號7534738
|
||||
155 S3025 啟順50 屏東市和生路三段606號08-7237896
|
||||
157 S3049 義豐90 屏東市和生路三段850號08-7558809
|
||||
158 S3063 鴻發50 屏東市前進里崁頂路1之27號08-7551568
|
||||
156 S3044 陳啟宗5 屏東市頂柳路261巷5號7524989
|
||||
194 S3587 鄭師父8 屏東市復興南路1段202號 0957-786288
|
||||
153 S3015 隆達100 屏東市萬丹鄉萬丹路三段263號08-7522602
|
||||
150 S3005 豐茂40 屏東市福州街56號 08-7323573
|
||||
189 S3500 裕軒32 屏東市廣東路398號08-7374759
|
||||
172 S3310 正通179 屏東市興豐路174號7384176
|
||||
175 S3443 簡炎輝333 屏東市龍榮里(路)555號7516687
|
||||
193 S3578 饌師父30 屏東縣九如鄉光復街287號08-7390424
|
||||
222 T1053 陸仕297 屏東縣內埔鄉北寧路二段88號08-7799701
|
||||
173 S3320 慶祥700 屏東縣東港鎮延平路180號 08-8328783
|
||||
169 S3208 成珍香1 屏東縣東港鎮東隆街30號08-8322078
|
||||
174 S3429 永祥90 屏東縣東港鎮信義街16號8324531
|
||||
190 S3505 劉文通50 屏東縣東港鎮興漁里順漁路65巷1弄1號0955-817978
|
||||
162 S3123 瑞豐137 屏東縣長治鄉繁華村中正路11號 08-7626469
|
||||
154 S3023 新益成573 屏東縣屏東市民生路79-4號7229696
|
||||
170 S3235 迎裕50 屏東縣崁頂鄉園寮村南州路5巷9號08-8646389
|
||||
168 S3204 順成4 屏東縣新園鄉共和村中正路105號 08-8331378
|
||||
167 S3203 富統2 屏東縣萬丹鄉泉順街439巷37號(08)777-2747
|
||||
191 S3558 沈正雄30 屏東縣萬丹鄉萬丹路一段262號 08-7760049
|
||||
166 S3201 陳聰吉53 屏東縣萬丹鄉萬心路1222號08-7776574
|
||||
160 S3107 泰昌488 屏東縣潮州鎮四維路73號08-7883203
|
||||
161 S3110 佳新540 屏東縣潮州鎮光春路138號08-7883369
|
||||
159 S3087 建泰10 屏東縣潮州鎮西市路13一1號(08)7882240</p>
|
||||
|
||||
<p>165 S3159 裕軒240 屏東縣潮洲鎮太平路473號08-7887835
|
||||
163 S3124 大芳230 屏東縣潮洲鎮南京路153號 08-7892555
|
||||
47 N1180 苗林59 苗栗市復興路一段488-1號037-329557
|
||||
57 N1362 日祥40 苗栗縣大園鄉三民路二段490號03-3838779
|
||||
61 N1414 松發35 苗栗縣平新一路191號03-7752023
|
||||
58 N1367 洋茂40 苗栗縣後龍鎮三民路114號037-722331
|
||||
60 N1404 日富318 苗栗縣後龍鎮厝勝路202-8號037-720768
|
||||
59 N1368 盈芳25 苗栗縣苑裡鎮社苓里110-11號037-743615
|
||||
40 N1028 天隆10 苗栗縣頭份鎮中華路641號037-672622
|
||||
54 N1331 合泰1073 苗栗縣頭份鎮東興路32號037-663549
|
||||
53 N1313 和泰60 桃園市八德市廣福路132號03-3613870
|
||||
104 N4105 阿里八八10 桃園市力行路16號03-3314251
|
||||
52 N1296 參發20 桃園市民生路622號03-3382396
|
||||
39 N1021 昇陽170 桃園市長春路15號03-3343376
|
||||
45 N1149 宗益10 桃園市新生路60號03-3322589
|
||||
67 N2290 良晟1 桃園縣八德市永豐路236巷12號03-3712121
|
||||
49 N1213 總和50 桃園縣八德市富榮街36巷2號03-2181336
|
||||
43 N1121 崇禮10 桃園縣八德鄉高銘村高成九街7號03-3716274
|
||||
56 N1358 紅?子6 桃園縣中壢市民權路三段334巷46號03-4278984
|
||||
62 N1473 南洋55 桃園縣中壢市新生路798-3號03-4922175
|
||||
42 N1101 台益3738 桃園縣平鎮市新富街8號03-4598521
|
||||
44 N1131 萬昌18 桃園縣平鎮市環南路66巷18弄24號03-4924558
|
||||
63 N1474 銳陽50 桃園縣楊梅市永美路2號03-4641530
|
||||
46 N1166 台威115 桃園縣龜山鄉東萬壽路311巷2號03-3291111
|
||||
144 S2605 旺來發60 高雄市三民區八德二路158巷86-1號3753588
|
||||
148 S2715 百康80 高雄市三民區同德里孝順街70號1樓7312833
|
||||
135 S2574 雅芳85 高雄市三民區昌裕街198號3832807
|
||||
143 S2604 佃彥110 高雄市三民區鼎昌街693巷10號07-3475588
|
||||
113 S2160 耕新50 高雄市三民區褒揚街337號07-3845303
|
||||
136 S2582 永大210 高雄市三民區遼寧二街224號07-3216975
|
||||
138 S2593 進益25 高雄市三民區灣興街40號3827408
|
||||
229 T1375 欣冠33 高雄市大寮區大發工業區利民街30號07-7888099
|
||||
112 S2158 大直20 高雄市大寮區正心路390巷212號07-7877182
|
||||
145 S2674 盛祿隆3 高雄市大寮區過溝里濃公路256巷41號7872226
|
||||
234 T2048 員工266 高雄市大寮區鳳屏一路808號
|
||||
185 S3481 余峰瑞16 高雄市大寮區濃公路256巷53號7880080
|
||||
146 S2710 巨霖12 高雄市小港區台機路10號 07-8065236
|
||||
149 S2862 味橋180 高雄市仁武區鳳仁路2巷10-23號07-3714125
|
||||
109 S2083 協成80 高雄市左營區左營下路264號07-5815879
|
||||
107 S2031 東穎50 高雄市左營區左營大路345巷9號07-5821538
|
||||
186 S3487 銘冠400 高雄市左營區自由4路399號3598977
|
||||
126 S2427 聖華185 高雄市左營區埤仔頭街71號07-5824295
|
||||
140 S2598 旺來興博愛42 高雄市左營區博愛三路466號07-3453355
|
||||
124 S2311 永春珠20 高雄市岡山區阿公店路2段210號07-6256612
|
||||
125 S2312 大聯95 高雄市岡山區柳橋西路13號(07)6251111
|
||||
121 S2304 瑞昇70 高雄市岡山區華園路26號07-6213304
|
||||
122 S2305 大慶成145 高雄市岡山區維新路58號07-6212945
|
||||
178 S3453 振亨60 高雄市林園區文賢南路124巷6號6423635
|
||||
184 S3476 良品20 高雄市林園區鳳林路2段728號6466999
|
||||
120 S2257 華岑35 高雄市阿蓮區信義路256號07-6310880
|
||||
134 S2572 旺來昌110 高雄市前鎮區公正路181號07-7135345
|
||||
180 S3455 簡坤柱170 高雄市前鎮區崗山中街85之1號7616879
|
||||
111 S2141 金利華2950 高雄市前鎮區新大路5號07-8111166
|
||||
132 S2567 信利85 高雄市前鎮區憲德市場巷28號7710727
|
||||
133 S2569 世昌18 高雄市前鎮區擴建路1一35號8111587
|
||||
177 S3452 信鴻150 高雄市前鎮區鎮海三街8號7536000
|
||||
179 S3454 順生600 高雄市苓雅區尚武路42號7882667
|
||||
142 S2602 億源50 高雄市苓雅區輜汽北二路23號7235288
|
||||
137 S2584 旺來興240 高雄市鳥松區本管路151號07-3702223
|
||||
131 S2555 大直970 高雄市鳥松區松埔北巷58號07-7354699
|
||||
223 T1055 奇美320 高雄市湖內區公館里中山路二段51號07-6993901
|
||||
130 S2554 老鄉40 高雄市新興區東海街24一1號2267798
|
||||
114 S2164 啟旺110 高雄市新興區球庭路23號1樓07-2919318
|
||||
108 S2040 泰田35 高雄市楠梓區又昌和光街31號07-3642915
|
||||
119 S2215 有味珍4 高雄市楠梓區中泰街29號07-3619616
|
||||
128 S2534 錦美85 高雄市楠梓區東街95巷5號 07-3511282
|
||||
118 S2214 劉文芳100 高雄市楠梓區後勁中街108巷4號07-3623885
|
||||
232 T1395 味全1390 高雄市路竹區中山南路51號07-6962453#400
|
||||
123 S2308 程清森270 高雄市路竹區中山路586巷6-1號07-6964348
|
||||
139 S2594 旺來興明誠35 高雄市鼓山區明誠三路461號 07-5505991
|
||||
117 S2211 松記680 高雄市鼓山區篤敬路35號6樓之1 07-5883481
|
||||
231 T1383 台灣欣榮210 高雄市旗山區三協里磚廠巷16號07-6625848
|
||||
129 S2543 聯豐270 高雄市鳳山區南華路151-1號07-7158823
|
||||
228 T1283 吳記70 高雄市鳳山區新興里光遠路284-1號07-7331519
|
||||
116 S2189 冠塘1 高雄市鳳山區過埤路51巷12-2號07-7923024
|
||||
176 S3448 永隆興175 高雄市鳳山區鳳仁路92-10號7467463
|
||||
171 S3309 建和4 高雄市鳳屏二路258號6512136
|
||||
127 S2506 祥有味45 高雄市燕巢區安北路283-1號6166247
|
||||
141 S2601 又達70 高雄縣鳳山市過埤里255鳳頂路142號
|
||||
92 N3443 公道伯5 基隆市七堵區百五街64巷16號02-24527113
|
||||
96 N3488 李鵠812 基隆市仁三路90號02-24223007
|
||||
80 N3166 油蔥1468 基隆市西定路139號02-2428-2527
|
||||
101 N3553 佳良90 基隆市暖暖區興隆街10-1號02-24585208
|
||||
81 N3303 嘉美170 基隆市豐捻街130號02-24621963
|
||||
221 T1043 品高16 雲林縣斗六市中南路290巷10-2號05-5518011
|
||||
26 M2133 慶豐金100 雲林縣斗六市興南街19號05-5323670
|
||||
28 M2211 宗泰60 雲林縣北港鎮文昌路140號05-7833992
|
||||
38 M2957 金元寶150 雲林縣虎尾鎮浀頭里13-8號938651950
|
||||
33 M2536 佳慶583 雲林縣麥寮鄉後安村19-6號05-6935977
|
||||
227 T1262 亞士家14 雲林縣莿桐鄉大美路21-10號05-5850150
|
||||
76 N2507 太魯閣20 新北市三重區中正北路193巷41號02-29848554
|
||||
102 N3554 殷成10 新北市三重區永安北路二段131-1號02-22828203
|
||||
103 N3575 廣?香60 新北市三重區長壽街1-5號02-29759998
|
||||
77 N2538 竹間2 新北市三重區重新路2段92號02-29785222
|
||||
225 T1071 憶霖135 新北市三重區重新路五段317巷1弄14號02-9953660
|
||||
70 N2384 芳春30 新北市土城區仁愛路22號02-22659977
|
||||
66 N2237 黑龍江185 新北市中和區忠孝街101巷13號1樓02-29456978
|
||||
73 N2456 天頌30 新北市中和區莊敬路24號02-22428662
|
||||
74 N2461 巧紳1259 新北市中和區景平路632號02-22483856
|
||||
65 N2187 欣財40 新北市中和區福美街301巷29號02-22486140
|
||||
68 N2365 明泰213 新北市中和區興南路一段125號02-29451202
|
||||
71 N2403 大家發57 新北市板橋區三民路一段101號02-89539211</p>
|
||||
|
||||
<p>69 N2374 齊魯301 新北市泰山區同義街96-2號02-22960050
|
||||
88 N3381 福新20 新北市淡水鎮北投子1-2號02-86315243
|
||||
64 N2019 味都167 新北市新莊區雙鳳路107號6樓02-29064536
|
||||
79 N3021 員購130 新北市樹林區西俊街2段135巷2-7號02-26800708
|
||||
72 N2424 趙明堂450 新北市鶯歌區德昌二街70巷34弄4號1樓02-26788869
|
||||
51 N1245 品皓260 新竹市平和街33號03-5261249
|
||||
41 N1029 信昌110 新竹市竹東鎮林森路64號03-5969711
|
||||
50 N1236 日丰202 新竹市西濱路三段250號03-5306110
|
||||
48 N1199 福記10 新竹縣竹北市中華路692號03-5552510
|
||||
55 N1342 永興150 新竹縣竹東鎮自強路82號03-5515141
|
||||
99 N3547 黑金饌1 新莊區五權一路70-1號02-22988223
|
||||
100 N3550 林振昌1 新莊區民安西路24巷6弄8號928464368
|
||||
75 N2505 福利1 新莊區後港一路76巷10弄8號02-22042085
|
||||
24 M2101 陳忠8 嘉義市大同路12號05-2856529
|
||||
22 M2069 達成100 嘉義市福松里民族路593號1F 05-2222072
|
||||
25 M2107 嘉益180 嘉義市劉厝路251號05-2360449
|
||||
32 M2535 新寶珍10 嘉義縣六腳鄉蒜頭村77-28號05-3802203
|
||||
21 M2064 宋國雄350 嘉義縣太保市啤麻腳32號05-2381090
|
||||
27 M2159 合信10 嘉義縣民雄鄉福興村牛稠溪121號1樓05-2201476
|
||||
23 M2095 九龍80 嘉義縣新港鄉南港村甲地22號05-7811885
|
||||
30 M2516 九龍14 彰化市大埔路345-1號04-7126609
|
||||
36 M2924 東榮5 彰化市旭光路297號04-7274159
|
||||
7 M1312 億全170 彰化市英士路37號04-7112903
|
||||
35 M2923 基發150 彰化市華山路76號04-7295398
|
||||
34 M2555 肉圓生1 彰化縣北斗鎮中華路192號04-8871349
|
||||
29 M2513 上泓70 彰化縣永靖鄉中山路三段181-11號04-8232147
|
||||
18 M1928 永明90 彰化縣和美鎮彰草路2段120-8號04-7619348
|
||||
37 M2930 自柳24 彰化縣員林鎮靜修路1-12號04-8322852
|
||||
6 M1309 原料徐168 彰化縣埔心鄉中正路一段23號04-8295046
|
||||
31 M2521 玉珍齋45 彰化縣鹿港鎮中山路168號04-7777688
|
||||
115 S2180 黃順治140 澎湖縣馬公市林森路63號06-9279323
|
||||
110 S2089 洪清政85 澎湖縣馬公市陽明路31號06-9276157
|
||||
235 T6102 樂金90 新北市五股工業區五工六路15號2樓02-2299-6192</p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,413 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [書籍]紅色覺醒 & 金色同盟 | My cool new Blog</title>
|
||||
<meta name="description" content="[書籍]紅色覺醒 & 金色同盟 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[書籍]紅色覺醒 & 金色同盟">
|
||||
<meta itemprop="description" content="[書籍]紅色覺醒 & 金色同盟 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[書籍]紅色覺醒 & 金色同盟">
|
||||
<meta property="og:description" content="[書籍]紅色覺醒 & 金色同盟 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e6-9b-b8-e7-b1-8d-e7-b4-85-e8-89-b2-e8-a6-ba-e9-86-92-e9-87-91-e8-89-b2-e5-90-8c-e7-9b-9f/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e6-9b-b8-e7-b1-8d-e7-b4-85-e8-89-b2-e8-a6-ba-e9-86-92-e9-87-91-e8-89-b2-e5-90-8c-e7-9b-9f/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e6-9b-b8-e7-b1-8d-e7-b4-85-e8-89-b2-e8-a6-ba-e9-86-92-e9-87-91-e8-89-b2-e5-90-8c-e7-9b-9f/">[書籍]紅色覺醒 & 金色同盟</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2015-12-21</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>推薦指數:★★★★★★★★★★ (滿分!)</p>
|
||||
|
||||
<p>在不透露劇情的前提下要推薦這本書還挺困難的!</p>
|
||||
|
||||
<p>總之就是劇情高潮迭起~緊張刺激~</p>
|
||||
|
||||
<p>大概跟血歌差不多等級!</p>
|
||||
|
||||
<p>不過說真的,血歌的第三部曲真的有弱掉的感覺</p>
|
||||
|
||||
<p>不過紅色覺醒和金色同盟這兩本看下來,沒有這種問題!</p>
|
||||
|
||||
<p>雖然主角練功等級有點快 <img src="http://wp.cowbay.org/wp-content/plugins/wp-emoji-one/icons/1F602.png" alt="" />,而且沒啥香豔刺激的情節</p>
|
||||
|
||||
<p>不過書中各勢力的爾虞我詐、衝突鬥爭真的是很不錯!這點比血歌要好很多很多~</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,476 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> 正夯的一些照片....18禁 | My cool new Blog</title>
|
||||
<meta name="description" content="正夯的一些照片....18禁 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="正夯的一些照片....18禁">
|
||||
<meta itemprop="description" content="正夯的一些照片....18禁 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="正夯的一些照片....18禁">
|
||||
<meta property="og:description" content="正夯的一些照片....18禁 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e6-ad-a3-e5-a4-af-e7-9a-84-e4-b8-80-e4-ba-9b-e7-85-a7-e7-89-87-18-e7-a6-81/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e6-ad-a3-e5-a4-af-e7-9a-84-e4-b8-80-e4-ba-9b-e7-85-a7-e7-89-87-18-e7-a6-81/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e6-ad-a3-e5-a4-af-e7-9a-84-e4-b8-80-e4-ba-9b-e7-85-a7-e7-89-87-18-e7-a6-81/">正夯的一些照片....18禁</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2014-09-01</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>(1)<a href="https://i.imgur.com/Y7HUX0v.png">https://i.imgur.com/Y7HUX0v.png</a>
|
||||
(2)<a href="https://i.imgur.com/xj8Emskl.jpg">https://i.imgur.com/xj8Emskl.jpg</a>
|
||||
(3)<a href="https://i.imgur.com/dyxoGhY.jpg">https://i.imgur.com/dyxoGhY.jpg</a>
|
||||
(4)<a href="http://imgur.com/7qZFkv8">http://imgur.com/7qZFkv8</a>
|
||||
(5)<a href="http://imgur.com/UwNeCNE">http://imgur.com/UwNeCNE</a>
|
||||
(6)<a href="https://i.imgur.com/DrCSLfO.jpg">https://i.imgur.com/DrCSLfO.jpg</a>
|
||||
(7)<a href="https://i.imgur.com/0FYuynM.jpg">https://i.imgur.com/0FYuynM.jpg</a>
|
||||
(8)<a href="https://i.imgur.com/wDjdwGM.jpg">https://i.imgur.com/wDjdwGM.jpg</a>
|
||||
(9)<a href="https://i.imgur.com/gWF94YI.jpg">https://i.imgur.com/gWF94YI.jpg</a>
|
||||
(10)<a href="https://i.imgur.com/8KpcQyw.jpg">https://i.imgur.com/8KpcQyw.jpg</a>
|
||||
(11)<a href="https://i.imgur.com/X3EVqlc.jpg">https://i.imgur.com/X3EVqlc.jpg</a>
|
||||
(12)<a href="https://i.imgur.com/SJ77XYA.jpg">https://i.imgur.com/SJ77XYA.jpg</a>
|
||||
(13)<a href="https://i.imgur.com/bOMtA4J.jpg">https://i.imgur.com/bOMtA4J.jpg</a>
|
||||
(14)<a href="https://i.imgur.com/n6JUCi3.jpg">https://i.imgur.com/n6JUCi3.jpg</a>
|
||||
(15)<a href="https://i.imgur.com/yjez7nq.jpg">https://i.imgur.com/yjez7nq.jpg</a>
|
||||
(16)<a href="http://i.4cdn.org/b/1409549810769.jpg">http://i.4cdn.org/b/1409549810769.jpg</a>
|
||||
(17)<a href="https://i.imgur.com/lv4xd3R.jpg">https://i.imgur.com/lv4xd3R.jpg</a> (4chan is teasing everyone with this slow progress)
|
||||
Kaley Cuoco
|
||||
(1)<a href="https://i.imgur.com/5YTElcN.png">https://i.imgur.com/5YTElcN.png</a>
|
||||
(2)<a href="http://imgur.com/GAZvyyv">http://imgur.com/GAZvyyv</a> (super duper not-fake at all pic)
|
||||
(2)<a href="http://i.4cdn.org/b/1409543949597.jpg">http://i.4cdn.org/b/1409543949597.jpg</a> *(a lot of people tell me it’s fake, but people got crazy when I took it down).
|
||||
(3)<a href="https://i.4cdn.org/b/1409542521585.webm">https://i.4cdn.org/b/1409542521585.webm</a> (gif)
|
||||
Kate Upton:
|
||||
(1)<a href="https://i.imgur.com/uhfwYp5.jpg">https://i.imgur.com/uhfwYp5.jpg</a>
|
||||
(2)<a href="https://i.imgur.com/A0x0LiL.png">https://i.imgur.com/A0x0LiL.png</a>
|
||||
(3)<a href="http://i.4cdn.org/b/1409531789722.jpg">http://i.4cdn.org/b/1409531789722.jpg</a>
|
||||
(4) <a href="http://imgur.com/a/VVXGQ">http://imgur.com/a/VVXGQ</a> (Big Album, some random pics in there)
|
||||
(6)<a href="http://www26.zippyshare.com/v/85491038/file.html">http://www26.zippyshare.com/v/85491038/file.html</a> (Videos) (Kate talking in first video, mostly random stuff)
|
||||
(7)Kate Upton archive including videos
|
||||
Victoria Justice:
|
||||
(1)<a href="https://i.imgur.com/oAJbeud.jpg">https://i.imgur.com/oAJbeud.jpg</a>
|
||||
(2)<a href="https://i.imgur.com/UGc8jyp.jpg">https://i.imgur.com/UGc8jyp.jpg</a>
|
||||
(3)<a href="http://s.imgur.com/a/maBQ5/zip">http://s.imgur.com/a/maBQ5/zip</a> (zip file)
|
||||
(4)<a href="https://i.imgur.com/2Xwc4pl.jpg">https://i.imgur.com/2Xwc4pl.jpg</a> (sorry guys, it’s fake)
|
||||
Lea Michele:
|
||||
(1)<a href="https://i.imgur.com/rOCu45A.jpg">https://i.imgur.com/rOCu45A.jpg</a>
|
||||
Ariana Grande:
|
||||
(1)<a href="http://imgur.com/a/v8KMz">http://imgur.com/a/v8KMz</a> (album) (probably fake as well)
|
||||
(2)<a href="http://imgur.com/BwJiDIg">http://imgur.com/BwJiDIg</a> (it’s fake, but people wanted it back for some reason)
|
||||
Brie Larson:
|
||||
(1)<a href="https://i.imgur.com/lNfRdz9.jpg">https://i.imgur.com/lNfRdz9.jpg</a>
|
||||
(2)<a href="https://i.imgur.com/58XtDh6.jpg">https://i.imgur.com/58XtDh6.jpg</a>
|
||||
(3)<a href="https://i.imgur.com/Zk6RSRP.jpg">https://i.imgur.com/Zk6RSRP.jpg</a>
|
||||
(4)<a href="https://i.imgur.com/IfQoCTz.jpg">https://i.imgur.com/IfQoCTz.jpg</a>
|
||||
(5)<a href="https://i.imgur.com/geBDadi.jpg">https://i.imgur.com/geBDadi.jpg</a>
|
||||
(6)<a href="http://imgur.com/a/Vqbkw">http://imgur.com/a/Vqbkw</a> (Complete album)
|
||||
Kristen Dunst:
|
||||
(1)<a href="http://imgur.com/a/7hhXe">http://imgur.com/a/7hhXe</a> (album)
|
||||
(2)<a href="http://imgur.com/a/mDr1Q">http://imgur.com/a/mDr1Q</a> (album)
|
||||
Becca Tobin:
|
||||
(1)<a href="http://imgur.com/iOKAgMn">http://imgur.com/iOKAgMn</a>
|
||||
(2)<a href="https://i.imgur.com/j7a39a1.jpg">https://i.imgur.com/j7a39a1.jpg</a>
|
||||
(3)<a href="https://i.imgur.com/iOKAgMn.jpg">https://i.imgur.com/iOKAgMn.jpg</a>
|
||||
(4)<a href="https://i.imgur.com/8JDpulX.jpg">https://i.imgur.com/8JDpulX.jpg</a>
|
||||
(5)<a href="https://i.imgur.com/7FAnUOh.jpg">https://i.imgur.com/7FAnUOh.jpg</a>
|
||||
Jessica Brown Findlay:
|
||||
(1) <a href="https://i.imgur.com/hFuYYik.jpg">https://i.imgur.com/hFuYYik.jpg</a>
|
||||
(2)<a href="https://mediacru.sh/1kTX0cLukqGJ">https://mediacru.sh/1kTX0cLukqGJ</a> (video)
|
||||
(3)<a href="https://mediacru.sh/irb1NDIA_tyo">https://mediacru.sh/irb1NDIA_tyo</a> (video)
|
||||
(4)<a href="http://webcache.googleusercontent.com/search?q=cache:1gC5Xk5fuKsJ:https://vid.me/XM8+&cd=1&hl=en&ct=clnk&gl=us">http://webcache.googleusercontent.com/search?q=cache:1gC5Xk5fuKsJ:https://vid.me/XM8+&cd=1&hl=en&ct=clnk&gl=us</a> (video)
|
||||
Hope Solo:
|
||||
(1)<a href="https://i.imgur.com/LsbBcOO.jpg">https://i.imgur.com/LsbBcOO.jpg</a>
|
||||
Teresa Palmer:
|
||||
(1)<a href="https://i.imgur.com/o2stBEj.jpg">https://i.imgur.com/o2stBEj.jpg</a>
|
||||
(2)<a href="https://i.imgur.com/CdfBGyn.jpg">https://i.imgur.com/CdfBGyn.jpg</a>
|
||||
(3)<a href="http://imgur.com/a/qTOyn">http://imgur.com/a/qTOyn</a> (album)
|
||||
Kristen Ritter
|
||||
(1)<a href="https://i.imgur.com/No2hWrNl.jpg">https://i.imgur.com/No2hWrNl.jpg</a>
|
||||
(2)<a href="http://m.imgur.com/a/EYcpS">http://m.imgur.com/a/EYcpS</a>
|
||||
Mary Elizabeth Winstead
|
||||
(1)<a href="http://imgur.com/a/egWwF">http://imgur.com/a/egWwF</a> (album)
|
||||
McKayla Maroney:
|
||||
(1)<a href="https://i.imgur.com/qlpX7HF.jpg">https://i.imgur.com/qlpX7HF.jpg</a>
|
||||
(2)<a href="https://i.imgur.com/K8DdHzQ.jpg">https://i.imgur.com/K8DdHzQ.jpg</a>
|
||||
Ali Michael:
|
||||
(1)<a href="http://imgur.com/a/dFUK3">http://imgur.com/a/dFUK3</a> (album)
|
||||
(2)<a href="http://s.imgur.com/a/SWQHw#0">http://s.imgur.com/a/SWQHw#0</a> (bigger album)
|
||||
(3)<a href="http://www.gfycat.com/DenseBlandFinnishspitz">http://www.gfycat.com/DenseBlandFinnishspitz</a> (GIF)
|
||||
(4)<a href="http://www.gfycat.com/ConfusedWholeHairstreak">http://www.gfycat.com/ConfusedWholeHairstreak</a> (GIF)
|
||||
(5)<a href="http://www.gfycat.com/PresentBaggyAfricanjacana">http://www.gfycat.com/PresentBaggyAfricanjacana</a> (GIF)</p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,397 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [每日一字] cunt | My cool new Blog</title>
|
||||
<meta name="description" content="[每日一字] cunt - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[每日一字] cunt">
|
||||
<meta itemprop="description" content="[每日一字] cunt - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[每日一字] cunt">
|
||||
<meta property="og:description" content="[每日一字] cunt - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e6-af-8f-e6-97-a5-e4-b8-80-e5-ad-97-cunt/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e6-af-8f-e6-97-a5-e4-b8-80-e5-ad-97-cunt/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e6-af-8f-e6-97-a5-e4-b8-80-e5-ad-97-cunt/">[每日一字] cunt</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2016-07-11</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2016/07/2016-07-11_13-16-42.jpg"><img src="http://wp.cowbay.org/wp-content/uploads/2016/07/2016-07-11_13-16-42-1024x598.jpg" alt="2016-07-11_13-16-42" /></a></p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,399 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [測試] NSX AutoPoser Plugin test | My cool new Blog</title>
|
||||
<meta name="description" content="[測試] NSX AutoPoser Plugin test - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[測試] NSX AutoPoser Plugin test">
|
||||
<meta itemprop="description" content="[測試] NSX AutoPoser Plugin test - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[測試] NSX AutoPoser Plugin test">
|
||||
<meta property="og:description" content="[測試] NSX AutoPoser Plugin test - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e6-b8-ac-e8-a9-a6-nsx-autoposer-plugin-test/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e6-b8-ac-e8-a9-a6-nsx-autoposer-plugin-test/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e6-b8-ac-e8-a9-a6-nsx-autoposer-plugin-test/">[測試] NSX AutoPoser Plugin test</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2016-03-08</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>test</p>
|
||||
|
||||
<p>[video width=“516” height=“230” mp4=“<a href="http://wp.cowbay.org/wp-content/uploads/2015/12/2015-11-30_09-36-43.mp4"][/video">http://wp.cowbay.org/wp-content/uploads/2015/12/2015-11-30_09-36-43.mp4"][/video</a>]</p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,475 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [測試] WordPress中14个实用的函数 | My cool new Blog</title>
|
||||
<meta name="description" content="[測試] WordPress中14个实用的函数 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[測試] WordPress中14个实用的函数">
|
||||
<meta itemprop="description" content="[測試] WordPress中14个实用的函数 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[測試] WordPress中14个实用的函数">
|
||||
<meta property="og:description" content="[測試] WordPress中14个实用的函数 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e6-b8-ac-e8-a9-a6-wordpress-e4-b8-ad14-e4-b8-aa-e5-ae-9e-e7-94-a8-e7-9a-84-e5-87-bd-e6-95-b0/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e6-b8-ac-e8-a9-a6-wordpress-e4-b8-ad14-e4-b8-aa-e5-ae-9e-e7-94-a8-e7-9a-84-e5-87-bd-e6-95-b0/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e6-b8-ac-e8-a9-a6-wordpress-e4-b8-ad14-e4-b8-aa-e5-ae-9e-e7-94-a8-e7-9a-84-e5-87-bd-e6-95-b0/">[測試] WordPress中14个实用的函数</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2016-01-06</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="post-info"><span class="avatar"></span> <span class="date">2011年9月29日15:50</span> <span class="author">作者:否子戈</span> <span class="comment">[0条评论](http://www.utubon.com/post/341.html#respond)</span> <span class="view">阅读966次 </span></div>
|
||||
<div class="post-opt"><span class="categories">分类:[WordPress内核](http://www.utubon.com/category/wpcore)</span></div>
|
||||
<div class="article-content">
|
||||
<div id="article-top-ad"></div>
|
||||
<div class="clear"></div>
|
||||
**WordPress临时API**
|
||||
<pre>set_transient(), get_transient(), delete_transient()</pre>
|
||||
这个函数类似 于用于存储检索选项数据库表单的get_options()以及update_options()函数。 他们的主要区别在于,你可以给这个临时API函数传递一个时间参数,作为数据库输入的过期日。当参数显示的时间到达之后,输入会被移除。如果你需要缓存数 据或查询某个短期时间内的结果,这会是个相当有用的函数。
|
||||
|
||||
set_transient的参数:
|
||||
<pre>set_transient($transient, $value, $expiration);</pre>
|
||||
将某个值保留在数据库中一小时:
|
||||
<pre>set_transient('the_name', $special_query_results, 60*60);</pre>
|
||||
结果值:
|
||||
<pre>$value = get_transient('the_name');</pre>
|
||||
**WordPress “定时任务”函数**
|
||||
<pre>wp_schedule_event(time(),?'hourly',?'my_schedule_hook');</pre>
|
||||
如果你需要定时执行某段代码,像是检查RSS订阅、数据库备份或是重设数据库值等,就可以用到这个函数。[这里](http://themocracy.com/2010/02/wp-cron-automating-scheduling/)有一个关于这个函数的英文教程。
|
||||
|
||||
**WordPress HTTP API**
|
||||
<pre>wp_remote_get(?$url,?$args?=?array()?);</pre>
|
||||
这是个用于检索网页内容的简单函数。函数把检索结果存储在一个数组里。你不仅可以得到网页的结果内容,还可以获取网页的页头信息和相应代码。
|
||||
|
||||
**轻松获取RSS 订阅**
|
||||
<pre>$feed?=?fetch_feed(?$uri?);</pre>
|
||||
fetch_feed是一个用来获取订阅内容的简单WordPress函数。这个函数可以检索、分析并自动缓存订阅内容。
|
||||
|
||||
**WordPress邮件函数**
|
||||
<pre>wp_mail() wp_mail(?$to,?$subject,?$message,?$headers,?$attachments?);</pre>
|
||||
示例:
|
||||
<pre>Example:
|
||||
$to = 'kriesi@gmail.com';
|
||||
$subject = 'Hello Kriesi!';
|
||||
$message = 'This message was sent by wordpress'
|
||||
$mail = wp_mail($to, $subject, $message);
|
||||
if($mail) echo 'Mail delivered';</pre>
|
||||
相当简单实用的函数,利用这个函数你可以发送页头信息和附件、普通文本、HTML信息以及其他各种选项。
|
||||
|
||||
**计时函数**
|
||||
<pre>human_time_diff( $from, $to )</pre>
|
||||
这个函数显示出的时间效果不是普通的时间格式,而是“XXX发布于XXX小时前”这样。
|
||||
|
||||
**WordPress get_comments函数**
|
||||
<pre>get_comments()</pre>
|
||||
在评论循环外检索评论内容。
|
||||
|
||||
**字符串验证**
|
||||
<pre>wp_kses($string, $allowed_html, $allowed_protocols);</pre>
|
||||
如果你需要过滤不受信任的用户输入内容,wp_kses会是个很实用的函数。这个函数确保$string中只出现经许可的HTML元素名称、属性和属性值以及正常的HTML实体。
|
||||
|
||||
**WordPress文本转换**
|
||||
<pre>wptexturize()</pre>
|
||||
这个函数把常用的字符串转换成印刷时采用的正确符号,比如破折号、省略号等,有时也会为某些段落加上排版引号。
|
||||
<pre>wpautop()</pre>
|
||||
给字符串添加<p>标签
|
||||
|
||||
**WordPress短码API**
|
||||
<pre>add_shortcode(), do_shortcode()</pre>
|
||||
add_shortcode()可以快速为你的日志内容创建宏。假设你希望把日志里的某些内容包围在一个div块里,并且加上若干类和id,让你可以创建多个内容栏。你可以用HTML编辑器进行编辑,然后输入下面的内容:
|
||||
<pre><div class='one_third'>内容</div></pre>
|
||||
**用PHP函数生成WordPress日志**
|
||||
<pre>wp_insert_post()</pre>
|
||||
这个函数在数据库中插入文章页面和自定义文章类型。它会过滤变量并执行检查,补充日期/时间等缺失变量。如果用户可以通过你的网站前台提交内容,这个函数会相当有帮助。
|
||||
|
||||
**用PHP函数生成WordPress评论**
|
||||
<pre>wp_insert_comment()</pre>
|
||||
和wp_insert_posts类似,不过wp_insert_comment插入的是评论。
|
||||
|
||||
**WordPress对象缓存**
|
||||
<pre>wp_cache_add(),? wp_cache_set(),? wp_cache_get(),? wp_cache_delete, wp_cache_replace(), wp_cache_flush</pre>
|
||||
WP_Object_Cache是WordPress中用以缓存数据的类。
|
||||
|
||||
**禁止执行WordPress任务**
|
||||
<pre>wp_die()</pre>
|
||||
wp_die终止WordPress运行,显示HTML错误信息。
|
||||
|
||||
这个函数与PHP函数die()互为补充。HTML信息显示给用户。推荐仅在进程不能再继续时才使用该函数。
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,407 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [瑪奇]累等終於也有破萬的一天! | My cool new Blog</title>
|
||||
<meta name="description" content="[瑪奇]累等終於也有破萬的一天! - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[瑪奇]累等終於也有破萬的一天!">
|
||||
<meta itemprop="description" content="[瑪奇]累等終於也有破萬的一天! - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[瑪奇]累等終於也有破萬的一天!">
|
||||
<meta property="og:description" content="[瑪奇]累等終於也有破萬的一天! - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e7-91-aa-e5-a5-87-e7-b4-af-e7-ad-89-e7-b5-82-e6-96-bc-e4-b9-9f-e6-9c-89-e7-a0-b4-e8-90-ac-e7-9a-84-e4-b8-80-e5-a4-a9-ef-bc-81/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e7-91-aa-e5-a5-87-e7-b4-af-e7-ad-89-e7-b5-82-e6-96-bc-e4-b9-9f-e6-9c-89-e7-a0-b4-e8-90-ac-e7-9a-84-e4-b8-80-e5-a4-a9-ef-bc-81/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e7-91-aa-e5-a5-87-e7-b4-af-e7-ad-89-e7-b5-82-e6-96-bc-e4-b9-9f-e6-9c-89-e7-a0-b4-e8-90-ac-e7-9a-84-e4-b8-80-e5-a4-a9-ef-bc-81/">[瑪奇]累等終於也有破萬的一天!</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-03-21</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E7%91%AA%E5%A5%87">瑪奇</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>瑪奇開到現在應該是第八年了吧?</p>
|
||||
|
||||
<p>中間因為被盜帳號停了一年多快兩年,還是因為幽的關係又回來了。</p>
|
||||
|
||||
<p>回來之後多了影任,練等速度比起以前快上非常多..</p>
|
||||
|
||||
<p>總之..就是簡單做個紀念而已…</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><a href="http://www.cowbay.org/wp-content/uploads/2013/03/mabinogi_2013_03_19_001.jpg"><img src="http://www.cowbay.org/wp-content/uploads/2013/03/mabinogi_2013_03_19_001-1024x603.jpg" alt="mabinogi_2013_03_19_001" /></a></p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,409 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [瑪奇] NT $99的4G 娜歐隨身碟 | My cool new Blog</title>
|
||||
<meta name="description" content="[瑪奇] NT $99的4G 娜歐隨身碟 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[瑪奇] NT $99的4G 娜歐隨身碟">
|
||||
<meta itemprop="description" content="[瑪奇] NT $99的4G 娜歐隨身碟 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[瑪奇] NT $99的4G 娜歐隨身碟">
|
||||
<meta property="og:description" content="[瑪奇] NT $99的4G 娜歐隨身碟 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e7-91-aa-e5-a5-87-nt-99-e7-9a-844g-e5-a8-9c-e6-ad-90-e9-9a-a8-e8-ba-ab-e7-a2-9f/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e7-91-aa-e5-a5-87-nt-99-e7-9a-844g-e5-a8-9c-e6-ad-90-e9-9a-a8-e8-ba-ab-e7-a2-9f/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e7-91-aa-e5-a5-87-nt-99-e7-9a-844g-e5-a8-9c-e6-ad-90-e9-9a-a8-e8-ba-ab-e7-a2-9f/">[瑪奇] NT $99的4G 娜歐隨身碟</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-03-29</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E7%91%AA%E5%A5%87">瑪奇</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>前幾天在PTT板上看到有鄉民介紹廠商在清之前的庫存,娜歐隨身碟一支只要 $99 !</p>
|
||||
|
||||
<p>雖然沒有用到,不過還是順手就買了一支當作紀念!<img src="http://www.cowbay.org/wp-content/plugins/ultimate-tinymce/addons/emotions/img/popobig/big_smile.png" alt="Big Smile" title="Big Smile" /></p>
|
||||
|
||||
<p>底下是簡單幾張圖片,這東西也不必寫什麼說明了吧..</p>
|
||||
|
||||
<p>隨身碟本身做得滿粗糙的,沒啥質感,圖樣也只是一般的平板印刷。總之,去掉娜歐不看的話,就是個便宜到掉在路上大概也沒人會撿的隨身碟..<img src="http://www.cowbay.org/wp-content/plugins/ultimate-tinymce/addons/emotions/img/popobig/boss.png" alt="Big Boss" title="Big Boss" /></p>
|
||||
|
||||
<p><img src="http://www.cowbay.org/wp-content/gallery/nao_flash/img_0093.jpg" alt="img_0093" /></p>
|
||||
|
||||
<p><img src="http://www.cowbay.org/wp-content/gallery/nao_flash/img_0095.jpg" alt="img_0095" /></p>
|
||||
|
||||
<p><img src="http://www.cowbay.org/wp-content/gallery/nao_flash/img_0096.jpg" alt="img_0096" /></p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,401 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [碎碎念] 坐在報馬仔附近實在是很雖小的一件事 | My cool new Blog</title>
|
||||
<meta name="description" content="[碎碎念] 坐在報馬仔附近實在是很雖小的一件事 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[碎碎念] 坐在報馬仔附近實在是很雖小的一件事">
|
||||
<meta itemprop="description" content="[碎碎念] 坐在報馬仔附近實在是很雖小的一件事 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[碎碎念] 坐在報馬仔附近實在是很雖小的一件事">
|
||||
<meta property="og:description" content="[碎碎念] 坐在報馬仔附近實在是很雖小的一件事 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e7-a2-8e-e7-a2-8e-e5-bf-b5-e5-9d-90-e5-9c-a8-e5-a0-b1-e9-a6-ac-e4-bb-94-e9-99-84-e8-bf-91-e5-af-a6-e5-9c-a8-e6-98-af-e5-be-88-e9-9b-96-e5-b0-8f-e7-9a-84-e4-b8-80-e4-bb-b6-e4-ba-8b/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e7-a2-8e-e7-a2-8e-e5-bf-b5-e5-9d-90-e5-9c-a8-e5-a0-b1-e9-a6-ac-e4-bb-94-e9-99-84-e8-bf-91-e5-af-a6-e5-9c-a8-e6-98-af-e5-be-88-e9-9b-96-e5-b0-8f-e7-9a-84-e4-b8-80-e4-bb-b6-e4-ba-8b/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e7-a2-8e-e7-a2-8e-e5-bf-b5-e5-9d-90-e5-9c-a8-e5-a0-b1-e9-a6-ac-e4-bb-94-e9-99-84-e8-bf-91-e5-af-a6-e5-9c-a8-e6-98-af-e5-be-88-e9-9b-96-e5-b0-8f-e7-9a-84-e4-b8-80-e4-bb-b6-e4-ba-8b/">[碎碎念] 坐在報馬仔附近實在是很雖小的一件事</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-03-18</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>虧兩句業助小妹妹就被念</p>
|
||||
|
||||
<p>對公司政策抱怨兩句馬上被約談</p>
|
||||
|
||||
<p><a href="http://www.cowbay.org/wp-content/uploads/2013/03/幹.png"><img src="http://www.cowbay.org/wp-content/uploads/2013/03/幹-300x256.png" alt="幹" /></a></p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,418 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [碎碎念]精神不好的時候,不要砍檔或重灌OS... | My cool new Blog</title>
|
||||
<meta name="description" content="[碎碎念]精神不好的時候,不要砍檔或重灌OS... - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[碎碎念]精神不好的時候,不要砍檔或重灌OS...">
|
||||
<meta itemprop="description" content="[碎碎念]精神不好的時候,不要砍檔或重灌OS... - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[碎碎念]精神不好的時候,不要砍檔或重灌OS...">
|
||||
<meta property="og:description" content="[碎碎念]精神不好的時候,不要砍檔或重灌OS... - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e7-a2-8e-e7-a2-8e-e5-bf-b5-e7-b2-be-e7-a5-9e-e4-b8-8d-e5-a5-bd-e7-9a-84-e6-99-82-e5-80-99-ef-bc-8c-e4-b8-8d-e8-a6-81-e7-a0-8d-e6-aa-94-e6-88-96-e9-87-8d-e7-81-8cos/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e7-a2-8e-e7-a2-8e-e5-bf-b5-e7-b2-be-e7-a5-9e-e4-b8-8d-e5-a5-bd-e7-9a-84-e6-99-82-e5-80-99-ef-bc-8c-e4-b8-8d-e8-a6-81-e7-a0-8d-e6-aa-94-e6-88-96-e9-87-8d-e7-81-8cos/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e7-a2-8e-e7-a2-8e-e5-bf-b5-e7-b2-be-e7-a5-9e-e4-b8-8d-e5-a5-bd-e7-9a-84-e6-99-82-e5-80-99-ef-bc-8c-e4-b8-8d-e8-a6-81-e7-a0-8d-e6-aa-94-e6-88-96-e9-87-8d-e7-81-8cos/">[碎碎念]精神不好的時候,不要砍檔或重灌OS...</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-03-11</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/blog">BLOG</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>本來BLOG放得好好的,雖然偶爾要重開,但是一直都沒出什麼大問題。</p>
|
||||
|
||||
<p>今天為了要測試postfix 的Virtual Mail Box,雖然在公司內的VM跑起來了。</p>
|
||||
|
||||
<p>但是畢竟沒有實際把MX給指進來,沒有真的運作,感覺不踏實。</p>
|
||||
|
||||
<p>所以把DB先備份起來,接著就去VPS的Control Panel 給Reinstall了……</p>
|
||||
|
||||
<p></p>
|
||||
|
||||
<p>But …… WTF !!</p>
|
||||
|
||||
<p>我忘了要備份系統檔案啊!!啊只有DB File,雖然文章內容都在,但是圖片都沒了啊!!!(翻桌</p>
|
||||
|
||||
<p>總之,現在就是一個全新的WP這樣,本來有把DB倒回來,但是沒有圖片,一堆叉燒包,難看死了。</p>
|
||||
|
||||
<p>暫時先換新的布景試試看吧。</p>
|
||||
|
||||
<p>至於舊的文章和圖片,看看家裡電腦會不會有那麼一瞇瞇機會有留備份下來…..</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>update:家裡電腦也沒備份了….看來勢必要整個重來…順便研究一下看怎麼樣可以自動備份,把檔案丟去dropbox…</p>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,451 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [筆記] ASP在檔案中找出特定的文字,在之後寫入新的字串 | My cool new Blog</title>
|
||||
<meta name="description" content="[筆記] ASP在檔案中找出特定的文字,在之後寫入新的字串 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[筆記] ASP在檔案中找出特定的文字,在之後寫入新的字串">
|
||||
<meta itemprop="description" content="[筆記] ASP在檔案中找出特定的文字,在之後寫入新的字串 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[筆記] ASP在檔案中找出特定的文字,在之後寫入新的字串">
|
||||
<meta property="og:description" content="[筆記] ASP在檔案中找出特定的文字,在之後寫入新的字串 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e7-ad-86-e8-a8-98-2/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e7-ad-86-e8-a8-98-2/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e7-ad-86-e8-a8-98-2/">[筆記] ASP在檔案中找出特定的文字,在之後寫入新的字串</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-11-01</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>Reference URL:<a href="http://forums.aspfree.com/code-bank-54/classic-asp-vbscript-write-into-specific-line-text-file-92390.html">http://forums.aspfree.com/code-bank-54/classic-asp-vbscript-write-into-specific-line-text-file-92390.html</a>
|
||||
> ## Classic ASP/vbscript: write into specific line in text file
|
||||
<div>
|
||||
<div id="post_message_294282">
|
||||
> The code below get file path and string to be written, andwrites the string into the specified file, in the given linenumber.The text is “pushed” in that line, pushing allother lines below.If the text file does not exist, it’s being created and thetext written as the first line.If the line number exceeds the amount of lines in the file,the text is written as the last line.Happy Programming!
|
||||
>
|
||||
> <div>
|
||||
>
|
||||
> > <div>Code:</div>
|
||||
> >
|
||||
> > <pre>Sub WriteToFile(strFilePath, strData, iLineNumber)
|
||||
> >
|
||||
> > Dim objFSO, objFile, arrLines
|
||||
> >
|
||||
> > Dim strAllFile, x
|
||||
> >
|
||||
> > Set objFSO=Server.CreateObject(“Scripting.FileSystemObject”)
|
||||
> >
|
||||
> > strAllFile=“”
|
||||
> >
|
||||
> > If objFSO.FileExists(strFilePath) Then
|
||||
> >
|
||||
> > Set objFile=objFSO.OpenTextFile(strFilePath)
|
||||
> >
|
||||
> > If Not(objFile.AtEndOfStream) Then
|
||||
> >
|
||||
> > strAllFile = objFile.ReadAll
|
||||
> >
|
||||
> > End If
|
||||
> >
|
||||
> > objFile.Close
|
||||
> >
|
||||
> > End If
|
||||
> >
|
||||
> > arrLines = Split(strAllFile, VBCrLf)
|
||||
> >
|
||||
> > Set objFile=objFSO.CreateTextFile(strFilePath)
|
||||
> >
|
||||
> > For x=0 To UBound(arrLines)
|
||||
> >
|
||||
> > If (iLineNumber-1)=x Then objFile.WriteLine(strData)
|
||||
> >
|
||||
> > objFile.WriteLine(arrLines(x))
|
||||
> >
|
||||
> > Next
|
||||
> >
|
||||
> > If iLineNumber>=UBound(arrLines) Then objFile.WriteLine(strData)
|
||||
> >
|
||||
> > objFile.Close
|
||||
> >
|
||||
> > Set objFile=Nothing</pre>
|
||||
>
|
||||
> </div>
|
||||
</div>
|
||||
</div></p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,452 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [筆記] AeroFS - 又一種跨平台同步軟體 | My cool new Blog</title>
|
||||
<meta name="description" content="[筆記] AeroFS - 又一種跨平台同步軟體 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[筆記] AeroFS - 又一種跨平台同步軟體">
|
||||
<meta itemprop="description" content="[筆記] AeroFS - 又一種跨平台同步軟體 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[筆記] AeroFS - 又一種跨平台同步軟體">
|
||||
<meta property="og:description" content="[筆記] AeroFS - 又一種跨平台同步軟體 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e7-ad-86-e8-a8-98-aerofs-e5-8f-88-e4-b8-80-e7-a8-ae-e8-b7-a8-e5-b9-b3-e5-8f-b0-e5-90-8c-e6-ad-a5-e8-bb-9f-e9-ab-94/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e7-ad-86-e8-a8-98-aerofs-e5-8f-88-e4-b8-80-e7-a8-ae-e8-b7-a8-e5-b9-b3-e5-8f-b0-e5-90-8c-e6-ad-a5-e8-bb-9f-e9-ab-94/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e7-ad-86-e8-a8-98-aerofs-e5-8f-88-e4-b8-80-e7-a8-ae-e8-b7-a8-e5-b9-b3-e5-8f-b0-e5-90-8c-e6-ad-a5-e8-bb-9f-e9-ab-94/">[筆記] AeroFS - 又一種跨平台同步軟體</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-11-04</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>早上在PTT看到某篇文章推文在講這個東西,好奇之下就跑去下載來玩玩看。</p>
|
||||
|
||||
<p>簡單的說,這個軟體是「點對點」的同步軟體。</p>
|
||||
|
||||
<p>不同於DROPBOX之類的「雲端同步」軟體,AeroFS在一般應用上,不需要先將檔案上傳到伺服器,只要有註冊帳號,</p>
|
||||
|
||||
<p>在各個裝置上登入後,就會直接同步指定文件夾之內的資料。</p>
|
||||
|
||||
<p>如果裝置都在LAN,那傳輸的速度就會是LAN的速度,不會像DROPBOX一樣,要先都丟去廠商的伺服器再抓回來!</p>
|
||||
|
||||
<p>有多個裝置要同步,又不想多一次上傳的步驟,還有考慮資料傳輸安全性的需求,可以考慮用這軟體。</p>
|
||||
|
||||
<p></p>
|
||||
|
||||
<p>安裝步驟很簡單,WINDOWS大概就是一直下一步,安裝的時候,在輸入帳號密碼視窗時,有個advanced的按鈕,</p>
|
||||
|
||||
<p>點進去可以自行選擇要同步的目錄,或者在安裝完成以後再進入管理介面去修改也行。</p>
|
||||
|
||||
<p><a href="http://www.cowbay.org/wp-content/uploads/2013/11/aerofs-01.png"><img src="http://www.cowbay.org/wp-content/uploads/2013/11/aerofs-01.png" alt="aerofs-01" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>在要同步的電腦上都安裝、並指定同步目錄之後,只要是複製到這個目錄底下的檔案,就會自動同步到所有有安裝AEROFS程式並使用同個帳號登入的裝置上了。</p>
|
||||
|
||||
<p>因為我在LAN裡面同步,速度太快了來不及截圖…不過在主程式中,有sync history可以瀏覽。</p>
|
||||
|
||||
<p><a href="http://www.cowbay.org/wp-content/uploads/2013/11/aerofs-02.png"><img src="http://www.cowbay.org/wp-content/uploads/2013/11/aerofs-02.png" alt="aerofs-02" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>同時也有Team Server,可以用在多人辦公環境,1-3人免費,再上去就要付費使用了。</p>
|
||||
|
||||
<p>一個帳號10 USD/month ,還算挺貴的….</p>
|
||||
|
||||
<p>目前找到免費、可多人使用、支援中央伺服器的,大概只有tonido / owncloud了..</p>
|
||||
|
||||
<p><a href="http://www.cowbay.org/wp-content/uploads/2013/11/aerofs-03.png"><img src="http://www.cowbay.org/wp-content/uploads/2013/11/aerofs-03.png" alt="aerofs-03" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,403 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [筆記] AfterLogic Webmail Lite 安裝後設定 | My cool new Blog</title>
|
||||
<meta name="description" content="[筆記] AfterLogic Webmail Lite 安裝後設定 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[筆記] AfterLogic Webmail Lite 安裝後設定">
|
||||
<meta itemprop="description" content="[筆記] AfterLogic Webmail Lite 安裝後設定 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[筆記] AfterLogic Webmail Lite 安裝後設定">
|
||||
<meta property="og:description" content="[筆記] AfterLogic Webmail Lite 安裝後設定 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e7-ad-86-e8-a8-98-afterlogic-webmail-lite-e5-ae-89-e8-a3-9d-e8-a8-ad-e5-ae-9a/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e7-ad-86-e8-a8-98-afterlogic-webmail-lite-e5-ae-89-e8-a3-9d-e8-a8-ad-e5-ae-9a/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e7-ad-86-e8-a8-98-afterlogic-webmail-lite-e5-ae-89-e8-a3-9d-e8-a8-ad-e5-ae-9a/">[筆記] AfterLogic Webmail Lite 安裝後設定</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2016-03-04</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>這個要改成 On</p>
|
||||
|
||||
<p>才會把丟去mail server 驗證的帳號改成只有 username</p>
|
||||
|
||||
<p>如果是 Off ,會丟整串 username@abc.com</p>
|
||||
|
||||
<p><UseLoginWithoutDomain>On</UseLoginWithoutDomain></p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,429 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [筆記] ASP 亂數陣列 | My cool new Blog</title>
|
||||
<meta name="description" content="[筆記] ASP 亂數陣列 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[筆記] ASP 亂數陣列">
|
||||
<meta itemprop="description" content="[筆記] ASP 亂數陣列 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[筆記] ASP 亂數陣列">
|
||||
<meta property="og:description" content="[筆記] ASP 亂數陣列 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e7-ad-86-e8-a8-98-asp-e4-ba-82-e6-95-b8-e9-99-a3-e5-88-97/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e7-ad-86-e8-a8-98-asp-e4-ba-82-e6-95-b8-e9-99-a3-e5-88-97/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e7-ad-86-e8-a8-98-asp-e4-ba-82-e6-95-b8-e9-99-a3-e5-88-97/">[筆記] ASP 亂數陣列</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2015-01-22</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>尾牙可能會用到…</p>
|
||||
|
||||
<p>簡單說就是XX排序,不過我忘記那個名詞了.. (bubble ? )
|
||||
> dim myarray(60)
|
||||
>
|
||||
> for i = 1 to 60
|
||||
>
|
||||
> myarray(i) = i
|
||||
>
|
||||
> Next
|
||||
>
|
||||
> for j = 1 to 59
|
||||
>
|
||||
> randomize
|
||||
>
|
||||
> j1 = Int((60-1+1) * Rnd +1 )
|
||||
>
|
||||
> k1 = Int((60-1-1)*Rnd+1)
|
||||
>
|
||||
> t1 = myarray(j1)
|
||||
>
|
||||
> myarray(j1) = myarray(k1)
|
||||
>
|
||||
> myarray(k1) = t1
|
||||
>
|
||||
> Next
|
||||
</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,516 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [筆記] CentOS 6.6 + CACTI 0.8.8b | My cool new Blog</title>
|
||||
<meta name="description" content="[筆記] CentOS 6.6 + CACTI 0.8.8b - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[筆記] CentOS 6.6 + CACTI 0.8.8b">
|
||||
<meta itemprop="description" content="[筆記] CentOS 6.6 + CACTI 0.8.8b - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[筆記] CentOS 6.6 + CACTI 0.8.8b">
|
||||
<meta property="og:description" content="[筆記] CentOS 6.6 + CACTI 0.8.8b - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e7-ad-86-e8-a8-98-centos-6-6-cacti-0-8-8b/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e7-ad-86-e8-a8-98-centos-6-6-cacti-0-8-8b/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e7-ad-86-e8-a8-98-centos-6-6-cacti-0-8-8b/">[筆記] CentOS 6.6 + CACTI 0.8.8b</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2015-06-09</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>這幾天弄了一台香港的VPS 想說看看對看影片有沒有幫助</p>
|
||||
|
||||
<p>VPN 設定好之後,想看看在看影片時,流量可以到多少</p>
|
||||
|
||||
<p>之前就有用過cacti ,感覺還不錯,裝起來也很容易,就想說來裝裝看</p>
|
||||
|
||||
<p>沒想到在 centos 6.6 上安裝碰到一堆問題….</p>
|
||||
|
||||
<p></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>在安裝好之後,如果有碰到這樣的錯誤</p>
|
||||
|
||||
<p>
|
||||
> <span class="textInfo">RRDTool Command:</span>
|
||||
>
|
||||
> <pre>/usr/bin/rrdtool graph - <br />
|
||||
>
|
||||
> –imgformat=PNG <br />
|
||||
>
|
||||
> –start=‘-86400’ <br />
|
||||
>
|
||||
> –end=‘-300’ <br />
|
||||
>
|
||||
> –title=‘Localhost - Traffic’ <br />
|
||||
>
|
||||
> –rigid <br />
|
||||
>
|
||||
> –base=‘1000’ <br />
|
||||
>
|
||||
> –height=‘120’ <br />
|
||||
>
|
||||
> –width=‘500’ <br />
|
||||
>
|
||||
> –alt-autoscale-max <br />
|
||||
>
|
||||
> –lower-limit=‘0’ <br />
|
||||
>
|
||||
> –vertical-label=‘bits per second’ <br />
|
||||
>
|
||||
> –slope-mode <br />
|
||||
>
|
||||
> –font TITLE:10: <br />
|
||||
>
|
||||
> –font AXIS:7: <br />
|
||||
>
|
||||
> –font LEGEND:8: <br />
|
||||
>
|
||||
> –font UNIT:7: <br />
|
||||
>
|
||||
> DEF:a=‘/var/www/html/cacti-0.8.8b/rra/localhost_traffic_in_8.rrd’:‘traffic_in’:AVERAGE <br />
|
||||
>
|
||||
> DEF:b=‘/var/www/html/cacti-0.8.8b/rra/localhost_traffic_in_8.rrd’:‘traffic_out’:AVERAGE <br />
|
||||
>
|
||||
> CDEF:cdefa=‘a,8,<em>’ <br />
|
||||
>
|
||||
> CDEF:cdefe=‘b,8,</em>’ <br />
|
||||
>
|
||||
> AREA:cdefa#00CF00FF:‘Inbound’ <br />
|
||||
>
|
||||
> GPRINT:cdefa:LAST:’ Current:%8.2lf %s’ <br />
|
||||
>
|
||||
> GPRINT:cdefa:AVERAGE:‘Average:%8.2lf %s’ <br />
|
||||
>
|
||||
> GPRINT:cdefa:MAX:‘Maximum:%8.2lf %s\n’ <br />
|
||||
>
|
||||
> LINE1:cdefe#002A97FF:‘Outbound’ <br />
|
||||
>
|
||||
> GPRINT:cdefe:LAST:‘Current:%8.2lf %s’ <br />
|
||||
>
|
||||
> GPRINT:cdefe:AVERAGE:‘Average:%8.2lf %s’ <br />
|
||||
>
|
||||
> GPRINT:cdefe:MAX:‘Maximum:%8.2lf %s\n’</pre>
|
||||
>
|
||||
> <span class="textInfo">RRDTool Says:</span>
|
||||
>
|
||||
> <pre><span style="color: #ff0000;">ERROR: opening ‘/var/www/html/cacti-0.8.8b/rra/localhost_traffic_in_8.rrd’: No such file or directory
|
||||
>
|
||||
>
|
||||
> </span></pre>
|
||||
</p>
|
||||
|
||||
<p>本來是參考 <a href="http://nbaiwan.blog.51cto.com/6286161/1167355">http://nbaiwan.blog.51cto.com/6286161/1167355</a> 這篇</p>
|
||||
|
||||
<p>但是裡面的指令我執行起來會發生錯誤</p>
|
||||
|
||||
<p>去看了一下 yum 裡面就有類似的package</p>
|
||||
|
||||
<p>只要簡單一行 yum install php-pear-Net-UserAgent-Detect.noarch</p>
|
||||
|
||||
<p>補上這個package ,然後重起 httpd service</p>
|
||||
|
||||
<p>cacti 的圖形就正確了!</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/06/2015-06-10_09-11-19.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/06/2015-06-10_09-11-19.png" alt="2015-06-10_09-11-19" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>但是,大陸影片還是一堆不能看,我放棄了…</p>
|
||||
|
||||
<p>認命點,都放到百度雲盤,再下載回來看吧…</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer">
|
||||
|
||||
|
||||
|
||||
<div class="tags">
|
||||
<i class="fa fa-tags"></i>
|
||||
<div class="links">
|
||||
|
||||
<a href="/tags/cacti">cacti</a>
|
||||
|
||||
<a href="/tags/centos">centos</a>
|
||||
|
||||
<a href="/tags/vpn">vpn</a>
|
||||
|
||||
<a href="/tags/vps">vps</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,958 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [筆記] CentOS 6.6 + iRedmail 0.9.4 + postfixadmin 安裝筆記 | My cool new Blog</title>
|
||||
<meta name="description" content="[筆記] CentOS 6.6 + iRedmail 0.9.4 + postfixadmin 安裝筆記 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[筆記] CentOS 6.6 + iRedmail 0.9.4 + postfixadmin 安裝筆記">
|
||||
<meta itemprop="description" content="[筆記] CentOS 6.6 + iRedmail 0.9.4 + postfixadmin 安裝筆記 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[筆記] CentOS 6.6 + iRedmail 0.9.4 + postfixadmin 安裝筆記">
|
||||
<meta property="og:description" content="[筆記] CentOS 6.6 + iRedmail 0.9.4 + postfixadmin 安裝筆記 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e7-ad-86-e8-a8-98-centos-6-6-iredmail-0-9-4-e5-ae-89-e8-a3-9d-e7-ad-86-e8-a8-98/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e7-ad-86-e8-a8-98-centos-6-6-iredmail-0-9-4-e5-ae-89-e8-a3-9d-e7-ad-86-e8-a8-98/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e7-ad-86-e8-a8-98-centos-6-6-iredmail-0-9-4-e5-ae-89-e8-a3-9d-e7-ad-86-e8-a8-98/">[筆記] CentOS 6.6 + iRedmail 0.9.4 + postfixadmin 安裝筆記</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2016-01-27</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p><font size="4">系統基礎設定</font></p>
|
||||
|
||||
<p><font size="4">Clone from a fresh new install CentOS 6.6 in vmware </font></p>
|
||||
|
||||
<p><font size="4">power on</font></p>
|
||||
|
||||
<hr />
|
||||
|
||||
<p><font size="4">新增DNS 伺服器</font></p>
|
||||
|
||||
<p><font size="4">vi /etc/resolv.conf</font></p>
|
||||
|
||||
<p><font size="4">刪除內容 新增以下資料 </font></p>
|
||||
|
||||
<p><font size="4">nameserver 168.95.1.1</font></p>
|
||||
|
||||
<p><font size="4">nameserver 8.8.8.8</font></p>
|
||||
|
||||
<p><font size="4">nameserver 8.8.4.4</font></p>
|
||||
|
||||
<hr />
|
||||
|
||||
<p><font size="4">啟動網路卡</font></p>
|
||||
|
||||
<p><font size="4">cp /etc/sysconfig/network-scripts/ifcfg-eth2 /etc/sysconfig/network-scripts/ifcfg-eth3</font></p>
|
||||
|
||||
<p><font size="4">vi /etc/sysconfig/network-scripts</font></p>
|
||||
|
||||
<p><font size="4">刪除 MAC </font></p>
|
||||
|
||||
<p><font size="4">修改底下的設定</font></p>
|
||||
|
||||
<p><font size="4">BOOTPROTO=static
|
||||
IPADDR=192.168.10.220
|
||||
NETMASK=255.255.255.0</font></p>
|
||||
|
||||
<p><font size="4">vi /etc/sysconfig/network</font></p>
|
||||
|
||||
<p><font size="4">NETWORKING=yes
|
||||
HOSTNAME=iredmail
|
||||
GATEWAY=192.168.10.246
|
||||
</font></p>
|
||||
|
||||
<p><font size="4">service network restart</font></p>
|
||||
|
||||
<hr />
|
||||
|
||||
<p><font size="4">修改時區</font></p>
|
||||
|
||||
<p><font size="4">yum install ntpdate –y</font></p>
|
||||
|
||||
<p><font size="4">cp /usr/share/zoneinfo/Asia/Taipei /etc/localtime</font></p>
|
||||
|
||||
<p><font size="4">ntpdate 192.168.10.243</font></p>
|
||||
|
||||
<hr />
|
||||
|
||||
<p><font size="4">reboot (讓hostname 生效)</font></p>
|
||||
|
||||
<p><font size="4">登入</font></p>
|
||||
|
||||
<hr />
|
||||
|
||||
<p><font size="4">安裝基本指定</font></p>
|
||||
|
||||
<p><font size="4">yum install –y wget telnet vim ftp epel-release bind-utils</font></p>
|
||||
|
||||
<hr />
|
||||
|
||||
<p><font size="4">下載 iredmail 進行安裝</font></p>
|
||||
|
||||
<p><font size="4">wget </font><a href="https://bitbucket.org/zhb/iredmail/downloads/iRedMail-0.9.4.tar.bz2"><font size="4">https://bitbucket.org/zhb/iredmail/downloads/iRedMail-0.9.4.tar.bz2</font></a></p>
|
||||
|
||||
<p><font size="4">tar xjf iRedMail-0.9.4.tar.bz2</font></p>
|
||||
|
||||
<p><font size="4">cd iRedMail-0.9.4</font></p>
|
||||
|
||||
<p><font size="4">bash iRedMail.sh</font>
|
||||
<font size="4"></p>
|
||||
|
||||
<hr />
|
||||
|
||||
<p></font></p>
|
||||
|
||||
<p><font size="4">IredMail Install </font></p>
|
||||
|
||||
<p><font size="4">1.mailbox directory , just keep it and next</font></p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2016/01/pietty0327_2016-01-27_09-15-59.png"><font size="4"><img src="http://wp.cowbay.org/wp-content/uploads/2016/01/pietty0327_2016-01-27_09-15-59_thumb.png" alt="pietty0327_2016-01-27_09-15-59" title="pietty0327_2016-01-27_09-15-59" /></font></a></p>
|
||||
|
||||
<p><font size="4">2.choose web server ( apache here , more familiar)</font></p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2016/01/pietty0327_2016-01-27_09-16-07.png"><font size="4"><img src="http://wp.cowbay.org/wp-content/uploads/2016/01/pietty0327_2016-01-27_09-16-07_thumb.png" alt="pietty0327_2016-01-27_09-16-07" title="pietty0327_2016-01-27_09-16-07" /></font></a></p>
|
||||
|
||||
<p><font size="4"></font> </p>
|
||||
|
||||
<p><font size="4">3. backend choose , MySQL / OpenLDAP MySQL Here ( but seems some proble with global address book in SOGo)</font></p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2016/01/pietty0327_2016-01-27_09-16-16.png"><font size="4"><img src="http://wp.cowbay.org/wp-content/uploads/2016/01/pietty0327_2016-01-27_09-16-16_thumb.png" alt="pietty0327_2016-01-27_09-16-16" title="pietty0327_2016-01-27_09-16-16" /></font></a></p>
|
||||
|
||||
<p><font size="4"></font> </p>
|
||||
|
||||
<p><font size="4">4. your domain</font></p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2016/01/pietty0327_2016-01-27_09-16-31.png"><font size="4"><img src="http://wp.cowbay.org/wp-content/uploads/2016/01/pietty0327_2016-01-27_09-16-31_thumb.png" alt="pietty0327_2016-01-27_09-16-31" title="pietty0327_2016-01-27_09-16-31" /></font></a></p>
|
||||
|
||||
<p><font size="4"></font> </p>
|
||||
|
||||
<p><font size="4">5. your password to mail admin </font></p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2016/01/pietty0327_2016-01-27_09-16-42.png"><font size="4"><img src="http://wp.cowbay.org/wp-content/uploads/2016/01/pietty0327_2016-01-27_09-16-42_thumb.png" alt="pietty0327_2016-01-27_09-16-42" title="pietty0327_2016-01-27_09-16-42" /></font></a></p>
|
||||
|
||||
<p><font size="4"></font> </p>
|
||||
|
||||
<p><font size="4">6.WEBMAIL , Choose SOGo</font></p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2016/01/pietty0327_2016-01-27_09-16-53.png"><img src="http://wp.cowbay.org/wp-content/uploads/2016/01/pietty0327_2016-01-27_09-16-53_thumb.png" alt="pietty0327_2016-01-27_09-16-53" title="pietty0327_2016-01-27_09-16-53" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><font size="4">離開這個畫面後,會開始進行安裝,並且詢問一些問題都按 y ,完成後,會產生一個 iRedMail.tips 裡面有帳號、密碼等資訊</font></p>
|
||||
|
||||
<p><font size="4">接著安裝 phpmyadmin</font></p>
|
||||
|
||||
<p><font size="4">yum install –y phpmyadmin</font></p>
|
||||
|
||||
<p><font size="4">重開機套用</font></p>
|
||||
|
||||
<p><font size="4">reboot</font></p>
|
||||
|
||||
<p><font size="4"></font>
|
||||
<font size="4"></p>
|
||||
|
||||
<hr />
|
||||
|
||||
<p></font></p>
|
||||
|
||||
<p><font size="4">開啟 </font><a href="https://hostname/iredmailadmin"><font size="4">https://hostname/iredmailadmin</font></a></p>
|
||||
|
||||
<p><font size="4">建立三個USER做測試用</font></p>
|
||||
|
||||
<p><font size="4">登入 </font><a href="https://hostname/SOGo"><font size="4">https://hostname/SOGo</font></a></p>
|
||||
|
||||
<p><font size="4">用其中一個帳號登入,收發信件測試 (前提是 DNS 還有防火牆 已經設定好了)</font></p>
|
||||
|
||||
<p><font size="4">檢查通訊錄,發現 Global Address Book (公用通訊錄、全域通訊錄) 居然是空的</font></p>
|
||||
|
||||
<p><font size="4">關機,再做一台來測試 OpenLDAP (VM真他X的方便)</font></p>
|
||||
|
||||
<p><font size="4">shutdown –h now</font>
|
||||
<font size="4"></p>
|
||||
|
||||
<hr />
|
||||
|
||||
<p></font></p>
|
||||
|
||||
<p><font size="4">重複 基礎設定 、下載安裝包、進行安裝,改選openLDAP,一開始要輸入 dc=abc,dc=org , 再來輸入 abc.org 其他都一樣</font></p>
|
||||
|
||||
<p><font size="4">安裝完後,多裝一個 phpldapadmin</font></p>
|
||||
|
||||
<p><font size="4">yum install phpldapadmin –y</font></p>
|
||||
|
||||
<p><font size="4">reboot</font></p>
|
||||
|
||||
<hr />
|
||||
|
||||
<p><font size="4">開啟 </font><a href="https://hostname/iredmailadmin"><font size="4">https://hostname/iredmailadmin</font></a></p>
|
||||
|
||||
<p><font size="4">建立三個USER做測試用</font></p>
|
||||
|
||||
<p><font size="4">p.s <strike>等了好久(5分鐘左右吧)才看到頁面,不知道是那邊的問題</strike> (update: 應該是firefox的關係,重設後 OK )</font></p>
|
||||
|
||||
<p><font size="4"><strike>要檢視憑證也是很久很久..</strike></font></p>
|
||||
|
||||
<p><font size="4">登入 </font><a href="https://hostname/SOGo"><font size="4">https://hostname/SOGo</font></a></p>
|
||||
|
||||
<p><font size="4">Global Address Book 還是看不到東西</font></p>
|
||||
|
||||
<p><font size="4">但是RoundCubeMail 的通訊錄裡面有!!!</font></p>
|
||||
|
||||
<p><font size="4">還要再研究看看,或者就不要管SOGo了,反正RoundCubeMail 本來就比較好看又好用!</font></p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2016/01/iexplore_2016-01-27_10-41-02.png"><font size="4"><img src="http://wp.cowbay.org/wp-content/uploads/2016/01/iexplore_2016-01-27_10-41-02_thumb.png" alt="iexplore_2016-01-27_10-41-02" title="iexplore_2016-01-27_10-41-02" /></font></a></p>
|
||||
|
||||
<p><font size="4"></font> </p>
|
||||
|
||||
<p><font size="4">RoundCubeMail的設定檔在 /var/www/roundcubemail/config/config.inc.php</font></p>
|
||||
|
||||
<p><font size="4">有關LDAP ADDRESS BOOK的設定如下</font>
|
||||
> <font size="4">// Global LDAP address book.
|
||||
> $config[‘ldap_public’][“global_ldap_abook”] = array(
|
||||
> ‘name’ => ‘Global LDAP Address Book’,
|
||||
> ‘hosts’ => array(‘127.0.0.1’),
|
||||
> ‘port’ => 389,
|
||||
> ‘use_tls’ => false,
|
||||
> ‘ldap_version’ => ‘3’,
|
||||
> ‘network_timeout’ => 10,
|
||||
> ‘user_specific’ => true,</font>
|
||||
>
|
||||
> <font size="4"> // Search mail users under same domain.
|
||||
> ‘base_dn’ => ‘domainName=%d,o=domains,dc=abc,dc=org’,
|
||||
> ‘bind_dn’ => <a href="mailto:">‘mail=%u@%d,ou=Users,domainName=%d,o=domains,dc=abc,dc=org’</a>,</font>
|
||||
>
|
||||
> <font size="4"> ‘hidden’ => false,
|
||||
> ‘searchonly’ => false,
|
||||
> ‘writable’ => false,</font>
|
||||
>
|
||||
> <font size="4"> ‘search_fields’ => array(‘mail’, ‘cn’, ‘sn’, ‘givenName’, ‘street’, ‘telephoneNumber’, ‘mobile’, ‘stree’, ‘postalCode’),
|
||||
> </font>
|
||||
>
|
||||
> <font size="4"></font> </p>
|
||||
|
||||
<p><font size="4">底下這是欄位對應</font>
|
||||
> <font size="4">// mapping of contact fields to directory attributes
|
||||
> ‘fieldmap’ => array(
|
||||
> ‘name’ => ‘cn’,
|
||||
> ‘surname’ => ‘sn’,
|
||||
> ‘firstname’ => ‘givenName’,
|
||||
> ‘title’ => ‘title’,
|
||||
> ‘email’ => ‘mail:<em>’,
|
||||
> ‘phone:work’ => ‘telephoneNumber’,
|
||||
> ‘phone:mobile’ => ‘mobile’,
|
||||
> ‘street’ => ‘street’,
|
||||
> ‘zipcode’ => ‘postalCode’,
|
||||
> ‘locality’ => ‘l’,
|
||||
> ‘department’ => ‘departmentNumber’,
|
||||
> ‘notes’ => ‘description’,
|
||||
> ‘name’ => ‘cn’,
|
||||
> ‘surname’ => ‘sn’,
|
||||
> ‘firstname’ => ‘givenName’,
|
||||
> ‘title’ => ‘title’,
|
||||
> ‘email’ => ‘mail:</em>’,
|
||||
> ‘phone:work’ => ‘telephoneNumber’,
|
||||
> ‘phone:mobile’ => ‘mobile’,
|
||||
> ‘phone:workfax’ => ‘facsimileTelephoneNumber’,
|
||||
> ‘street’ => ‘street’,
|
||||
> ‘zipcode’ => ‘postalCode’,
|
||||
> ‘locality’ => ‘l’,
|
||||
> ‘department’ => ‘departmentNumber’,
|
||||
> ‘notes’ => ‘description’,
|
||||
> ‘photo’ => ‘jpegPhoto’,
|
||||
> ),</font></p>
|
||||
|
||||
<p><font size="4"></font> </p>
|
||||
|
||||
<p><font size="4"></p>
|
||||
|
||||
<hr />
|
||||
|
||||
<p></font> <p><strong><font size="4">安裝 PostfixAdmin 取代 iRedMail 預載的陽春管理介面</font></strong></p>
|
||||
|
||||
<p><font size="4">wget </font><a href="http://nchc.dl.sourceforge.net/project/postfixadmin/postfixadmin/postfixadmin-2.93/postfixadmin-2.93.tar.gz"><font size="4">http://nchc.dl.sourceforge.net/project/postfixadmin/postfixadmin/postfixadmin-2.93/postfixadmin-2.93.tar.gz</font></a></p>
|
||||
|
||||
<p><font size="4">tar zxvf postfixadmin-2.93.tar.gz</font></p>
|
||||
|
||||
<p><font size="4">mv postfixadmin-2.93 pfa</font></p>
|
||||
|
||||
<p><font size="4">mv pfa /var/www/html</font></p>
|
||||
|
||||
<p><font size="4">編輯 httpd 設定</font></p>
|
||||
|
||||
<p><font size="4">vim /etc/httpd/conf.d/pfa.conf</font></p>
|
||||
|
||||
<p><font size="4">要安全性的再自己修改 allow / deny 順序和限制</font>
|
||||
> <font size="4">Alias /pfa “/var/www/pfa/”
|
||||
> <Directory “/var/www/pfa/”>
|
||||
> Order allow,deny
|
||||
> Allow from all
|
||||
> Options -Indexes
|
||||
> </Directory></font></p>
|
||||
|
||||
<p><font size="4">新增 PostfixAdmin 資料庫</font></p>
|
||||
|
||||
<p><font size="4">mysql –u root –p</font></p>
|
||||
|
||||
<p><font size="4">輸入 root 密碼,進入 mysql 介面</font></p>
|
||||
|
||||
<p><font size="4">執行以下指令,建立一個資料庫叫postfix ,一個使用者帳號 postfix 密碼 postfixadmin ,並指定讓使用者postfix可以讀寫 postfix 資料庫</font></p>
|
||||
|
||||
<p><font size="4"> CREATE DATABASE postfix;
|
||||
CREATE USER ‘postfix’@‘localhost’ IDENTIFIED BY ‘postfixadmin’;
|
||||
GRANT ALL PRIVILEGES ON ‘postfix’. * TO </font><a href="mailto:"><font size="4">‘postfix’@‘localhost’</font></a><font size="4">;
|
||||
</font></p>
|
||||
|
||||
<p><font size="4">離開mysql 介面</font></p>
|
||||
|
||||
<p><font size="4">編輯 postfixadmin 設定檔</font></p>
|
||||
|
||||
<p><font size="4">vim /var/www/pfa/config.inc.php</font></p>
|
||||
|
||||
<p><font size="4">修改以下設定</font></p>
|
||||
|
||||
<p><font size="4"></font>
|
||||
> <font size="4">$CONF[‘configured’] = true;</font>
|
||||
>
|
||||
> <font size="4">$CONF[‘database_type’] = ‘mysqli’;
|
||||
> $CONF[‘database_user’] = ‘postfix’;
|
||||
> $CONF[‘database_password’] = ‘postfixadmin’;
|
||||
> $CONF[‘database_name’] = ‘postfix’;</font></p>
|
||||
|
||||
<p><font size="4">存檔後離開,開啟postfixadmin 安裝頁面</font></p>
|
||||
|
||||
<p><a href="http://ip_address/pfa/setup.php"><font size="4">http://ip_address/pfa/setup.php</font></a></p>
|
||||
|
||||
<p><font size="4">應該會提示有個目錄要有讀寫權限</font></p>
|
||||
|
||||
<p><font size="4">chmod a+rw –R /var/www/pfa/templates_c</font></p>
|
||||
|
||||
<p><font size="4">重整安裝頁面</font></p>
|
||||
|
||||
<p><font size="4">安裝過程其實很簡單</font></p>
|
||||
|
||||
<p><font size="4">注意一下密碼安全性原則,不得小於五個字,至少要有三個英文、兩個數字(我是直接拿掉這段,省得麻煩)</font></p>
|
||||
|
||||
<p><font size="4">安裝過程中會要求你設定一組安裝密碼,然後系統會產生一組編碼過後的字串</font></p>
|
||||
|
||||
<p><font size="4">將這組字串填入 config.inc.php</font></p>
|
||||
|
||||
<p><font size="4">vim /var/www/pfa/config.inc.php</font></p>
|
||||
|
||||
<p><font size="4">註解掉第一個 setup_password 變數,然後填入剛剛系統產生的編碼字串</font></p>
|
||||
|
||||
<p><font size="4">#$CONF[‘setup_password’] = ‘changeme’;
|
||||
$CONF[‘setup_password’] = ‘7d4b2b0def324a8dc0:80e26d5c’;</font></p>
|
||||
|
||||
<p><font size="4">存檔後離開</font></p>
|
||||
|
||||
<p><font size="4">接著在安裝畫面填入你剛剛輸入的密碼「明文」,不是那個字串,而是你剛剛輸入的安裝密碼</font></p>
|
||||
|
||||
<p><font size="4">建立一個系統管理者帳號、密碼</font></p>
|
||||
|
||||
<p><font size="4">都完成之後,會提示一個連結讓你前往登入,或者自己開啟</font></p>
|
||||
|
||||
<p><a href="http://ip_address/pfa/login.php"><font size="4">http://ip_address/pfa/login.php</font></a></p>
|
||||
|
||||
<p><font size="4">填入剛剛輸入的管理者帳號(全部,包含 @ 後面的域名) 和密碼,登入管理介面,這邊可以順便改語系,內建有繁體中文( 感動! )</font></p>
|
||||
|
||||
<p><font size="4">接著先新建一個網域</font></p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2016/01/firefox_2016-01-28_10-20-29.png"><font size="4"><img src="http://wp.cowbay.org/wp-content/uploads/2016/01/firefox_2016-01-28_10-20-29_thumb.png" alt="firefox_2016-01-28_10-20-29" title="firefox_2016-01-28_10-20-29" /></font></a></p>
|
||||
|
||||
<p><font size="4"></font> </p>
|
||||
|
||||
<p><font size="4">然後新增幾個使用者進行測試,而且postfixadmin 內建就可以建立別名,不用像 iredmail 一樣,要透過 mysql 、openldap 之類的方式去建立!</font></p>
|
||||
|
||||
<p><font size="4"></font> </p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2016/01/firefox_2016-01-28_10-26-18.png"><font size="4"><img src="http://wp.cowbay.org/wp-content/uploads/2016/01/firefox_2016-01-28_10-26-18_thumb.png" alt="firefox_2016-01-28_10-26-18" title="firefox_2016-01-28_10-26-18" /></font></a></p>
|
||||
|
||||
<p><font size="4"></font> </p>
|
||||
|
||||
<p><font size="4">別名的建立畫面</font></p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2016/01/firefox_2016-01-28_10-27-26.png"><font size="4"><img src="http://wp.cowbay.org/wp-content/uploads/2016/01/firefox_2016-01-28_10-27-26_thumb.png" alt="firefox_2016-01-28_10-27-26" title="firefox_2016-01-28_10-27-26" /></font></a></p>
|
||||
|
||||
<hr />
|
||||
|
||||
<p><p><font size="4">Update: 更新歡迎信件無法寄出的錯誤</font></p>
|
||||
|
||||
<p><font size="4">經過這樣的修改,postfixadmin 預設有一個發送歡迎信件給新帳號的功能會發生錯誤</font></p>
|
||||
|
||||
<p><font size="4">maillog 裡面會出現 Sender address rejected: not logged in; 這樣的狀況</font></p>
|
||||
|
||||
<p><font size="4">修改postfixadmin的設定</font></p>
|
||||
|
||||
<p><font size="4">vim /var/www/pfa/config.inc.php</font></p>
|
||||
|
||||
<p><font size="4">修改 admin_email</font></p>
|
||||
|
||||
<p><font size="4">$CONF[‘admin_email’] = </font><a href="mailto:"><font size="4">‘postmaster@iredmail.abc.org’</font></a><font size="4">; //本來是 </font><a href="mailto:postmaster@abc.org"><font size="4">postmaster@abc.org</font></a><font size="4"> , 改成 </font><a href="mailto:postmaster@hostname.abc.org"><font size="4">postmaster@hostname.abc.org</font></a></p>
|
||||
|
||||
<p><font size="4">測試寄送歡迎信件,應該OK了</font></p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2016/01/firefox_2016-01-28_15-41-45.png"><img src="http://wp.cowbay.org/wp-content/uploads/2016/01/firefox_2016-01-28_15-41-45_thumb.png" alt="firefox_2016-01-28_15-41-45" title="firefox_2016-01-28_15-41-45" /></a></p>
|
||||
|
||||
<hr />
|
||||
|
||||
<p><font size="4"></font> </p>
|
||||
|
||||
<p><font size="4">接著登入之前安裝的 roundcubemail 去收發郵件測試正常,</font></p>
|
||||
|
||||
<p><font size="4">不過通訊錄還是抓舊的全域通訊錄,應該還是要透過 phpldapadmin 去修改吧,在想是不是乾脆不要用這個功能,改用現在的方式,去AD抓帳號回來好了。</font></p>
|
||||
|
||||
<p><font size="4">再到手機上測試之前建立的Exchange 帳號也是正常收發!</font></p>
|
||||
|
||||
<p><font size="4">看起來應該大致可以用了!</font></p>
|
||||
|
||||
<hr />
|
||||
|
||||
<p><font size="4">修正RoundCubeMail 的通訊錄</font> <p><font size="4">用人家寫好的plugin 來新增一個公用通訊錄</font></p>
|
||||
|
||||
<p><a href="https://github.com/JohnDoh/Roundcube-Plugin-Global-Address-Book" title="https://github.com/JohnDoh/Roundcube-Plugin-Global-Address-Book"><font size="4">https://github.com/JohnDoh/Roundcube-Plugin-Global-Address-Book</font></a></p>
|
||||
|
||||
<p><font size="4">下載並解壓縮到 /var/www/roundcubemail/plugins/globaladdressbook</font></p>
|
||||
|
||||
<p><font size="4">在config 裡面啟用</font></p>
|
||||
|
||||
<p><font size="4">vim /var/www/roundcubemail/config/config.inc.php</font></p>
|
||||
|
||||
<p><font size="4">在 plugins 的地方加入 globaladdressbook</font></p>
|
||||
|
||||
<p><font size="4">$config[‘plugins’] = array(‘managesieve’, ‘password’,‘globaladdressbook’);</font></p>
|
||||
|
||||
<p><font size="4">簡單設定一下</font></p>
|
||||
|
||||
<p><font size="4">vim /var/www/roundcubemail/plugins/globaladdressbook/config.inc.php</font></p>
|
||||
|
||||
<p><font size="4">設定通訊錄的讀寫權限</font></p>
|
||||
|
||||
<p><font size="4">// 0 - global address book is read only
|
||||
// 1 - users can add, edit and delete contacts (full permissions)
|
||||
// 2 - users can add but not edit or delete contacts
|
||||
// 3 - users can add and edit but not delete contacts
|
||||
</font></p>
|
||||
|
||||
<p><font size="4">$config[‘globaladdressbook_perms’] = 3;</font></p>
|
||||
|
||||
<p><font size="4">設定誰是這個通訊錄的擁有者,理論上應該設定給管理公用通訊錄的人</font></p>
|
||||
|
||||
<p><font size="4">// global address book admin user
|
||||
// admin user(s) can always add/edit/delete entries, overrides readonly
|
||||
// either a single username, an array of usernames, or a regular expression, see README for more info
|
||||
</font></p>
|
||||
|
||||
<p><font size="4">$config[‘globaladdressbook_admin’] = null;</font></p>
|
||||
|
||||
<p><font size="4">存檔後離開,在roundcubemail 的通訊錄中,就可以看到多了一個「公用通訊錄」</font></p>
|
||||
|
||||
<p><font size="4">每個使用者都可以看到,以目前的設定來說,每個人都可以去編輯,但是不能刪除</font></p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2016/01/firefox_2016-01-28_14-11-09.png"><font size="4"><img src="http://wp.cowbay.org/wp-content/uploads/2016/01/firefox_2016-01-28_14-11-09_thumb.png" alt="firefox_2016-01-28_14-11-09" title="firefox_2016-01-28_14-11-09" /></font></a></p>
|
||||
|
||||
<p><font size="4"></p>
|
||||
|
||||
<hr />
|
||||
|
||||
<p>設定ROUNDCUBEMAIL去抓AD 的帳號,不過目前搞不定使用者通訊錄排序的問題,群組的排序倒是OK</font> <p><font size="4">//update 使用者通訊錄的排序也搞定啦!</font></p>
|
||||
|
||||
<p><font size="4">//底下這行本來被註解掉了,取消註解</font></p>
|
||||
|
||||
<p><font size="4">$config[‘addressbook_sort_col’] = ‘name’; </font></p>
|
||||
|
||||
<p><font size="4">改一下config</font></p>
|
||||
|
||||
<p><font size="4">vim /var/www/roundcubemail/config/config.inc.php</font></p>
|
||||
|
||||
<p><font size="4"></font>
|
||||
> <font size="4">// Global LDAP address book.
|
||||
> $config[‘ldap_public’][“global_ldap_abook”] = array(
|
||||
> ‘name’ => ‘Global LDAP Address Book’,
|
||||
> ‘hosts’ => array(‘192.168.10.243’), //改成AD 的IP
|
||||
> ‘port’ => 389,
|
||||
> ‘use_tls’ => false,
|
||||
> # ‘ldap_version’ => ‘3’, //註解掉這行
|
||||
> # ‘network_timeout’ => 10, //註解掉這行
|
||||
> ‘user_specific’ => true,</font>
|
||||
>
|
||||
> <font size="4">// Search mail users under same domain.</font>
|
||||
>
|
||||
> <font size="4">//修改和AD連線的設定, base_dn , bind_dn , bind_pass 都要設定,如果沒設定DN/pass 會發生驗證錯誤,找不到資料的情況
|
||||
> ‘base_dn’=> ‘DC=abc,DC=com, DC=tw’,
|
||||
> ‘bind_dn’ => </font><a href="mailto:"><font size="4">‘abc@abc.com.tw’</font></a><font size="4">,
|
||||
> ‘bind_pass’ => ‘abcabc’,
|
||||
> ‘writable’ => false,</font>
|
||||
>
|
||||
> <font size="4">//設定USER搜尋通訊錄時,要尋哪些欄位,欄位越多,搜尋時間越久,為了省時間,只設定搜尋兩個欄位</font>
|
||||
>
|
||||
> <font size="4">‘search_fields’ => array(‘mail’, ‘cn’),// ‘sn’, ‘givenName’, ‘street’),//, ‘telephoneNumber’, ‘mobile’, ‘stree’, ‘postalCode’),</font>
|
||||
>
|
||||
> <font size="4">//<strike>底下這些其實可有可無,大部分的欄位對應都在下面的 fieldmap</strike></font>
|
||||
>
|
||||
> <font size="4">//<strike>然後AD的欄位很奇怪,不管怎麼抓,就是很固執,我有測試去抓 description 欄位來當作顯示名稱 (surname) 但就是沒作用…而且似乎會拖慢速度</strike></font>
|
||||
>
|
||||
> <font size="4">//<strike>但是在聯絡人的內容卻有出現設定的描述欄位的資料,就很奇怪,不知道怎麼抓
|
||||
> </strike>#‘name_field’ => ‘cn’, // this field represents the contact’s name
|
||||
> #‘firstname_field’ => ‘cn’, // this field represents the contact’s first name
|
||||
> #‘surname_field’ => ‘cn’, // this field represents the contact’s last name
|
||||
> ‘email_field’ => ‘mail’, // this field represents the contact’s e-mail
|
||||
> ‘scope’ => ‘sub’, // search mode: sub|base|list //不知道幹嘛的
|
||||
> ‘filter’ => ‘(&(mail=<em>)(!(msExchHideFromAddressLists=TRUE)))‘, // all mail, except the exchange hidden ,抓取所有 mail 屬性有值的紀錄,除了某些刻意隱藏的
|
||||
> ‘sort’ => ‘cn’, // The field to sort the listing by. //<strike>排序,不過我測試不出來,改成用 mail 排序也沒作用
|
||||
> </strike>‘fuzzy_search’ => TRUE ,// server allows wildcard search //預設值</font>
|
||||
>
|
||||
> <font size="4">// mapping of contact fields to directory attributes</font>
|
||||
>
|
||||
> <font size="4">//這些都是預設值 AD 欄位跟 LDAP 的對應關係,請參考 </font><a href="https://www.manageengine.com/products/ad-manager/help/csv-import-management/active-directory-ldap-attributes.html" title="https://www.manageengine.com/products/ad-manager/help/csv-import-management/active-directory-ldap-attributes.html"><font size="4">https://www.manageengine.com/products/ad-manager/help/csv-import-management/active-directory-ldap-attributes.html</font></a>
|
||||
>
|
||||
> <font size="4">//這些都先註解掉
|
||||
> ‘fieldmap’ => array(
|
||||
> # ‘name’ => ‘cn’,
|
||||
> # ‘surname’ => ‘sn’,
|
||||
> # ‘firstname’ => ‘givenName’,
|
||||
> # ‘title’ => ‘title’,
|
||||
> # ‘email’ => ‘mail:</em>’,
|
||||
> # ‘phone:work’ => ‘telephoneNumber’,
|
||||
> # ‘phone:mobile’ => ‘mobile’,
|
||||
> # ‘street’ => ‘street’,
|
||||
> # ‘zipcode’ => ‘postalCode’,
|
||||
> # ‘locality’ => ‘l’,
|
||||
> # ‘department’ => ‘departmentNumber’,
|
||||
> # ‘notes’ => ‘description’,
|
||||
> # ‘name’ => ‘cn’,
|
||||
> # ‘surname’ => ‘sn’,
|
||||
> # ‘firstname’ => ‘givenName’,
|
||||
> # ‘title’ => ‘title’,
|
||||
> # ‘email’ => ‘mail:*‘,
|
||||
> # ‘phone:work’ => ‘telephoneNumber’,
|
||||
> # ‘phone:mobile’ => ‘mobile’,
|
||||
> # ‘phone:workfax’ => ‘facsimileTelephoneNumber’,
|
||||
> # ‘street’ => ‘street’,
|
||||
> # ‘zipcode’ => ‘postalCode’,
|
||||
> # ‘locality’ => ‘l’,
|
||||
> # ‘department’ => ‘departmentNumber’,
|
||||
> # ‘notes’ => ‘description’,
|
||||
> # ‘photo’ => ‘jpegPhoto’,
|
||||
> ),
|
||||
> </font>
|
||||
>
|
||||
> <font size="4">//fields_map 的內容 改成這樣,留下兩個就夠了,其他有用到再開</font> > <font size="4"><strong>‘fieldmap’ => array(</strong></font>
|
||||
>
|
||||
> <font size="4"><strong>‘name’ => ‘displayName’ ,</strong></font>
|
||||
>
|
||||
> <font size="4"><strong>‘email’ => ‘mail:*‘,</strong></font>
|
||||
>
|
||||
> <font size="4"><strong>),</strong></font> > <font size="4"> ‘sort’ => ‘cn’, //應該是沒作用
|
||||
> # ‘scope’ => ‘sub’,
|
||||
> # ‘filter’ => ‘(&(enabledService=mail)(enabledService=deliver)(enabledService=displayedInGlobalAddressBook)(|(objectClass=mailUser)(objectClass=mailList)(objectClass=mailAlias)))‘,
|
||||
> # ‘fuzzy_search’ => true,
|
||||
> # ‘vlv’ => false, // Enable Virtual List View to more efficiently fetch paginated data (if server supports it)
|
||||
> # ‘sizelimit’ => ‘0’, // Enables you to limit the count of entries fetched. Setting this to 0 means no limit.
|
||||
> # ‘timelimit’ => ‘0’, // Sets the number of seconds how long is spend on the search. Setting this to 0 means no limit.
|
||||
> # ‘referrals’ => false, // Sets the LDAP_OPT_REFERRALS option. Mostly used in multi-domain Active Directory setups</font>
|
||||
>
|
||||
> <font size="4">//底下這是群組的設定</font>
|
||||
>
|
||||
> <font size="4">‘group_filters’ => array(
|
||||
> ‘departments’ => array(
|
||||
> ‘name’ => ‘群組’,
|
||||
> ‘scope’ => ‘sub’,
|
||||
> #‘filter’ = > ‘(&(mail=<em>)(objectClass=group))‘,
|
||||
> ‘filter’ => ‘(&(mail=</em>)(objectClass=group)(!(msExchHideFromAddressLists=TRUE)))‘,
|
||||
> ‘name_attr’ => ‘description’,
|
||||
> ‘email’ => ‘mail’,
|
||||
> ),
|
||||
> ),</font>
|
||||
>
|
||||
> <font size="4">);
|
||||
> $config[‘autocomplete_addressbooks’] = array(‘sql’, ‘global_ldap_abook’);
|
||||
> </font>
|
||||
>
|
||||
> <font size="4">群組信箱看到的畫面會是這樣</font>
|
||||
>
|
||||
> <a href="http://wp.cowbay.org/wp-content/uploads/2016/01/firefox_2016-01-28_14-53-22.png"><img src="http://wp.cowbay.org/wp-content/uploads/2016/01/firefox_2016-01-28_14-53-22_thumb.png" alt="firefox_2016-01-28_14-53-22" title="firefox_2016-01-28_14-53-22" /></a></p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer">
|
||||
|
||||
|
||||
|
||||
<div class="tags">
|
||||
<i class="fa fa-tags"></i>
|
||||
<div class="links">
|
||||
|
||||
<a href="/tags/centos-iredmail-postfix-postfixadmin-virtual-domain">centos iredmail postfix postfixadmin virtual domain</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,413 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [筆記] Centos 6.x Dovecot Setting | My cool new Blog</title>
|
||||
<meta name="description" content="[筆記] Centos 6.x Dovecot Setting - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[筆記] Centos 6.x Dovecot Setting">
|
||||
<meta itemprop="description" content="[筆記] Centos 6.x Dovecot Setting - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[筆記] Centos 6.x Dovecot Setting">
|
||||
<meta property="og:description" content="[筆記] Centos 6.x Dovecot Setting - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e7-ad-86-e8-a8-98-centos-6-x-dovecot-setting/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e7-ad-86-e8-a8-98-centos-6-x-dovecot-setting/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e7-ad-86-e8-a8-98-centos-6-x-dovecot-setting/">[筆記] Centos 6.x Dovecot Setting</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2015-11-24</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>/etc/dovecot/conf.d/10-auth.conf</p>
|
||||
|
||||
<p>add</p>
|
||||
|
||||
<p>disable_plaingtext_auth = no</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>/etc/dovecot/conf.d/10-mail.conf</p>
|
||||
|
||||
<p>mail_location = mbox:~/mail:INBOX=/var/mail/%u</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>chkconfig dovecot on</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,428 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [筆記] centos 上安裝 netatalk 提供 time machine服務 | My cool new Blog</title>
|
||||
<meta name="description" content="[筆記] centos 上安裝 netatalk 提供 time machine服務 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[筆記] centos 上安裝 netatalk 提供 time machine服務">
|
||||
<meta itemprop="description" content="[筆記] centos 上安裝 netatalk 提供 time machine服務 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[筆記] centos 上安裝 netatalk 提供 time machine服務">
|
||||
<meta property="og:description" content="[筆記] centos 上安裝 netatalk 提供 time machine服務 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e7-ad-86-e8-a8-98-centos-e4-b8-8a-e5-ae-89-e8-a3-9d-netatalk-e6-8f-90-e4-be-9b-time-machine-e6-9c-8d-e5-8b-99/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e7-ad-86-e8-a8-98-centos-e4-b8-8a-e5-ae-89-e8-a3-9d-netatalk-e6-8f-90-e4-be-9b-time-machine-e6-9c-8d-e5-8b-99/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e7-ad-86-e8-a8-98-centos-e4-b8-8a-e5-ae-89-e8-a3-9d-netatalk-e6-8f-90-e4-be-9b-time-machine-e6-9c-8d-e5-8b-99/">[筆記] centos 上安裝 netatalk 提供 time machine服務</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2014-02-05</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>本來要在FreeBSD上安裝的</p>
|
||||
|
||||
<p>但是解決了 netatalk的問題,接下來又碰到 avahi的狀況,看樣子是要安裝一堆有的沒的套件。</p>
|
||||
|
||||
<p>所以想說換個平台,改來centos裝裝看。</p>
|
||||
|
||||
<p>netatalk & avahi 安裝很簡單,就yum install就好了</p>
|
||||
|
||||
<p>不過一開始依照這篇設定完,會發生錯誤</p>
|
||||
|
||||
<p><a href="http://quanterium.blogspot.tw/2011/11/using-scientific-linuxcentosrhel-6.html">http://quanterium.blogspot.tw/2011/11/using-scientific-linuxcentosrhel-6.html</a></p>
|
||||
|
||||
<p>Mac mini 要開啟 afp://192.168.10.248 的時候,雖然會詢問帳號密碼,但是輸入完成後,會跳一個警告視窗說不支援這個版本的</p>
|
||||
|
||||
<p>The server version you are trying to connect its not compatible. Please contact your system administrator to resolve the problem</p>
|
||||
|
||||
<p>還好下面的留言就有提到</p>
|
||||
|
||||
<p>Its working now:
|
||||
in:</p>
|
||||
|
||||
<p>/etc/netatalk/afpd.conf</p>
|
||||
|
||||
<p>I had to replace uams_dhx.so to uams_dhx2.so</p>
|
||||
|
||||
<p>And its working now..</p>
|
||||
|
||||
<p>修改完之後,就依照上面的指示,去打開Time Machine對網路磁碟的支援</p>
|
||||
|
||||
<p>defaults write com.apple.systempreferences TMShowUnsupportedNetworkVolumes 1</p>
|
||||
|
||||
<p>就可以開始使用time machine功能了!</p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,639 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [筆記] CentOS Linux 底下,偵測檔案內容異動 發信通知 | My cool new Blog</title>
|
||||
<meta name="description" content="[筆記] CentOS Linux 底下,偵測檔案內容異動 發信通知 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[筆記] CentOS Linux 底下,偵測檔案內容異動 發信通知">
|
||||
<meta itemprop="description" content="[筆記] CentOS Linux 底下,偵測檔案內容異動 發信通知 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[筆記] CentOS Linux 底下,偵測檔案內容異動 發信通知">
|
||||
<meta property="og:description" content="[筆記] CentOS Linux 底下,偵測檔案內容異動 發信通知 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e7-ad-86-e8-a8-98-centos-linux-e5-ba-95-e4-b8-8b-ef-bc-8c-e5-81-b5-e6-b8-ac-e6-aa-94-e6-a1-88-e5-85-a7-e5-ae-b9-e7-95-b0-e5-8b-95-e7-99-bc-e4-bf-a1-e9-80-9a-e7-9f-a5/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e7-ad-86-e8-a8-98-centos-linux-e5-ba-95-e4-b8-8b-ef-bc-8c-e5-81-b5-e6-b8-ac-e6-aa-94-e6-a1-88-e5-85-a7-e5-ae-b9-e7-95-b0-e5-8b-95-e7-99-bc-e4-bf-a1-e9-80-9a-e7-9f-a5/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e7-ad-86-e8-a8-98-centos-linux-e5-ba-95-e4-b8-8b-ef-bc-8c-e5-81-b5-e6-b8-ac-e6-aa-94-e6-a1-88-e5-85-a7-e5-ae-b9-e7-95-b0-e5-8b-95-e7-99-bc-e4-bf-a1-e9-80-9a-e7-9f-a5/">[筆記] CentOS Linux 底下,偵測檔案內容異動 發信通知</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2017-01-12</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>最近在玩很久以前弄好的Smokeping裡面的Notify功能,希望能在VPN斷線的時候,第一時間得到訊息</p>
|
||||
|
||||
<p>雖然設定好了,但感覺Smokeping在送出警告信件的速度有點慢</p>
|
||||
|
||||
<p>所以另外找了個方法去檢查 smokeping.log,當檔案內容有異動時,就會發信通知,然後放到crontab裡,每分鐘檢查一次</p>
|
||||
|
||||
<p>程式內容如下</p>
|
||||
|
||||
<p>
|
||||
> #!/usr/bin/env bash
|
||||
>
|
||||
> #
|
||||
>
|
||||
> # Provides : Check if a file is changed
|
||||
>
|
||||
> #
|
||||
>
|
||||
> # Limitations : none
|
||||
>
|
||||
> # Options : none
|
||||
>
|
||||
> # Requirements : bash, md5sum, cut
|
||||
>
|
||||
> #
|
||||
>
|
||||
> # Modified : 11|07|2014
|
||||
>
|
||||
> # Author : ItsMe
|
||||
>
|
||||
> # Reply to : n/a in public
|
||||
>
|
||||
> #
|
||||
>
|
||||
> # Editor : joe
|
||||
>
|
||||
> #
|
||||
>
|
||||
> #####################################
|
||||
>
|
||||
> #
|
||||
>
|
||||
> # OK - lets work
|
||||
>
|
||||
> #
|
||||
>
|
||||
>
|
||||
> # what file do we want to monitor?
|
||||
>
|
||||
> # I did not include commandline options
|
||||
>
|
||||
> # but its easy to catch a command line option
|
||||
>
|
||||
> # and replace the defaul given here
|
||||
>
|
||||
> file=/var/log/smokeping.log #設定要監控的目標檔案
|
||||
>
|
||||
>
|
||||
> # path to file’s saved md5sum
|
||||
>
|
||||
> # I did not spend much effort in naming this file
|
||||
>
|
||||
> # if you ahve to test multiple files
|
||||
>
|
||||
> # so just use a commandline option and use the given
|
||||
>
|
||||
> # file name like: filename=$(basename “$file”)
|
||||
>
|
||||
> fingerprintfile=/tmp/.bla.md5savefile #md5計算結果暫存檔
|
||||
>
|
||||
>
|
||||
> # does the file exist? #檢查目標檔案是否存在
|
||||
>
|
||||
> if [ ! -f $file ]
|
||||
>
|
||||
> then
|
||||
>
|
||||
> echo “ERROR: $file does not exist - aborting”
|
||||
>
|
||||
> exit 1
|
||||
>
|
||||
> fi
|
||||
>
|
||||
> # create the md5sum from the file to check #計算目標檔案的md5 checksum
|
||||
>
|
||||
> filemd5=<code>md5sum $file | cut -d " " -f1</code>
|
||||
>
|
||||
>
|
||||
> # check the md5 and
|
||||
>
|
||||
> # show an error when we check an empty file #確認不是空檔案
|
||||
>
|
||||
> if [ -z $filemd5 ]
|
||||
>
|
||||
> then
|
||||
>
|
||||
> echo “The file is empty - aborting”
|
||||
>
|
||||
> exit 1
|
||||
>
|
||||
> else
|
||||
>
|
||||
> # pass silent
|
||||
>
|
||||
> :
|
||||
>
|
||||
> fi
|
||||
>
|
||||
>
|
||||
> # do we have allready an saved fingerprint of this file?
|
||||
>
|
||||
> if [ -f $fingerprintfile ]
|
||||
>
|
||||
> then
|
||||
>
|
||||
> # yup - get the saved md5
|
||||
>
|
||||
> savedmd5=<code>cat $fingerprintfile</code>
|
||||
>
|
||||
>
|
||||
> # check again if its empty
|
||||
>
|
||||
> if [ -z $savedmd5 ]
|
||||
>
|
||||
> then
|
||||
>
|
||||
> echo “The file is empty - aborting”
|
||||
>
|
||||
> exit 1
|
||||
>
|
||||
> fi
|
||||
>
|
||||
>
|
||||
> #compare the saved md5 with the one we have now #比對暫存檔和目標檔案的check sum , 如果不相符就寄出信件並附上最後一行
|
||||
>
|
||||
> if [ “$savedmd5” = “$filemd5” ]
|
||||
>
|
||||
> then
|
||||
>
|
||||
> # pass silent
|
||||
>
|
||||
> :
|
||||
>
|
||||
> else
|
||||
>
|
||||
> # echo “File has been changed”
|
||||
>
|
||||
> tail -1 /var/log/smokeping.log |mail -s ‘Alert’ -v chchang@[192.168.10.240]
|
||||
>
|
||||
>
|
||||
> # this does an beep on your pc speaker (probably)
|
||||
>
|
||||
> # you get this character when you do:
|
||||
>
|
||||
> # CTRL+V CTRL+G
|
||||
>
|
||||
> fi
|
||||
>
|
||||
>
|
||||
> # do we have allready an saved fingerprint of this file?
|
||||
>
|
||||
> if [ -f $fingerprintfile ]
|
||||
>
|
||||
> then
|
||||
>
|
||||
> # yup - get the saved md5
|
||||
>
|
||||
> savedmd5=<code>cat $fingerprintfile</code>
|
||||
>
|
||||
>
|
||||
> # check again if its empty
|
||||
>
|
||||
> if [ -z $savedmd5 ]
|
||||
>
|
||||
> then
|
||||
>
|
||||
> echo “The file is empty - aborting”
|
||||
>
|
||||
> exit 1
|
||||
>
|
||||
> fi
|
||||
>
|
||||
>
|
||||
> #compare the saved md5 with the one we have now
|
||||
>
|
||||
> if [ “$savedmd5” = “$filemd5” ]
|
||||
>
|
||||
> then
|
||||
>
|
||||
> # pass silent
|
||||
>
|
||||
> :
|
||||
>
|
||||
> else
|
||||
>
|
||||
> # echo “File has been changed”
|
||||
>
|
||||
> tail -1 /var/log/smokeping.log |mail -s ‘Alert’ -v chchang@[192.168.10.240]
|
||||
>
|
||||
>
|
||||
> # this does an beep on your pc speaker (probably)
|
||||
>
|
||||
> # you get this character when you do:
|
||||
>
|
||||
> # CTRL+V CTRL+G
|
||||
>
|
||||
> # this is a bit creepy so you can use the ‘beep’ command
|
||||
>
|
||||
> # of your distro
|
||||
>
|
||||
> # or run some command you want to
|
||||
>
|
||||
> echo
|
||||
>
|
||||
> fi
|
||||
>
|
||||
>
|
||||
> fi
|
||||
>
|
||||
>
|
||||
> # save the current md5
|
||||
>
|
||||
> # sure you don’t have to do this when the file hasn’t changed
|
||||
>
|
||||
> # but you know I’m lazy and it works…
|
||||
>
|
||||
> echo $filemd5 > $fingerprintfile
|
||||
</p>
|
||||
|
||||
<p>編輯好之後,就放到crontab去</p>
|
||||
|
||||
<p>不過後來覺得有點脫褲子放屁了</p>
|
||||
|
||||
<p>實際的狀況會是這樣,由Smokeping發出的信件,和這個偵測機制發出的信件,其實也沒差幾秒鐘</p>
|
||||
|
||||
<p>似乎不必另外去偵測了</p>
|
||||
|
||||
<p><img src="http://wp.cowbay.org/wp-content/uploads/2017/01/2017-01-17_08-48-56.png" alt="2017-01-17_08-48-56" /></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,411 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [筆記] CloudStack 值得關注的技術 | My cool new Blog</title>
|
||||
<meta name="description" content="[筆記] CloudStack 值得關注的技術 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[筆記] CloudStack 值得關注的技術">
|
||||
<meta itemprop="description" content="[筆記] CloudStack 值得關注的技術 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[筆記] CloudStack 值得關注的技術">
|
||||
<meta property="og:description" content="[筆記] CloudStack 值得關注的技術 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e7-ad-86-e8-a8-98-cloudstack-e5-80-bc-e5-be-97-e9-97-9c-e6-b3-a8-e7-9a-84-e6-8a-80-e8-a1-93/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e7-ad-86-e8-a8-98-cloudstack-e5-80-bc-e5-be-97-e9-97-9c-e6-b3-a8-e7-9a-84-e6-8a-80-e8-a1-93/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e7-ad-86-e8-a8-98-cloudstack-e5-80-bc-e5-be-97-e9-97-9c-e6-b3-a8-e7-9a-84-e6-8a-80-e8-a1-93/">[筆記] CloudStack 值得關注的技術</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2015-09-14</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>CloudStack 是前兩年發展的 IaaS (基礎架構即服務)技術</p>
|
||||
|
||||
<p>最早是由VMOps公司開發,後來整間被 Citrix 買走( Citrix 自己有XenCenter啊,為何要買類似的技術?)</p>
|
||||
|
||||
<p>沒多久,Citrix 就把這個CloudStack Apache 軟體基金會,成為open source 軟體</p>
|
||||
|
||||
<p>經過這兩三年的發展,現在慢慢的邁入「堪用」階段,值得花點心力關注一下 CloudStack & OpenStack 接下來的發展</p>
|
||||
|
||||
<p>究竟有沒有機會幹掉 VMWARE ESX 成為伺服器虛擬化的要角呢?</p>
|
||||
|
||||
<p>讓我們繼續看下去~~~</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,399 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [筆記] Denyhosts Whitelist allowed-hosts | My cool new Blog</title>
|
||||
<meta name="description" content="[筆記] Denyhosts Whitelist allowed-hosts - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[筆記] Denyhosts Whitelist allowed-hosts">
|
||||
<meta itemprop="description" content="[筆記] Denyhosts Whitelist allowed-hosts - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[筆記] Denyhosts Whitelist allowed-hosts">
|
||||
<meta property="og:description" content="[筆記] Denyhosts Whitelist allowed-hosts - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e7-ad-86-e8-a8-98-denyhosts-whitelist-allowed-hosts/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e7-ad-86-e8-a8-98-denyhosts-whitelist-allowed-hosts/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e7-ad-86-e8-a8-98-denyhosts-whitelist-allowed-hosts/">[筆記] Denyhosts Whitelist allowed-hosts</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2015-11-24</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>/var/lib/denyhosts/allowed-hosts</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,423 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [筆記] Dovecot 拒絕特定使用者連線IMAP/POP3 / Reject specified user to connect IMAP/POP3 in dovecot | My cool new Blog</title>
|
||||
<meta name="description" content="[筆記] Dovecot 拒絕特定使用者連線IMAP/POP3 / Reject specified user to connect IMAP/POP3 in dovecot - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[筆記] Dovecot 拒絕特定使用者連線IMAP/POP3 / Reject specified user to connect IMAP/POP3 in dovecot">
|
||||
<meta itemprop="description" content="[筆記] Dovecot 拒絕特定使用者連線IMAP/POP3 / Reject specified user to connect IMAP/POP3 in dovecot - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[筆記] Dovecot 拒絕特定使用者連線IMAP/POP3 / Reject specified user to connect IMAP/POP3 in dovecot">
|
||||
<meta property="og:description" content="[筆記] Dovecot 拒絕特定使用者連線IMAP/POP3 / Reject specified user to connect IMAP/POP3 in dovecot - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e7-ad-86-e8-a8-98-dovecot-e6-8b-92-e7-b5-95-e7-89-b9-e5-ae-9a-e4-bd-bf-e7-94-a8-e8-80-85-e9-80-a3-e7-b7-9aimappop3-reject-specified-user-connect-imappop3-dovecot/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e7-ad-86-e8-a8-98-dovecot-e6-8b-92-e7-b5-95-e7-89-b9-e5-ae-9a-e4-bd-bf-e7-94-a8-e8-80-85-e9-80-a3-e7-b7-9aimappop3-reject-specified-user-connect-imappop3-dovecot/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e7-ad-86-e8-a8-98-dovecot-e6-8b-92-e7-b5-95-e7-89-b9-e5-ae-9a-e4-bd-bf-e7-94-a8-e8-80-85-e9-80-a3-e7-b7-9aimappop3-reject-specified-user-connect-imappop3-dovecot/">[筆記] Dovecot 拒絕特定使用者連線IMAP/POP3 / Reject specified user to connect IMAP/POP3 in dovecot</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-12-02</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div>
|
||||
<div>ref:http://www.linuxsolved.com/forums/index.php?topic=3517.0</div>
|
||||
<div></div>
|
||||
<div></div>
|
||||
<div id="msg_10129">If users having static IP Addresses on their machines, Yes it is possible with iptables. Just apply following command can restrict the user to access POP3 and IMAP:# iptables -t filter -I INPUT -s <user's IP Address> -p tcp --dport 110 -d <mail server IP> -j REJECT (or DROP)
|
||||
# iptables -t filter -I INPUT -s <user's IP Address> -p tcp --dport 143 -d <mail server IP> -j REJECT (or DROP)
|
||||
|
||||
Dont use Mail server IP in case of mail server hosted on this machine.
|
||||
|
||||
You can also deny the users in pop3 and imap server like if you have dovecot just remove the comment from following lines in dovecot.conf file. Create files and restart dovecot,
|
||||
|
||||
1.)
|
||||
|
||||
</div>
|
||||
> <div><span style="color: #ff0000;"> passdb passwd-file {</span>
|
||||
>
|
||||
> <span style="color: #ff0000;"> File contains a list of usernames, one per line</span>
|
||||
>
|
||||
> <span style="color: #ff0000;"> args = /etc/dovecot.deny</span>
|
||||
>
|
||||
> <span style="color: #ff0000;"> deny = yes</span>
|
||||
>
|
||||
> <span style="color: #ff0000;"> }</span></div>
|
||||
<div>2.) Create /etc/dovecot.deny file and add username inside to the file.for more help on dovecot go through the following link : [http://wiki.dovecot.org/Authentication/RestrictAccess](http://wiki.dovecot.org/Authentication/RestrictAccess)
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,411 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [筆記] 中華電信也被拿來騙帳號密碼了 | My cool new Blog</title>
|
||||
<meta name="description" content="[筆記] 中華電信也被拿來騙帳號密碼了 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[筆記] 中華電信也被拿來騙帳號密碼了">
|
||||
<meta itemprop="description" content="[筆記] 中華電信也被拿來騙帳號密碼了 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[筆記] 中華電信也被拿來騙帳號密碼了">
|
||||
<meta property="og:description" content="[筆記] 中華電信也被拿來騙帳號密碼了 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e7-ad-86-e8-a8-98-e4-b8-ad-e8-8f-af-e9-9b-bb-e4-bf-a1-e4-b9-9f-e8-a2-ab-e6-8b-bf-e4-be-86-e9-a8-99-e5-b8-b3-e8-99-9f-e5-af-86-e7-a2-bc-e4-ba-86/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e7-ad-86-e8-a8-98-e4-b8-ad-e8-8f-af-e9-9b-bb-e4-bf-a1-e4-b9-9f-e8-a2-ab-e6-8b-bf-e4-be-86-e9-a8-99-e5-b8-b3-e8-99-9f-e5-af-86-e7-a2-bc-e4-ba-86/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e7-ad-86-e8-a8-98-e4-b8-ad-e8-8f-af-e9-9b-bb-e4-bf-a1-e4-b9-9f-e8-a2-ab-e6-8b-bf-e4-be-86-e9-a8-99-e5-b8-b3-e8-99-9f-e5-af-86-e7-a2-bc-e4-ba-86/">[筆記] 中華電信也被拿來騙帳號密碼了</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2015-12-04</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>剛剛收到的郵件,這是第一次看到以中華電信名義來騙帳號密碼的郵件</p>
|
||||
|
||||
<p>不過啊……你忘記換成繁體字了啦!</p>
|
||||
|
||||
<p>最好中華電信會用簡體字發信出來給客戶啦~</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/12/2015-12-04_13-33-45.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/12/2015-12-04_13-33-45.png" alt="2015-12-04_13-33-45" /></a></p>
|
||||
|
||||
<p>點連結以後,不意外的會開啟一個要你登入帳號密碼的網頁</p>
|
||||
|
||||
<p>到這邊還會被騙,那也不知道該說啥了…</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/12/2015-12-04_13-34-14.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/12/2015-12-04_13-34-14-1024x583.png" alt="2015-12-04_13-34-14" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,405 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [筆記]中華電信光世代雙向100 連google服務怪怪的 | My cool new Blog</title>
|
||||
<meta name="description" content="[筆記]中華電信光世代雙向100 連google服務怪怪的 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[筆記]中華電信光世代雙向100 連google服務怪怪的">
|
||||
<meta itemprop="description" content="[筆記]中華電信光世代雙向100 連google服務怪怪的 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[筆記]中華電信光世代雙向100 連google服務怪怪的">
|
||||
<meta property="og:description" content="[筆記]中華電信光世代雙向100 連google服務怪怪的 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e7-ad-86-e8-a8-98-e4-b8-ad-e8-8f-af-e9-9b-bb-e4-bf-a1-e5-85-89-e4-b8-96-e4-bb-a3-e9-9b-99-e5-90-91100-e9-80-a3google-e6-9c-8d-e5-8b-99-e6-80-aa-e6-80-aa-e7-9a-84/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e7-ad-86-e8-a8-98-e4-b8-ad-e8-8f-af-e9-9b-bb-e4-bf-a1-e5-85-89-e4-b8-96-e4-bb-a3-e9-9b-99-e5-90-91100-e9-80-a3google-e6-9c-8d-e5-8b-99-e6-80-aa-e6-80-aa-e7-9a-84/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e7-ad-86-e8-a8-98-e4-b8-ad-e8-8f-af-e9-9b-bb-e4-bf-a1-e5-85-89-e4-b8-96-e4-bb-a3-e9-9b-99-e5-90-91100-e9-80-a3google-e6-9c-8d-e5-8b-99-e6-80-aa-e6-80-aa-e7-9a-84/">[筆記]中華電信光世代雙向100 連google服務怪怪的</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-10-14</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>這兩天發現在google搜尋列直接打關鍵字搜尋,常常會網頁一開就好久,最後導致逾時的情況。</p>
|
||||
|
||||
<p>開youtube也是影片LOAD好久。</p>
|
||||
|
||||
<p>但是又不是一直都這樣,一下正常一下有問題。</p>
|
||||
|
||||
<p>看了一下防火牆上的流量圖,流量也都很低呀,感覺連線怪怪的。</p>
|
||||
|
||||
<p>如果把搜尋引擎換成yahoo/hinet等等,就不會有這種狀況,可能要來跟中華電信報修看看。</p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,542 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [筆記] 攻擊 IP | My cool new Blog</title>
|
||||
<meta name="description" content="[筆記] 攻擊 IP - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[筆記] 攻擊 IP">
|
||||
<meta itemprop="description" content="[筆記] 攻擊 IP - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[筆記] 攻擊 IP">
|
||||
<meta property="og:description" content="[筆記] 攻擊 IP - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e7-ad-86-e8-a8-98-e4-bb-8a-e6-97-a5-e6-94-bb-e6-93-8a-ip/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e7-ad-86-e8-a8-98-e4-bb-8a-e6-97-a5-e6-94-bb-e6-93-8a-ip/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e7-ad-86-e8-a8-98-e4-bb-8a-e6-97-a5-e6-94-bb-e6-93-8a-ip/">[筆記] 攻擊 IP</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-11-07</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>2013/12/13</p>
|
||||
|
||||
<p>1.85.41.122
|
||||
109.169.40.167
|
||||
110.208.181.72
|
||||
111.193.125.255
|
||||
111.206.128.187
|
||||
111.207.17.36
|
||||
111.250.100.213
|
||||
111.67.197.7
|
||||
112.67.118.<sup>19</sup>⁄<sub>16</sub>
|
||||
112.81.2.221
|
||||
113.104.249.251
|
||||
113.119.41.4
|
||||
113.122.212.<sup>182</sup>⁄<sub>16</sub>
|
||||
113.240.4.<sup>183</sup>⁄<sub>16</sub>
|
||||
113.244.236.<sup>81</sup>⁄<sub>16</sub>
|
||||
113.247.26.<sup>60</sup>⁄<sub>16</sub>
|
||||
114.112.190.<sup>16</sup>⁄<sub>16</sub>
|
||||
114.219.175.<sup>33</sup>⁄<sub>24</sub>
|
||||
114.249.86.<sup>21</sup>⁄<sub>24</sub>
|
||||
114.54.1.242
|
||||
114.80.207.166
|
||||
114.97.99.191
|
||||
114.99.20.214
|
||||
116.11.252.198
|
||||
116.21.128.<sup>72</sup>⁄<sub>16</sub>
|
||||
116.25.251.27
|
||||
117.158.2.74
|
||||
117.23.233.156
|
||||
117.79.91.230
|
||||
118.119.125.119
|
||||
118.123.11.51
|
||||
118.186.156.29
|
||||
12.131.227.140
|
||||
12.234.218.138
|
||||
121.127.248.197
|
||||
121.35.143.246
|
||||
121.35.164.203
|
||||
121.35.52.86
|
||||
121.35.54.192
|
||||
122.193.73.140
|
||||
124.205.206.161
|
||||
124.73.107.199
|
||||
124.73.86.199
|
||||
125.76.246.21
|
||||
125.89.61.22
|
||||
139.226.145.66
|
||||
14.150.37.145
|
||||
162.221.184.147
|
||||
173.219.32.32
|
||||
175.0.185.22
|
||||
175.25.242.<sup>21</sup>⁄<sub>24</sub>
|
||||
175.41.41.189
|
||||
175.8.24.183
|
||||
176.61.139.183
|
||||
180.127.163.100
|
||||
182.37.152.<sup>154</sup>⁄<sub>16</sub>
|
||||
182.52.233.38
|
||||
183.0.168.235
|
||||
183.0.171.75
|
||||
183.0.186.190
|
||||
183.0.197.95
|
||||
183.10.197.36
|
||||
183.13.214.122
|
||||
183.13.244.191
|
||||
183.2.138.161
|
||||
183.60.99.<sup>146</sup>⁄<sub>16</sub>
|
||||
184.22.11.<sup>11</sup>⁄<sub>16</sub>
|
||||
184.70.64.<sup>34</sup>⁄<sub>24</sub>
|
||||
192.210.48.4
|
||||
192.3.171.85
|
||||
199.114.241.42
|
||||
199.114.246.190
|
||||
199.192.152.<sup>27</sup>⁄<sub>16</sub>
|
||||
200.178.189.91
|
||||
202.146.217.130
|
||||
207.231.214.131
|
||||
211.140.160.194
|
||||
211.167.112.194
|
||||
211.91.220.<sup>104</sup>⁄<sub>16</sub>
|
||||
217.160.6.81
|
||||
218.65.221.84
|
||||
218.68.6.87
|
||||
218.76.10.34
|
||||
219.150.39.190
|
||||
220.174.188.42
|
||||
221.130.14.88
|
||||
222.126.168.<sup>3</sup>⁄<sub>24</sub>
|
||||
222.240.53.109
|
||||
222.244.222.55
|
||||
223.144.110.56
|
||||
223.198.97.70
|
||||
223.199.128.<sup>138</sup>⁄<sub>16</sub>
|
||||
223.241.160.<sup>104</sup>⁄<sub>16</sub>
|
||||
23.231.4.80
|
||||
27.24.141.45
|
||||
27.37.139.92
|
||||
27.37.203.146
|
||||
31.28.147.141
|
||||
37.99.71.173
|
||||
41.82.16.196
|
||||
42.49.210.<sup>88</sup>⁄<sub>16</sub>
|
||||
46.149.111.93
|
||||
46.19.97.174
|
||||
46.29.255.161
|
||||
5.199.170.106
|
||||
50.202.171.113
|
||||
50.74.20.13
|
||||
58.250.94.210
|
||||
58.54.204.236
|
||||
58.56.136.163
|
||||
58.61.222.171
|
||||
58.62.24.231
|
||||
59.188.244.53
|
||||
59.50.58.<sup>86</sup>⁄<sub>16</sub>
|
||||
60.166.5.156
|
||||
61.129.51.222
|
||||
61.140.38.79
|
||||
64.140.223.11
|
||||
66.168.170.55
|
||||
68.190.17.99
|
||||
74.205.54.149
|
||||
74.7.114.202
|
||||
83.242.255.16
|
||||
84.52.64.125
|
||||
89.165.117.61
|
||||
89.171.32.58
|
||||
89.188.122.254
|
||||
96.126.126.30
|
||||
97.64.150.7
|
||||
98.126.1.154
|
||||
80.255.3.82
|
||||
212.67.215.178
|
||||
176.61.139.119
|
||||
173.18.176.254
|
||||
68.248.41.221
|
||||
64.199.111.26
|
||||
207.198.125.242
|
||||
119.224.20.236
|
||||
218.107.8.195
|
||||
61.129.185.229
|
||||
58.54.18.116
|
||||
91.143.69.232
|
||||
92.62.123.123
|
||||
115.58.133.151</p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,605 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [筆記] 修改iredmail 的 postfix 在mail header加入自訂的 tag | My cool new Blog</title>
|
||||
<meta name="description" content="[筆記] 修改iredmail 的 postfix 在mail header加入自訂的 tag - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[筆記] 修改iredmail 的 postfix 在mail header加入自訂的 tag">
|
||||
<meta itemprop="description" content="[筆記] 修改iredmail 的 postfix 在mail header加入自訂的 tag - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[筆記] 修改iredmail 的 postfix 在mail header加入自訂的 tag">
|
||||
<meta property="og:description" content="[筆記] 修改iredmail 的 postfix 在mail header加入自訂的 tag - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e7-ad-86-e8-a8-98-e4-bf-ae-e6-94-b9iredmail-e7-9a-84-postfix-e5-9c-a8mail-header-e5-8a-a0-e5-85-a5-e8-87-aa-e8-a8-82-e7-9a-84-tag/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e7-ad-86-e8-a8-98-e4-bf-ae-e6-94-b9iredmail-e7-9a-84-postfix-e5-9c-a8mail-header-e5-8a-a0-e5-85-a5-e8-87-aa-e8-a8-82-e7-9a-84-tag/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e7-ad-86-e8-a8-98-e4-bf-ae-e6-94-b9iredmail-e7-9a-84-postfix-e5-9c-a8mail-header-e5-8a-a0-e5-85-a5-e8-87-aa-e8-a8-82-e7-9a-84-tag/">[筆記] 修改iredmail 的 postfix 在mail header加入自訂的 tag</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2016-12-19</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>之前因為公司的MAIL SERVER遭受退信攻擊</p>
|
||||
|
||||
<p>USER收到非常大量的退信,由於Anti-SPAM的機制目前沒有比較完整的處理方式</p>
|
||||
|
||||
<p>所以我跟工程師討論之後,提出在現有SPF/DKIM以外,是不是可以在mail header加入一個特定的tag</p>
|
||||
|
||||
<p>當收到退信,而這封退信的header中沒有包含我設定的tag,那就可以確定這是SPAM,直接丟掉就好</p>
|
||||
|
||||
<p>可惜的是,現在用的SPAM Gateway沒有這樣的功能,只能直接把account 加入拒收退信名單(有點鴕鳥心態..)</p>
|
||||
|
||||
<p></p>
|
||||
|
||||
<p>不過有個稽核的機制可以搭配使用,如果我能夠在postfix 中,對於寄出的信件加入tag,那這個稽核機制就可以在信件進來的時候進行檢查</p>
|
||||
|
||||
<p>假如是退信而且header中包含有tag,就是正常的退信,否則就直接丟掉</p>
|
||||
|
||||
<p>OK,那就要先來研究怎麼在postfix中,在header加入tag,其實方法很簡單</p>
|
||||
|
||||
<p>而且這個方法之前在還沒有建置郵件過濾軟體時,就有用來過濾含有病毒的附件</p>
|
||||
|
||||
<p>只要在postfix的 main.cf 加入
|
||||
> header_checks = pcre:/etc/postfix/header_checks
|
||||
然後修改 /etc/postfix/header_checks 內容如下
|
||||
> /^From:.<em>@abc.org.</em>/i PREPEND tag: sendfromabcorg
|
||||
>
|
||||
> /^From:.<em>@123.com.cn.</em>/i PREPEND tag: sendfrom123comcn
|
||||
語法是正規化表示式,其實我也不太懂,大概的意思是找到From:xxxxx@abc.org 的那一行,在前面加入 tag:sendfromabcorg</p>
|
||||
|
||||
<p>當然 tag要改成什麼可以自行定義,不同的DOMAIN要分開來寫</p>
|
||||
|
||||
<p>好了之後,產生db 然後重起postfix
|
||||
> postmap -f /etc/postfix/header_checks
|
||||
>
|
||||
>
|
||||
> service postfix restart
|
||||
接著寄出信件測試看看,底下這是我寄到微軟Office 365的信箱的郵件標頭,可以看到微軟自己也加了很多header進去,然後前面提到的SPF & DKIM也都有生效了。</p>
|
||||
|
||||
<p>
|
||||
> Received: from HK2PR01MB0785.apcprd01.prod.exchangelabs.com (10.165.54.151) by
|
||||
>
|
||||
> KL1PR01MB0789.apcprd01.prod.exchangelabs.com (10.165.16.151) with Microsoft
|
||||
>
|
||||
> SMTP Server (version=TLS1_2,
|
||||
>
|
||||
> cipher=TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384_P384) id 15.1.761.9 via Mailbox
|
||||
>
|
||||
> Transport; Wed, 14 Dec 2016 05:35:00 +0000
|
||||
>
|
||||
> Received: from SG2PR01CA0069.apcprd01.prod.exchangelabs.com (10.165.10.37) by
|
||||
>
|
||||
> HK2PR01MB0785.apcprd01.prod.exchangelabs.com (10.165.54.151) with Microsoft
|
||||
>
|
||||
> SMTP Server (version=TLS1_2,
|
||||
>
|
||||
> cipher=TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384_P384) id 15.1.761.9; Wed, 14 Dec
|
||||
>
|
||||
> 2016 05:34:58 +0000
|
||||
>
|
||||
> Received: from HK2APC01FT052.eop-APC01.prod.protection.outlook.com
|
||||
>
|
||||
> (2a01:111:f400:7ebc::203) by SG2PR01CA0069.outlook.office365.com
|
||||
>
|
||||
> (2a01:111:e400:79a7::37) with Microsoft SMTP Server (version=TLS1_2,
|
||||
>
|
||||
> cipher=TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384_P384) id 15.1.761.9 via Frontend
|
||||
>
|
||||
> Transport; Wed, 14 Dec 2016 05:34:58 +0000
|
||||
>
|
||||
> <span style="color: #ff0000;">Authentication-Results: spf=pass (sender IP is 123.123.123.123)</span>
|
||||
>
|
||||
> <span style="color: #ff0000;"> smtp.mailfrom=abc.org; def.us; dkim=pass (signature was verified)</span>
|
||||
>
|
||||
> <span style="color: #ff0000;"> header.d=abc.org;def.us; dmarc=bestguesspass action=none</span>
|
||||
>
|
||||
> <span style="color: #ff0000;"> header.from=abc.org;def.us; dkim=pass (signature was verified)</span>
|
||||
>
|
||||
> <span style="color: #ff0000;"> header.d=abc.org;</span>
|
||||
>
|
||||
> <span style="color: #ff0000;">Received-SPF: Pass (protection.outlook.com: domain of abc.org designates</span>
|
||||
>
|
||||
> <span style="color: #ff0000;"> 123.123.123.123 as permitted sender) receiver=protection.outlook.com;</span>
|
||||
>
|
||||
> <span style="color: #ff0000;"> client-ip=123.123.123.123; helo=iredmail.abc.org;</span>
|
||||
>
|
||||
> Received: from iredmail.abc.org (123.123.123.123) by
|
||||
>
|
||||
> HK2APC01FT052.mail.protection.outlook.com (10.152.248.244) with Microsoft
|
||||
>
|
||||
> SMTP Server (version=TLS1_2,
|
||||
>
|
||||
> cipher=TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384_P384) id 15.1.761.6 via Frontend
|
||||
>
|
||||
> Transport; Wed, 14 Dec 2016 05:34:56 +0000
|
||||
>
|
||||
> X-IncomingTopHeaderMarker: OriginalChecksum:;UpperCasedChecksum:;SizeAsReceived:1619;Count:17
|
||||
>
|
||||
> Received: from iredmail.abc.org (localhost [127.0.0.1])
|
||||
>
|
||||
> by iredmail.abc.org (Postfix) with ESMTP id 55E6441D4A
|
||||
>
|
||||
> for <mc@def.us>; Wed, 14 Dec 2016 13:30:51 +0800 (CST)
|
||||
>
|
||||
> <span style="color: #ff0000;">Authentication-Results: iredmail.abc.org (amavisd-new);</span>
|
||||
>
|
||||
> <span style="color: #ff0000;"> dkim=pass (1024-bit key) reason=“pass (just generated, assumed good)”</span>
|
||||
>
|
||||
> <span style="color: #ff0000;"> header.d=abc.org</span>
|
||||
>
|
||||
> <span style="color: #ff0000;">DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=abc.org; h=</span>
|
||||
>
|
||||
> <span style="color: #ff0000;"> user-agent:message-id:subject:subject:to:from:from:date:date</span>
|
||||
>
|
||||
> <span style="color: #ff0000;"> :content-transfer-encoding:content-type:content-type</span>
|
||||
>
|
||||
> <span style="color: #ff0000;"> :mime-version; s=dkim; t=1481693448; x=1482557449; bh=t1I5qi5Iyz</span>
|
||||
>
|
||||
> <span style="color: #ff0000;"> cB1IzeIAdCFQ+GnzUuHHMeCINT2eeH7dQ=; b=S789EtkuZDA2JbKpApkW+Spe3L</span>
|
||||
>
|
||||
> <span style="color: #ff0000;"> epmjIgdyA7AigMyYfAzK5DD2fbiIZ41o0dPYhO7+KNo8KA/P2ncUPdGLHqPAGmWC</span>
|
||||
>
|
||||
> <span style="color: #ff0000;"> rqfHf+lNSGVAUf5nJ6+eOYqmLyBFwh8EBC3gsH4P7OXo99HEemTc7ehhBNSfBnvQ</span>
|
||||
>
|
||||
> <span style="color: #ff0000;"> NcqEPVvrugB7xjc0c=</span>
|
||||
>
|
||||
> X-Virus-Scanned: amavisd-new at iredmail.abc.org
|
||||
>
|
||||
> Received: from iredmail.abc.org ([127.0.0.1])
|
||||
>
|
||||
> by iredmail.abc.org (iredmail.abc.org [127.0.0.1]) (amavisd-new, port 10026)
|
||||
>
|
||||
> with ESMTP id q6WPshsekkVi for <mc@def.us>;
|
||||
>
|
||||
> Wed, 14 Dec 2016 13:30:48 +0800 (CST)
|
||||
>
|
||||
> Received: from iredmail.abc.org (localhost [127.0.0.1])
|
||||
>
|
||||
> by iredmail.abc.org (Postfix) with ESMTPSA id E302341995
|
||||
>
|
||||
> for <mc@def.us>; Wed, 14 Dec 2016 13:30:47 +0800 (CST)
|
||||
>
|
||||
> MIME-Version: 1.0
|
||||
>
|
||||
> Content-Type: text/plain; charset=“US-ASCII”; format=flowed
|
||||
>
|
||||
> Content-Transfer-Encoding: 7bit
|
||||
>
|
||||
> Date: Wed, 14 Dec 2016 13:30:47 +0800
|
||||
>
|
||||
> <span style="color: #ff0000;">tag: sendfromabcorg</span>
|
||||
>
|
||||
> From: mc@abc.org
|
||||
>
|
||||
> To: mc@def.org
|
||||
>
|
||||
> Subject: DKIM and SPF Test
|
||||
>
|
||||
> Message-ID: <cec6f4052e6853c945fbe7b1401dac7e@abc.org>
|
||||
>
|
||||
> X-Sender: mc@abc.org
|
||||
>
|
||||
> X-Sender: mc@abc.org
|
||||
>
|
||||
>
|
||||
> User-Agent: Roundcube Webmail
|
||||
>
|
||||
> X-IncomingHeaderCount: 17
|
||||
>
|
||||
> Return-Path: mc@abc.org
|
||||
>
|
||||
> X-MS-Exchange-Organization-Network-Message-Id: 9edc853e-86cc-4b50-2a64-08d423e2f07d
|
||||
>
|
||||
> X-EOPAttributedMessage: 0
|
||||
>
|
||||
> X-EOPTenantAttributedMessage: 70116e8e-9694-4e77-924c-3e6cb9fdebb2:0
|
||||
>
|
||||
> X-MS-Exchange-Organization-MessageDirectionality: Incoming
|
||||
>
|
||||
> X-Forefront-Antispam-Report: CIP:123.123.123.123;IPV:NLI;CTRY:TW;EFV:NLI;SFV:NSPM;SFS:(6009001)(8196002)(2990300002)(438002)(199003)(189002)(2160300002)(230700001)(47776003)(558084003)(450100001)(54356999)(3480700004)(108616004)(588024002)(3250700002)(77096006)(33646002)(38730400001)(50986999)(92566002)(50466002)(83506001)(76506005)(356003)(53416004)(956001)(305945005)(1096003)(106466001)(85782001)(8896002)(81166006)(81156014)(55920200001)(2361001)(8676002)(2810700001)(189998001)(2351001)(93046001)(23726003)(236004)(86362001)(5660300001)(626004)(6916009)(24736003)(4270600005)(110136003)(107886002)(7126002)(4001350100001)(36756003)(69596002)(7099028)(85772001)<span style="color: #ff0000;">;DIR:INB;SFP:;SCL:1;SRVR:HK2PR01MB0785;H:iredmail.abc.org;FPR:;SPF:Pass;PTR:60-251-177-4.HINET-IP.hinet.net;A:1;MX:1;LANG:en</span>;
|
||||
>
|
||||
> X-Microsoft-Exchange-Diagnostics: 1;HK2APC01FT052;1:ew53ZhRD979FZT1RtwHWaJXr6nX94/pSosUc5YYzEK4/2RDIfQ7vO01nm75BpbWWlbXDkn4y237jrnDXGZEtF2iGl3Tuw2RZWIM0W71t+8MJRDMwqVgoxfI3h5ER546fw+T97frvoCKtyJJmncj0U3r6Sk7Kgl2IU6hSMsrbdDcA8gFiHXDXKCyA+U7E2njAZCdc/9Yza3TSYeNSOACpHnam2CW7naXU6lHdXb2dfxkOWTwBAvGGSg2IeMZAJjOCNAH1jUN6jzp0RAceAUw1Bc19PZtHFgOleZPhDDNqf1mWQM6U17+TShIWR4ynIwPWsZ6fXitCyO7/VAu/vlweuvo2iHcB6u3EDzcKEXWKrT7sHWhcRpa8yJ6tZRNvMV0+4j1wTuDk2SIMQynqMz1l3wF0bx1eYqhADVFg9MtLALCGkg6OkijfbfLfhxybIEPVyGJBNz0siW45d4q19JfcaPMFGVeWTrtJOjjS8vFJ6JCGK2r+HMaHOEYLbZpXQvEmF8VkA4JPtABBdAl0dOxM3rGvCSpExF7qfYfbb/vaRPk=
|
||||
>
|
||||
> X-MS-Office365-Filtering-Correlation-Id: 9edc853e-86cc-4b50-2a64-08d423e2f07d
|
||||
>
|
||||
> <span style="color: #ff0000;">X-DkimResult-Test: Passed</span>
|
||||
>
|
||||
> X-Microsoft-Antispam: UriScan:;BCL:0;PCL:0;RULEID:(22001)(81800161)(8251501002)(3001016)(71701004)(71702072);SRVR:HK2PR01MB0785;
|
||||
>
|
||||
> ……………………
|
||||
>
|
||||
>
|
||||
> ……………………….
|
||||
>
|
||||
>
|
||||
> 底下省略數十行…
|
||||
到這邊,在mail header加入tag的工作就完成了,剩下就要看那個NOPAM的稽核機制,能不能達成我要的功能了。</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer">
|
||||
|
||||
|
||||
|
||||
<div class="tags">
|
||||
<i class="fa fa-tags"></i>
|
||||
<div class="links">
|
||||
|
||||
<a href="/tags/iredmail">iredmail</a>
|
||||
|
||||
<a href="/tags/postfix">postfix</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,499 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [筆記]值得推薦的優質VPS 廠商 -Hos Virtual - http://www.vr.org | My cool new Blog</title>
|
||||
<meta name="description" content="[筆記]值得推薦的優質VPS 廠商 -Hos Virtual - http://www.vr.org - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[筆記]值得推薦的優質VPS 廠商 -Hos Virtual - http://www.vr.org">
|
||||
<meta itemprop="description" content="[筆記]值得推薦的優質VPS 廠商 -Hos Virtual - http://www.vr.org - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[筆記]值得推薦的優質VPS 廠商 -Hos Virtual - http://www.vr.org">
|
||||
<meta property="og:description" content="[筆記]值得推薦的優質VPS 廠商 -Hos Virtual - http://www.vr.org - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e7-ad-86-e8-a8-98-e5-80-bc-e5-be-97-e6-8e-a8-e8-96-a6-e7-9a-84-e5-84-aa-e8-b3-aavps-e5-bb-a0-e5-95-86-hos-virtual-httpwww-vr-org/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e7-ad-86-e8-a8-98-e5-80-bc-e5-be-97-e6-8e-a8-e8-96-a6-e7-9a-84-e5-84-aa-e8-b3-aavps-e5-bb-a0-e5-95-86-hos-virtual-httpwww-vr-org/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e7-ad-86-e8-a8-98-e5-80-bc-e5-be-97-e6-8e-a8-e8-96-a6-e7-9a-84-e5-84-aa-e8-b3-aavps-e5-bb-a0-e5-95-86-hos-virtual-httpwww-vr-org/">[筆記]值得推薦的優質VPS 廠商 -Hos Virtual - http://www.vr.org</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-10-11</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>這幾天想說測試一下明年度有沒有可能把大陸的MAIL SERVER都移去雲端空間,透過NOPAM做過濾和備份。</p>
|
||||
|
||||
<p>因為NOPAM是基於freebsd安裝,所以找了幾家支援freebsd的VPS廠商。</p>
|
||||
|
||||
<p>要不就是太貴,要不就是機房都在美國、歐洲,幾乎沒有幾家亞洲的廠商有做freebsd的。</p>
|
||||
|
||||
<p>即使公司在用的400apps也沒有,不然400apps真的是商用第一選擇!</p>
|
||||
|
||||
<p></p>
|
||||
|
||||
<p>最後終於找到這家 <a href="http://www.vr.org">Host Virtual</a></p>
|
||||
|
||||
<p>價格很優惠,10 美金起跳
|
||||
<table id="plans_table">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>VRp5</td>
|
||||
<td>512MB</td>
|
||||
<td>10GB</td>
|
||||
<td>200GB</td>
|
||||
<td>100 Mbps</td>
|
||||
<td>$10</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
20美金
|
||||
<table id="plans_table">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>VR1G</td>
|
||||
<td>1024MB</td>
|
||||
<td>20GB</td>
|
||||
<td>2000GB</td>
|
||||
<td>100 Mbps</td>
|
||||
<td>$20</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
40美金 <–我這次測試的規格
|
||||
<table id="plans_table">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>VR2G</td>
|
||||
<td>2048MB</td>
|
||||
<td>40GB</td>
|
||||
<td>4000GB</td>
|
||||
<td>100 Mbps</td>
|
||||
<td>$40</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
除了硬碟空間之外,其他是很夠用了。</p>
|
||||
|
||||
<p>當然,價格雖然是考慮因素之一,但是這家廠商採用全虛擬技術,所以可以直接用Freebsd,或者是自己的ISO檔案。</p>
|
||||
|
||||
<p>如果要安裝自己的ISO,在訂購後,發ticket給技術支援,上班時間內很快就會回覆。</p>
|
||||
|
||||
<p>只要提供連結和簡單的ISO敘述,技術人員就會協助把ISO mount到VPS的光碟去,接著修改選項,從光碟優先開機,就可以開始安裝了。</p>
|
||||
|
||||
<p>不過,速度、價格、功能什麼的都不是我這次要說的重點,重點是在上班時間內,他們客服的回覆速度實在有夠快的!</p>
|
||||
|
||||
<p>不囉唆,直接看信件回覆的速度!</p>
|
||||
|
||||
<p>從底族片可以看到,每封信件來回大概都不超過10分鐘,很多都還是我回信之後,我人就跑掉了,所以往返時間拉得比較長。</p>
|
||||
|
||||
<p>而且處理的內容也很到位,不像有的VPS,發ticket出去根本不太鳥你..</p>
|
||||
|
||||
<p><a href="http://www.cowbay.org/wp-content/uploads/2013/10/hostvirtual-01.png"><img src="http://www.cowbay.org/wp-content/uploads/2013/10/hostvirtual-01-1024x353.png" alt="hostvirtual-01" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>除了一開始因為要改用全虛擬的關係,在vnc遠端遙控上有出了一些問題,幾過幾次跟客服人員的溝通,最後也順利解決!</p>
|
||||
|
||||
<p>其他的到現在用起來還滿順的,ping hinet dns 速度大概在2x ms左右,比我家裡的ADSL還快 0rz ..
|
||||
> mx# ping 168.95.1.1
|
||||
>
|
||||
> PING 168.95.1.1 (168.95.1.1): 56 data bytes
|
||||
>
|
||||
> 64 bytes from 168.95.1.1: icmp_seq=0 ttl=246 time=24.378 ms
|
||||
>
|
||||
> 64 bytes from 168.95.1.1: icmp_seq=1 ttl=246 time=26.157 ms
|
||||
>
|
||||
> 64 bytes from 168.95.1.1: icmp_seq=2 ttl=246 time=24.336 ms
|
||||
>
|
||||
> 64 bytes from 168.95.1.1: icmp_seq=3 ttl=246 time=24.582 ms
|
||||
>
|
||||
> ^C
|
||||
>
|
||||
> — 168.95.1.1 ping statistics —
|
||||
>
|
||||
> 4 packets transmitted, 4 packets received, 0.0% packet loss
|
||||
>
|
||||
> round-trip min/avg/max/stddev = 24.<sup>336</sup>⁄<sub>24</sub>.<sup>863</sup>⁄<sub>26</sub>.<sup>157</sup>⁄<sub>0</sub>.753 ms
|
||||
>
|
||||
> mx#
|
||||
</p>
|
||||
|
||||
<p>希望能跟這家維持長久合作關係,等禮拜一上班,再跟NOPAM的工程師討論一下,看能不能在這台弄個測試的版本出來玩玩看!</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,409 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [筆記]值得推薦的商業用途VPS供應商 | My cool new Blog</title>
|
||||
<meta name="description" content="[筆記]值得推薦的商業用途VPS供應商 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[筆記]值得推薦的商業用途VPS供應商">
|
||||
<meta itemprop="description" content="[筆記]值得推薦的商業用途VPS供應商 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[筆記]值得推薦的商業用途VPS供應商">
|
||||
<meta property="og:description" content="[筆記]值得推薦的商業用途VPS供應商 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e7-ad-86-e8-a8-98-e5-80-bc-e5-be-97-e6-8e-a8-e8-96-a6-e7-9a-84-e5-95-86-e6-a5-ad-e7-94-a8-e9-80-94vps-e4-be-9b-e6-87-89-e5-95-86/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e7-ad-86-e8-a8-98-e5-80-bc-e5-be-97-e6-8e-a8-e8-96-a6-e7-9a-84-e5-95-86-e6-a5-ad-e7-94-a8-e9-80-94vps-e4-be-9b-e6-87-89-e5-95-86/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e7-ad-86-e8-a8-98-e5-80-bc-e5-be-97-e6-8e-a8-e8-96-a6-e7-9a-84-e5-95-86-e6-a5-ad-e7-94-a8-e9-80-94vps-e4-be-9b-e6-87-89-e5-95-86/">[筆記]值得推薦的商業用途VPS供應商</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-10-09</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><a href="https://www.vr.org/">https://www.vr.org/</a></p>
|
||||
|
||||
<p>今天發現的一家供應商,有香港機房,連線速度很不錯!</p>
|
||||
|
||||
<p>價格也還可以接受,重點是,可以上傳自己的ISO檔案!</p>
|
||||
|
||||
<p>我想在這台測試NOPAM,開了TICKET詢問之後,SUPPORT就很阿殺力的要我提供ISO下載連結,然後說抓完會幫我MOUNT進去,好了會再回信。</p>
|
||||
|
||||
<p>而且TICKET的來回大概都在十分鐘以內就回覆,真的是效率超高的!</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,622 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [筆記] 偽裝/加密 Win7底下的目錄 | My cool new Blog</title>
|
||||
<meta name="description" content="[筆記] 偽裝/加密 Win7底下的目錄 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[筆記] 偽裝/加密 Win7底下的目錄">
|
||||
<meta itemprop="description" content="[筆記] 偽裝/加密 Win7底下的目錄 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[筆記] 偽裝/加密 Win7底下的目錄">
|
||||
<meta property="og:description" content="[筆記] 偽裝/加密 Win7底下的目錄 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e7-ad-86-e8-a8-98-e5-81-bd-e8-a3-9d-e5-8a-a0-e5-af-86-win7-e5-ba-95-e4-b8-8b-e7-9a-84-e7-9b-ae-e9-8c-84/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e7-ad-86-e8-a8-98-e5-81-bd-e8-a3-9d-e5-8a-a0-e5-af-86-win7-e5-ba-95-e4-b8-8b-e7-9a-84-e7-9b-ae-e9-8c-84/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e7-ad-86-e8-a8-98-e5-81-bd-e8-a3-9d-e5-8a-a0-e5-af-86-win7-e5-ba-95-e4-b8-8b-e7-9a-84-e7-9b-ae-e9-8c-84/">[筆記] 偽裝/加密 Win7底下的目錄</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-11-14</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<p>假設要偽裝的目錄為 d:\test</p>
|
||||
|
||||
<p>寫兩個批次檔,一個加密(encrypt.bat) 一個解密(decrypt.bat)</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>encrypt.bat 的內容
|
||||
> d:
|
||||
>
|
||||
>
|
||||
> ren “test” “123.{2227a280-3aea-1069-a2de-08002b30309d}”
|
||||
>
|
||||
>
|
||||
> exit
|
||||
decrypt.bat
|
||||
> d:
|
||||
>
|
||||
>
|
||||
> ren ”123.{2227a280-3aea-1069-a2de-08002b30309d}“ ”test”
|
||||
>
|
||||
>
|
||||
> exit
|
||||
</p>
|
||||
|
||||
<p>執行 encrypt 後, d:\test目錄就不見了,用command prompt也進不去</p>
|
||||
|
||||
<p>測試畫面如下</p>
|
||||
|
||||
<p>在命令列模式下,用 dir 看看 d:\test的東西 確認還在</p>
|
||||
|
||||
<p><a href="http://www.cowbay.org/wp-content/uploads/2013/11/fake-folder-01.png"><img src="http://www.cowbay.org/wp-content/uploads/2013/11/fake-folder-01.png" alt="fake-folder-01" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>ren 之後,再去dir一次,發現沒有東西…</p>
|
||||
|
||||
<p><a href="http://www.cowbay.org/wp-content/uploads/2013/11/fake-folder-02.png"><img src="http://www.cowbay.org/wp-content/uploads/2013/11/fake-folder-02.png" alt="fake-folder-02" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>用檔案總管看到的畫面,test 目錄不見了</p>
|
||||
|
||||
<p><a href="http://www.cowbay.org/wp-content/uploads/2013/11/fake-folder-03.png"><img src="http://www.cowbay.org/wp-content/uploads/2013/11/fake-folder-03.png" alt="fake-folder-03" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>點進去這個目錄看到的是印表機的畫面</p>
|
||||
|
||||
<p><a href="http://www.cowbay.org/wp-content/uploads/2013/11/fake-folder-02-1.png"><img src="http://www.cowbay.org/wp-content/uploads/2013/11/fake-folder-02-1-1024x437.png" alt="fake-folder-02-1" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>接下來,再把目錄改回來,然後 dir 看看,東西果然還在</p>
|
||||
|
||||
<p><a href="http://www.cowbay.org/wp-content/uploads/2013/11/fake-folder-02.png"><img src="http://www.cowbay.org/wp-content/uploads/2013/11/fake-folder-02.png" alt="fake-folder-02" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>檔案總管內也可以正常看到了</p>
|
||||
|
||||
<p><a href="http://www.cowbay.org/wp-content/uploads/2013/11/fake-folder-04.png"><img src="http://www.cowbay.org/wp-content/uploads/2013/11/fake-folder-04.png" alt="fake-folder-04" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>本來是在研究不用軟體去加密win7目錄的方法,偶然發現這樣搞好像也算另類加密了!</p>
|
||||
|
||||
<p>不過碰到稍微有常識的人,只要把附檔名改掉就可以了。</p>
|
||||
|
||||
<p>但是話說回來,win7預設會把附檔名隱藏起來,也算是個好處!?</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>另一種可以看到目錄但是進不去的方法</p>
|
||||
|
||||
<p>一樣是編輯兩個批次檔,一個加密一個解密</p>
|
||||
|
||||
<p>encrypt.bat
|
||||
> attrib +r d:\test
|
||||
>
|
||||
>
|
||||
> exit
|
||||
decrypt.bat
|
||||
> attrib -r d:\test
|
||||
>
|
||||
>
|
||||
> exit
|
||||
這樣的做法,會看得到 d:\test 這個目錄,但是無法進入,不過如果不用檔案總管,而是用命令列模式進去的話,還是可以進去這個目錄的。</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>至於那個看起來亂七八糟的附檔名,其實是windows的CLSID <—我也不曉得這是啥意思</p>
|
||||
|
||||
<p>網路上找到Win7的CLSID如下 ,我測試的結果是很多不能用啦,可以用的我有上色</p>
|
||||
|
||||
<h1 id="clsid-list-windows-class-identifiers-http-www-autohotkey-com-docs-misc-clsid-list-htm"><a href="http://www.autohotkey.com/docs/misc/CLSID-List.htm">CLSID List (Windows Class Identifiers)</a></h1>
|
||||
|
||||
<table border="1" cellspacing="0" cellpadding="3">
|
||||
<tbody>
|
||||
<tr>
|
||||
<th>CLSID</th>
|
||||
<th>Meaning/Location</th>
|
||||
<th width="80">Supported by [Run](http://www.autohotkey.com/docs/commands/Run.htm)?</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>::{d20ea4e1-3957-11d2-a40b-0c5020524153}</td>
|
||||
<td>Administrative Tools</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>::{85bbd92o-42a0-1o69-a2e4-08002b30309d}</td>
|
||||
<td>Briefcase</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>::{21ec2o2o-3aea-1o69-a2dd-08002b30309d}</td>
|
||||
<td>Control Panel</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>::{d20ea4e1-3957-11d2-a40b-0c5020524152}</td>
|
||||
<td>Fonts</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>::{ff393560-c2a7-11cf-bff4-444553540000}</td>
|
||||
<td>History</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>::{00020d75-0000-0000-c000-000000000046}</td>
|
||||
<td>Inbox</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>::{00028b00-0000-0000-c000-000000000046}</td>
|
||||
<td>Microsoft Network</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>::{20d04fe0-3aea-1069-a2d8-08002b30309d}</td>
|
||||
<td>My Computer</td>
|
||||
<td>Yes</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>::{450d8fba-ad25-11d0-98a8-0800361b1103}</td>
|
||||
<td>My Documents</td>
|
||||
<td>Yes</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>::{208d2c60-3aea-1069-a2d7-08002b30309d}</td>
|
||||
<td>My Network Places</td>
|
||||
<td>Yes</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>::{1f4de370-d627-11d1-ba4f-00a0c91eedba}</td>
|
||||
<td>Network Computers</td>
|
||||
<td>Yes</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>::{7007acc7-3202-11d1-aad2-00805fc1270e}</td>
|
||||
<td>Network Connections</td>
|
||||
<td>Yes</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>::<span style="color: #ff0000;">{2227a280-3aea-1069-a2de-08002b30309d}</span></td>
|
||||
<td>Printers and Faxes</td>
|
||||
<td>Yes</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>::{7be9d83c-a729-4d97-b5a7-1b7313c39e0a}</td>
|
||||
<td>Programs Folder</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>::<span style="color: #ff0000;">{645ff040-5081-101b-9f08-00aa002f954e}</span></td>
|
||||
<td>Recycle Bin</td>
|
||||
<td>Yes</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>::{e211b736-43fd-11d1-9efb-0000f8757fcd}</td>
|
||||
<td>Scanners and Cameras</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>::{d6277990-4c6a-11cf-8d87-00aa0060f5bf}</td>
|
||||
<td>Scheduled Tasks</td>
|
||||
<td>Yes</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>::{48e7caab-b918-4e58-a94d-505519c795dc}</td>
|
||||
<td>Start Menu Folder</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>::{7bd29e00-76c1-11cf-9dd0-00a0c9034933}</td>
|
||||
<td>Temporary Internet Files</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>::<span style="color: #ff0000;">{bdeadf00-c265-11d0-bced-00a0c90ab50f}</span></td>
|
||||
<td>Web Folders</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer">
|
||||
|
||||
|
||||
|
||||
<div class="tags">
|
||||
<i class="fa fa-tags"></i>
|
||||
<div class="links">
|
||||
|
||||
<a href="/tags/win7">win7</a>
|
||||
|
||||
<a href="/tags/%E5%8A%A0%E5%AF%86">加密</a>
|
||||
|
||||
<a href="/tags/%E6%96%87%E4%BB%B6%E5%A4%BE">文件夾</a>
|
||||
|
||||
<a href="/tags/%E7%9B%AE%E9%8C%84">目錄</a>
|
||||
|
||||
<a href="/tags/%E8%B3%87%E6%96%99%E5%A4%BE">資料夾</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,401 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [筆記] 偽裝成 APPLE 來的詐騙信件 | My cool new Blog</title>
|
||||
<meta name="description" content="[筆記] 偽裝成 APPLE 來的詐騙信件 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[筆記] 偽裝成 APPLE 來的詐騙信件">
|
||||
<meta itemprop="description" content="[筆記] 偽裝成 APPLE 來的詐騙信件 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[筆記] 偽裝成 APPLE 來的詐騙信件">
|
||||
<meta property="og:description" content="[筆記] 偽裝成 APPLE 來的詐騙信件 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e7-ad-86-e8-a8-98-e5-81-bd-e8-a3-9d-e6-88-90-apple-e4-be-86-e7-9a-84-e8-a9-90-e9-a8-99-e4-bf-a1-e4-bb-b6/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e7-ad-86-e8-a8-98-e5-81-bd-e8-a3-9d-e6-88-90-apple-e4-be-86-e7-9a-84-e8-a9-90-e9-a8-99-e4-bf-a1-e4-bb-b6/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e7-ad-86-e8-a8-98-e5-81-bd-e8-a3-9d-e6-88-90-apple-e4-be-86-e7-9a-84-e8-a9-90-e9-a8-99-e4-bf-a1-e4-bb-b6/">[筆記] 偽裝成 APPLE 來的詐騙信件</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2014-03-05</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>實在是很差的手法! 點了連結之後,多注意URL就沒事了!</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><a href="http://www.cowbay.org/wp-content/uploads/2014/03/apple_cheating_mail.png"><img src="http://www.cowbay.org/wp-content/uploads/2014/03/apple_cheating_mail-1024x659.png" alt="apple_cheating_mail" /></a></p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,433 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [筆記]其實 Windows NAS Performance 不錯啊! | My cool new Blog</title>
|
||||
<meta name="description" content="[筆記]其實 Windows NAS Performance 不錯啊! - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[筆記]其實 Windows NAS Performance 不錯啊!">
|
||||
<meta itemprop="description" content="[筆記]其實 Windows NAS Performance 不錯啊! - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[筆記]其實 Windows NAS Performance 不錯啊!">
|
||||
<meta property="og:description" content="[筆記]其實 Windows NAS Performance 不錯啊! - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e7-ad-86-e8-a8-98-e5-85-b6-e5-af-a6-windows-nas-performance-e4-b8-8d-e9-8c-af-e5-95-8a-ef-bc-81/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e7-ad-86-e8-a8-98-e5-85-b6-e5-af-a6-windows-nas-performance-e4-b8-8d-e9-8c-af-e5-95-8a-ef-bc-81/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e7-ad-86-e8-a8-98-e5-85-b6-e5-af-a6-windows-nas-performance-e4-b8-8d-e9-8c-af-e5-95-8a-ef-bc-81/">[筆記]其實 Windows NAS Performance 不錯啊!</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2015-03-16</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>今天要放個大檔案到SERVER上給人家</p>
|
||||
|
||||
<p>對方要求說放到NAS上,一個 8G左右的檔案,結果複製過去時候的速度有嚇到我..</p>
|
||||
|
||||
<p>這台Windows NAS 是用 ESX做出來的一台虛擬機</p>
|
||||
|
||||
<p>儲存空間則是透過 iscsi 連到 DELL的MD3200 (1G 而已)</p>
|
||||
|
||||
<p>結果Windows 跑出來的數據居然高達 1xx MB …</p>
|
||||
|
||||
<p>這比以前我在測試 1G網路的速度時,跑出來的結果要快太多了,以前頂多來到 7x 8x …</p>
|
||||
|
||||
<p>也太威猛了吧!</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/03/2015-03-16_10-25-41.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/03/2015-03-16_10-25-41-1024x628.png" alt="2015-03-16_10-25-41" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>不信邪 再丟一次!</p>
|
||||
|
||||
<p>還是有 100MB 左右的水準</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/03/2015-03-16_10-45-02.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/03/2015-03-16_10-45-02.png" alt="2015-03-16_10-45-02" /></a></p>
|
||||
|
||||
<p>下載檔案的速度要慢很多,只有 接近 50MB ..</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/03/2015-03-16_10-46-34.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/03/2015-03-16_10-46-34.png" alt="2015-03-16_10-46-34" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>也許這才是真正該有的水準,只是我被群暉的NAS荼毒太久了?所以看到標準的數據才會很訝異?</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,444 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [筆記] 利用find/grep/xargs 在目錄中找出所有包含特定字串的檔案路徑 | My cool new Blog</title>
|
||||
<meta name="description" content="[筆記] 利用find/grep/xargs 在目錄中找出所有包含特定字串的檔案路徑 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[筆記] 利用find/grep/xargs 在目錄中找出所有包含特定字串的檔案路徑">
|
||||
<meta itemprop="description" content="[筆記] 利用find/grep/xargs 在目錄中找出所有包含特定字串的檔案路徑 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[筆記] 利用find/grep/xargs 在目錄中找出所有包含特定字串的檔案路徑">
|
||||
<meta property="og:description" content="[筆記] 利用find/grep/xargs 在目錄中找出所有包含特定字串的檔案路徑 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e7-ad-86-e8-a8-98-e5-88-a9-e7-94-a8findgrepxargs-e5-9c-a8-e7-9b-ae-e9-8c-84-e4-b8-ad-e6-89-be-e5-87-ba-e6-89-80-e6-9c-89-e5-8c-85-e5-90-ab-e7-89-b9-e5-ae-9a-e5-ad-97-e4-b8-b2-e7-9a-84-e6-aa-94/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e7-ad-86-e8-a8-98-e5-88-a9-e7-94-a8findgrepxargs-e5-9c-a8-e7-9b-ae-e9-8c-84-e4-b8-ad-e6-89-be-e5-87-ba-e6-89-80-e6-9c-89-e5-8c-85-e5-90-ab-e7-89-b9-e5-ae-9a-e5-ad-97-e4-b8-b2-e7-9a-84-e6-aa-94/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e7-ad-86-e8-a8-98-e5-88-a9-e7-94-a8findgrepxargs-e5-9c-a8-e7-9b-ae-e9-8c-84-e4-b8-ad-e6-89-be-e5-87-ba-e6-89-80-e6-9c-89-e5-8c-85-e5-90-ab-e7-89-b9-e5-ae-9a-e5-ad-97-e4-b8-b2-e7-9a-84-e6-aa-94/">[筆記] 利用find/grep/xargs 在目錄中找出所有包含特定字串的檔案路徑</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-11-14</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>很好用的指令 <img src="http://www.cowbay.org/wp-content/plugins/ultimate-tinymce/addons/emotions/img/popobig/big_smile.png" alt="Big Smile" title="Big Smile" /></p>
|
||||
|
||||
<p>在當前目錄底下(包含子目錄)尋找所有附檔名為php的檔案,並在這些檔案中,尋找包含 abc.def 字串的檔案並列出結果</p>
|
||||
|
||||
<p>
|
||||
> find .. -name “<em>.php”|xargs grep -n abc.def
|
||||
使用結果
|
||||
> [root@vm00015-1 models]# find .. -name “</em>.php”|xargs grep -n abc.def
|
||||
>
|
||||
> ../views/welcome.php:252: <span><a href=“<a href="http://abc.def.com"">http://abc.def.com"</a> target=”_blank”>設計</a></span>
|
||||
>
|
||||
> ../views/welcome.php:260: <span><a href=“<a href="http://abc.def.com"">http://abc.def.com"</a> target=”_blank”></a></span>
|
||||
>
|
||||
> ../views/welcome.php:263: <span><a href=“<a href="http://abc.def.com"">http://abc.def.com"</a> target=”_blank”></a></span>
|
||||
>
|
||||
> ../views/mobile.php:127: <span><a href=“<a href="http://abc.def.com"">http://abc.def.com"</a> target=”_blank”>設計</a></span>
|
||||
>
|
||||
> ../views/mobile.php:130: <span><a href=“<a href="http://abc.def.com"">http://abc.def.com"</a> target=”_blank”></a></span>
|
||||
>
|
||||
> ../views/mobile.php:133: <span><a href=“<a href="http://abc.def.com"">http://abc.def.com"</a> target=”_blank”></a></span>
|
||||
>
|
||||
> ../views/template.php:165: <span><a href=“<a href="http://abc.def.com"">http://abc.def.com"</a> target=”_blank”>設計</a></span>
|
||||
>
|
||||
> ../views/template.php:168: <span><a href=“<a href="http://abc.def.com"">http://abc.def.com"</a> target=”_blank”></a></span>
|
||||
>
|
||||
> ../views/template.php:171: <span><a href=“<a href="http://abc.def.com"">http://abc.def.com"</a> target=”_blank”></a></span>
|
||||
>
|
||||
> ../views/admin/panel.php:81: <a href = “<a href="http://abc.def.com"">http://abc.def.com"</a> target=”_blank”>
|
||||
>
|
||||
> ../views/admin/login.php:81: <a href = “<a href="http://abc.def.com"">http://abc.def.com"</a> target=”_blank”>
|
||||
>
|
||||
> ../views/contact/locations.php:74: icon: “<a href="http://abc.def.com/img/flag.png"">http://abc.def.com/img/flag.png"</a>
|
||||
>
|
||||
> [root@vm00015-1 models]#
|
||||
>
|
||||
>
|
||||
> </p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer">
|
||||
|
||||
|
||||
|
||||
<div class="tags">
|
||||
<i class="fa fa-tags"></i>
|
||||
<div class="links">
|
||||
|
||||
<a href="/tags/find">find</a>
|
||||
|
||||
<a href="/tags/grep">grep</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,403 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [筆記]匯出印表機設定 | My cool new Blog</title>
|
||||
<meta name="description" content="[筆記]匯出印表機設定 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[筆記]匯出印表機設定">
|
||||
<meta itemprop="description" content="[筆記]匯出印表機設定 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[筆記]匯出印表機設定">
|
||||
<meta property="og:description" content="[筆記]匯出印表機設定 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e7-ad-86-e8-a8-98-e5-8c-af-e5-87-ba-e5-8d-b0-e8-a1-a8-e6-a9-9f-e8-a8-ad-e5-ae-9a/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e7-ad-86-e8-a8-98-e5-8c-af-e5-87-ba-e5-8d-b0-e8-a1-a8-e6-a9-9f-e8-a8-ad-e5-ae-9a/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e7-ad-86-e8-a8-98-e5-8c-af-e5-87-ba-e5-8d-b0-e8-a1-a8-e6-a9-9f-e8-a8-ad-e5-ae-9a/">[筆記]匯出印表機設定</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2015-09-21</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>run as administrator</p>
|
||||
|
||||
<p>PrintBrm.exe -B -F D:\Printer</p>
|
||||
|
||||
<p>run with GUI</p>
|
||||
|
||||
<p>PrintBRMUi</p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,483 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [筆記] 在台灣透過國外的 ivacy VPN服務 翻牆進中國看影音平台提供的影劇 | My cool new Blog</title>
|
||||
<meta name="description" content="[筆記] 在台灣透過國外的 ivacy VPN服務 翻牆進中國看影音平台提供的影劇 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[筆記] 在台灣透過國外的 ivacy VPN服務 翻牆進中國看影音平台提供的影劇">
|
||||
<meta itemprop="description" content="[筆記] 在台灣透過國外的 ivacy VPN服務 翻牆進中國看影音平台提供的影劇 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[筆記] 在台灣透過國外的 ivacy VPN服務 翻牆進中國看影音平台提供的影劇">
|
||||
<meta property="og:description" content="[筆記] 在台灣透過國外的 ivacy VPN服務 翻牆進中國看影音平台提供的影劇 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e7-ad-86-e8-a8-98-e5-9c-a8-e5-8f-b0-e7-81-a3-e9-80-8f-e9-81-8e-e5-9c-8b-e5-a4-96-e7-9a-84vpn-e6-9c-8d-e5-8b-99-e7-bf-bb-e7-89-86-e9-80-b2-e4-b8-ad-e5-9c-8b-e7-9c-8b-e5-bd-b1-e9-9f-b3-e5-b9-b3/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e7-ad-86-e8-a8-98-e5-9c-a8-e5-8f-b0-e7-81-a3-e9-80-8f-e9-81-8e-e5-9c-8b-e5-a4-96-e7-9a-84vpn-e6-9c-8d-e5-8b-99-e7-bf-bb-e7-89-86-e9-80-b2-e4-b8-ad-e5-9c-8b-e7-9c-8b-e5-bd-b1-e9-9f-b3-e5-b9-b3/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e7-ad-86-e8-a8-98-e5-9c-a8-e5-8f-b0-e7-81-a3-e9-80-8f-e9-81-8e-e5-9c-8b-e5-a4-96-e7-9a-84vpn-e6-9c-8d-e5-8b-99-e7-bf-bb-e7-89-86-e9-80-b2-e4-b8-ad-e5-9c-8b-e7-9c-8b-e5-bd-b1-e9-9f-b3-e5-b9-b3/">[筆記] 在台灣透過國外的 ivacy VPN服務 翻牆進中國看影音平台提供的影劇</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2016-03-31</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<h2 id="在台灣透過國外的vpn服務-翻牆進中國看影音平台提供的影劇"><strong>在台灣透過國外的VPN服務 翻牆進中國看影音平台提供的影劇</strong></h2>
|
||||
|
||||
<p>原本使用某ISP業者的特殊線路(Internet PLUS)
|
||||
這種線路會配發兩個IP,一個是台灣的IP,一個是大陸的IP
|
||||
只要有支援的設備,就可以用台灣的IP來搭VPN SERVER,然後指定由大陸的IP上網
|
||||
這樣子就完全不會被大陸的影音平台給封鎖了!</p>
|
||||
|
||||
<p>不過呢,好景不常….這條線路是附掛在其他產品底下的,主產品最近要退租了,
|
||||
這個服務當然也就無法繼續使用。
|
||||
可是家人又已經很依賴這些大陸的影音平台追劇了,所以只好想辦法找其他方法來解決被封鎖的問題。
|
||||
一般的解法,一個是proxy ,一個是 VPN
|
||||
Proxy 比較麻煩一些,因為要動到電視盒的網路設定
|
||||
VPN 相對簡單一些,我可以用分享器去建立VPN ,電視盒再透過這台分享器上網就可以了!</p>
|
||||
|
||||
<p>因為本身工作的關係,所以我接觸了很多VPS服務,一開始也是打算用VPS來建立VPN服務
|
||||
我找的是 starrydns 這家,算是比較有口碑的
|
||||
他的VPS服務有一種類型是中國優化線路,根據廠商的回覆是不會被影音平台封鎖
|
||||
一個月 HK 76 ,換算台幣約三百多
|
||||
我測了大概一個禮拜左右,這家廠商的這個服務真的沒話說,速度快、穩定、客服反應速度也很快
|
||||
但是算了一下,一個月三百多耶..有點貴。而且流量限定200G,感覺少了點..
|
||||
於是我先退租了這個服務,繼續找其他中國或香港直連的VPS
|
||||
看了很久很久,發現中國的VPS都有一個很詭異的問題
|
||||
在上面搭的VPN,不曉得哪時候會不能用….這應該是官方的政策吧
|
||||
對於這種服務看管得很死,雖然廠商都會告訴你自己私人用OK
|
||||
但是我也真的碰過跑了兩三天之後,服務就再也連不上的情況..(阿里雲、騰迅雲..)
|
||||
最後,我終於放棄用中國的VPS了…</p>
|
||||
|
||||
<p>既然用自己的VPS來搭VPN這條路行不通
|
||||
於是我改找廠商提供的 VPN服務
|
||||
條件就是要有中國的伺服器,然後價格要盡量低…(目標是 5 USD/月)
|
||||
用 top <sup>5</sup>⁄<sub>10</sub> vpn provider 去google 搜尋
|
||||
測試過程就不提了,反正前幾名的這幾間都被我打槍 …
|
||||
某次在網路上閒晃的時候,意外發現了這間</p>
|
||||
|
||||
<h2 id="ivacy-vpn-https-www-ivacy-com"><strong><a href="https://www.ivacy.com">ivacy vpn</a></strong></h2>
|
||||
|
||||
<p>首先吸引我注意的當然是價格
|
||||
<a href="http://wp.cowbay.org/wp-content/uploads/2016/03/firefox_2016-03-31_10-26-10.png"><img src="http://wp.cowbay.org/wp-content/uploads/2016/03/firefox_2016-03-31_10-26-10-1024x708.png" alt="ivacy price list" /></a>
|
||||
年付只要1.83 USD/month , 而且七天退款保證 ,就是說有七天試用啦! 國外的廠商幾乎都會提供三天五天七天不等的試用(退款保證)
|
||||
既然如此,那還等啥,趕快申請了啊!</p>
|
||||
|
||||
<p>等到帳號開通之後,馬上先用手機連線測試
|
||||
在官網上可以下載官方的設定檔,會自動在iphone上建立vpn
|
||||
<a href="http://wp.cowbay.org/wp-content/uploads/2016/03/firefox_2016-03-31_10-40-35.png"><img src="http://wp.cowbay.org/wp-content/uploads/2016/03/firefox_2016-03-31_10-40-35.png" alt="ivacy auto create vpn tunnel in iphone" /></a></p>
|
||||
|
||||
<p>但是呢</p>
|
||||
|
||||
<h1 id="千萬不要用"><strong>千萬不要用!</strong></h1>
|
||||
|
||||
<p>** 千萬不要用!**
|
||||
** 千萬不要用!**</p>
|
||||
|
||||
<p>這個由官方程式建立的vpn tunnel 會自動尋找「連線品質最佳」的伺服器去連線,然後呢,通常都不會是中國伺服器 XD
|
||||
所以要手動建立VPN,指定用中國的Server
|
||||
<a href="http://wp.cowbay.org/wp-content/uploads/2016/03/firefox_2016-03-31_10-43-59.png"><img src="http://wp.cowbay.org/wp-content/uploads/2016/03/firefox_2016-03-31_10-43-59.png" alt="manual create ivacy vpn tunnel" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>…待續</p>
|
||||
|
||||
<hr />
|
||||
|
||||
<p>在手機上建立了VPN連線,馬上連線並開啟封鎖最嚴格的樂視APP,找個影片來測試看看!</p>
|
||||
|
||||
<p>解析度選高清,非常的順暢啊!!!!</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2016/03/firefox_2016-03-31_11-50-07.png"><img src="http://wp.cowbay.org/wp-content/uploads/2016/03/firefox_2016-03-31_11-50-07.png" alt="ivacy china2 server" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2016/03/firefox_2016-03-31_11-50-40.png"><img src="http://wp.cowbay.org/wp-content/uploads/2016/03/firefox_2016-03-31_11-50-40-1024x573.png" alt="watch video in letv app" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>而且這間的客服算是不錯的,雖然我都是用破破的英文跟他們講一些問題,但是他們在上班時間內都會盡快的回覆!</p>
|
||||
|
||||
<p>測試了這幾天,就算是晚上看影片也都很順暢。不像另一家也很多人推薦的NQVPN</p>
|
||||
|
||||
<p>一到了晚上,有些影片就會開始卡…</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,401 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [筆記] 在指定目錄底下找出含有特定字串的檔案及字串出現位置 how to find string in all files | My cool new Blog</title>
|
||||
<meta name="description" content="[筆記] 在指定目錄底下找出含有特定字串的檔案及字串出現位置 how to find string in all files - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[筆記] 在指定目錄底下找出含有特定字串的檔案及字串出現位置 how to find string in all files">
|
||||
<meta itemprop="description" content="[筆記] 在指定目錄底下找出含有特定字串的檔案及字串出現位置 how to find string in all files - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[筆記] 在指定目錄底下找出含有特定字串的檔案及字串出現位置 how to find string in all files">
|
||||
<meta property="og:description" content="[筆記] 在指定目錄底下找出含有特定字串的檔案及字串出現位置 how to find string in all files - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e7-ad-86-e8-a8-98-e5-9c-a8-e6-8c-87-e5-ae-9a-e7-9b-ae-e9-8c-84-e5-ba-95-e4-b8-8b-e6-89-be-e5-87-ba-e5-90-ab-e6-9c-89-e7-89-b9-e5-ae-9a-e5-ad-97-e4-b8-b2-e7-9a-84-e6-aa-94-e6-a1-88-e5-8f-8a/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e7-ad-86-e8-a8-98-e5-9c-a8-e6-8c-87-e5-ae-9a-e7-9b-ae-e9-8c-84-e5-ba-95-e4-b8-8b-e6-89-be-e5-87-ba-e5-90-ab-e6-9c-89-e7-89-b9-e5-ae-9a-e5-ad-97-e4-b8-b2-e7-9a-84-e6-aa-94-e6-a1-88-e5-8f-8a/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e7-ad-86-e8-a8-98-e5-9c-a8-e6-8c-87-e5-ae-9a-e7-9b-ae-e9-8c-84-e5-ba-95-e4-b8-8b-e6-89-be-e5-87-ba-e5-90-ab-e6-9c-89-e7-89-b9-e5-ae-9a-e5-ad-97-e4-b8-b2-e7-9a-84-e6-aa-94-e6-a1-88-e5-8f-8a/">[筆記] 在指定目錄底下找出含有特定字串的檔案及字串出現位置 how to find string in all files</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2015-07-29</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<pre><code><span class="pln">grep </span><span class="pun">-</span><span class="pln">rnw </span><span class="str">'directory'</span> <span class="pun">-</span><span class="pln">e </span><span class="str">"pattern"
|
||||
一行解決
|
||||
[](http://wp.cowbay.org/wp-content/uploads/2015/07/2015-07-29_15-24-50.png)
|
||||
</span>
|
||||
</code></pre>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,509 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [筆記] 在 Linux 底下快速抹寫磁碟剩餘空間 | My cool new Blog</title>
|
||||
<meta name="description" content="[筆記] 在 Linux 底下快速抹寫磁碟剩餘空間 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[筆記] 在 Linux 底下快速抹寫磁碟剩餘空間">
|
||||
<meta itemprop="description" content="[筆記] 在 Linux 底下快速抹寫磁碟剩餘空間 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[筆記] 在 Linux 底下快速抹寫磁碟剩餘空間">
|
||||
<meta property="og:description" content="[筆記] 在 Linux 底下快速抹寫磁碟剩餘空間 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e7-ad-86-e8-a8-98-e5-9c-a8-linux-e5-ba-95-e4-b8-8b-e5-bf-ab-e9-80-9f-e6-8a-b9-e5-af-ab-e7-a3-81-e7-a2-9f-e5-89-a9-e9-a4-98-e7-a9-ba-e9-96-93/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e7-ad-86-e8-a8-98-e5-9c-a8-linux-e5-ba-95-e4-b8-8b-e5-bf-ab-e9-80-9f-e6-8a-b9-e5-af-ab-e7-a3-81-e7-a2-9f-e5-89-a9-e9-a4-98-e7-a9-ba-e9-96-93/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e7-ad-86-e8-a8-98-e5-9c-a8-linux-e5-ba-95-e4-b8-8b-e5-bf-ab-e9-80-9f-e6-8a-b9-e5-af-ab-e7-a3-81-e7-a2-9f-e5-89-a9-e9-a4-98-e7-a9-ba-e9-96-93/">[筆記] 在 Linux 底下快速抹寫磁碟剩餘空間</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2015-11-25</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>Update</p>
|
||||
|
||||
<p>後來發現,其實內建的shred指令就可以做到了,而且速度更快~</p>
|
||||
|
||||
<p>shred -v -n 10000(抹除 10000次) -u -v /dev/sda</p>
|
||||
|
||||
<p>用iftop 看,大概都能維持在300M 左右的寫入速度</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>實際跑起來,從 iotop 上看到的數據,似乎是比 dd 要來得快~</p>
|
||||
|
||||
<p><a href="http://superuser.com/questions/19326/how-to-wipe-free-disk-space-in-linux">http://superuser.com/questions/19326/how-to-wipe-free-disk-space-in-linux</a></p>
|
||||
|
||||
<p>Wipe a drive at top speed.</p>
|
||||
|
||||
<p>Typical instructions for encrypting a drive nowadays will tell you to first WIPE the drive.</p>
|
||||
|
||||
<p>The command below will fill your drive with AES ciphertext.</p>
|
||||
|
||||
<p>Use a live CD if you need to wipe your main boot drive.</p>
|
||||
|
||||
<p>Open a terminal and elevate your privileges:</p>
|
||||
|
||||
<pre><code>sudo bash
|
||||
`</pre>
|
||||
Let us list all drives on the system to be safe:
|
||||
<pre>`cat /proc/partitions
|
||||
`</pre>
|
||||
NOTE: Replace<span class="Apple-converted-space"> </span>`/dev/sd{x}`<span class="Apple-converted-space"> </span>with the device you wish to wipe.
|
||||
|
||||
WARNING: This is not for amateurs! You could make your system unbootable!!!
|
||||
|
||||
`sudo openssl enc -aes-256-ctr -pass pass:"$(dd if=/dev/urandom bs=128 count=1 2&gt;/dev/null | base64)" -nosalt &lt; /dev/zero &gt; /dev/sd{x} `
|
||||
|
||||
&nbsp;
|
||||
|
||||
&nbsp;
|
||||
|
||||
另外有一段也可以參考
|
||||
> &nbsp;
|
||||
</code></pre>
|
||||
|
||||
<blockquote>
|
||||
<pre><code><pre>`# Install the secure-delete package (sfill command).
|
||||
|
||||
|
||||
# To see progress type in new terminal:
|
||||
|
||||
# watch -n 1 df -hm
|
||||
|
||||
|
||||
# Assuming that there is one partition (/dev/sda1). sfill writes to /.
|
||||
|
||||
# The second pass writes in current directory and synchronizes data.
|
||||
|
||||
# If you have a swap partition then disable it by editing /etc/fstab
|
||||
|
||||
# and use "sswap" or similar to wipe it out.
|
||||
|
||||
|
||||
# Some filesystems such as ext4 reserve 5% of disk space
|
||||
|
||||
# for special use, for example for the /home directory.
|
||||
|
||||
# In such case sfill won't wipe out that free space. You
|
||||
|
||||
# can remove that reserved space with the tune2fs command.
|
||||
|
||||
# See http://superuser.com/a/150757
|
||||
|
||||
# and https://www.google.com/search?q=reserved+space+ext4+sfill
|
||||
|
||||
|
||||
sudo tune2fs -m 0 /dev/sda1
|
||||
|
||||
sudo tune2fs -l /dev/sda1 | grep 'Reserved block count'
|
||||
|
||||
|
||||
sudo sfill -vfllz /
|
||||
|
||||
|
||||
# sfill with the -f (fast) option won't synchronize the data to
|
||||
|
||||
# make sure that all was actually written. Without the fast option
|
||||
|
||||
# it is way too slow, so doing another pass in some other way with
|
||||
|
||||
# synchronization. Unfortunately this does not seem to be perfect,
|
||||
|
||||
# as I've watched free space by running the "watch -n 1 df -hm"
|
||||
|
||||
# command and I could see that there was still some available space
|
||||
|
||||
# left (tested on a SSD drive).
|
||||
|
||||
|
||||
dd if=/dev/zero of=zero.small.file bs=1024 count=102400
|
||||
|
||||
dd if=/dev/zero of=zero.file bs=1024
|
||||
|
||||
sync ; sleep 60 ; sync
|
||||
|
||||
rm zero.small.file
|
||||
|
||||
rm zero.file
|
||||
|
||||
|
||||
sudo tune2fs -m 5 /dev/sda1
|
||||
|
||||
sudo tune2fs -l /dev/sda1 | grep 'Reserved block count'
|
||||
</code></pre>
|
||||
</blockquote>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,397 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [筆記] 在Centos 6.x上用Smokeping 檢查機器是否在運作 | My cool new Blog</title>
|
||||
<meta name="description" content="[筆記] 在Centos 6.x上用Smokeping 檢查機器是否在運作 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[筆記] 在Centos 6.x上用Smokeping 檢查機器是否在運作">
|
||||
<meta itemprop="description" content="[筆記] 在Centos 6.x上用Smokeping 檢查機器是否在運作 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[筆記] 在Centos 6.x上用Smokeping 檢查機器是否在運作">
|
||||
<meta property="og:description" content="[筆記] 在Centos 6.x上用Smokeping 檢查機器是否在運作 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e7-ad-86-e8-a8-98-e5-9c-a8centos-6-x-e4-b8-8a-e7-94-a8smokeping-e6-aa-a2-e6-9f-a5-e6-a9-9f-e5-99-a8-e6-98-af-e5-90-a6-e5-9c-a8-e9-81-8b-e4-bd-9c/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e7-ad-86-e8-a8-98-e5-9c-a8centos-6-x-e4-b8-8a-e7-94-a8smokeping-e6-aa-a2-e6-9f-a5-e6-a9-9f-e5-99-a8-e6-98-af-e5-90-a6-e5-9c-a8-e9-81-8b-e4-bd-9c/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e7-ad-86-e8-a8-98-e5-9c-a8centos-6-x-e4-b8-8a-e7-94-a8smokeping-e6-aa-a2-e6-9f-a5-e6-a9-9f-e5-99-a8-e6-98-af-e5-90-a6-e5-9c-a8-e9-81-8b-e4-bd-9c/">[筆記] 在Centos 6.x上用Smokeping 檢查機器是否在運作</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-06-03</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>先貼圖,後面再補說明<a href="http://www.cowbay.org/wp-content/uploads/2013/06/smokeping-01.png"><img src="http://www.cowbay.org/wp-content/uploads/2013/06/smokeping-01.png" alt="smokeping-01" /></a></p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,447 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [筆記] 在fail2ban中加入手動維護的黑名單 | My cool new Blog</title>
|
||||
<meta name="description" content="[筆記] 在fail2ban中加入手動維護的黑名單 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[筆記] 在fail2ban中加入手動維護的黑名單">
|
||||
<meta itemprop="description" content="[筆記] 在fail2ban中加入手動維護的黑名單 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[筆記] 在fail2ban中加入手動維護的黑名單">
|
||||
<meta property="og:description" content="[筆記] 在fail2ban中加入手動維護的黑名單 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e7-ad-86-e8-a8-98-e5-9c-a8fail2ban-e4-b8-ad-e5-8a-a0-e5-85-a5-e6-89-8b-e5-8b-95-e7-b6-ad-e8-ad-b7-e7-9a-84-e9-bb-91-e5-90-8d-e5-96-ae/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e7-ad-86-e8-a8-98-e5-9c-a8fail2ban-e4-b8-ad-e5-8a-a0-e5-85-a5-e6-89-8b-e5-8b-95-e7-b6-ad-e8-ad-b7-e7-9a-84-e9-bb-91-e5-90-8d-e5-96-ae/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e7-ad-86-e8-a8-98-e5-9c-a8fail2ban-e4-b8-ad-e5-8a-a0-e5-85-a5-e6-89-8b-e5-8b-95-e7-b6-ad-e8-ad-b7-e7-9a-84-e9-bb-91-e5-90-8d-e5-96-ae/">[筆記] 在fail2ban中加入手動維護的黑名單</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2016-12-20</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>fail2ban 在linux上是個很好用的軟體,可以幫忙阻絕很多沒事幹在亂踹的IP</p>
|
||||
|
||||
<p>但是很奇怪的是,在實務上會發現,有些IP會一再出現</p>
|
||||
|
||||
<p>有可能是被關了之後,時間到就放出來了吧…</p>
|
||||
|
||||
<p>加上之前手邊有自行維護了一堆黑名單</p>
|
||||
|
||||
<p>就想看看能不能把這些黑名單給加入fail2ban中</p>
|
||||
|
||||
<p>作法如下</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>建立一個黑名單檔案</p>
|
||||
|
||||
<p>vim /etc/fail2ban/ip.blacklist</p>
|
||||
|
||||
<p>把手邊的黑名單都貼進去存檔</p>
|
||||
|
||||
<p>接著修改 /etc/fail2ban/action.d/iptables-multiport.conf</p>
|
||||
|
||||
<p>找到 actionstart的部分</p>
|
||||
|
||||
<p>加入
|
||||
> cat /etc/fail2ban/ip.blacklist | while read IP; do iptables -I f2b-<name> 1 -s $IP -j DROP; done
|
||||
修改後的 actionstart 區段看起來會像是這樣</p>
|
||||
|
||||
<p><img src="http://wp.cowbay.org/wp-content/uploads/2016/12/2016-12-20_15-12-42-1024x305.png" alt="2016-12-20_15-12-42" /></p>
|
||||
|
||||
<p>這一段是讓fail2ban 啟動的時候,會去檢查剛剛建立的 ip.blacklist 黑名單,然後把黑名單裡面的IP都丟去iptables 給擋掉</p>
|
||||
|
||||
<p>再來是修改actionban的部分,加入
|
||||
> echo <ip> >> /etc/fail2ban/ip.blacklist
|
||||
這是讓fail2ban 偵測並阻擋IP後,會自動把IP加入黑名單中</p>
|
||||
|
||||
<p><img src="http://wp.cowbay.org/wp-content/uploads/2016/12/2016-12-20_15-17-39.png" alt="2016-12-20_15-17-39" /></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>這樣子應該就可以了…(吧) ….</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>參考網址:<a href="https://zach.seifts.us/posts/2013/07/14/how-make-fail2ban-bans-persistent">https://zach.seifts.us/posts/2013/07/14/how-make-fail2ban-bans-persistent</a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,452 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [筆記] 在Google Compute Engine 上建立 CentOS 6 安裝 SoftEther VPN 提供 PPTP/L2TP 服務 | My cool new Blog</title>
|
||||
<meta name="description" content="[筆記] 在Google Compute Engine 上建立 CentOS 6 安裝 SoftEther VPN 提供 PPTP/L2TP 服務 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[筆記] 在Google Compute Engine 上建立 CentOS 6 安裝 SoftEther VPN 提供 PPTP/L2TP 服務">
|
||||
<meta itemprop="description" content="[筆記] 在Google Compute Engine 上建立 CentOS 6 安裝 SoftEther VPN 提供 PPTP/L2TP 服務 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[筆記] 在Google Compute Engine 上建立 CentOS 6 安裝 SoftEther VPN 提供 PPTP/L2TP 服務">
|
||||
<meta property="og:description" content="[筆記] 在Google Compute Engine 上建立 CentOS 6 安裝 SoftEther VPN 提供 PPTP/L2TP 服務 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e7-ad-86-e8-a8-98-e5-9c-a8google-compute-engine-e4-b8-8a-e5-bb-ba-e7-ab-8b-centos-6-e5-ae-89-e8-a3-9d-softether-vpn-e6-8f-90-e4-be-9b-pptpl2tp-e6-9c-8d-e5-8b-99/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e7-ad-86-e8-a8-98-e5-9c-a8google-compute-engine-e4-b8-8a-e5-bb-ba-e7-ab-8b-centos-6-e5-ae-89-e8-a3-9d-softether-vpn-e6-8f-90-e4-be-9b-pptpl2tp-e6-9c-8d-e5-8b-99/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e7-ad-86-e8-a8-98-e5-9c-a8google-compute-engine-e4-b8-8a-e5-bb-ba-e7-ab-8b-centos-6-e5-ae-89-e8-a3-9d-softether-vpn-e6-8f-90-e4-be-9b-pptpl2tp-e6-9c-8d-e5-8b-99/">[筆記] 在Google Compute Engine 上建立 CentOS 6 安裝 SoftEther VPN 提供 PPTP/L2TP 服務</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2015-03-17</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>每次為了SEO想標題都要想很久…</p>
|
||||
|
||||
<p>之前在 Linode / Vultr / DigitalOcean 上建立 PPTP 讓家裡的 OVO 電視盒可以透過VPN連線去看影片,效果都不怎樣..</p>
|
||||
|
||||
<p>晚上回家看影片還是時好時壞…</p>
|
||||
|
||||
<p>一怒之下,想到了 Google COmpute Engine 這東西…不限頻寬不限流量耶,開玩笑!</p>
|
||||
|
||||
<p>而且這是公司的帳號,可以光明正大的偷渡費用? <img src="http://wp.cowbay.org/wp-content/plugins/wp-emoji-one/icons/1F60F.png" alt="" /></p>
|
||||
|
||||
<p></p>
|
||||
|
||||
<p>不過測試了好幾次, PPTP 確定是google 的人有回應說不支援 GRE 協議了,所以 PPTP 出局</p>
|
||||
|
||||
<p>L2TP 則是找了好幾篇文章參考都弄不起來,最後找到了這個 SoftEnter VPN</p>
|
||||
|
||||
<p>安裝方法參考這篇 <a href="http://www.softether.org/4-docs/1-manual/7._Installing_SoftEther_VPN_Server/7.3_Install_on_Linux_and_Initial_Configurations">Install Guide</a></p>
|
||||
|
||||
<p>另外也參考了這篇大陸網民寫的文章</p>
|
||||
|
||||
<h4 id="softether-vpn-linux下搭建vpn可以如此简单-http-mawenjian-net-p-1281-html"><a href="http://mawenjian.net/p/1281.html">SoftEther VPN——Linux下搭建VPN可以如此简单</a></h4>
|
||||
|
||||
<p>主要是參考他的 SoftEther VPN Server 管理器 的段落,這次就很順利的架起來了!</p>
|
||||
|
||||
<p>在iphone 上設定一個L2TP的VPN,連上之後去抓百度雲裡面的影片,下載速度大概都維持在 1M多</p>
|
||||
|
||||
<p>也許晚點再來測試看看直接透過 4G連線的速度,搞不好還比較快?</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/03/2015-03-17_15-30-46.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/03/2015-03-17_15-30-46.png" alt="2015-03-17_15-30-46" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>Google Developers Console 上看到的網路流量圖,可以確認手機的確是透過這台VPN的網路抓資料..</p>
|
||||
|
||||
<p>只是不曉得極速能跑到多少..</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/03/2015-03-17_15-42-04.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/03/2015-03-17_15-42-04-1024x280.png" alt="2015-03-17_15-42-04" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>Update</p>
|
||||
|
||||
<p>去抓 FreeBSD ISO 時的流量,超過 10Mb</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/03/2015-03-17_16-08-01.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/03/2015-03-17_16-08-01-1024x272.png" alt="2015-03-17_16-08-01" /></a></p>
|
||||
|
||||
<p>手機上不透過 VPN 直接抓百度雲盤內的影片,速度大概只有 四五百 Kb</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/03/2015-03-17_16-08-51.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/03/2015-03-17_16-08-51.png" alt="2015-03-17_16-08-51" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,508 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [筆記]在KVM VPS上透過 fuse-sshfs + pdumpfs 做wordpress異地備援 | My cool new Blog</title>
|
||||
<meta name="description" content="[筆記]在KVM VPS上透過 fuse-sshfs + pdumpfs 做wordpress異地備援 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[筆記]在KVM VPS上透過 fuse-sshfs + pdumpfs 做wordpress異地備援">
|
||||
<meta itemprop="description" content="[筆記]在KVM VPS上透過 fuse-sshfs + pdumpfs 做wordpress異地備援 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[筆記]在KVM VPS上透過 fuse-sshfs + pdumpfs 做wordpress異地備援">
|
||||
<meta property="og:description" content="[筆記]在KVM VPS上透過 fuse-sshfs + pdumpfs 做wordpress異地備援 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e7-ad-86-e8-a8-98-e5-9c-a8kvm-vps-e4-b8-8a-e9-80-8f-e9-81-8e-fuse-sshfs-pdumpfs-e5-81-9a-e7-95-b0-e5-9c-b0-e5-82-99-e6-8f-b4/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e7-ad-86-e8-a8-98-e5-9c-a8kvm-vps-e4-b8-8a-e9-80-8f-e9-81-8e-fuse-sshfs-pdumpfs-e5-81-9a-e7-95-b0-e5-9c-b0-e5-82-99-e6-8f-b4/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e7-ad-86-e8-a8-98-e5-9c-a8kvm-vps-e4-b8-8a-e9-80-8f-e9-81-8e-fuse-sshfs-pdumpfs-e5-81-9a-e7-95-b0-e5-9c-b0-e5-82-99-e6-8f-b4/">[筆記]在KVM VPS上透過 fuse-sshfs + pdumpfs 做wordpress異地備援</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-03-22</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>因為之前手賤,把原有的BLOG的資料檔都砍光光,雖然文章內容都還留著,但是圖片都變成叉燒包了 <img src="http://www.cowbay.org/wp-content/plugins/ultimate-tinymce/addons/emotions/img/popobig/too_sad.png" alt="Too Sad" title="Too Sad" /></p>
|
||||
|
||||
<p>不過換到新的WP之後,發現多了好多布景主題可以用,現在用的這個我就覺得很棒!<img src="http://www.cowbay.org/wp-content/plugins/ultimate-tinymce/addons/emotions/img/popobig/big_smile.png" alt="Big Smile" title="Big Smile" /></p>
|
||||
|
||||
<p>也為了要避免再次發生之前手殘的錯誤,所以一直在找一些異地備援的方式。</p>
|
||||
|
||||
<p>Wordpress本身的外掛雖然有很多號稱可以透過FTP之類的方式把備份檔案丟去其他地方</p>
|
||||
|
||||
<p>但測試了幾個之後,發現要不就是沒有定時的功能,要不就是要額外收費。</p>
|
||||
|
||||
<p>想來想去,還是乾脆自己在console下備份比較能掌握。</p>
|
||||
|
||||
<p>之前有玩過lsync,這次改用另外一招 sshfs + pdumpfs 來作作看</p>
|
||||
|
||||
<p></p>
|
||||
|
||||
<p>一開始在這台主機上要安裝fuse-sshfs 就碰到了很多問題,yum沒有預設,要另外下載,COMPILE又發生沒compiler的狀況,一一排除後,卻出現一個無解的問題。
|
||||
> fuse: failed to open /dev/fuse: <em>Permission denied</em>
|
||||
翻了GOOGLE,大部分的解法都是把執行的帳號加入fuse群組</p>
|
||||
|
||||
<p>問題是,我是用 root 執行,不應該會有這種權限的錯誤才對</p>
|
||||
|
||||
<p>最後發現是因為openvz的VPS的關係,所以不能在這台去執行..<img src="http://www.cowbay.org/wp-content/plugins/ultimate-tinymce/addons/emotions/img/popobig/tired.png" alt="So Tired" title="So Tired" /></p>
|
||||
|
||||
<p>好吧,反正我是要異地備援,那我去另一台KVM的VPS安裝總可以了吧!</p>
|
||||
|
||||
<p>安裝過程就跟其他用yum安裝的軟體一樣(yum 真是好用!以前都還要自己解相依性的問題..)
|
||||
> yum install -y pdumpfs fuse-sshfs
|
||||
接著在remote 端建立備份用的目錄還有mount用的目錄
|
||||
> mkdir /usr/local/abc_backup
|
||||
>
|
||||
>
|
||||
> mkdir /abc_backup
|
||||
然後先把remote 端的目錄結構用sshfs mount 到/abc_backup
|
||||
> sshfs abc@abc.com:/ /abc_backup/ -p 222
|
||||
這樣的指令會要求輸入密碼,要怎麼把密碼放進去,還要再研究。</p>
|
||||
|
||||
<p>好了之後就看一下是不是有沒有正確掛載
|
||||
> ls -la /abc_backup
|
||||
正常的話應該就會看到remote端的目錄結構了</p>
|
||||
|
||||
<p>接下來換pdumpfs 上場</p>
|
||||
|
||||
<p>pdumpfs的介紹可以看官網 <a href="http://0xcc.net/pdumpfs/index.html.en">http://0xcc.net/pdumpfs/index.html.en</a></p>
|
||||
|
||||
<p>簡單說就是rsync搭配time stamp + hard link 做到差異備份這樣</p>
|
||||
|
||||
<p>指令也很簡單
|
||||
> pdumpfs /abc_backup /usr/local/abc_backup
|
||||
一行就搞定了!</p>
|
||||
|
||||
<p>pdumpfs 可用的參數如下,真的很簡單!
|
||||
> Usage: pdumpfs SRC DEST [BASE]
|
||||
>
|
||||
> -e, –exclude=PATTERN exclude files/directories matching PATTERN
|
||||
>
|
||||
> -s, –exclude-by-size=SIZE exclude files larger than SIZE
|
||||
>
|
||||
> -w, –exclude-by-glob=GLOB exclude files matching GLOB
|
||||
>
|
||||
> -l, –log-file=FILE write a log to FILE
|
||||
>
|
||||
> -v, –version print version information and exit
|
||||
>
|
||||
> -q, –quiet suppress all normal output
|
||||
>
|
||||
> -n, –dry-run don’t actually run any commands
|
||||
>
|
||||
> -h, –help show this help message
|
||||
沒信心的話,可以用 -n 試跑一次看看</p>
|
||||
|
||||
<p>確定之後再寫到crontab裡面去!</p>
|
||||
|
||||
<p>簡單整理步驟如下</p>
|
||||
|
||||
<p>1.在要備份的機器上,先寫好mysql dump的crontab,大概長這樣,記得要自己加入日期參數之類的
|
||||
> mysqladmin -uroot -pxxxxx wordpress > /123/wp.sql
|
||||
2.在備份目的的機器上,安裝sshfs / pdumpfs</p>
|
||||
|
||||
<p>3.在備份目的機器上,建立掛載用的目錄/abc 還有備份用的目錄/usr/local/backup/abc</p>
|
||||
|
||||
<p>4.用sshfs掛載遠端目錄到/abc</p>
|
||||
|
||||
<p>5.用pdumpfs 把掛載進來的遠端目錄底下的 /123/wp.sql 還有 /var/www/html/wp 都備份到 /usr/local/backup/abc</p>
|
||||
|
||||
<p>6.測試完成後,在備份目的機器上,寫入crontab</p>
|
||||
|
||||
<p>大功告成!</p>
|
||||
|
||||
<p>我這兩個國外的VPS在互連,平均速率幾乎都在4Mb/5Mb ,拋資料真的很快!</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer">
|
||||
|
||||
|
||||
|
||||
<div class="tags">
|
||||
<i class="fa fa-tags"></i>
|
||||
<div class="links">
|
||||
|
||||
<a href="/tags/centos">centos</a>
|
||||
|
||||
<a href="/tags/openvz">openvz</a>
|
||||
|
||||
<a href="/tags/pdumpfs">pdumpfs</a>
|
||||
|
||||
<a href="/tags/sshfs">sshfs</a>
|
||||
|
||||
<a href="/tags/vps">vps</a>
|
||||
|
||||
<a href="/tags/wordpress">wordpress</a>
|
||||
|
||||
<a href="/tags/%E7%95%B0%E5%9C%B0%E5%82%99%E6%8F%B4">異地備援</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,429 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [筆記]在MAILLOG中快速找出從外部利用SASL認證發信的帳號及IP | My cool new Blog</title>
|
||||
<meta name="description" content="[筆記]在MAILLOG中快速找出從外部利用SASL認證發信的帳號及IP - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[筆記]在MAILLOG中快速找出從外部利用SASL認證發信的帳號及IP">
|
||||
<meta itemprop="description" content="[筆記]在MAILLOG中快速找出從外部利用SASL認證發信的帳號及IP - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[筆記]在MAILLOG中快速找出從外部利用SASL認證發信的帳號及IP">
|
||||
<meta property="og:description" content="[筆記]在MAILLOG中快速找出從外部利用SASL認證發信的帳號及IP - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e7-ad-86-e8-a8-98-e5-9c-a8maillog-e4-b8-ad-e5-bf-ab-e9-80-9f-e6-89-be-e5-87-ba-e5-be-9e-e5-a4-96-e9-83-a8-e5-88-a9-e7-94-a8sasl-e8-aa-8d-e8-ad-89-e7-99-bc-e4-bf-a1-e7-9a-84-e5-b8-b3-e8-99-9f/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e7-ad-86-e8-a8-98-e5-9c-a8maillog-e4-b8-ad-e5-bf-ab-e9-80-9f-e6-89-be-e5-87-ba-e5-be-9e-e5-a4-96-e9-83-a8-e5-88-a9-e7-94-a8sasl-e8-aa-8d-e8-ad-89-e7-99-bc-e4-bf-a1-e7-9a-84-e5-b8-b3-e8-99-9f/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e7-ad-86-e8-a8-98-e5-9c-a8maillog-e4-b8-ad-e5-bf-ab-e9-80-9f-e6-89-be-e5-87-ba-e5-be-9e-e5-a4-96-e9-83-a8-e5-88-a9-e7-94-a8sasl-e8-aa-8d-e8-ad-89-e7-99-bc-e4-bf-a1-e7-9a-84-e5-b8-b3-e8-99-9f/">[筆記]在MAILLOG中快速找出從外部利用SASL認證發信的帳號及IP</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-11-13</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<p>找出來之後,再去判斷這個人是否有需要,是否真的會在外部發信。</p>
|
||||
|
||||
<p>
|
||||
> cat maillog-20131027 |grep sasl|grep -v 192.168
|
||||
</p>
|
||||
|
||||
<p>Oct 26 01:24:17 SH-DNS-FC14 postfix/smtpd[25649]: C2A1A88E5E: client=23-24-225-177-static.hfc.comcastbusiness.net[23.24.225.177], sasl_method=LOGIN, sasl_username=cindy
|
||||
Oct 26 01:24:18 SH-DNS-FC14 postfix/smtpd[25645]: 931E388E5F: client=23-24-225-177-static.hfc.comcastbusiness.net[23.24.225.177], sasl_method=LOGIN, sasl_username=cindy
|
||||
Oct 26 01:24:20 SH-DNS-FC14 postfix/smtpd[25645]: 9B15488E60: client=23-24-225-177-static.hfc.comcastbusiness.net[23.24.225.177], sasl_method=LOGIN, sasl_username=cindy
|
||||
Oct 26 01:24:31 SH-DNS-FC14 postfix/smtpd[25645]: A957B88E69: client=23-24-225-177-static.hfc.comcastbusiness.net[23.24.225.177], sasl_method=LOGIN, sasl_username=cindy
|
||||
Oct 26 01:24:32 SH-DNS-FC14 postfix/smtpd[25648]: D7D2788E6A: client=23-24-225-177-static.hfc.comcastbusiness.net[23.24.225.177], sasl_method=LOGIN, sasl_username=cindy
|
||||
Oct 26 01:24:32 SH-DNS-FC14 postfix/smtpd[25649]: D9C1488E6B: client=23-24-225-177-static.hfc.comcastbusiness.net[23.24.225.177], sasl_method=LOGIN, sasl_username=cindy
|
||||
Oct 26 01:24:32 SH-DNS-FC14 postfix/smtpd[25647]: DAFD188E6C: client=23-24-225-177-static.hfc.comcastbusiness.net[23.24.225.177], sasl_method=LOGIN, sasl_username=cindy
|
||||
Oct 26 01:24:32 SH-DNS-FC14 postfix/smtpd[25650]: DC24988E6D: client=23-24-225-177-static.hfc.comcastbusiness.net[23.24.225.177], sasl_method=LOGIN, sasl_username=cindy
|
||||
Oct 26 01:24:36 SH-DNS-FC14 postfix/smtpd[25645]: AA62088E6F: client=23-24-225-177-static.hfc.comcastbusiness.net[23.24.225.177], sasl_method=LOGIN, sasl_username=cindy
|
||||
Oct 26 01:24:37 SH-DNS-FC14 postfix/smtpd[25648]: DA31F88E73: client=23-24-225-177-static.hfc.comcastbusiness.net[23.24.225.177], sasl_method=LOGIN, sasl_username=cindy
|
||||
Oct 26 01:24:37 SH-DNS-FC14 postfix/smtpd[25647]: DA38088E74: client=23-24-225-177-static.hfc.comcastbusiness.net[23.24.225.177], sasl_method=LOGIN, sasl_username=cindy
|
||||
Oct 26 01:24:37 SH-DNS-FC14 postfix/smtpd[25649]: DA5E988E75: client=23-24-225-177-static.hfc.comcastbusiness.net[23.24.225.177], sasl_method=LOGIN, sasl_username=cindy
|
||||
Oct 26 01:24:37 SH-DNS-FC14 postfix/smtpd[25650]: E1C2888E76: client=23-24-225-177-static.hfc.comcastbusiness.net[23.24.225.177], sasl_method=LOGIN, sasl_username=cindy
|
||||
Oct 26 01:24:38 SH-DNS-FC14 postfix/smtpd[25645]: E524388E77: client=23-24-225-177-static.hfc.comcastbusiness.net[23.24.225.177], sasl_method=LOGIN, sasl_username=cindy
|
||||
Oct 26 01:24:40 SH-DNS-FC14 postfix/smtpd[25645]: ECC7B88E7A: client=23-24-225-177-static.hfc.comcastbusiness.net[23.24.225.177], sasl_method=LOGIN, sasl_username=cindy</p>
|
||||
|
||||
<p>像這樣,短時間內大量發信,肯定就是USER的帳號密碼被猜到了,先改密碼或者把帳號砍掉,接下來封這些IP,再叫USER換一組強度高一點的密碼。</p>
|
||||
|
||||
<p>如果被打得很有經驗,手邊應該會有非常多的IP要封鎖,可以參考底下這篇文章用iptables把這些IP都擋掉</p>
|
||||
|
||||
<h1 id="教學-自動透過-iptables-封鎖-ip-黑名單-http-yenpai-idis-com-tw-archives-399-e6-95-99-e5-ad-b8-e8-87-aa-e5-8b-95-e9-80-8f-e9-81-8e-iptables-e5-b0-81-e9-8e-96-ip-e9-bb-91-e5-90-8d-e5-96-ae"><a href="http://yenpai.idis.com.tw/archives/399-%E6%95%99%E5%AD%B8-%E8%87%AA%E5%8B%95%E9%80%8F%E9%81%8E-iptables-%E5%B0%81%E9%8E%96-ip-%E9%BB%91%E5%90%8D%E5%96%AE">[教學] 自動透過 iptables 封鎖 IP 黑名單</a></h1>
|
||||
|
||||
<p>程式不難,看一下大概就知道怎麼改了,我是改成自己手邊的黑名單(算一算也有上百個吧)….</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,491 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [筆記] 在VMWARE Player中,透過本機USB隨身碟開機的方式 | My cool new Blog</title>
|
||||
<meta name="description" content="[筆記] 在VMWARE Player中,透過本機USB隨身碟開機的方式 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[筆記] 在VMWARE Player中,透過本機USB隨身碟開機的方式">
|
||||
<meta itemprop="description" content="[筆記] 在VMWARE Player中,透過本機USB隨身碟開機的方式 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[筆記] 在VMWARE Player中,透過本機USB隨身碟開機的方式">
|
||||
<meta property="og:description" content="[筆記] 在VMWARE Player中,透過本機USB隨身碟開機的方式 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e7-ad-86-e8-a8-98-e5-9c-a8vmware-player-e4-b8-ad-ef-bc-8c-e9-80-8f-e9-81-8e-e6-9c-ac-e6-a9-9fusb-e9-9a-a8-e8-ba-ab-e7-a2-9f-e9-96-8b-e6-a9-9f-e7-9a-84-e6-96-b9-e5-bc-8f/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e7-ad-86-e8-a8-98-e5-9c-a8vmware-player-e4-b8-ad-ef-bc-8c-e9-80-8f-e9-81-8e-e6-9c-ac-e6-a9-9fusb-e9-9a-a8-e8-ba-ab-e7-a2-9f-e9-96-8b-e6-a9-9f-e7-9a-84-e6-96-b9-e5-bc-8f/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e7-ad-86-e8-a8-98-e5-9c-a8vmware-player-e4-b8-ad-ef-bc-8c-e9-80-8f-e9-81-8e-e6-9c-ac-e6-a9-9fusb-e9-9a-a8-e8-ba-ab-e7-a2-9f-e9-96-8b-e6-a9-9f-e7-9a-84-e6-96-b9-e5-bc-8f/">[筆記] 在VMWARE Player中,透過本機USB隨身碟開機的方式</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-04-10</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>VMWARE PLAYER真的是超級方便的免費軟體,一直以來我都用來系統測試、開發新功能。</p>
|
||||
|
||||
<p>在之前筆電更換成Plextor 256G SSD以後,整個更是如虎添翼,虛擬機開起來比大部分的辦公室電腦還快! <img src="http://www.cowbay.org/wp-content/plugins/ultimate-tinymce/addons/emotions/img/popobig/big_smile.png" alt="Big Smile" title="Big Smile" /></p>
|
||||
|
||||
<p>不過咧,還是有一些缺點的,比如說,不能直接用接在本機的USB隨身碟開機!</p>
|
||||
|
||||
<p>現在不管是測試Linux版本或者是安裝Win7/8 ,我都是用隨身碟來作。</p>
|
||||
|
||||
<p>Win7的安裝光碟漸漸因為筆電的體積縮小,不再搭載光碟機、還有桌機都改買品牌電腦的緣故,慢慢消失在我的桌上了。</p>
|
||||
|
||||
<p>但是!人生就是這個但是啊!</p>
|
||||
|
||||
<p>之前終於讓我找到了解決方法,簡單來說,就是先用一個特殊的ISO開機,然後connect mass storage,再從開機選單中選擇USB,就可以了。操作畫面如下</p>
|
||||
|
||||
<p>準備事項</p>
|
||||
|
||||
<p>1.一隻可開機的USB隨身碟</p>
|
||||
|
||||
<p>可開機隨身碟,我都是用 <a href="http://www.pendrivelinux.com/yumi-multiboot-usb-creator/">YUMI</a> 來製作,真的很好用!</p>
|
||||
|
||||
<p>2.VMWARE PLAYER</p>
|
||||
|
||||
<p>直接到官網DOWNLOAD吧,不用錢的!不過要註冊帳號唷!</p>
|
||||
|
||||
<p><a href="https://my.vmware.com/web/vmware/free#desktop_end_user_computing/vmware_player/5_0">前往下載VMWARE PLAYER</a></p>
|
||||
|
||||
<p>3.Plop Boot Manager</p>
|
||||
|
||||
<p>這次的重點,用來建立一個可以抓到本機USB隨身碟的臨時作業環境</p>
|
||||
|
||||
<p>官網:<a href="http://www.plop.at/en/bootmanager/index.html">http://www.plop.at/en/bootmanager/index.html</a></p>
|
||||
|
||||
<p>下載網頁:<a href="http://www.plop.at/en/bootmanager/download.html">http://www.plop.at/en/bootmanager/download.html</a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<hr />
|
||||
|
||||
<p>開始進行測試</p>
|
||||
|
||||
<p>1.建立一個新VM</p>
|
||||
|
||||
<p><img src="http://www.cowbay.org/wp-content/gallery/vmware_player/01-create-a-new-vm.jpg" alt="01-create-a-new-vm" /></p>
|
||||
|
||||
<p>2.選擇剛剛下載的 Boot Manager ISO檔案</p>
|
||||
|
||||
<p><img src="http://www.cowbay.org/wp-content/gallery/vmware_player/02-select-iso-file.jpg" alt="02-select-iso-file" /></p>
|
||||
|
||||
<p><img src="http://www.cowbay.org/wp-content/gallery/vmware_player/03-select-plpbt-iso-file.jpg" alt="03-select-plpbt-iso-file" /></p>
|
||||
|
||||
<p>3.選擇<span style="color: #ff0000;">「將要從隨身碟安裝的OS」</span></p>
|
||||
|
||||
<p><img src="http://www.cowbay.org/wp-content/gallery/vmware_player/04-select-guest-os.jpg" alt="04-select-guest-os" /></p>
|
||||
|
||||
<p>4.選擇VM的名字,還有要存放VM檔案的目錄</p>
|
||||
|
||||
<p><img src="http://www.cowbay.org/wp-content/gallery/vmware_player/05-select-save-location.jpg" alt="05-select-save-location" /></p>
|
||||
|
||||
<p>5.選擇磁碟機大小</p>
|
||||
|
||||
<p><img src="http://www.cowbay.org/wp-content/gallery/vmware_player/06-disk-capacity.jpg" alt="06-disk-capacity" /></p>
|
||||
|
||||
<p>6.完成設定</p>
|
||||
|
||||
<p><img src="http://www.cowbay.org/wp-content/gallery/vmware_player/07-finish-create.jpg" alt="07-finish-create" /></p>
|
||||
|
||||
<p>VM設定結束</p>
|
||||
|
||||
<hr />
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>接著把VM開起來,注意右上角有個箭頭符號,點下去會有虛擬機的硬體裝置列,一開始沒注意這邊,結果找好久都找不到。<img src="http://www.cowbay.org/wp-content/plugins/ultimate-tinymce/addons/emotions/img/popobig/furious.png" alt="Furious" title="Furious" /></p>
|
||||
|
||||
<p><img src="http://www.cowbay.org/wp-content/gallery/vmware_player/08-boot-from-plpbt.jpg" alt="08-boot-from-plpbt" /></p>
|
||||
|
||||
<p>點開之後,會看到一排虛擬機的硬體狀態,其中有一個是MASS STORAGE Device ,在這個圖示上按右鍵,選Connect</p>
|
||||
|
||||
<p><img src="http://www.cowbay.org/wp-content/gallery/vmware_player/09-connect-usb-mass-storage.jpg" alt="09-connect-usb-mass-storage" /></p>
|
||||
|
||||
<p>注意看的話會發現連接後,圖示會變得不一樣</p>
|
||||
|
||||
<p><img src="http://www.cowbay.org/wp-content/gallery/vmware_player/10-icon-after-connect.jpg" alt="10-icon-after-connect" /></p>
|
||||
|
||||
<p>接下來就移動游標到USB,按下ENTER,就可以從本機上的USB隨身碟開機啦!</p>
|
||||
|
||||
<p><img src="http://www.cowbay.org/wp-content/gallery/vmware_player/11-select-usb-to-boot.jpg" alt="11-select-usb-to-boot" /></p>
|
||||
|
||||
<p><img src="http://www.cowbay.org/wp-content/gallery/vmware_player/12-boot-from-usb.jpg" alt="12-boot-from-usb" /></p>
|
||||
|
||||
<hr />
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>有了這方法之後,要從USB開機就再也不是不可能的夢想了,可以省去很多製作ISO檔的時間!</p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,495 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [筆記] 好用PDF轉檔、辨識(OCR) 軟體 Aiseesoft PDF Converter Ultimate | My cool new Blog</title>
|
||||
<meta name="description" content="[筆記] 好用PDF轉檔、辨識(OCR) 軟體 Aiseesoft PDF Converter Ultimate - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[筆記] 好用PDF轉檔、辨識(OCR) 軟體 Aiseesoft PDF Converter Ultimate">
|
||||
<meta itemprop="description" content="[筆記] 好用PDF轉檔、辨識(OCR) 軟體 Aiseesoft PDF Converter Ultimate - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[筆記] 好用PDF轉檔、辨識(OCR) 軟體 Aiseesoft PDF Converter Ultimate">
|
||||
<meta property="og:description" content="[筆記] 好用PDF轉檔、辨識(OCR) 軟體 Aiseesoft PDF Converter Ultimate - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e7-ad-86-e8-a8-98-e5-a5-bd-e7-94-a8pdf-e8-bd-89-e6-aa-94-e3-80-81-e8-be-a8-e8-ad-98ocr-e8-bb-9f-e9-ab-94-asieesoft-pdf-converter-ultimate/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e7-ad-86-e8-a8-98-e5-a5-bd-e7-94-a8pdf-e8-bd-89-e6-aa-94-e3-80-81-e8-be-a8-e8-ad-98ocr-e8-bb-9f-e9-ab-94-asieesoft-pdf-converter-ultimate/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e7-ad-86-e8-a8-98-e5-a5-bd-e7-94-a8pdf-e8-bd-89-e6-aa-94-e3-80-81-e8-be-a8-e8-ad-98ocr-e8-bb-9f-e9-ab-94-asieesoft-pdf-converter-ultimate/">[筆記] 好用PDF轉檔、辨識(OCR) 軟體 Aiseesoft PDF Converter Ultimate</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2014-02-21</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>昨天在臉書上看到 freegroup 貼了這麼一篇消息 (臉書連結)</p>
|
||||
|
||||
<p><a href="https://www.facebook.com/freegroup/posts/10202354543977480?comment_id=6329737&amp;reply_comment_id=6329744&amp;offset=0&amp;total_comments=3">Aiseesoft PDF Converter Ultimate 內建 OCR 辨識功能的 PDF 轉檔軟體,限時免費下載</a></p>
|
||||
|
||||
<p>因為工作上很常碰到同事拿國外的PDF來給我,問說能不能轉成WORD / EXCEL /PPT ,因為要再次「編輯」內容</p>
|
||||
|
||||
<p>如果原檔是從OFFICE直接轉PDF,那就還有些許機會,但是如果在PDF中,沒有辦法去選取文字,就代表檔案是以圖形列印的方式轉成PDF</p>
|
||||
|
||||
<p>這種的幾乎就沒有辦法處理。</p>
|
||||
|
||||
<p>不過看到了上面那篇連結以及作者的回覆(有繁體中文OCR的選項)之後,我就想說來試試看好了。</p>
|
||||
|
||||
<p>底下是測試的內容</p>
|
||||
|
||||
<p>原檔: Word 2013 製作的 <a href="http://www.cowbay.org/wp-content/uploads/2014/02/原稿.docx">原稿</a> p.s 瑤瑤真的好正啊 <img src="http://www.cowbay.org/wp-content/plugins/ultimate-tinymce/addons/emotions/img/popobig/still_dreaming.png" alt="Still Dreaming" title="Still Dreaming" />~~~~</p>
|
||||
|
||||
<p>內容大概是這樣</p>
|
||||
|
||||
<p><a href="http://www.cowbay.org/wp-content/uploads/2014/02/圖片-5.jpg"><img src="http://www.cowbay.org/wp-content/uploads/2014/02/圖片-5-1024x555.jpg" alt="原稿內容" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>轉存JPG之後的狀況</p>
|
||||
|
||||
<p><a href="http://www.cowbay.org/wp-content/uploads/2014/02/圖片-6.jpg"><img src="http://www.cowbay.org/wp-content/uploads/2014/02/圖片-6-1024x576.jpg" alt="圖片 6" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>從JPG再轉成 <a href="http://www.cowbay.org/wp-content/uploads/2014/02/圖片-4.pdf">PDF</a>,內容是這樣</p>
|
||||
|
||||
<p><a href="http://www.cowbay.org/wp-content/uploads/2014/02/圖片-7.jpg"><img src="http://www.cowbay.org/wp-content/uploads/2014/02/圖片-7-1024x555.jpg" alt="圖片 7" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>然後進入這個 Asieesoft PDF Converter Ultimate</p>
|
||||
|
||||
<p>先到設定裡面確認有選擇了繁體中文OCR</p>
|
||||
|
||||
<p>..<a href="http://www.cowbay.org/wp-content/uploads/2014/02/圖片-8.jpg"><img src="http://www.cowbay.org/wp-content/uploads/2014/02/圖片-8.jpg" alt="圖片 8" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>確認之後,就選擇PDF進來,然後點下CONVERT按鈕</p>
|
||||
|
||||
<p><a href="http://www.cowbay.org/wp-content/uploads/2014/02/圖片-9.jpg"><img src="http://www.cowbay.org/wp-content/uploads/2014/02/圖片-9-1024x543.jpg" alt="圖片 9" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>得到的結果是這樣,從圖片轉過來的文字,大概成功辨識了有超過九成!</p>
|
||||
|
||||
<p>算是非常了不起的成果了!值得推薦吶!</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>update</p>
|
||||
|
||||
<p>補上一篇今天轉的檔案,效果還算不錯,原始檔案是上海的同事傳過來的一個PDF檔,透過PDF Converter Ultimate轉成 docx,在圖片中可以看到簡體字的部分,可以被選取,代表已經轉成文字了</p>
|
||||
|
||||
<p>內容也都正確無誤的轉過來了!</p>
|
||||
|
||||
<p>再次強力推薦啦!</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><a href="http://www.cowbay.org/wp-content/uploads/2014/02/圖片-31.png"><img src="http://www.cowbay.org/wp-content/uploads/2014/02/圖片-31-1024x761.png" alt="圖片 3" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>Update 2014/03/20</p>
|
||||
|
||||
<p>今天在做一些關鍵字排名的東西,有個工具可以把關鍵字目前在網站上的排名抓成列表、匯出PDF</p>
|
||||
|
||||
<p>可是我想在報告中引用,所以又想到這套工具,就給他拿出來轉轉看</p>
|
||||
|
||||
<p>果然效果還是很不錯的,雖然不是100%轉成功,但是絕大部分都有正確的轉成中文字了!真的是大推啊!</p>
|
||||
|
||||
<p><a href="http://www.cowbay.org/wp-content/uploads/2014/02/keywork-ranking.png"><img src="http://www.cowbay.org/wp-content/uploads/2014/02/keywork-ranking-1024x510.png" alt="keywork ranking" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,433 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [筆記] 台灣安博盒子簡易測試心得 | My cool new Blog</title>
|
||||
<meta name="description" content="[筆記] 台灣安博盒子簡易測試心得 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[筆記] 台灣安博盒子簡易測試心得">
|
||||
<meta itemprop="description" content="[筆記] 台灣安博盒子簡易測試心得 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[筆記] 台灣安博盒子簡易測試心得">
|
||||
<meta property="og:description" content="[筆記] 台灣安博盒子簡易測試心得 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e7-ad-86-e8-a8-98-e5-ae-89-e5-8d-9a-e7-9b-92-e5-ad-90-e7-b0-a1-e6-98-93-e4-bd-bf-e7-94-a8-e5-bf-83-e5-be-97/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e7-ad-86-e8-a8-98-e5-ae-89-e5-8d-9a-e7-9b-92-e5-ad-90-e7-b0-a1-e6-98-93-e4-bd-bf-e7-94-a8-e5-bf-83-e5-be-97/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e7-ad-86-e8-a8-98-e5-ae-89-e5-8d-9a-e7-9b-92-e5-ad-90-e7-b0-a1-e6-98-93-e4-bd-bf-e7-94-a8-e5-bf-83-e5-be-97/">[筆記] 台灣安博盒子簡易測試心得</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2016-03-17</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>PCHOME買的,昨天到貨,測試一個小時左右。</p>
|
||||
|
||||
<p>可能等到週六、日的職棒轉播看完結果再來決定要不要退,不過基本上,對這個產品滿失望的就是了。</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>1.直播時間有落差,大約十分鐘</p>
|
||||
|
||||
<p>2.各類視頻APP 還是跟其他的產品一樣,會碰到連線大陸很慢或者是不給看的問題</p>
|
||||
|
||||
<p>3.晚上測試時,有的直播電視頻道會像是鬼打牆一樣,不斷跳針,就算跳出去再進來還是一樣</p>
|
||||
|
||||
<p>4.早上(七點多)測試,晚上會跳針的頻道就OK..所以看來是廠商頻寬不夠?</p>
|
||||
|
||||
<p>5.K歌之王這個APP來源應該也是大陸,所以其實撥MV的時候還滿卡的(CHT 雙向100M)</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>update</p>
|
||||
|
||||
<p>今天回家後,想測試看看平常看大陸視頻用的PPTP Server 能不能順利的看電視直播</p>
|
||||
|
||||
<p>很可惜的是雖然可以看,但是非常卡,但是測速又有將近2M的速度,我實在無法理解為何會這樣…</p>
|
||||
|
||||
<p>不過既然都連上了,順便看看這台的全聚合有沒有啥問題,拿來看了兩部美劇,都還滿流暢的,下載了優酷APP,看了一集韓劇也是OK的</p>
|
||||
|
||||
<p>就在我測試完這條VPN,切回原來的中華電信雙向100線路後,發現電視直播不能看了!(大概九點多吧)</p>
|
||||
|
||||
<p>嘗試了很多方法,每個頻道都一直在轉圈圈,無法正常收看</p>
|
||||
|
||||
<p>用LINE問了他們客服,回答說主機掛了,香港原廠處理中</p>
|
||||
|
||||
<p>到十一點多要去睡了還沒恢復,所以毅然決然的打包,申請退貨去了 XD</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,409 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [筆記] 將日期變數 date variable 加入 bashrc | My cool new Blog</title>
|
||||
<meta name="description" content="[筆記] 將日期變數 date variable 加入 bashrc - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[筆記] 將日期變數 date variable 加入 bashrc">
|
||||
<meta itemprop="description" content="[筆記] 將日期變數 date variable 加入 bashrc - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[筆記] 將日期變數 date variable 加入 bashrc">
|
||||
<meta property="og:description" content="[筆記] 將日期變數 date variable 加入 bashrc - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e7-ad-86-e8-a8-98-e5-b0-87-e6-97-a5-e6-9c-9f-e8-ae-8a-e6-95-b8-date-variable-e5-8a-a0-e5-85-a5-bashrc/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e7-ad-86-e8-a8-98-e5-b0-87-e6-97-a5-e6-9c-9f-e8-ae-8a-e6-95-b8-date-variable-e5-8a-a0-e5-85-a5-bashrc/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e7-ad-86-e8-a8-98-e5-b0-87-e6-97-a5-e6-9c-9f-e8-ae-8a-e6-95-b8-date-variable-e5-8a-a0-e5-85-a5-bashrc/">[筆記] 將日期變數 date variable 加入 bashrc</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2015-12-22</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><font size="4" face="Times New Roman">vim /etc/bashrc ( or /HOME_DIR/.bashrc)</font></p>
|
||||
|
||||
<p><font size="4" face="Times New Roman">export datecode=<code>date +"%Y%m%d"</code></font></p>
|
||||
|
||||
<p><font size="4" face="Times New Roman">以後就可以直接使用 $datecode 來產生今天的日期給備份的命令用</font></p>
|
||||
|
||||
<p><font size="4" face="Times New Roman">[root@w ~]# touch test_$datecode
|
||||
[root@w ~]# ls
|
||||
anaconda-ks.cfg ** <font color="#ff0000">test_20151222</font> ** yum.txt
|
||||
[root@w ~]#
|
||||
</font></p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,429 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [筆記] 新安裝的 Wordpress 文章的 URL 如果有中文 會找不到 | My cool new Blog</title>
|
||||
<meta name="description" content="[筆記] 新安裝的 Wordpress 文章的 URL 如果有中文 會找不到 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[筆記] 新安裝的 Wordpress 文章的 URL 如果有中文 會找不到">
|
||||
<meta itemprop="description" content="[筆記] 新安裝的 Wordpress 文章的 URL 如果有中文 會找不到 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[筆記] 新安裝的 Wordpress 文章的 URL 如果有中文 會找不到">
|
||||
<meta property="og:description" content="[筆記] 新安裝的 Wordpress 文章的 URL 如果有中文 會找不到 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e7-ad-86-e8-a8-98-e6-96-b0-e5-ae-89-e8-a3-9d-e7-9a-84-wordpress-e6-96-87-e7-ab-a0-e7-9a-84-url-e5-a6-82-e6-9e-9c-e6-9c-89-e4-b8-ad-e6-96-87-e6-9c-83-e6-89-be-e4-b8-8d-e5-88-b0/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e7-ad-86-e8-a8-98-e6-96-b0-e5-ae-89-e8-a3-9d-e7-9a-84-wordpress-e6-96-87-e7-ab-a0-e7-9a-84-url-e5-a6-82-e6-9e-9c-e6-9c-89-e4-b8-ad-e6-96-87-e6-9c-83-e6-89-be-e4-b8-8d-e5-88-b0/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e7-ad-86-e8-a8-98-e6-96-b0-e5-ae-89-e8-a3-9d-e7-9a-84-wordpress-e6-96-87-e7-ab-a0-e7-9a-84-url-e5-a6-82-e6-9e-9c-e6-9c-89-e4-b8-ad-e6-96-87-e6-9c-83-e6-89-be-e4-b8-8d-e5-88-b0/">[筆記] 新安裝的 Wordpress 文章的 URL 如果有中文 會找不到</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2016-04-28</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>有一台新起的VPS,裝了Wordpress 之後,如果固定網址是中文的話,會發生找不到的狀況</p>
|
||||
|
||||
<p>在 LOG 裡面會看到類似
|
||||
> [Thu Apr 28 09:47:25 2016] [error] [client] File does not exist: /var/www/html/-\xe5\x85\xac\xe5\x8f\xb8\xe4\xbb\x8b\xe7\xb4\xb9, referer: <a href="http://abc.com.tw/">http://abc.com.tw/</a>
|
||||
這種錯誤,因為跟WORDPRESS有關,所以一開始我用 “wordpress URL 中文” 丟去google ,結果找到一堆說要修改 class-wp.php 的文章,測試了老半天都無法解決問題!</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>後來想到,歸根究底,這是調用 Apache 的Rewrite功能,所以應該是mod_rewrite 這裡有問題</p>
|
||||
|
||||
<p>改從這邊下手,原本以為是我沒安裝這個模組的關係,結果這模組似乎是預設就會安裝</p>
|
||||
|
||||
<p>那是不是沒有啟用呢?</p>
|
||||
|
||||
<p>又去翻了一下google ,發現要去修改這個目錄的 AllowOverRide 設定</p>
|
||||
|
||||
<p>所以在httpd.conf 裡面 新增以下語法
|
||||
> <Directory /path_to_wordpress>
|
||||
>
|
||||
>
|
||||
> AllowOverRide None
|
||||
>
|
||||
>
|
||||
> </Directory>
|
||||
接著重起 httpd</p>
|
||||
|
||||
<p>再開啟中文連結,應該是都OK了!</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,495 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [筆記] 昨日小築VPS 測試 | My cool new Blog</title>
|
||||
<meta name="description" content="[筆記] 昨日小築VPS 測試 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[筆記] 昨日小築VPS 測試">
|
||||
<meta itemprop="description" content="[筆記] 昨日小築VPS 測試 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[筆記] 昨日小築VPS 測試">
|
||||
<meta property="og:description" content="[筆記] 昨日小築VPS 測試 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e7-ad-86-e8-a8-98-e6-98-a8-e6-97-a5-e5-b0-8f-e7-af-89vps-e6-b8-ac-e8-a9-a6/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e7-ad-86-e8-a8-98-e6-98-a8-e6-97-a5-e5-b0-8f-e7-af-89vps-e6-b8-ac-e8-a9-a6/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e7-ad-86-e8-a8-98-e6-98-a8-e6-97-a5-e5-b0-8f-e7-af-89vps-e6-b8-ac-e8-a9-a6/">[筆記] 昨日小築VPS 測試</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2015-10-13</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>昨日小築原本是很知名的軟體下載網站,不過後來因為這類型的網站實在太多了</p>
|
||||
|
||||
<p>有好長一陣子沒有注意這個網站的消息</p>
|
||||
|
||||
<p>最近因為工作需求,想要找台灣的VPS空間放網站</p>
|
||||
|
||||
<p>看到GOOGLE的關鍵字廣告中出現了昨日小築VPS的廣告</p>
|
||||
|
||||
<p>點進去看了看,價格還算合理,比起中華電信的HiCloud 算是OK的</p>
|
||||
|
||||
<p>想說那就來申請看看吧!</p>
|
||||
|
||||
<p>不過可惜的是,不能夠直接在網站上申請、開通</p>
|
||||
|
||||
<p>要發信件給管理者,說明要申請的規格,再由管理者開通後台</p>
|
||||
|
||||
<p>我覺得這部分應該可以再改進,像國外的VPS (比如說DigitalOcean的Droplet)那樣方便最好了!</p>
|
||||
|
||||
<p>雖然說都要透過信件聯絡,不過在上班時間內,信件回覆的速度是很快的</p>
|
||||
|
||||
<p>而且管理者都會幫忙處理一些狀況,像是安裝OS之類的,算是很不錯的服務!</p>
|
||||
|
||||
<p>底下是在VPS裡面的一些測試狀況
|
||||
> [root@vpn speedtest-cli-0.3.2]# ./speedtest_cli.py
|
||||
>
|
||||
> Retrieving speedtest.net configuration…
|
||||
>
|
||||
> Retrieving speedtest.net server list…
|
||||
>
|
||||
> Testing from HiNet (118.163.155.241)…
|
||||
>
|
||||
> Selecting best server based on latency…
|
||||
>
|
||||
> Hosted by China Mobile Group GanSu Co.Ltd (Lanzhou) [158.10 km]: 75.068 ms
|
||||
>
|
||||
> Testing download speed………………………………….
|
||||
>
|
||||
> Download: 64.30 Mbit/s
|
||||
>
|
||||
> Testing upload speed…………………………………………..
|
||||
>
|
||||
> Upload: 29.15 Mbit/s
|
||||
>
|
||||
>
|
||||
> [root@vpn speedtest-cli-0.3.2]# dd if=/dev/zero of=testfile bs=1024 count=1000000
|
||||
>
|
||||
> 1000000+0 records in
|
||||
>
|
||||
> 1000000+0 records out
|
||||
>
|
||||
> 1024000000 bytes (1.0 GB) copied, 6.33015 s, 162 MB/s
|
||||
>
|
||||
> [root@vpn speedtest-cli-0.3.2]# dd if=/dev/zero of=testfile bs=1024 count=5000000
|
||||
>
|
||||
> 5000000+0 records in
|
||||
>
|
||||
> 5000000+0 records out
|
||||
>
|
||||
> 5120000000 bytes (5.1 GB) copied, 21.3595 s, 240 MB/s
|
||||
>
|
||||
> [root@vpn speedtest-cli-0.3.2]#
|
||||
>
|
||||
>
|
||||
> [root@vpn speedtest-cli-0.3.2]# traceroute 8.8.8.8
|
||||
>
|
||||
> traceroute to 8.8.8.8 (8.8.8.8), 30 hops max, 60 byte packets
|
||||
>
|
||||
> 1 118-163-155-254.HINET-IP.hinet.net (118.163.155.254) 1.518 ms 1.526 ms 1.551 ms
|
||||
>
|
||||
> 2 tchn-3301.hinet.net (168.95.228.146) 12.821 ms 12.819 ms 12.807 ms
|
||||
>
|
||||
> 3 tchn-3012.hinet.net (220.128.17.234) 4.586 ms tchn-3011.hinet.net (220.128.16.230) 3.756 ms tchn-3012.hinet.net (220.128.17.234) 4.588 ms
|
||||
>
|
||||
> 4 chch-3012.hinet.net (220.128.17.29) 5.572 ms 5.651 ms chch-3011.hinet.net (220.128.16.29) 6.610 ms
|
||||
>
|
||||
> 5 chch-3301.hinet.net (220.128.18.169) 1.999 ms chch-3301.hinet.net (220.128.19.185) 1.736 ms chch-3301.hinet.net (220.128.18.169) 1.963 ms
|
||||
>
|
||||
> 6 72.14.243.254 (72.14.243.254) 5.427 ms 5.674 ms 72.14.205.150 (72.14.205.150) 5.819 ms
|
||||
>
|
||||
> 7 209.85.243.30 (209.85.243.30) 11.113 ms 11.512 ms 11.515 ms
|
||||
>
|
||||
> 8 209.85.242.163 (209.85.242.163) 12.172 ms 209.85.240.39 (209.85.240.39) 8.797 ms 8.871 ms
|
||||
>
|
||||
> 9 72.14.235.77 (72.14.235.77) 11.692 ms 209.85.245.68 (209.85.245.68) 8.970 ms 72.14.237.171 (72.14.237.171) 16.844 ms
|
||||
>
|
||||
> 10 * * *
|
||||
>
|
||||
> 11 google-public-dns-a.google.com (8.8.8.8) 10.917 ms 8.533 ms 10.775 ms
|
||||
>
|
||||
> [root@vpn speedtest-cli-0.3.2]#
|
||||
</p>
|
||||
|
||||
<p>目前用起來效能是挺不錯的,如果有需求,不妨考慮看看,價格換算大概在40美金左右</p>
|
||||
|
||||
<p>當然比起DigitalOcean / Vultr / Linode 等等算是比較貴的,不過在台灣的VPS中,算是相對便宜的了!</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,421 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [筆記] 在CentOS 為 iredmail 加入 letsencrypt 的FREE SSL 認證 | My cool new Blog</title>
|
||||
<meta name="description" content="[筆記] 在CentOS 為 iredmail 加入 letsencrypt 的FREE SSL 認證 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[筆記] 在CentOS 為 iredmail 加入 letsencrypt 的FREE SSL 認證">
|
||||
<meta itemprop="description" content="[筆記] 在CentOS 為 iredmail 加入 letsencrypt 的FREE SSL 認證 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[筆記] 在CentOS 為 iredmail 加入 letsencrypt 的FREE SSL 認證">
|
||||
<meta property="og:description" content="[筆記] 在CentOS 為 iredmail 加入 letsencrypt 的FREE SSL 認證 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e7-ad-86-e8-a8-98-e7-82-ba-iredmail-e5-8a-a0-e5-85-a5-letsencrypt-e7-9a-84free-ssl-e8-aa-8d-e8-ad-89/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?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="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<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="/article/e7-ad-86-e8-a8-98-e7-82-ba-iredmail-e5-8a-a0-e5-85-a5-letsencrypt-e7-9a-84free-ssl-e8-aa-8d-e8-ad-89/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e7-ad-86-e8-a8-98-e7-82-ba-iredmail-e5-8a-a0-e5-85-a5-letsencrypt-e7-9a-84free-ssl-e8-aa-8d-e8-ad-89/">[筆記] 在CentOS 為 iredmail 加入 letsencrypt 的FREE SSL 認證</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2016-05-11</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<h2 id="在centos-為-iredmail-加入-letsencrypt-的free-ssl-認證">在CentOS 為 iredmail 加入 letsencrypt 的FREE SSL 認證</h2>
|
||||
|
||||
<p>先升級python27
|
||||
> yum install -y centos-release-SCL
|
||||
>
|
||||
> yum install -y python27
|
||||
>
|
||||
> <code></pre>
|
||||
>
|
||||
> <pre></code>alias python=python2.7
|
||||
>
|
||||
> <pre></pre>
|
||||
再來,參考網友 dsp3 寫的步驟</p>
|
||||
|
||||
<p><a href="http://www.dsp3.org/integrating-lets-encrypt-with-iredmail/">http://www.dsp3.org/integrating-lets-encrypt-with-iredmail/</a></p>
|
||||
|
||||
<p>其實沒很難啦,LetsEncrypt 基本上會幫忙設定到好(如果用 apache的話)</p>
|
||||
|
||||
<p>不過這樣的設定只有WEB會生效</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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 = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user