CentOS 8.1 配置vsftp和yum

使用vsftp配置本地yum源

一、安裝vsftp

使用vmware安裝好CentOS 8.1 後,開機會自動掛載,此時進入掛載目錄下的 AppStream/Packages 下,執行如下命令安裝vsftpshell

rpm -ivh vsftpd-3.0.3-28.el8.x86_64.rpm

修改配置文件 /etc/vsftpd/vsftpd.conf 的vim

anonymous_enable=NO

緩存

anonymous_enable=YES

不然下面的配置yum會出錯:url

failed to download metadata ...

而後開啓vsftpd服務。code

二、配置本地YUM源

# 掛載
mount -t iso9660 /dev/sr0 /var/ftp/rhel8/

刪除全部的自帶repo文件,固然你也能夠選擇備份。class

rm -rf /etc/yum.repos.d/*

建立信息的配置文件:test

cd /etc/yum.repos.d
vim rhel8.repo
[AppStream]
name=AppStream
baseurl=ftp://vm0/rhel8/AppStream
enabled=1
gpgcheck=0

[BaseOS]
name=BaseOS
baseurl=ftp://vm0/rhel8/BaseOS
enabled=1
gpgcheck=0

vm0爲當前主機名ftp

從新生成緩存sed

yum clean all
yum makecache

三、epel8 國內阿里源配置

yum install -y  https://mirrors.aliyun.com/epel/epel-release-latest-8.noarch.rpm
sed -i 's|^#baseurl=https://download.fedoraproject.org/pub|baseurl=https://mirrors.aliyun.com|' /etc/yum.repos.d/epel*
sed -i 's|^metalink|#metalink|' /etc/yum.repos.d/epel*
相關文章
相關標籤/搜索