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)
- 程式語言 (80)
- CSS (2)
- HTML (2)
- iOS (1)
- Java (30)
- 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)
- 資料庫 (37)
- FFMpeg (5)
Author Archives: cowman.chiang
vsphere client 語系調整
God…….繁中的文字都看不懂啦…….. 只是把簡體中文直接轉成繁體中文…… 還好他有提供了多語系環境可供使用 修改VMware vSphere Client捷徑參數在”C:Program Files (x86)VMwareInfrastructureVirtual Infrastructure ClientLauncherVpxClient.exe” -locale zh_US 即可啟動該語系環境。 語系和對應參數 vxclient -locale en_US 英語 vpxclient -locale zh_CN 簡體中文 vpxclient -locale ja 日語 vpxclient -locale de 德語
Posted in VMware
Leave a comment
VMware esxi 5.5 install will fail after first reboot
主機板: ASUS z97-c 當安裝完後reboot會跳回bios畫面, 但實際上是已經安裝了 問了一下Google…. ESXi boots after install but Drops to BIOS next reboot No bootable device” after successful ESXi 5 installation on Intel DG35EC desktop motherboard 要作的事情有下列幾項 1. 關閉UFEI, 只選用傳統的Legacy模式 2. 安裝時在第一個選單按下”Shift + O” 3. 在文字後方加入 ” … Continue reading
Posted in VMware
Leave a comment
Centos 看版本資訊
[root@p2p02 ~]# yum install redhat-lsb -y [root@p2p02 ~]# lsb_release -a LSB Version: :base-4.0-amd64:base-4.0-noarch:core-4.0-amd64:core-4.0-noarch:graphics-4.0-amd64:graphics-4.0-noarch:printing-4.0-amd64:printing-4.0-noarch Distributor ID: CentOS Description: CentOS release 6.5 (Final) Release: 6.5 Codename: Final
Posted in Linux
Leave a comment
MySQL 初始化設定
[root@localhost ~]# mysql_secure_installation NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MySQL SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY! In order to log into MySQL to secure it, we’ll need the current password for the … Continue reading
Posted in Linux, MySQL
Leave a comment
Openvpn logrotate.d 設定
編輯/etc/logrotate.d/openvpn vim /etc/logrotate.d/openvpn /var/log/openvpn/openvpn.log { daily #每日歸為一個log檔 rotate 99999999 #可以保存9999999個檔案 compress #壓縮檔案 dateext #以日期重新命名 postrotate /etc/init.d/openvpn reload endscript }
Posted in Linux, OpenVPN
Leave a comment
安裝Kamailio SIP Server
安裝環境: Ubuntu 12.04 x64 系統更新 apt-get update apt-get upgrade 安裝mysql-server及必要套件 apt-get install mysql-server apt-get install make flex bison libmysqlclient-dev 下載安裝檔案並產生設定檔 cd /tmp mkdir sip cd sip wget http://www.kamailio.org/pub/kamailio/latest/src/kamailio-4.1.3_src.tar.gz tar -zxvf kamailio-4.1.3_src.tar.gz cd kamailio-4.1.3 make cfg 加入mysql支援 vim modules.lst => include_modules= … Continue reading
Posted in Kamailio, Ubuntu
Leave a comment
Avconv install
mkdir avconv-source cd ~/avconv-source sudo apt-get install build-essential checkinstall sudo apt-get build-dep yasm wget http://www.tortall.net/projects/yasm/releases/yasm-1.2.0.tar.gz && tar -xf yasm-1.2.0.tar.gz && cd yasm-1.2.0 && ./configure make sudo checkinstall –pakdir “$HOME/Desktop” –pkgname yasm –pkgversion 1.2.0 –backup=no –default cd ~/avconv-source git clone git://git.videolan.org/x264.git … Continue reading
Posted in Libav
Leave a comment
FFmpeg:Format Segment 第1段影片之後的Start time錯誤
在 -f segment -segment_time 60 後加上 -reset_timestamps 1 reset_timestamps 參數預設為 0,start 採用原本 streaming 的時間 設為 1,start 從 0 開始
Posted in FFMpeg
Leave a comment
FFMPEG:segment fromat add timestamp into filename option
原本只能輸出成 %4d.mp4 ==> 0000.mp4, 0001.mp4 要改成可以像行車紀錄器般的檔案格式 201405020248.mp4 增加 %t 的參數 ffmpeg -i input -f segment -segment_time 60 -reset_timestamps 1 %t.mp4 這邊將 %t.mp4 定義成 Webcam年日月/E年日月時分秒.mp4 strftime(buf1, sizeof(buf1), “WebCam%Y%m%d/E%Y%m%d%H%M%S”, localtime(&tv.tv_sec)); 修改方式如下: 修改 ffmpeg source / libavformat / utils.c 檔案 增加引用 #include <sys/time.h> … Continue reading
Posted in FFMpeg
Leave a comment