51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

网络安全

podman 安装 (centos 安装podman) podman 汇总

podman 安装 (centos 安装podman) podman 汇总

厉飞雨 阅读(117) 评论(0) 赞(6)

podman 配置阿里云镜像加速器 : [连接](https://51tbox.com/) 修改podman容器存放路径 : [连接](https://51tbox.com/) Podman 使用起来是足够简单的,直接把它当做改了名字的 Docker 就可以了。所以以下只介绍一下它的编排工具,也就是 podman-compose。 Podman 可以使用 podman-c...

ubuntu 上启用 SSH

ubuntu 上启用 SSH

厉飞雨 阅读(56) 评论(0) 赞(5)

在 Ubuntu 上启用 SSH 默认情况下,当 Ubuntu 最初被安装的时候,通过 SSH 进行远程访问是不被允许的。在 Ubuntu 上启用 SSH 非常的简单直接。 ### 2.1 身份切换 需要root用户,或其它系统管理员身份操作。 第一次需要 修改root 密码: Ubuntu怎么设置root密码 : [连接](https://51tbox.com/) ...

ubuntu 桌面版 root 登录

ubuntu 桌面版 root 登录

厉飞雨 阅读(72) 评论(0) 赞(9)

ubuntu 桌面版 root 登录 桌面版设置登录是不安全的,自己测试机就无所谓了 ### 1-第一步先设置root 密码 Ubuntu怎么设置root密码 : [连接](https://51tbox.com/) 2- 安装 vim apt install vim 3-备份文件 cp /etc/gdm3/custom.conf /etc/g...

centos7 安装ffmpeg (测试代码)

centos7 安装ffmpeg (测试代码)

厉飞雨 阅读(94) 评论(0) 赞(3)

centos7 安装ffmpeg [centos7安装ffmpeg - He_LiangLiang - 博客园 (cnblogs.com)](https://www.cnblogs.com/music-liang/p/18078488) 配置第三方软件源(epel,rpmforge,rpmfusion) 1,配置EPEL源 rpm -Uvh https://dl...

ubuntu 20.04 更换 镜像源

ubuntu 20.04 更换 镜像源

厉飞雨 阅读(89) 评论(0) 赞(6)

ubuntu 20.04 更换 镜像源 cp /etc/apt/sources.list /etc/apt/sources.list.bak 然后 清空`/etc/apt/sources.list` 然后粘贴如下内容: deb http://mirrors.aliyun.com/ubuntu/ focal main restricted universe...

k8s上 kubesphere部署 centos7.9 系统

k8s上 kubesphere部署 centos7.9 系统

厉飞雨 阅读(52) 评论(0) 赞(7)

镜像: centos:centos7.9.2009 大小 100M ![](http://static.51tbox.com/static/2024-08-29/col/6f1b28773879b69bd15061964f0c2369/8419d72c23bd4936b388ce5c15cd5381.png.jpg) 我们部署上后,需要进入终端测试,需要带上 阻...

Ubuntu 22.04.4 LTS

Ubuntu 22.04.4 LTS

厉飞雨 阅读(55) 评论(0) 赞(4)

Ubuntu 22.04.4 LTS ------------------ [下载Ubuntu桌面系统 \| Ubuntu](https://cn.ubuntu.com/download/desktop) <https://releases.ubuntu.com/22.04/ubuntu-22.04.4-desktop-amd64.iso> ![](http:...

k8s集群公共服务 Harbor 安装(docker)

k8s集群公共服务 Harbor 安装(docker)

厉飞雨 阅读(78) 评论(0) 赞(6)

KubeSphere集成本地容器镜像仓库 Harbor :[连接](https://51tbox.com/) 1 获取YUM源 -------- 使用阿里云开源软件镜像站。 ```  # wget https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo -O /etc/yum.repos.d/doc...

nfs 安装 centos8

nfs 安装 centos8

厉飞雨 阅读(54) 评论(0) 赞(6)

centos8 nfs 跟centos 7 是不一样的 安装: dnf install -y nfs-utils rpcbind psmisc 启动软件(注:有顺序的,要先启动rpcbind,再启动nfs,关闭的时候刚好顺序相反) systemctl restart rpcbind systemctl restart nfs-server...