linux配置本地yum源方法?
1、在Vmware中,确保iso镜像已经正常连接到系统上,在虚拟机上右键-设置-虚拟机设置,按照如图勾选和设置。
2、可以看到在linux桌面,已经出现了一个ISO镜像。
3、建立挂载点,在root用户下mkdir /mnt/cdrom来创建目录。
4、输入mount -t iso9660 /dev/cdrom /mnt/cdrom将光驱或者iso文件挂载到/mnt/cdrom目录下,使用df -h可以看到已经成功挂载。
5、进入/etc/yum.repos.d目录,ls查看当前目录下的yum源配置文件,新建bak目录,将除CentOS-Media.repo之外的repo文件移动到bak文件夹备份。
6、使用vi编辑文件CentOS-Media.repo,查看配置如下。
7、按照如下配置修改name=CentOS-$releasever – Media
baseurl=file:///mnt/cdrom///路径需与你光驱或ISO挂载的路径相同gpgcheck=1
enabled=1//enable后面值必须修改为1gpgkey=file:///mnt/cdrom/RPM-GPG-KEY-CentOS-6。
8、输入“yum clean all”命令清理。
9、可以使用yum -y install vim进行安装测试。
linux下怎么进入本地软件源目录。找不到?急?
要看你的linux系统,一般debian系列的软件源配置文件/etc/apt/sources.list 下载后的软件源文件一般在/var/cache/apt/archives目录。
linux服务器源地址是指啥?
源地址本意就是本身的地址,指服务器的IP地址
linux系统装好后怎么更新源?
Linux软件源的设置方法
1 打开数据源配置文件
vi /etc/apt/sources.list
添加相关的数据源,可以选择以下的数据源,不要写太多,否则会影响更新速度。
之后使用apt-get update更新源列表
为防止非官方源中软件包不全的问题,请在sources.list文件中尾部添加一组官方源。
#######################################
# 163
#######################################
deb http://mirrors.163.com/debian/ lenny main contrib non-free
deb-src http://mirrors.163.com/debian lenny main contrib non-free
deb http://mirrors.163.com/debian-security/ stable/updates main
deb-src http://mirrors.163.com/debian-security/ stable/updates main
#######################################
# official
#######################################
deb http://ftp.debian.org/debian/ lenny main contrib non-free
deb-src http://ftp.debian.org/debian/ lenny main contrib non-free
deb http://ftp.us.debian.org/debian/ lenny main contrib non-free
deb-src http://ftp.us.debian.org/debian/ lenny main contrib non-free
deb http://security.debian.org/ stable/updates main
deb-src http://security.debian.org/ stable/updates main
deb http://volatile.debian.org/debian-volatile stable/volatile main
deb-src http://volatile.debian.org/debian-volatile stable/volatile main
#######################################
# 台湾及大陆教育网高校等
#######################################
deb http://ftp.tw.debian.org/debian/ lenny main contrib non-free
deb-src http://ftp.tw.debian.org/debian lenny main contrib non-free
deb http://mirrors.geekbone.org/debian/ lenny main contrib non-free
deb-src http://mirrors.geekbone.org/debian/ lenny main contrib non-free
deb http://mirror.dlut.edu.cn/debian/ lenny main contrib non-free
deb-src http://mirror.dlut.edu.cn/debian/ lenny main contrib non-free
deb http://debian.csie.ntu.edu.tw/debian/ lenny main contrib non-free
deb-src http://debian.csie.ntu.edu.tw/debian/ lenny main contrib non-free
### ustc debian-multimedia
deb http://debian.ustc.edu.cn/debian-multimedia/ stable main
deb-src http://debian.ustc.edu.cn/debian-multimedia/ stable main
### ustc debian-security
deb http://debian.ustc.edu.cn/debian-security/ stable/updates main non-free contrib
deb-src http://debian.ustc.edu.cn/debian-security/ stable/updates main non-free contrib
台湾及大陆教育网高校等
#######################################
deb http://ftp.tw.debian.org/debian/ lenny main contrib non-free
deb-src http://ftp.tw.debian.org/debian lenny main contrib non-free
deb http://mirrors.geekbone.org/debian/ lenny main contrib non-free
deb-src http://mirrors.geekbone.org/debian/ lenny main contrib non-free
deb http://mirror.dlut.edu.cn/debian/ lenny main contrib non-free
deb-src http://mirror.dlut.edu.cn/debian/ lenny main contrib non-free
deb http://debian.csie.ntu.edu.tw/debian/ lenny main contrib non-free
deb-src http://debian.csie.ntu.edu.tw/debian/ lenny main contrib non-free
### ustc debian-multimedia
deb http://debian.ustc.edu.cn/debian-multimedia/ stable main
deb-src http://debian.ustc.edu.cn/debian-multimedia/ stable main
### ustc debian-security
deb http://debian.ustc.edu.cn/debian-security/ stable/updates main non-free contrib
deb-src http://debian.ustc.edu.cn/debian-security/ stable/updates main non-free contrib
linux yum源怎么解决无法写入并保存问题?
yum源无法写入问题,主要是没有使用root账户导致的,解决方法如下:
1.使用su root命令切换到root账户
2.输入账户密码,然后按一下回车键。
3.进入root账户,再使用vim或nano编辑器编辑yum源,就不会出现此问题了。