51工具盒子

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

ubuntu

ubuntu 桌面版 root 登录

ubuntu 桌面版 root 登录

厉飞雨 阅读(407) 评论(0) 赞(24)

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 登录不上问题)

厉飞雨 阅读(368) 评论(0) 赞(17)

/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 更换 镜像源

厉飞雨 阅读(434) 评论(0) 赞(18)

<p>ubuntu 20.04 更换 镜像源</p> <pre><code>cp /etc/apt/sources.list /etc/apt/sources.list.bak </code></pre> <p>然后 清空<code>/etc/apt/sources.list<...

Ubuntu 22.04.4 LTS

Ubuntu 22.04.4 LTS

厉飞雨 阅读(383) 评论(0) 赞(20)

<h2>Ubuntu 22.04.4 LTS</h2> <p><a href="https://cn.ubuntu.com/download/desktop">下载Ubuntu桌面系统 | Ubuntu</a></p> <p><a href="https://...

ssh 端口 修改

ssh 端口 修改

厉飞雨 阅读(446) 评论(0) 赞(19)

<p>ssh端口修改</p> <pre><code>/etc/ssh/sshd_config </code></pre> <p>#Port 22</p> <p><img src="http://static.51tbox.com/static/2024-0...

ubuntu 修改 ip

ubuntu 修改 ip

厉飞雨 阅读(299) 评论(0) 赞(18)

/etc/netplan/00-installer-config.yaml network: ethernets: ens33: addresses: - 10.0.0.101/24 gateway4: 10.0.0.2 nameservers: ...

阿里云NAT服务,ssh到内网ECS (配置外网服务 30880)

阿里云NAT服务,ssh到内网ECS (配置外网服务 30880)

厉飞雨 阅读(492) 评论(0) 赞(24)

<p>购买了NAT服务,也绑定了EIP,请问ssh怎么登录公网IP呢<br /> 创建DNAT条目<br /> 登录NAT网关管理控制台。<br /> 在顶部菜单栏,选择公网NAT网关的地域。<br /> 在公网NAT网关页面,找到目标公网NAT网关实例,然后在操作列单击设置DNAT。<br /> 在DNA...

带宽占用高导致无法登录ssh lsof

带宽占用高导致无法登录ssh lsof

厉飞雨 阅读(489) 评论(0) 赞(25)

例如,消耗流量的 IP 为201.205.141.123,则执行以下命令: lsof -i | grep 201.205.141.123 根据返回的如下结果,得知此服务器带宽主要由 SSH 进程消耗。 网络带宽突然升高,导致 ssh远程登录受限 ![](http://static.51tbox.com/static/2024-08-29/col/341f...

SSH内网穿透,公网访问内网 工具sssh -fCNR

SSH内网穿透,公网访问内网 工具sssh -fCNR

厉飞雨 阅读(534) 评论(0) 赞(18)

<p>基于SSH协议的内网穿透,访问内部笔记本电脑</p> <p>需求: 阿里云的公网 要 SSH 到公司内网主机 上执行一些相关命令 : 比如 jenkins 构建 ios 项目(mac mini)</p> <p>首先 白眉大叔已经默认你 ssh免密登录 已经配置好了。</p> <p>不会的可...

autossh 安装使用

autossh 安装使用

厉飞雨 阅读(429) 评论(0) 赞(20)

<p>AutoSSH是一种自动监控SSH会话的工具,它可以在SSH会话断开后自动重连</p> <p>mac 上安装:</p> <pre><code>brew install autossh </code></pre> <p>linux 上安装:</p> <...