ICode9

精准搜索请尝试: 精确搜索
  • CentOS 7 ntfs兼容包安装2021-12-17 15:34:29

    判断ntfs-3g是否已安装 查看是否已安装rpm ntfs-3g rpm -qa | grep ntfs-3g 2.查看是否已安装yum ntfs-3g yum list installed | grep ntfs-3g -yum安装ntfs兼容包 添加aliyun的epel源 wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo y

  • centos7 proftp2021-12-15 19:01:20

    1.安装epel源wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo2.安装proftpdyum install -y proftpd openssl proftpd-utils3.启动proftpdsystemctl start proftpd.servicesystemctl enable proftpd.service4.创建ftp登录用户a.创建ftp组:groupadd

  • 安装 Ansible2021-12-13 23:31:42

    1.先安装epel-release源再安装ansible $ yum -y install epel-release (amazon ec2 使用命令:amazon-linux-extras install epel) $ yum -y install ansible $ rpm -qa | grep ansible   //查看是否已安装成功 2.安装成功后,接下来配置远程主机清单,写入远程主机ip、端口与相关密

  • CentOS6在使用yum install 时提示镜像源路径不存在:PYCURL ERROR 22 - “The requested URL returned error: 404 Not Found2021-12-08 11:01:06

    cd /etc/yum.repos.d/ mv CentOS-Base.repo CentOS-Base.repo.backup wget http://mirrors.163.com/.help/CentOS6-Base-163.repo yum clean all yum repolist [root@nginx_test yum.repos.d]# yum -y install net-tools Loaded plugins: fastestmirror Setting up Install

  • Centos7安装galances2021-12-03 15:58:17

    Centos7安装galances 安装epel源(国内)安装python3-pip配置pip国内加速源更新pip3安装galnces使用glances 安装epel源(国内) wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo # 刷新缓存 yum makecache fast yum repolist 安装python

  • centos8:epel-release:dbenv->open:BDB0091 DB_VERSION_MISMATCH: Database environment version mismatch2021-11-24 15:32:51

    centos8源码编译vpp执行make install-dep出现的问题同下。 进行yum install epel-releasec操作的时候出现图片上的问题: RPM: error: db5 error(-30969) from dbenv->open: BDB0091 DB_VERSION_MISMATCH: Database environment version mismatch RPM: error: cannot open Pac

  • gpt格式的移动硬盘在Linux系统下挂载方法2021-11-12 13:33:46

    https://blog.csdn.net/zhang_can/article/details/79714012   注意安装ntfs支持 1,CentOS默认源里没有ntfs3g,想要添加ntfs支持,需要自己下载编译安装或者加源yum安装。我这里使用的是添加aliyun的epel源来yum安装的方式。 2,添加epel yum源wget -O /etc/yum.repos.d/epel.repo htt

  • Ceph编译:L版本及其之后的版本2021-11-09 13:00:15

        Ceph编译:L版本及其之后的版本。 1. 编译前准备 下载代码库 git clone git://github.com/ceph/ceph.git all 或者 git clone --recursive https://github.com/ceph/ceph.git 假如想看v13.2.2的代码 只clone一个分支的: git clone -b v10.2.5 --single-branch git://gith

  • 安装redis时 ,出现Requires: libjemalloc.so.1()(64bit)2021-11-08 20:59:58

    环境:centos 7 问题: 安装redis时 ,出现Requires: libjemalloc.so.1()(64bit) 如果是离线安装 , 或者没有安装epel-release 会出现这种情况 解决: yum -y install epel-release yum -y install jemalloc 作者:tglmm 链接:https://www.jianshu.com/p/787a5ccc4185 来源:简书 著作权

  • Linux服务器换源2021-11-04 11:32:27

    CentOS8为例 访问阿里云镜像站开源镜像站 配置方法 备份 mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup 下载CentOS-Base.repo curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-8.repo 或者 wget -O

  • Centos7安装pip2021-10-24 17:03:01

    Centos7安装pip yum -y install epel-release python-pip

  • CentOS7安装xrdp(Windows远程桌面连接Linux)2021-10-22 14:33:10

    前提:CentOS安装桌面,如果无桌面,请执行: yum -y groups install "GNOME Desktop" startx 方法一 配置源 yum install epel* -y 安装xrdp yum --enablerepo=epel -y install xrdp   方法二 1、安装xrdp更具自己的系统位数选择对应的包(如果是32位使用则选择i386,如果是64位,

  • centos更改阿里云镜像源2021-10-22 13:04:04

    参考:https://www.cnblogs.com/jackron/p/13976242.html            https://www.cnblogs.com/kate7/p/13372624.html  1、更改yum源 # cat /etc/redhat-release # cd /etc/yum.repos.d   vi CentOS-Linux-AppStream.repo 设置baseurl如下: baseurl=https://mirrors.aliy

  • 安装VNC,远程连接centos72021-10-19 21:33:21

    # 检查centos是否装了epel库 执行命令: rpm -qa | grep epel # 没有就安装: yum install epel-release -y # 安装xrdp yum install xrdp -y # 安装tigervnc-server yum install tigervnc-server -y # 为用户root设置vnc密码 vncpasswd root # 临时关闭SELinux(设置SELinux 成

  • yum install tinyxml时说没有可用的软件包||源2021-10-15 13:32:00

    解决办法:CentOS7上安装MySQL WorkbenchCentOS中文站 - 专注Linux技术 (centoschina.cn)中间部分有写。   想法:第一次知道了yum这些代表着什么意思,现在我找问题的解决方案都是直接在网上搜索错误信息,根本没能力自己解决问题,看来还是要学习相关知识哦。   相关连接:EPEL源-是什么全

  • rsync2021-10-12 10:33:57

    简介 rsync是linux系统下的数据镜像备份工具。使用快速增量备份工具Remote Sync可以远程同步,支持本地复制,或者与其他SSH、rsync主机同步 特性 rsync支持很多特性: 可以镜像保存整个目录树和文件系统 可以很容易做到保持原来文件的权限、时间、软硬链接等等 无须特殊权限即可安

  • 达梦disql 不能使用上下翻和删除键命令2021-10-12 10:00:40

    下载 rpm包(以centos7为例) http://rpmfind.net/linux/epel/7/x86_64/Packages/r/rlwrap-0.43-2.el7.x86_64.rpm 安装rpm包 rpm -Uvh *rpm --nodeps 配置dmdba用户的环境变量 cat >> ~/.bash_profile <<"EOF" alias disql="rlwrap disql" alias dmrman="

  • centos6 yum源更新2021-1-8亲测2021-09-23 10:33:12

    2020年底传出Centos取消更新的消息,我们大家都很紧张,以后再也不能使用yum去下载和更新软件了,需要自立更生,去下载rpm包 那么现在我给大家分享一下一个新的源,可以提供yum的使用 系统环境:Centos6 时间:2021-01-08 CentOS-Base.rar 1、打开gvim /etc/yum.repos.d 修改 [base] name=Cent

  • 在windows上远程linux (待完善)2021-09-23 04:00:06

    一、准备工具   windows linux 系统 win10 centos7 软件 远程桌面连接(自带) xrdp(epel库提供):开源的远程桌面协议(RDP)服务 二、Linux(被连接端) 2.1 添加epel库 rpm -Uvh https://mirrors.tuna.tsinghua.edu.cn/epel/epel-release-latest-7.noarch.rpm 2.2 安装xrdp

  • 解决 linux 下安装 node 报: command not found2021-09-11 16:31:02

    注意:有时安装成功后,需要关闭xshell,重新启动。nvm才会生效。 在 linux 下安装 node 提示 -bash: node: command not found。 这种情况可以用 epel 的来安装 node : sudo yum install epel-release sudo yum install nodejs node --version 输出版本信息就证明装成功了。 安

  • CentOS6可用yum源2021-09-10 12:34:39

    阿里和163的centos6的yum源都不可用了 找到一个CentOS6可用的yum源 cd /etc/yum.repos.d/mkdir bakmv * bak/curl -o /etc/yum.repos.d/CentOS-Base.repo http://file.kangle.odata.cc/repo/Centos-6.repocurl -o /etc/yum.repos.d/epel.repo http://file.kangle.odata.cc/repo/

  • centos7安装有趣的命令2021-09-08 17:04:47

    效果如下:         像个小火车一样跑 哈哈哈哈 怎么实现的呢 首先 1、下载使用阿里云镜像源(也可以用网易的) wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo     2、安装epel-release yum install -y epel-release     3、安

  • CentOS无法识别NTFS格式U盘完美解决方案2021-09-01 11:31:44

    问题描述:CentOS上无法识别NTFS格式的U盘 解决方案: # 进入yum目录 cd /etc/yum.repos.d # 下载阿里的epel wget http://mirrors.aliyun.com/repo/epel-7.repo # 查找ntfs-3g格式软件 yum list ntfs* # 安装 yum -y install ntfs-3g 然后重新插入U盘就可以识别了

  • Centos7安装完成后一些基本操作2021-08-25 12:32:48

    1.基本操作一:主机名 1 2 3 4 # centos7有一个新的修改主机名的命令hostnamectl hostnamectl set-hostname --static www.node1.com # 有些命令的参数可以自动补全,如果不能补全,则安装下面的命令 yum -y install bash-completion 2.基本操作二:关闭iptable

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有