2016/08/31

Published 8月 31, 2016 by

台幣定存-定期存款 、定期儲蓄存款介紹


 1 件事、搞懂定存種類
定存只有 1 
定儲卻再分 3 
台幣定存分成 2 大項目
定期存款和定期儲蓄存款
而定期儲蓄存款又可再分成
零存整付、整存整付和存本取息 3 種類別。
銀行為因應政府鼓勵民眾儲蓄
定期儲蓄存款的利率通常會比定期存款略高

「定期儲蓄」存款存期長、門檻低 「定期存款」存期短、門檻高

 2 件事、瞭解利息計算方式
「定期存款」為單計利息
「整存整付」為複計利息 【勝】


 3 件事、利率分固定和機動
低利率的時候選「機動」
高利率的時候選「固定」



Read More

2016/08/30

Published 8月 30, 2016 by

VNC Server架設

VNC Server架設
環境:RHEL 6.4 64bit
Vncserver:內建, libvncserver-0.9.7-4.el6.x86_64

Server端:
輸入VNCServer
[root@test1 ~]# vncserver

You will require a password to access your desktops.

Password:ß輸入密碼
Verify: ß輸入密碼

New 'test1:1 (root)' desktop is test1:1

Creating default startup script /root/.vnc/xstartup
Starting applications specified in /root/.vnc/xstartup
Log file is /root/.vnc/test1:1.logßlog file


Check VNC Status:


[root@test1 ~]# vncserver -list

TigerVNC server sessions:

X DISPLAY #     PROCESS ID
:1              43468

Client:
主機名稱:test1
Port:5901


Read More
Published 8月 30, 2016 by

Iperf網路測試軟體

iperf網路測試軟體

需安裝Client & Server
Server:
iperf3 -s

Client:
iperf3 -c 192.12.1.2  -t 10 -i 5 -M 1500
#-c : server IP
#-t : 測量時間間隔為10
#-i : 每隔 5 秒將測量結果顯示出來,最後再算出平均值.
#-w :測試的檔案大小
#-R :反相測試
#-M :設定TCP資料封包的最大mtu
#-p :指定伺服端使用的port或客戶端所連接的port
#-u :使用udp協議

通用參數

-f [k|m|K|M] 分別表示以Kbits, Mbits, KBytes, MBytes顯示報告,預設以Mbits為單位,eg:iperf -c 192.12.1.2 -f K
-i sec 以秒為單位顯示報告間隔,eg:iperf -c 192.12.1.2 -i 2
-l 緩衝區大小,預設是8KB,eg:iperf -c 192.12.1.2 -l 16
-m 顯示tcp最大mtu
-o 將報告和錯誤信息輸出到檔案eg:iperf -c 192.12.1.2 -oc:\iperflog.txt
-p 指定服務器端使用的端口或客戶端所連接的端口eg:iperf -s -p 9999;iperf -c 192.12.1.2 -p 9999
-u 使用udp協議
-w 指定TCP窗口大小,預設是8KB
-B 綁定一個主機地址或通訊埠(當主機有多個地址或通訊埠時使用該參數)
-C 兼容舊版本(當server端和client端版本不一樣時使用)
-M 設定TCP資料封包的最大mtu
-N 設定TCP不延時
-V 傳輸ipv6資料封包

Reference:
教學
http://benjr.tw/462
Download
https://iperf.fr/iperf-download.php#source
Read More