speg03の雑記帳

主に未来の自分のために試したことなどを記録しています

Fedora17インストールメモ

OSインストール

Fedora Project

Fedora-17-x86_64-Live-Desktop.isoを使ってThinkPad X200sにインストールした。

sudo yum update

cat /etc/redhat-release
# Fedora release 17 (Beefy Miracle)
uname -a
# Linux altair 3.4.4-3.fc17.x86_64 #1 SMP Tue Jun 26 20:54:56 UTC 2012 x86_64 x86_64 x86_64 GNU/Linux

altairはホスト名

ThinkPadトラックポイント対応

sudo yum install gpointing-device-settings
gpointing-device-settings
  • 「ホイールエミュレーションを使用する」にチェック
  • 「ボタン」で「2」を選択
  • 「縦スクロールを有効にする」がチェックされていることを確認
  • 「横スクロールを有効にする」にチェック

sshd有効化

sudo systemctl enable sshd.service
sudo systemctl start sshd.service

iptables無効化

sudo systemctl stop iptables.service
sudo systemctl disable iptables.service

SELinux無効化

sudo setenforce 0
sudo vi /etc/selinux/config

SELINUXをpermissiveに変更。

# This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
#     enforcing - SELinux security policy is enforced.
#     permissive - SELinux prints warnings instead of enforcing.
#     disabled - No SELinux policy is loaded.
SELINUX=permissive
# SELINUXTYPE= can take one of these two values:
#     targeted - Targeted processes are protected,
#     minimum - Modification of targeted policy. Only selected processes are protected. 
#     mls - Multi Level Security protection.
SELINUXTYPE=targeted