ICode9

精准搜索请尝试: 精确搜索
  • Linux运维笔记[1]-系统安装及简单配置2022-09-17 01:00:59

    欧拉OpenEuler系统安装 系统下载 [https://repo.openeuler.org/openEuler-22.03-LTS/ISO/] openEuler-22.03-LTS-everything-x86_64-dvd.iso 制作U盘安装盘 [https://www.winos.me/archives/1821.html?doing_wp_cron=1663345895.4299640655517578125000] [https://www.ventoy.net]

  • OpenStack云平台部署(手动)2022-09-16 16:31:35

    一、基础环境准备 1、yum源配置 # 切换到yum目录 [root@controller ~]# cd /etc/yum.repos.d/ # 创建备份目录 [root@controller yum.repos.d]# mkdir repo.bak [root@controller yum.repos.d]# ls CentOS-Base.repo CentOS-fasttrack.repo CentOS-Vault.repo CentOS-CR.re

  • Linux下搭建vsftpd服务器2022-09-15 12:02:28

    注意:Linux版本是centos7 一、关闭SELINUX并配置yum源 sed -i 's/enforcing/disabled/g' /etc/selinux/config setenforce 0 curl -o /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliy

  • centos8或者Anolis OS报centos8报错:Errors during downloading metadata for repository 'docker-ce-stabl2022-09-14 18:02:21

    具体错误信息,网上找了很多方法不管用 Docker CE Stable - x86_64 185 B/s | 390 B 00:02 Errors during downloa

  • Docker 环境安装2022-09-11 15:03:32

    Docker 环境安装 前置工作 之 基础环境安装 当前环境 centos7.9 64位 minimal版本 当前环境为 root用户 若当前存在Docker环境 需卸载 yum remove docker \ docker-client \ docker-client-latest \ docker-common \

  • 第二十二章 系统优化2022-09-09 16:35:13

    系统优化 [root@qls ~]# ifconfig eth1 172.16.1.100/24 [root@qls ~]# cp /etc/sysconfig/network-scripts/ifcfg-eth0 /etc/sysconfig/network-scripts/ifcfg-eth1 [root@qls ~]# cat /etc/sysconfig/network-scripts/ifcfg-eth1 TYPE=Ethernet BOOTPROTO=none NAME

  • yum安装报错:Errors during downloading metadata for repository 'AppStream'的处理2022-09-08 16:04:01

    yum源故障 [root@iZ2ze1e3u7m7oe426pyndaa ~]# yum install net-tools -y CentOS-8 - AppStream 7.9 kB/s | 2.3 k

  • 【云原生】Helm 常用命令(chart 安装、升级、回滚、卸载等操作)2022-09-07 00:01:28

    目录一、概述二、Helm 仓库(helm repo)1)添加chart仓库2)列出已添加的仓库3)从chart仓库中更新本地可用chart的信息4)删除一个或多个仓库三、创建chart(helm create)四、chart 包安装(helm install)五、管理chart依赖(helm dependency)1)列举指定chart的依赖2)依赖升级六、Helm 列表(helm list)七

  • ubuntu1804 pixel xl 编译安装lineage-18.12022-09-05 12:33:31

    官方文档 https://wiki.lineageos.org/devices/marlin/build 下载源码 repo init -u https://github.com/LineageOS/android.git -b lineage-18.1 repo sync -c 此处需要梯子,同步需要很长时间,同步完整个repo目录大约有67G 如果一直失败,可以执行下面命令 repo sync -c -j1 --fail-f

  • 虚拟机常用配置2022-09-05 03:30:36

    虚拟机常用配置 准备工作 镜像文件:CentOS-7-x86_64-Everything-2207-02.iso SSH客户端:MobaXterm 宿主机:Win10 虚拟机载体:Vmware Workstation Pro 16 软件源配置 CentOS7 备份原有镜像文件 mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup 下

  • 虚拟机常用配置2022-09-05 03:00:38

    虚拟机常用配置 准备工作 镜像文件:CentOS-7-x86_64-Everything-2207-02.iso SSH客户端:MobaXterm 宿主机:Win10 虚拟机载体:Vmware Workstation Pro 16 软件源配置 CentOS7 备份原有镜像文件 mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup 下

  • docker centos 容器配置2022-09-04 22:01:30

                                 linux ifconfig命令不能使用 1,yum provides ifconfig 来查看那个包提高ifconfig,并安装一下。 ​编辑 2,yum install net-tools  ​编辑 3,输入ifconfig测试一下,ok了  解决Failed to download metadata for repo ‘AppStream’ 排查

  • yum换源2022-09-02 21:05:50

    yum换源 备份 cd /etc/yum.repos.d Centos-Base.repo Centos-Base.repo.bak 下载阿里源 wget -O Centos-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo 缓存 yum makecache 更新 yum -y install update

  • Centos7搭建yum仓库2022-09-02 16:32:14

    Centos7搭建yum仓库centos7搭建yum仓库全过程实验环境:主yum服务器:10.103.16.132客户端:10.103.16.131系统版本:centos linux release 7.6.1810(core)二边服务器都需要关闭防火墙和selinux,具体操作方法这里不细讲。yum仓库服务器搭建 说明:这里以网页形式来创建yum仓库1.配置第三方源:y

  • 搭建docker镜像仓库(一):使用registry搭建本地镜像仓库2022-09-01 16:30:39

    目录一.系统环境二.前言三.使用registry搭建私有镜像仓库3.1 环境介绍3.2 k8smaster节点配置镜像仓库3.3 k8sworker1节点配置从私有仓库上传和拉取镜像3.3.1 上传镜像到私有仓库3.3.2 从私有仓库里拉取镜像四.附录:删除私有仓库镜像的Python脚本 一.系统环境 服务器版本 docker

  • openEuler 20.03 LTS SP3 安装Docker2022-08-31 10:33:37

    1.添加阿里云的CentOS 8源参考:https://developer.aliyun.com/mirror/centos wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-vault-8.5.2111.repo2.添加Docker官方源参考:https://docs.docker.com/engine/install/centos/ yum-config-manager

  • helm命令随记2022-08-22 00:31:41

    安装 github release https://github.com/helm/helm/releases 压缩包里有helm文件,解压后将所在路径加入PATH环境变量。或者mv到/usr/bin目录下 仓库配置 添加存储库 helm repo add stable [url] helm repo add aliyun https://kubernetes.oss-cn-hangzhou.aliyuncs.com/charts h

  • Git基本用法2022-08-21 11:31:25

    管理修改文件 Reset git reset //只会影响tracked的文件 Unpacked file git clean -f -fd -xfd //删除文件、文件&夹、包含.gitignore指定的 git clean -nf -nfd -nxfd //预览要删除的文件 Commit 多个Commit选择性Push git log查看要提交的commit id git checkout -b 创建一

  • ios开发之--Cocoapods更新指定的库2022-08-19 09:33:41

    最近接手了一个swift的老项目,问题还不少,把bug修复完成功编译后,还没来得及高兴,发现一运行都崩溃,经排查是三方库太旧的原因, 但是有些老版本的库又不能全部更新,所以只能更新指定的库,命令如下: 1、更新指定的第三方库 pod update 库名 2、只安装新添加的库,已更新的库忽略 pod instal

  • week32022-08-16 22:33:09

    week3 1.yum私有仓库的实现及博客输出 2.阅读《图解TCP/IP》一书,地址:https://leon-wtf.github.io/doc/%E5%9B%BE%E8%A7%A3TCPIP.pdf,有时间的可以写下读书笔记 3.画图 TCP协议和三次握手及四次挥手,可以参考别人的,但是需要自己画一次 4.静态配置网卡IP,centos/ubuntu实现 脚本题 5.

  • Harbor部署2022-08-12 01:02:36

    1. harbor 无论是使用Docker-distribution去自建仓库,还是通过官方镜像跑容器的方式去自建仓库,通过前面的演示我们可以发现其是非常的简陋的,还不如直接使用官方的Docker Hub去管理镜像来得方便,至少官方的Docker Hub能够通过web界面来管理镜像,还能在web界面执行搜索,还能基于Dockerfi

  • CentOS 7.6 配置yum源为aliyun2022-08-11 20:31:30

    1 ) 备份yum源的配置目录 cp /etc/yum.repos.d/ yum.repos.d.back 2 )下载阿里云的配置到目录中(这里会直接覆盖,不过步骤1已经有备份了,无所谓覆盖不覆盖了) wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo 3 )清空缓存 yum clean all

  • 批量更新仓库小工具2022-08-08 09:35:16

    #!/bin/bash ######################################################### # 功能:批量更新仓库小工具 # 描述:根据repos配置,强制同步远程仓库内容到本地 # tips1:本地修改以及非repos定义内容将被抹掉 # tips2:执行完成后会切回本地master分支 ####################################

  • CentOS切换源到华为云镜像站2022-08-07 08:31:27

    更新记录 转载请注明出处:https://www.cnblogs.com/cqpanda/p/16536148.html 2022年8月7日 发布。 2022年8月6日 从笔记迁移到博客。 1.备份配置文件 cp -a /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak 2.下载新的CentOS-Base.repo文件到/etc/yum

  • Pixel XL AOSP源码编译2022-08-05 13:33:43

    基础配置: 操作系统 :虚拟机 ubuntu 20.04.2.0 内存 :12G 硬盘 :400G CPU :4核 Ubuntu汉化: https://jingyan.baidu.com/article/7c6fb428c4828080652c9064.html 编译过程 1. 源码分支获取 https://source.android.com/setup/start/build-numbers#source-code-tags-and-builds

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

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

ICode9版权所有