例
tcpdump -i eth0 -e icmp下図の赤線部のようにEthernet headerの情報が表示される。この中で四角で囲った部分がvlanタグ。
tcpdump -i eth0 -e icmp下図の赤線部のようにEthernet headerの情報が表示される。この中で四角で囲った部分がvlanタグ。
ControllerMode = bredrその後、bluetoothデーモンを再起動。
$ sudo systemctl restart bluetoothなお、オーディオシンクとしての登録に失敗する場合、以下を参照。
# wget http://people.centos.org/tru/devtools-2/devtools-2.repo -O /etc/yum.repos.d/devtools-2.repo # yum install devtoolset-2-gcc devtoolset-2-binutils devtoolset-2-gcc-c++以下のコマンドで有効化できるようだが、私の環境では機能しなかった。
$ scl enable devtoolset-2 bashおそらく、.bashrcの中でPATHを明示的に設定しているためだろう。なので、以下の記述を.bashrcに加えた。
DEVTOOLSET2_DIR=/opt/rh/devtoolset-2 DEVTOOLSET2_BIN_DIR=$DEVTOOLSET2_DIR/root/usr/bin if [ -d $DEVTOOLSET2_BIN_DIR ]; then export PATH=$DEVTOOLSET2_BIN_DIR:$PATH fi
pre {
border-width: thin;
border-color: #c0c0c0;
border-style: solid;
background-color: #f0f0f0;
padding: 0.5em;
}
initcall_blacklist=clocksource_done_bootingCentOS7なら/etc/default/grubのGRUB_CMD_LINE_LINUX行に以下のように設定を追加。
GRUB_CMDLINE_LINUX="vconsole.keymap=us vconsole.font=latarcyrheb-sun16 rhgb quiet initcall_blacklist=clocksource_done_booting"そののち、次のコマンドでgrub.confに反映してリブート。
# grub2-mkconfig -o /boot/grub2/grub.cfg