Categories
- FFMpeg (5)
- Libav (1)
 
 - Google (3)
 - iBeacon (1)
 - LDAP (3)
 - Me (2)
 - Network (11)
 - OS (149)
 - RTMP (4)
 - SIP (1)
- Kamailio (1)
 
 - SNMP (1)
 - VMware (20)
- VCP考試 (1)
 
 - 伺服器 網站服務 (105)
 - 名詞解釋 (4)
 - 專案管理 (1)
 - 工具軟體 (51)
- Adobe (1)
	
- FMS (1)
 
 - Cloudera (1)
 - Docker (1)
 - Eclipse (4)
 - Intellij (2)
 - OBS (2)
 - Office (10)
	
- Excel (4)
 - PowerPoint (5)
 
 - Postman (2)
 - Splunk (13)
 - Virtualbox (2)
 - Visual Studio (2)
 - 文字編輯器 (10)
	
- Sublime Text 2 (6)
 - Sublime Text 3 (3)
 - Vim (3)
 
 - 連線工具 (1)
	
- Xshell (1)
 
 
 - Adobe (1)
	
 - 程式語言 (81)
- CSS (2)
 - HTML (2)
 - iOS (1)
 - Java (31)
 - JavaScript (5)
 - jQuery (4)
	
- jsTree (2)
 
 - JSP (3)
 - PHP (16)
 - Python (8)
 - Ruby (1)
 - sed (1)
 - Shell Script (8)
 - Windows Bash Script (1)
 - XML (1)
 
 - 資料庫 (38)
 
- FFMpeg (5)
 
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