11月 17 2015
computer(centos)
8月 9 2015
CentOS 6.7
6.6はyumでupgradeした(13台!)のだけど、クリーンインストールも試しておかないと。いんすこ画面に変更はないわな。。
まあ、いままで通り6.6とかわらず。7.1も試してみたいところだけど、暇がねぇ。
By admin • computer(centos) •
4月 22 2015
hp ML110 G5, Xeon L3360
Xeon L3360(ヤフオク:\5,706)が落ちたので、夏場に向け録画鯖を交換。PT3 Rev.A 3枚・HDD 2台をSC440から移設してそのまま立ち上げ。まあ、動くわな。
SC440のQ6700(TDP:95W)と比較するとXeon L3360はTDP:65Wで30W offなのだけど、実際は10W程度らしい。
CPU温度は20℃近くも下がるので夏場には強い?でも、highが20℃近くも下がるのでどうなんだろ?
・ML110 G5
coretemp-isa-0000
Adapter: ISA adapter
Core 0: +25.0°C (high = +63.0°C, crit = +85.0°C)
Core 1: +19.0°C (high = +63.0°C, crit = +85.0°C)
Core 2: +24.0°C (high = +63.0°C, crit = +85.0°C)
Core 3: +24.0°C (high = +63.0°C, crit = +85.0°C)
・SC440
coretemp-isa-0000
Adapter: ISA adapter
Core 0: +36.0°C (high = +82.0°C, crit = +100.0°C)
Core 1: +39.0°C (high = +82.0°C, crit = +100.0°C)
Core 2: +35.0°C (high = +82.0°C, crit = +100.0°C)
Core 3: +35.0°C (high = +82.0°C, crit = +100.0°C)
これでDELL SC440は退役。2007-09-29から7年半。頑張ってくれました。
その後、HDDを1台にしてCentOSから入れ直し、更に省電力化。これで-20Wにはなっただろう。
By admin • computer(centos), computer(server) •
4月 16 2015
bonding
主力鯖のネットワークを増強するのだ。EXPI9402PTBLK(amazon:\6100)でbonding。まあ、気休めかも。
CentOS 6.6での設定。
[/etc/modprobe.d/bonding]
alias bond0 bonding
[/etc/sysconfig/network-scripts/ifcfg-bond0]
DEVICE=bond0
BOOTPROTO=static
IPADDR=x.y.z.100
NETMASK=255.255.255.0
GATEWAY=x.y.z.1
DNS1=x.y.z.1
ONBOOT=yes
BONDING_OPTS=”mode=0 miimon=100″
[/etc/sysconfig/network-scripts/ifcfg-eth0]
DEVICE=eth0
BOOTPROTO=none
HWADDR=00:00:00:00:00:00
MASTER=bond0
SLAVE=yes
[/etc/sysconfig/network-scripts/ifcfg-eth1]
DEVICE=eth1
BOOTPROTO=none
HWADDR=00:00:00:00:00:00
MASTER=bond0
SLAVE=yes
こんだけ。確認は↓の様に出力されれば桶。
# cat /proc/net/bonding/bond0
Ethernet Channel Bonding Driver: v3.6.0 (September 26, 2009)
Bonding Mode: load balancing (round-robin)
MII Status: up
MII Polling Interval (ms): 100
Up Delay (ms): 0
Down Delay (ms): 0
Slave Interface: eth0
MII Status: up
Speed: 1000 Mbps
Duplex: full
Link Failure Count: 0
Permanent HW addr: 00:00:00:00:00:00
Slave queue ID: 0
Slave Interface: eth1
MII Status: up
Speed: 1000 Mbps
Duplex: full
Link Failure Count: 0
Permanent HW addr: 00:00:00:00:00:00
Slave queue ID: 0
By admin • computer(centos), computer(server) •
3月 22 2015
ffmpeg 2.6.1
ffmpeg 2.6.1が出てたよ。あいも変わらず、nvencはそのままぢゃcompileできねぇ。CentOS 6.6でcompileしたい人は以下を変更してね。
libavcodec/nvenc.c
100 Lines あたり:
typedef union NvencData
{
int64_t timestamp;
NvencOutputSurface *surface;
} NvencData;
By admin • computer(centos) •
3月 5 2015
ML110 G6, Xeon X3450
援交高速化計画でX3430(4C)をX3450(4C8T)へ。ヤフオク:\4,800で落札。グリス(AINEX AKASA450)は昨日、秋葉原ヨドバシで購入(\675)。熱伝導率9.24W/m℃らしい。今までの(AINEX 熱伝導グリス 大容量タイプ GS-04)は3.8W/mKだったのでちょっとは冷却効率アップ?
グリスはほんのちょっとで大丈夫。ヒートシンクをくっつけると伸びるっすね。
で、立ち上がってきたけど4coreしかねぇ。BIOSでHyper-ThreadingをEnabledにして8つ認識しました。
途中、iLOにLANケーブルを挿して、CentOSがあがってこねぇ問題があったのは秘密だ。
By admin • computer(centos), computer(server) •
3月 3 2015
ffmpeg 2.5.4
何とか安定したのでめもめも。ついでに2.5.4。
・前準備
yum install -y git gcc gcc-c++ make kernel-devel
・いんすこ
tar zxvf yasm-1.2.0.tar.gz
cd yasm-1.2.0
./configure
make
make install
git clone git://git.videolan.org/x264.git ffmpeg-x264
cd ffmpeg-x264
./configure –enable-shared –enable-static
make
make install
wget http://jaist.dl.sourceforge.net/project/lame/lame/3.99/lame-3.99.5.tar.gz
tar zxvf lame-3.99.5.tar.gz
cd lame-3.99.5/
./configure
make
make install
echo “/usr/local/lib” > /etc/ld.so.conf.d/libx264.conf
ldconfig
tar jxvf ffmpeg-2.5.4.tar.bz2
cd ffmpeg-2.5.4/
./configure –enable-gpl –enable-libmp3lame –enable-libx264
make
make install
・起動
/usr/local/bin/ffmpeg -stats -i hoge.m2ts -movflags faststart -vcodec libx264 -fpre libx264-hq-ts-254.ffpreset -acodec libmp3lame -ac 2 -ar 48000 -ab 128k -threads 0 -vsync 1 hoge.mp4
presetは転がってたのを持ってきた。
[libx264-hq-ts-254.ffpreset]
level=41
crf=25
coder=1
flags=+loop
cmp=+chroma
partitions=+parti8x8+parti4x4+partp8x8+partb8x8
me_method=umh
subq=7
me_range=16
g=250
keyint_min=25
sc_threshold=40
i_qfactor=0.71
b_strategy=1
qmin=10
rc_eq=’blurCplx^(1-qComp)’
bf=16
bidir_refine=1
refs=6
deblock=0:0
libx264・ffmpegでyasmを使わないconfigureもあったけど、かなり遅かった。あの人は大丈夫だったのだろうか。。
By admin • computer(centos) •
2月 26 2015
CentOS 7.0
いんすこしてみた。GNOME 3はかっこよくなってる。が、上下のパネルが自動的に隠れない。。sylpheedもcompileできねぇ。。使えねぇ。。
まあ、やっぱ、7.xって枝番付かないとダメよね。とりあえず、desktopのテーマでも似せて凌ぐことにする。。
By admin • computer(centos) •
2月 1 2015
ffmpeg 2.5.3
CentOS 6.6のyumでインストールされるffmpegは0.6.5とかなり古いので、たまにH.264変換できないものがある。なので、最新版を独自buildしてみる。変換はH.264・faacに特化する(いろいろやると面倒なんで)。
# http://yasm.tortall.net/
tar zxvf yasm-1.2.0.tar.gz
cd yasm-1.2.0
./configure
make
make install
# http://www.videolan.org/developers/x264.html
tar jxvf last_x264.tar.bz2
cd x264-snapshot-20141218-2245
./configure –enable-static –disable-opencl
make
make install
echo ‘/usr/local/lib’ > /etc/ld.so.conf.d/libx264.conf
yum install libtool
# http://www.audiocoding.com/
tar jxvf faac-1.28.tar.bz2
cd faac-1.28
vi common/mp4v2/mpeg4ip.h
126行め:char *strcasestr(const char *haystack, const char *needle); コメントアウト
./bootstrap
./configure
make
make install
# https://www.ffmpeg.org/
tar jxvf ffmpeg-2.5.3.tar.bz2
cd ffmpeg-2.5.3
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig
./configure –enable-gpl –enable-nonfree –enable-static –extra-libs=-ldl –enable-libx264 –enable-libfaac
make
make install
By admin • computer(centos) •
12月 6 2015
GIGABYTE GV-N75TOC-2GL(GTX750Ti)
3年ぶりのぐらぼ交換。画面表示が速くなった。3Dでなくても効くのか。
GIGABYTE GV-N75TOC-2GL(GTX750Ti) amazon:\15,082
コネクタにカバー付いてる。玄人志向のばっかしか買ったことないので、初めて。
当然、メインマシンに装着。GF-GT640-LE1GHDはWindows 10のメインへ移設。
By admin • computer(centos) •