2013年10月12日 星期六

電熱水器加裝定時開關與電磁開關實作紀錄

安裝示意圖:



規格:

電熱水器分成18A 4000W與27A 6000W兩種規格

注意事項:
1.安裝的電線粗細(截面積MM平方)請依照電工法規來決定(如下圖)
2.施工時記得穿膠鞋戴手套做好絕緣工作
3.關閉電源開關或總開關
4.電源開關關閉後記得使用三用電表測量是否有電壓,確認無電壓再施工!























材料:
定時開關(控制電路)
電磁開關

施工細節:
以18A 4000W的電熱水器為例
電熱水器上限只有18安培,因此電磁開關要選大於18安培,故選S-P21
http://www.seec.com.tw/product/file/file_106_1061.pdf
電熱水器與電磁開關連接的電線粗細選5.5MM平方耐用30A
定時開關為(控制電路)可選電線粗細選3.5MM平方耐用20A

裝線:如最上面示意圖
定時開關L1對接到電磁開關A2(3.5MM平方)
定時開關L2對接到電磁開關A1(3.5MM平方)
定時開關S1對接到電磁開關1L1(3.5MM平方)
定時開關S2對接到電磁開關5L3(3.5MM平方)
定時開關L1與S1電線顏色需相同
定時開關L2與S2電線顏色需相同

電磁開關2T1(5.5MM平方)接到電熱水器火線(紅)
電磁開關6T3(5.5MM平方)接到電熱水器水線(白)

主電路220V安裝
主電路火線(紅)接到電磁開關1L1
主電路水線(白)接到電磁開關5L3
主電路接地線(綠)與電熱水器接地線(綠)之間建議使用端子台連接鎖緊,一般水電師傅有的會將接地線(綠)兩條纏繞在一起.再用絕緣膠帶(電火布)纏繞起來!

電線建議使用O型端子+絕緣套連接在定時開關..電磁開關與電熱水器上以策安全

若是27A 6000W的電熱水器,所有電線建議使用5.5MM平方以上

端子施工方法




















2013年10月2日 星期三

opensuse ssh遠端連線實作設定

# vi /etc/ssh/sshd_config

Port 22

Protocol 2

PermitRootLogin yes

PubkeyAuthentication yes

PermitEmptyPasswords no

UsePAM yes

X11Forwarding yes

TCPKeepAlive yes

# /etc/init.d/sshd start
# netstat -tlupn |grep ssh

(參考至鳥哥的 Linux 私房菜)

opensuse vsftp 實作設定

# vi /etc/vsftpd.conf


write_enable=YES

dirmessage_enable=YES

nopriv_user=ftpsecure

local_enable=YES

local_umask=022

chroot_local_user=YES

chroot_list_enable=YES

參考你的 /etc/passwd 設定檔, 然後將 UID 小於 500 的帳號名稱給他同時寫到這個檔案內吧!一行一個帳號!(參考至鳥哥的 Linux 私房菜)

chroot_list_file=/etc/vsftpd.chroot_list

anonymous_enable=YES

anon_world_readable_only=YES

syslog_enable=YES

connect_from_port_20=YES

ascii_upload_enable=YES

pam_service_name=vsftpd

listen_ipv6=NO

ssl_enable=NO

pasv_min_port=30000

pasv_max_port=30100

# /etc/init.d/vsftpd start

# useradd -m anna ==>建立一位叫anna的使用者.連同家目錄

#echo "qwe123456" |passwd --stdin anna  ==>將anna的密碼改為qwe123456

#cat /etc/passwd
#cat /etc/shadow