一、安装ftp组件
依次打开“控制面板”-“程序和功能”-“打开或关闭Windows功能”
把“Internet信息服务”选项中的“FTP服务器”、“WEB管理工具”以及“万维网服务”全部选中,这里需要注意打开选项前面的“+”看看里边的子选项有没有勾选,最后选择“确定”,等待安装完成。
二、配置ftp服务器
依次打开“控制面板”-“管理工具”-“Internet信息服务(IIS)管理服务器”,然后右键单击左边,点击“添加ftp站点”选项,之后按照提示下一步下一步就可以了,注意在选择根目录的时候填写想要存放yum源的目录,也就是我们ftp要访问的根目录,这里我配置D:\yum为根目录,至此windows系统ftp服务器就搭建完成了。
三、yum源的配置
在windows系统上搭建好ftp后,将镜像文件SLES-11-SP2-DVD-x86_64-GM-DVD.iso解压后的文件放到D:\yum下,之后就可以使用浏览器通过链接地址ftp://windows系统IP,来访问ftp上的文件了。
在suse服务器上添加yum源配置文件
/etc/zypp/repos.d # vi ftp-suse.repo
[ftp-suse]
name=ftp-suse
enabled=1
autorefresh=0
baseurl=ftp://windows系统IP
gpgcheck=0
刷新缓存
/etc/zypp/repos.d # zypper ref
Retrieving repository 'ftp-suse' metadata [done]
Building repository 'ftp-suse' cache [done]
All repositories have been refreshed.
四、验证
尝试安装软件包
# zypper install ncurses-devel
Loading repository data...
Reading installed packages...
Resolving package dependencies...
The following NEW packages are going to be installed:
ncurses-devel tack
2 new packages to install.
Overall download size: 3.2 MiB. After the operation, additional 22.7 MiB will be used.
Continue? [y/n/?] (y): y
Retrieving package tack-5.6-90.55.x86_64 (1/2), 79.0 KiB (170.0 KiB unpacked)
Retrieving: tack-5.6-90.55.x86_64.rpm [done]
Retrieving package ncurses-devel-5.6-90.55.x86_64 (2/2), 3.1 MiB (22.5 MiB unpacked)
Retrieving: ncurses-devel-5.6-90.55.x86_64.rpm [done]
Installing: tack-5.6-90.55 [done]
Installing: ncurses-devel-5.6-90.55 [done]
转载于:https://blog.51cto.com/xiaoxiaozhou/1888713