51工具盒子

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

经验分享

ubuntu 桌面版 root 登录

ubuntu 桌面版 root 登录

厉飞雨 阅读(79) 评论(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 (测试代码)

厉飞雨 阅读(98) 评论(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...

/etc/ld.so.conf (ssh 登录不上问题)

/etc/ld.so.conf (ssh 登录不上问题)

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

/etc/ld.so.conf 将附件内容注释后ldconfig 重启服务器就正常了, ssh 也有响应了, ![](http://static.51tbox.com/static/2024-08-29/col/392ec6b5c91cbd40b72fc12056ab2f40/2005e07015684b02883f2a11b3f62234.png.jpg) ![](ht...

ubuntu 20.04 更换 镜像源

ubuntu 20.04 更换 镜像源

厉飞雨 阅读(100) 评论(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 系统

厉飞雨 阅读(64) 评论(0) 赞(8)

镜像: 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

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

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)

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

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...

ssh 端口 修改

ssh 端口 修改

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

ssh端口修改 /etc/ssh/sshd_config #Port 22 ![](http://static.51tbox.com/static/2024-08-29/col/bac112ec9da6a81d9c35e6579aef616c/df98dfd6979f484ba7daed03512f5efb.png.jpg) 然后 重启 sshd 服务 ...

nfs 安装 centos8

nfs 安装 centos8

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

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