Entries from 2014-12-01 to 1 month

Jumbo Frames part1

The queues on the transmit path of the linux kernel 1. IP Stack -> Queueing Discipline -> Driver Queue -> NIC 2. Driver Queue [ | | | | | | | | | | | | | | | | SKB | SKB | SKB | SKB | ] 3. SKB: Socket kernel buffer [ The packet data ] Most…

RHEL7: Firewalld

1. To know if Firewalld is runnng. $ systemctl status firewalld or $ firewall-cmd --state * もし、IPv4のネットワークが、同一ホストの複数のインタフェースで、使用されているのであれば、フォワーディングの設定が必要になる。 $ cat /etc/sysctl.co…

FS: Lustre Part1

ボトルネック調査について 分散ファイルシステムでのボトルネック調査は、困難になることが多々ある。 デバッグのためのプロセス 1. サーバ、クライアント側での確認 - OSS、MDSサーバ側での負荷 - どのサーバで、過剰な負荷が発生しているか - どの操作が、…

Docker Part2

とりあえず、理解したいので。 http://golang.org/pkg/net/http/httputil/ を読みながら、基本的なことをメモ 仮想マシンで echo コマンドを実行 $ docker run centos /bin/echo test 仮想マシンにログイン $ docker run -i -t centos /bin/bash 仮想マシン…

Docker Part1

[root@localhost docker]# date Sun Dec 21 05:26:04 EST 2014 コード [root@localhost docker]# cat **/*.go | wc -l38383 本体 [root@localhost docker]# cat $(ls **/*.go | grep -vi test.go) | wc -l18410 テスト [root@localhost docker]# cat $(ls **…

FS: XFS Part1

容量 最大 8EiB (32bits linux: 16TiB) ジャーナリング ファイルシステムへの変更が発生した場合は、直列化されたジャーナルに書き込まれたあと、実ブロックの更新が行われる。 書き込み操作が発生すると、 1. オペレーションのログとしてメタ・データの更新…

Slide Share: GlusterFS / CTDB Integration

GlusterFS CTDB Integration from Etsuji Nakai

Slide Share: ARM 64bit

Good to Read:Here is How I Built my First RPM

http://techarena51.com/index.php/build-rpm-without-breaking-head/

RHEL::command::blkid, lsblk

To display information about available block devices blkid For each listed block device, the blkid command displays available attributes such as its universally unique identifier(UUID), file system type(TYPE), or volume label (LABEL). You …