摘要: 1、安装epel源,如果已经安装,可跳过此步骤 yum install epel-release -y 2、安装lightdm和xfce yum install lightdm -y yum groupinstall -y xfce 3、修改配置文件 vim /etc/lightdm/lightdm 阅读全文
posted @ 2022-10-20 15:24 Dabo丶 阅读(382) 评论(0) 推荐(0) 编辑
摘要: 1.在docker中拉去centos镜像 docker pull centos:7.9.2009 2.编写Dockerfile文件内容 FROM centos:7.9.2009# 作者信息 MAINTAINER zzyy# 环境变量 ENV MYPATH /usr/local# 终端进入容器的落脚点 阅读全文
posted @ 2022-10-20 12:19 Dabo丶 阅读(239) 评论(0) 推荐(0) 编辑
摘要: 一、【iptables】防火墙 查看防火墙状态 service iptables status 停止防火墙 service iptables stop 启动防火墙 service iptables start 重启防火墙 service iptables restart 永久关闭防火墙 chkcon 阅读全文
posted @ 2022-10-20 11:56 Dabo丶 阅读(578) 评论(0) 推荐(0) 编辑
摘要: 官网:https://docs.docker.com/engine/reference/builder/ 概述 Dockerfile是用来构建Docker镜像的文本文件,是由一条条构建镜像所需的指令和参数构成的脚本。 1.构建三步骤 编写Dockerfile文件 - docker build命令构建 阅读全文
posted @ 2022-10-20 08:23 Dabo丶 阅读(68) 评论(0) 推荐(0) 编辑