51工具盒子

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

Github

ubuntu 安装python3 (指定某一个版本)

ubuntu 安装python3 (指定某一个版本)

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

用编译安装比较费劲, 报错, 还是用 apt 一、安装 1- 更新 sudo apt update sudo apt upgrade 2- 安装python apt install python3 3- 验证: 这是3.12 版本 ![](http://static.51tbox.com/static/2024-08-29/col/...

ubuntu 好用的中文输入法fcitx (推荐 20.10 版本

ubuntu 好用的中文输入法fcitx (推荐 20.10 版本

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

24.04 的智能输入法,太辣鸡了。 Ubuntu 上最好用的中文输入法是什么? [Ubuntu 上最好用的中文输入法是什么? (zhihu.com)](https://www.zhihu.com/tardis/bd/ans/2179849630?source_id=1001) 开始时,中文输入法没有那么6,我只是随便找了帖子就用起来了,应该是IBUS系的。从14....

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

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

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

厉飞雨 阅读(81) 评论(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 更换 镜像源

厉飞雨 阅读(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...

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

ssh 端口 修改

ssh 端口 修改

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

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