在yum安装MariaDB时出现下面这个错误提示,然后着手排查,先检查了/etc/yum.repo.d/下的配置文件,没有错误. failure: repodata/repomd.xml from mariadb: [Errno 256] No more mirrors to try. http://yum.mariadb.org/10.3/centos7-amd64/repodata/repomd.xml: [Errno 14] curl#6 - "Could not resolve host…
问题: [root@gg ~]# yum install -y perl-DBD-MySQL  Loaded plugins: product-id, refresh-packagekit, security, subscription-managerThis system is not registered to Red Hat Subscription Management. You can use subscription-manager to register.Setting up In…
最近新装了虚拟环境Vmware下的Linux系统,准备看doc文档发现不能读取,才想起来一起都是重新开始的~没别的~开始安装吧: 1.关虚拟机Linux,添加cdrom镜像ISO文件--开虚拟机---挂在cdrom mount /dev/cdrom /mnt 2.搭建yum仓库 vim /etc/yum.repos.d/rhel7.repo [rhel7] name=rhel7 baseurl=file:///mnt enabled=1 gpgcheck=0 结束编辑,保存退出 3.yum re…
[问题]  在编译VMware下的Linux系统对从Windows中共享过来的文件,进行编译的时候,遇到:  ln: creating symbolic link XXXXXX : Operation not supported   [环境] VmWare的Linux + Windows XP + vmhgfs文件共享(通过Vmware tools共享的windows文件夹) [分析原因]  出现这类问题,主要是由于在编译的时候,要用ln去建立一些软链接,  而这些文件是从Windows中,通过…
通过本地yum源安装软件报错 http://192.168.3.85/centos/6/os/x86_64/Packages/php-pdo-5.3.3-47.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 56 - "Failure when receiving data from the peer" Trying other mirror. 发现是/etc/yum.conf的proxy打开了,关闭即可…
1. 下载startdict #wget http://downloads.naulinux.ru/pub/NauLinux/6x/i386/sites/School/RPMS/stardict-3.0.2-1.el6.i686.rpm 2. 安装 # yum localinstall stardict-3.0.2-1.el6.i686.rpm 这时出现问题:[ Errno 256 ] No more mirrors to try 解决办法: 1. yum clean all 2. yum ma…
在vmware虚拟机中,当我们克隆或者复制linux系统虚拟机后,再启动系统时会发现系统下不再有eth0,而变成了eth1 当我们使用/etc/init.d/network restart重启网络时,会提示找不到设备eth0,如下图所示: 这时我们再使用ifconfig -a命令去查看所有网卡时,会发现其实eth0已经变成了eth1. 那么为什么原来的eth0会变成eth1? 很多Linux distribution使用udev动态管理设备文件,并根据设备的信息对其进行持久化命名.udev会在系…
gcc编译安装过程 1.先安装三个库 gmp mprc mpc 这三个库的源码要到官网去下载 1)安装gmp:首先建立源码同级目录 gmp-build,输入命令,第一次编译不通过,发现缺少一个叫m4的东西 于是就用apt-get下载了一个,继续编译,没有报错.make的时候出现大量信息并且生成一些文件在当前文件夹下,之后用make check检查一下,最后用make install安装 2)安装mpfr: 首先建立源码文件夹同级目录mpfr-build 然后进入该目录输入../mpfr-2.4.…
data.zip文件有4G多,解压的时候出问题了. Archive:  data.zip End-of-central-directorysignature not found.  Either thisfile is not a zipfile, or itconstitutes one disk of a multi-partarchive.  In the latter case the centraldirectory and zipfile comment will be found…
引用http://www.linuxidc.com/Linux/2012-11/73749p2.htm 很多人在开始接触Linux或者是嵌入式开发的时候都会遇到一个难题,就是如何在Linux下ping同Windows,而很多书籍都会将这个作为先前肯定掌握的知识不予介绍,所以导致很多人郁闷了,下面就给大家简单介绍下方法. 首先介绍下我的电脑: 物理机:Windows 7 虚拟机系统:Linux(Red Hat 企业版 5,也就是大家说的RHEL 5) 虚拟机版本:VMware 8.0.1(我的是英…