June 2010 Archives

Dropbox

user-pic
Vote 0 Votes

Dropbox 是個網路硬碟+同步備份+資料分享的服務
推薦大家使用.

特點一: 檔案隨處可得加備份
每台裝有 Dropbox 的電腦, 都會跟雲端的帳戶同步檔案, 也就是每台電腦的 Dropbox 目錄都是一樣的,
Dropbox 跟一般的網路硬碟不太一樣, 它是採用本地端也存一份的同步方式, 即使沒有網路也能存取檔案.
要同步辦公室跟家裡電腦的資料嗎? 用它就對了
它同步檔案的速度很快, A電腦新增或編輯過的檔, B電腦很快就可以看到新的檔案,
一般文件從A電腦經由 Dropbox, 再到B電腦的時間, 不會超過10秒, 當然你的檔案很大的話另當別論.

特點二: 與別人共享資料夾
Teamwork 時很好用, 可以設定共享資料夾並邀請朋友加入.
共同存取同一個目錄.

特點三: 檔案分享
可以產生 Public http Link 例如: puremsn14.0.8117cht.exe
可直接下載.

Dropbox 免費空間是 2G, 成功推薦別人使用可多 250MB 空間(最多到 8GB),
經由此 推薦連結 申請, 您一樣也可以多獲得 250MB 空間(一開始就有 2.25G)
帳號申請完後, 下載 Dropbox Client 安裝.

付費空間也不是很貴
50G $9.99/月 or $99/年
100G $19.99/月 or $199/年 (單位: USD)

2010-07-02 Update: 抓了封包看檔案是傳那邊, 抓到 IP 是 204.236.220.69, 使用 https 上傳.
IP 反解是 Amazon Web Service 的 Domain (amazonaws.com)
看起來是用 Amazone Storage, 查了資料也的確是.
另一個類似的服務是 ZumoDrive, 也是使用 Amazone Storage, 付費的價格也跟 Dropbox 一樣
可參考 免費的網路硬碟 Dropbox 與 ZumoDrive 介紹與比較

2010-10-01 Update: 學生好康活動, 若有 .edu 或 .edu.tw 的信箱, 到 https://www.dropbox.com/edu 填 Email 通過認證就可以立即提升紹人的空間,
從最大 10G 到 18G (若您已推薦滿 32 個)

Windows Live Essentials beta Build 15.3.2804.607
Beta版沒有繁體中文, 正式版預計九月出
直接 Download 的安裝程式不能選擇細項, 只能次全裝, 若要自訂, 需選擇右邊的 Choose the programs you want
右上角有個按鈕可切換 full view / compact view
預設是 full view, 左邊是瀏覽器, 右邊是 MSN
compact view 就是只有 MSN, 會是比較習慣的模式

Speed Test Sites

user-pic
Vote 0 Votes

各家測速網站, 僅列不限來源的站

國際測速
Speedtest.net

ISP
威達雲端電訊 (使用 Speedtest 程式)
中華電信 HiNet
速博 sparq
遠傳3G/3.5G連線速率測速
台灣大寬頻 Anet
全球一動 (使用 Speedtest 程式)
TBC群健

學術網路
中研院網路測速中心
桃園縣教育網路中心

在寫網路程式時, 發現 Kaspersky 常常會有不明連線連往 Internet UDP Port 7024
Destination IP
195.222.17.35
195.222.17.38
85.12.57.87
85.12.57.89
查 whois 資料前兩個 IP 是 Kaspersky 的網段
根據官方 Forum 的回應是說會送出軟體的 Checksum, 檢查軟體是否在白名單內,
若是自己寫的程式, 自然不會有任何記錄, 所以就會去 Check
ref.
KAV 8.0.0.357 try to access internet after lauching - Why ?
Multiple Alerts - KIS 2009 to Port 7024 ?, I thought this was a backdoor or something

威達雲端電訊 4G WiMAX 目前涵蓋的範圍為台中縣市
申請網頁 填住址可查詢訊號品質(室外訊號預估值, 僅供參考)
現在預繳一年還送一個月, 等於一個月只要 277 元.

Bloglines 最近愈來愈常遇到 Internal Server Error,
決定改用 Google Reader
Export Subscriptions 匯出 OPML 檔,
可直接匯入 Google Reader

IPSec LAN to LAN VPN

user-pic
Vote 0 Votes

Environment: CentOS 5.5 to CentOS 5.5
Example:
Site A
   WAN: 100.100.100.100/24
   LAN: 192.168.0.1/24

Site B
   WAN: 200.200.200.200/24
   LAN: 192.168.1.1/24

Install Openswan (formerly FreeSWAN)
yum -y install openswan

Edit Site A /etc/ipsec.conf
conn tunnel
   left=100.100.100.100 # left for local
   leftsubnet=192.168.0.0/24
   right=200.200.200.200 # right for remote
   rightsubnet=192.168.1.0/24
   pfs=yes # pfs for Perfect Forward Secrecy
   type=tunnel
   authby=secret
   auto=start

Edit Site A /etc/ipsec.secrets # left right order is not important, PSK must be the same as Site B
100.100.100.100 200.200.200.200: PSK "yourpsk"

Edit Site B /etc/ipsec.conf
conn tunnel
   left=200.200.200.200
   leftsubnet=192.168.1.0/24
   right=100.100.100.100
   rightsubnet=192.168.0.0/24
   pfs=yes
   type=tunnel
   authby=secret
   auto=start

Edit Site A /etc/ipsec.secrets
100.100.100.100 200.200.200.200: PSK "yourpsk"

Site A and Site B
service ipsec start

Show status
# /etc/init.d/ipsec status
/usr/libexec/ipsec/addconn Non-fips mode set in /proc/sys/crypto/fips_enabled
IPsec running - pluto pid: 30061
pluto pid 30061
1 tunnels up
some eroutes exist

it work!

Check from Site A
ping -I 192.168.0.1 192.168.1.1
Check from Site B
ping -I 192.168.1.1 192.168.0.1

If you ping failed, check your iptables rules, no MASQUERADE between Site A and Site B

若下載 RAR 檔案卻在網頁上直接出現檔案內容 (Rar!一推亂碼)
原因是 Web Server 送出的 Content-Type: 是 text/plain;
若是用 Apache, 在 httpd.conf 找出 TypesConfig 是指向的 mime.types 路徑,
編輯 mime.types, 加入 application/x-rar-compressed rar
或者去抓最新 Apache 裡面的 mime.types 覆蓋
然後重啟 Apache
curl -I http://yourhost/file.rar
有出現 Content-Type: application/x-rar-compressed 表示正常

Windows XP Powertoy 有個好用的調整圖檔大小的工具 Image Resizer,
但是 Windows 7/Vista 不能用, 所幸有人寫了一樣的工具 for Windows 7/Vista,
Image Resizer Powertoy Clone for Windows, 真的是 Clone, 一模一樣

QEMU

user-pic
Vote 0 Votes

QEMU 是 Open Source 的 VM,
和一般 VM 不一樣的是可以模擬不同 CPU 平台, 用來測試頗方便
測試磁碟映像檔 qemu disk.img
測試光碟 ISO 檔 qeme -cdrom cd.iso
QEMU 也有 for Windows 的版本 QEMU on Windows, 裝起來只有 6.x MB

About this Archive

This page is an archive of entries from June 2010 listed from newest to oldest.

May 2010 is the previous archive.

July 2010 is the next archive.

Find recent content on the main index or look in the archives to find all content.

Monthly Archives