Category Archives: OS

Yum 安裝php套件發生相依性錯誤

因為想讓radius可以透過學長給的php程式發送簡訊 必須要用到 php-soap 所以就來 yum install php53-soap了 可是卻發生了 php53-common-5.3.3-1.el5.i386 from rhel-i386-server-5 has depsolving problems –> php53-common conflicts with php-common Error: php53-common conflicts with php-common 的窘境…..Orz

Posted in Linux | Leave a comment

Bridge Firewall 筆記 – br-del.sh (備援)

br-del.sh (移除本機bridge) #!/bin/bash IPTABLES=”/sbin/iptables”

Posted in Linux, Network | Leave a comment

Bridge Firewall 筆記 – br-add.sh (備援)

br-add.sh (建立本機bridge) #!/bin/bash # 宣告使用指令之路徑 IPTABLES=”/sbin/iptables”

Posted in Linux, Network | Leave a comment

Bridge Firewall 筆記 – detect.sh (備援)

detect.sh (偵測主要bridge firewall是否正常) #!/bin/bash COUNT=0 # 用來判斷連續異常次數累計 CHECK=0 # 用來識別本機bridge firewall是否建立 sleep 10s # 因為開機後馬上偵測常會有問題,因此先等10秒後才開始偵測

Posted in Linux, Network | Leave a comment

Bridge Firewall 筆記 – br-del.sh

br-del.sh (移除本機bridge) #!/bin/bash # 宣告使用指令之路徑 IPTABLES=”/sbin/iptables”

Posted in Linux, Network | Leave a comment

Bridge Firewall 筆記 – detect.sh

detect.sh (偵測網路狀態,以判定是否要移除bridge或重建bridge) #!/bin/bash COUNT=0 # 用來計算次數之變數 FLAG=”YES” # 用來締造無窮迴圈之變數 FLAGA=”YES” # 用來判斷目前是否有無建立bridge,預設是有建立

Posted in Linux, Network | Leave a comment

Bridge Firewall 筆記 – br.sh

br.sh (網路異常恢復後重新建立bridge firewall,與前者差異於最後一行呼叫detect.sh) #!/bin/bash IPTABLES=”/sbin/iptables” BRCTL=”/usr/sbin/brctl” IFCONFIG=”/sbin/ifconfig” ROUTE=”/sbin/route”

Posted in Linux, Network | Leave a comment

Bridge Firewall 筆記 – br-boot.sh

br-boot.sh (開機時建立bridge firewall) #!/bin/bash # 宣告使用指令之路徑 IPTABLES=”/sbin/iptables” BRCTL=”/usr/sbin/brctl” IFCONFIG=”/sbin/ifconfig” ROUTE=”/sbin/route”

Posted in Linux, Network | Leave a comment

遠端桌面無法複製貼上任何資訊時

終於爬到相關的資訊了,這問題還蠻惱人的! 主要是因為rdpclip.exe掛掉了 所以先kill掉它 taskkill /im rdpclip.exe 然後再重新執行一次就可以了 rdpclip.exe

Posted in Windows | Leave a comment

Redhat討厭的註冊程序…..

為了配合服務建議書的規劃選用了redhat真的是失策 超難用的…………. rhn帳號還會跟啟動序號綁定… 然後因為區網有封鎖對國外的連線,所以怎樣註冊都會卡住 Orz 又因為我比較想要用文字介面去作設定,反正都遠端使用 就只好找了一下redhat的註冊方式 rhn_register –proxy=IP:Port –proxyUser=User –proxyPassword=Password –nox 主要是要透過proxy連到國外,並且是使用文字介面的方式進入註冊的畫面.. 難搞的Redhat….

Posted in Linux | Leave a comment