1)關(guān)閉selinux
修改/etc/selinux/config文件中的SELINUX="" 為 disabled,然后重啟。
2) 關(guān)閉firewall
systemctl disable iptables.service
3) 啟動(dòng)sshd
yum install openssh-server openssh-server-sysvinit
systemctl enable sshd.service
如果沒有關(guān)閉防火墻,還要打開22端口
iptables -I INPUT -p -tcp --dport 22 -j ACCEPT
4) 系統(tǒng)清理
a)清除yum的cache:
yum clean all
yum clean cache
b) 清除無用的包
package-cleanup --orphans
package-cleanup --dupes
package-cleanup --problems
package-cleanup --oldkernel
5)本地源設(shè)置
將Fedora 17 DVD ISO添加為源
$sudo mkdir /mnt/f17dvd
$mount Fedora-17-i386-DVD.iso /mnt/f17dvd
第二步在/etc/yum.repos.d目錄添加源install-dvd.repo:
[install-dvd]
name=dvd
baseurl=file:///mnt/f17dvd
enabled=1
gpgcheck=0
之后使用yum的相關(guān)參數(shù)可以忽略其他的源而只使用指定源。這樣就可以不下載而直接安裝:
$ yum --disablerepo=* --enablerepo=install-dvd list available
PS: 如何將源同步到本地:
從fedora的官網(wǎng)http://mirrors.fedoraproject.org/publiclist//Fedora/ 可以查到所有的鏡像站點(diǎn),國內(nèi)有幾個(gè)比較
著名的鏡像,比如中科大,163, 還有搜狐.
比如從sohu同步x86_64的二進(jìn)制包:
wget -m ftp://mirrors.sohu.com/fedora/releases/17/Everything/x86_64/os/
wget -m ftp://mirrors.sohu.com/fedora/updates/17/x86_64/
然后將同步下來的目錄放入ftp的根目錄,在/etc/yum.repo.d/下面創(chuàng)建一個(gè)local.repo和local-updates.repo
[fedora-local]
name=Fedora $releasever - $basearch
failovermethod=priority
baseurl=ftp://192.168.0.5/pub/fedora/linux/releases/$releasever/Everything/$basearch/os/
enabled=1
gpgcheck=0/p>
p>
[fedora-local-updates]
name=Fedora $releasever - $basearch - Updates
failovermethod=priority
baseurl=ftp://download.fedoraproject.org/pub/fedora/linux/updates/$releasever/$basearch/
enabled=1
gpgcheck=0