nnpooh の :: ひとり言 ::
irqbalance エラー
- 2007-11-10 (土)
- Linux
Fedora 8 終了中に”irqbalance”のエラーが出てる。
どうやら インストールしたPCがマルチプロセッサじゃないから、気に入らないらしい。。。
こんなものは止めてやることに。
$su -
# /etc/rc.d/init.d/irqbalance stop ← 停止
# /sbin/chkconfig irqbalance off ← 自動起動解除
# /sbin/chkconfig –list irqbalance ← 確認
以上
Fedora 8 自宅サーバー(初期設定)
- 2007-11-10 (土)
- Linux
$ su -
※アップデート
# yum -y install yum-fastestmirror
#yum -y update
※ファイアウォールの設定
# /etc/rc.d/init.d/iptables stop ← ルータで設定する為、停止
# /etc/rc.d/init.d/ip6tables stop ← ipv6も停止
# /sbin/chkconfig iptables off ← 自動起動解除
# /sbin/chkconfig ip6tables off ← 自動起動解除
# /sbin/chkconfig –list iptables ← 確認
# /sbin/chkconfig –list ip6tables ← 確認
※SELinux の無効化
# setenforce 0 ← 無効化
# getenforce ← “permissive”になっているかの確認
# vi /etc/sysconfig/selinux ← 編集
SELINUX=disabled
※nkf のインストール
# yum list | grep nkf ← 確認
# yum -y install nkf ← 入っていなければインストール
※電源管理機能の設定
# /etc/rc.d/init.d/acpid stop ← 停止
# /sbin/chkconfig acpid off ← 自動起動解除
# /sbin/chkconfig –list acpid ← 確認
※SSHの設定
# yum list | grep ssh ← 確認
# yum -y install openssh* ← なければインストール
# vi /etc/ssh/sshd_config
Protocol 2 ← SSH2のみ許可
PermitRootLogin no ← rootのログイン禁止
PasswordAuthentication yes ← パスワードでのログインを許可
PermitEmptyPasswords no ← パスワードなしログインを禁止
# /etc/rc.d/init.d/sshd restart ← SSHの再起動
# /sbin/chkconfig –list sshd ← 確認
※再起動
# reboot
※次回から、Windows の SSHクライアントから接続する。
テキストログイン
- 2007-11-10 (土)
- Linux
※テキストログインへの変更
ログイン→”システムツール”→”端末”
# vi /etc/inittab
“id:5:initdefault” を “id:3:initdefault” に変更して保存終了。
再起動!
yum 備忘録
- 2007-11-10 (土)
- Linux
アップデートチェック : check-update
アップデート可能な全パッケージをアップデート : update
指定パッケージのアップデート : update パッケージ名
ダウンロードパッケージ及び古いヘッダの削除 : clean all
利用可能パッケージの一覧表示 : list
状況確認 : list | grep パッケージ名
インストール済みパッケージの一覧表示 : list installed
インストール : install パッケージ名
- Links
- Search
- Feeds