2012年9月17日月曜日

Fedora17でssh、iptables、emacs、vmware-toolsのインストールと設定を行ったメモ

■ISO
Fedora-17-i686-Live-Desktop.iso

■パッケージアップデート
yum update

■sshインストール
yum -y install openssh*
systemctl start sshd.service
systemctl -t service | grep ssh
systemctl enable sshd.service

■iptables停止
systemctl stop iptables.service
systemctl stop ip6tables.service
systemctl enable iptables.service
systemctl enable ip6tables.service
systemctl -t service | grep iptables
systemctl -t service | grep ip6tables

vi /etc/sysconfig/selinux
#SELINUX=enforcing
SELINUX=disabled

■emacsインストール
yum -y install emacs

■vmware-toolsインストール
yum -y install gcc
yum -y install *3.5.3-1.fc17.i686*
mount -r /dev/cdrom /mnt/
cd /mnt/
cp -ipr VMwareTools-9.2.0-799703.tar.gz /var/tmp/
cd /var/tmp
tar xvf VMwareTools-9.2.0-799703.tar.gz
cd vmware-tools-distrib/
./vmware-install.pl
systemctl status vmware-tools.service
systemctl -t service | grep vmware


■メモ
http://www.server-world.info/query?os=Fedora_17&p=initial_conf&f=2
http://blog.tndl.net/2012/05/31/481/fedora-17-%E5%82%99%E5%BF%98%E9%8C%B2/
⇒serviceコマンドやchkconfigコマンドは全てsystemctlに統合されているみたい
systemctl -a | grep hogehoge
ですべてのサービス状況が確認できる

/etc/resolv.confをfedoraのNetworkManagerという機能で毎回上書きされてしまう
それを防ぐためにはNetworkManagerを停止してしまえばいいのだが、DHCPがうまく動作しない場合がある
その場合は素直に/etc/sysconfig/network-scripts/ifcfg-ethXにDNS1とDNS2を設定しましょう
ちなみにifcfg-ethXファイルが複数ある場合には全てに同じ内容のDNSを設定しないと反映されないので頑張ってすべてに記載しましょう

シャットダウンする場合は右上のアカウント名のところをクリックしてaltを押下すると
suspendのところがpoweroffに変わるのでそれでシャットダウンできる

0 件のコメント:

コメントを投稿