lustre – quota notes
setup 5TB quota for each user (softlimit) : # ls /home -l|awk ‘{print $9}’| xargs -i lfs setquota -u ‘{}’ -b 5368709120 …
setup 5TB quota for each user (softlimit) : # ls /home -l|awk ‘{print $9}’| xargs -i lfs setquota -u ‘{}’ -b 5368709120 …
更新 1 : 這是台灣微軟的公告。從「3C 達人廖阿輝」的發文,得知目前台灣微軟還不清楚國外販賣是否合法?!待查。有打算購買的人請斟酌! — 最近網路上有分享「買一套正版Windows 10 只要台幣 406 元」,後來我找到 6.66EUR 就可以購買 Windows 10 Professional OEM 版本,於是購買測試看看,平常幾乎用不到 Windows 系統,單純買好玩的。 在購買前先了解一下什麼是 OEM …
前陣子在玩貴參參的 wirecast 測試版. 就想要自己架設串流伺服器. 後來意外發現 rtmp 架設蠻容易的 但還是記錄一下. 先下載 nginx 原始碼 自行編譯. 其實我蠻想要找 yum or rpm 安裝 可惜好像沒有辦法這樣就直接安裝好包含 rtmp 模組. 我是到 http://nginx.org/packages/mainline/centos/7/SRPMS/ …
不得不說 centos 7 讓我用得很痛苦 XD 原本是用 setup 就可以設定防火牆了. 現在預設是使用 firewall 當然可以用下列指令把它改回來 # systemctl disable firewalld # systemctl stop firewalld # yum install …
下面的例子是 取代所有 php 檔案 內的 foo 更改為 bar # sed -i — ‘s/foo/bar/g’ *.php
ldap example : SSLRequireSSL AuthType Basic AuthName “internal area” AuthBasicProvider ldap AuthLDAPURL “ldaps://ldap.liho.tw ldap2.liho.tw/ou=people,dc=liho,dc=tw?uid” Require valid-user kerberos example : SSLRequireSSL AuthType Kerberos …
1. backup repository from old server # svnadmin dump /xxx/xxx/repository > repository_name.svn_dump 2. create a repository into new server svnadmin create /xxxx/xxxx/repository …
#/bin/bash /Applications/HandBrakeCLI -i $1 -o ${1%\.*}.m4v –preset=”AppleTV 3″ –srt-file=”${1%\.*}.eng.srt,${1%\.*}.cht.srt” –srt-lang=”eng,zho” –srt-codeset=”UTF-16LE,UTF-16LE”
# openssl smime -sign -signer liho.crt -inkey liho.key -certfile xxx.cer -nodetach -outform der -in LIHO.mobileconfig -out LIHO_signed.mobileconfig
let dateAt: String = “2016/1/1” let dateFormatter: NSDateFormatter = NSDateFormatter() dateFormatter.dateFormat = “yyyy/MM/dd” let dateComps: NSDateComponents = NSCalendar(calendarIdentifier: NSCalendarIdentifierChinese)!.components([.Year, .Month, .Day], fromDate: …