例
$ nmblookup foo 10.10.0.9 foo<00>
git diff --color=always | less -r
live_migration_flag=VIR_MIGRATE_UNDEFINE_SOURCE,VIR_MIGRATE_PEER2PEER,VIR_MIGRATE_LIVEそして、サービスを再起動
# service nova-compute restart
opera:config#UserPrefs例えば、タスクトレイに表示されるアイコンを非表示にするには、上記ページ中のShow Tray Iconのチェックボックスを非選択にする。
auto p1p1.40
iface p1p1.40 inet manual
up ip addr add 192.168.40.11/24 dev p1p1.40
up ip link set p1p1.40 up
ceilometer alarm-create --name cpu-util-10min-50per --meter-name cpu_util --comparison-operator ge --threshold 50 --matching-metadata resource=eb79c816-8994-4e21-a26c-51d7d19d0e45 --period 600
#SELINUX=enforcing SELINUX=disabled一時的な変更ならば、コマンドラインで以下のように入力する。
# setenforce 0
# route add -net 192.168.30.0 netmask 255.255.255.0 gw 172.16.32.11 dev eth0恒久的な設定なら、/etc/sysconfig/network-scripts/route-eth0に次のように書く。
192.168.30.0/24 via 172.16.32.11 dev eth0
DISTCC_HOSTS='localhost sv1 sv2 sv3 sv4' make -j20 CC=distcc CXX=distccautotoolsでMakefileを作ったC++プログラムの場合、以下のエラーが出る事がある。
/usr/bin/ld: main.o: undefined reference to symbol '__cxa_free_exception@@CXXABI_1.3' //usr/lib/x86_64-linux-gnu/libstdc++.so.6: error adding symbols: DSO missing from command lineその場合は、CXXLDを明示することで回避できる。
DISTCC_HOSTS='localhost sv1 sv2 sv3 sv4' make -j20 CC=distcc CXX=distcc CXXLD=g++
--- distcc.orig 2014-09-02 09:44:05.437179718 +0900 +++ distcc 2014-09-02 09:51:15.492544164 +0900 @@ -6,7 +6,7 @@ # # STARTDISTCC="true" -STARTDISTCC="false" +STARTDISTCC="true" # # Which networks/hosts should be allowed to connect to the daemon? @@ -16,7 +16,7 @@ # # ALLOWEDNETS="127.0.0.1" -ALLOWEDNETS="127.0.0.1" +ALLOWEDNETS="0.0.0.0/0" # # Which interface should distccd listen on? @@ -24,7 +24,6 @@ # # LISTENER="127.0.0.1" -LISTENER="127.0.0.1" # # You can specify a (positive) nice level for the distcc process here