首页 > TAG信息列表 > 20.10

麒麟系统装docker

下载安装包 wget https://download.docker.com/linux/static/stable/aarch64/docker-20.10.7.tgz 解压 tar -zxvf docker-20.10.7.tgz 移动解压出来的二进制文件到 /usr/bin 目录中 mv docker/* /usr/bin/ system 管理 [Unit] Description=Docker Application Container Engin

docker源码安装,附一键部署脚本

一、下载源码包 下载地址:https://download.docker.com/linux/static/stable/x86_64/ mkdir -p /opt/src && cd /opt/src wget https://download.docker.com/linux/static/stable/x86_64/docker-20.10.17.tgz 二、安装docker tar -xf docker-20.10.17.tgz cp docker/* /usr/bin

二进制方式安装Docker

1、下载Docker,本人比较习惯使用二进制安装:https://download.docker.com/linux/static/stable/x86_64/docker-20.10.9.tgz wget https://download.docker.com/linux/static/stable/x86_64/docker-20.10.9.tgz 2、解压、安装、创建用户,属主、加环境变量 tar -zxvf docker-20.10.9

Docker Raft协议

1.了解Raft协议 Raft协议:保证大多数节点存活才可用。只要>1 ,集群至少大于3台,至少存在3个master节点,如果一个master节点挂了,则会从另外两个备节点选举。 2.具体实验操作 操作1,将主节点服务停止 1、之前Docker swarm 集群部署搭建了集群,而且有一个备master节点,现在将leader节点

ansible-playbook E: Package 'python-apt' has no installation candidate

现象 启动ansible在Ubuntu 20.10节点安装服务 ansible-playbook -i ./hosts inventory/nginx.yml 提示错误: E: Package 'python-apt' has no installation candidate       问题原因 Ubuntu 20.10移除了python2环境   解决方法 ansible host文件中添加以下内容 ansible_p

centos7安装docker

1.uname -r 查看linux内核,docker在centos7上要求内核版本为3.10+,一般机器都满足该要求。 2.yum update更新yum包。 3.卸载旧版本 yum remove docker docker-client docker-client-latest docker-common docker-latest docker-latest-logrotate docker-logrotate docker-selinux

EdgexGo2.0编译-7 20.10.6: Pulling from library/docker

拉取Docker In  Docker 错误 20.10.6: Pulling from library/dockerno matching manifest for linux/arm/v7 in the manifest list entriesmake: *** [Makefile:167: docker_sys_mgmt_agent] Error 1      将FROM docker:20.10.6 改成FROM docker:latest即可

centos7 上Docker 20.10的安装和配置使用

1. 安装 1.1 安装需要的软件包,yum-util 提供yum-config-manager功能 yum install -y yum-utils 1.2 设置docker软件的yum阿里云 yum-config-manager --add-repo https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo 可以查看所有仓库中所有docker版本,并选择

ubuntu 20.10 安装 vim 出错的解决方案

一、问题描述 ubuntu 20.10已经更换为阿里源,但安装vim时一直出错,如图: 二、问题分析 查看下面给出的提示就知道,系统里默认已经装了的 vim 依赖包 vim-common 版本太高了: 三、解决方案 先将系统中原有的依赖包 vim-common 移除: sudo apt-get remove vim-commmon 然后再次安装vim

解决升级到popos20.10搜狗输入法不能用

popos 20.04升级到popos20.10后搜狗输入法不能用了,虽然显示已经切换到了搜狗个人输入法.考虑是fcitx配置问题:在命令行执行:$ fcitx-diagnose # 系统信息:1.  `uname -a`:        Linux pop-os 5.11.0-7612-generic #13~1617215757~20.10~97a8d1a-Ubuntu SMP Thu Apr 1 21:09:1

解决升级到popos20.10搜狗输入法不能用

popos 20.04升级到popos20.10后搜狗输入法不能用了,虽然显示已经切换到了搜狗个人输入法.考虑是fcitx配置问题:在命令行执行:$ fcitx-diagnose # 系统信息:1.  `uname -a`:        Linux pop-os 5.11.0-7612-generic #13~1617215757~20.10~97a8d1a-Ubuntu SMP Thu Apr 1 21:09:1

解决升级到popos20.10搜狗输入法不能用

popos 20.04升级到popos20.10后搜狗输入法不能用了,虽然显示已经切换到了搜狗个人输入法.考虑是fcitx配置问题:在命令行执行:$ fcitx-diagnose # 系统信息:1.  `uname -a`:        Linux pop-os 5.11.0-7612-generic #13~1617215757~20.10~97a8d1a-Ubuntu SMP Thu Apr 1 21:09:1

Ubuntu 20.10设置静态IP地址

1. 前言 今天有同学发现 Ubuntu 20.10 设置静态 IP 后没有生效 于是我就在虚拟机上试验了一把,发现完全不起作用(网络上还有很多误人子弟的文章如此写...不求甚解很可怕呀) root@ubuntu20:~# cat /etc/network/interfaces auto enpos3 iface enpos3 inet static address 172.18.0.214

Ubuntu 20.10 安装 fcitx5 输入法

众所周知,中文输入法是中国Linux用户的切肤之痛。在我遇到 fcitx5 之前,所有市面上可以用到的 Linux 输入法我都尝试过一遍,以下列出这些输入法和他们存在的问题(每个输入法后面都会叫做 Linux 版,我为了方便下文不再说明): 百度输入法:高分辨率屏幕下输入框大的夸张,并且90%以上概率

ubuntu 20.10 linux select网络编程,同时监听多客户端连接与断开及接收数据

演示结果:  示例代码: // // Created by linux on 2021/2/5. // #include <iostream> #include <sys/select.h> #include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet.h> #include <unistd.h> using namespace std; int main

针对Fluent-Bit采集容器日志的补充

hello,之前我写过《一套标准的ASP.NET Core容器化应用日志收集分析方案》,在公司团队、微信公众号、Github上反映良好。 其中配置Fluent-bit使用Forward协议收集容器日志,需要在Docker-Compose App配置Loging Driver=Fluentd, 实践中,存在一个小遗憾: 应用了Logging Driver= Fluentd

ubuntu 20.10上使用KVM安装K8S

三台KVM,分别是node0、node1、node2,使用ubuntu 20.10系统 node0是master,node1和node2是worker   以下是三台虚拟机上都有安装的组件 1、禁止swap swapoff -a vi /etc/fstab,将swap那行注释掉 2、安装docker apt install docker 然后修改driver为systemd cat > /etc/docker/daemon

Ubuntu 20.10安装Flashplay插件

打开终端,输入 sudo add-apt-repostitory "deb http://archive.canonical.com/ $(lsb_release -sc) parener"  回车,出现提示后再次回车  sudo apt-get update    更新完成  安装adobe-flash插件, sudo apt install adobe-flashplugin  插件已安装好,现在可播放视频了