当前位置:网站首页>CRT命令按键
CRT命令按键
2022-08-03 09:27:00 【The Fifth Leaf】
base源
curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
epel源
curl -o /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
yum源
yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
yum-utils
yum install -y yum-utils
jps
sudo yum install java-1.8.0-openjdk-devel.x86_64
关闭防火墙
systemctl stop firewalld
开机关闭防火墙
systemctl disable firewalld.service
docker命令提示
sudo yum install -y bash-completion
docker容器安装ip指令
apt update && apt install -y iproute2
安装必要工具
yum install wget net-tools telnet tree nmap sysstat lrzsz dos2unix bind-utils -y
docker删除所有非运行状态镜像
for i in `docker ps -a|grep -i exit|awk '{print $1}'`;do docker rm -f $i;done
docker删除未引用镜像
docker image prune -a -f
docker停止所有镜像
docker stop $(docker ps -aq)
docker删除creat状态镜像
docker container rm
边栏推荐
- gpnmb+ gpnmb-AT2 cell空转映射 上皮细胞的空转映射
- chrome F12 network 保留之前请求信息
- oracle中的rownum函数
- Machine learning (formula derivation and code implementation)--sklearn machine learning library
- MySQL的分页你还在使劲的limit?
- System io statistics
- 深度学习之 10 卷积神经网络1
- MySql的初识感悟,以及sql语句中的DDL和DML和DQL的基本语法
- gpnmb+ gpnmb-AT2 cell idling mapping Epithelial cell idling mapping
- SQL Daily Practice (Nioke New Question Bank) - Day 5: Advanced Query
猜你喜欢
随机推荐
Exception: Dataset not found. Solution
MySql的初识感悟,以及sql语句中的DDL和DML和DQL的基本语法
110 MySQL interview questions and answers (continuous updates)
English Grammar - Adverbial Clauses
Batch PNG format can be converted to JPG format
【LeetCode】622.设计循环队列
013-Binary tree
CSP-S2019 Day2
dflow入门5——Big step & Big parameter
基于二次型性能指标的燃料电池过氧比RBF-PID控制
MySQL8重置root账户密码图文教程
dflow部署简记
ClickHouse 数据插入、更新与删除操作 SQL
面试突击71:GET 和 POST 有什么区别?
MySQL的分页你还在使劲的limit?
flush tables
LINGO 18.0软件安装包下载及安装教程
Redis和Mysql数据同步的两种方案
SQL每日一练(牛客新题库)——第5天:高级查询
bihash总结








