From b33ec41c6716af00507afa442c88741af7748d09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=BC=BA?= <3108497868@qq.com> Date: Wed, 15 May 2024 22:29:56 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E4=BD=9C=E4=B8=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../\350\256\244\350\257\206linux.md" | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 "45\347\216\213\345\274\272/\350\256\244\350\257\206linux.md" diff --git "a/45\347\216\213\345\274\272/\350\256\244\350\257\206linux.md" "b/45\347\216\213\345\274\272/\350\256\244\350\257\206linux.md" new file mode 100644 index 0000000..bec4dda --- /dev/null +++ "b/45\347\216\213\345\274\272/\350\256\244\350\257\206linux.md" @@ -0,0 +1,29 @@ +# Liunx + +一种操作系统内核,有centos,debian,redhat等。 + +## 命令 + +### 查看ip地址 + +ip addr show + +## ssh + +```js +apt-get install ssh + +apt-get install vim + +vim /etc/ssh/sshd_config + +port 21 打开端口 + +permitrootlogin yes 启用root登录 + +passwordauthentication yes 验证密码 + +permitemptypasswords no 禁止使用空密码登录 + +/etc/init.d/ssh restart +``` \ No newline at end of file -- Gitee From 504acf15688acaff423d59533c9574fe47245b0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=BC=BA?= <3108497868@qq.com> Date: Sun, 19 May 2024 21:28:01 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E4=BD=9C=E4=B8=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ssh\350\277\236\346\216\245.md" | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 "45\347\216\213\345\274\272/ssh\350\277\236\346\216\245.md" diff --git "a/45\347\216\213\345\274\272/ssh\350\277\236\346\216\245.md" "b/45\347\216\213\345\274\272/ssh\350\277\236\346\216\245.md" new file mode 100644 index 0000000..68adb2d --- /dev/null +++ "b/45\347\216\213\345\274\272/ssh\350\277\236\346\216\245.md" @@ -0,0 +1,33 @@ +# Linux + +Linux是一套免费使用和自由传播的类Unix操作系统,是一个多用户、多任务、支持多线程和多CPU的操作系统 + +有centos,debian,redhat等 + +# 安装必要组件 + +```java +IP address show //查看IP地址等信息 +apt-get install net-tools //安装net-tools组件包 +apt-get install vim // vim编辑器 +apt-get update // 更新软件库 +apt-get install ssh // 安装ssh,默认情况下,只有普通用户才可以登录这个服务器 +``` + +# 修改ssh文件 + +```java +vim /etc/ssh/sshd_cofnig //进入并修改ssh配置文件 +--------------------------------------------------------------------------------------- +//更改以下3行命令 +port:22 //开启端口22 +PermitRootLogin yes //打开root用户登入 +PasswordAuthentication yes //打开密码验证 +PermitEmptyPassword no //不允许空密码登录 +//修改完成按Esc键在按:wq保存退出 +--------------------------------------------------------------------------------------- +// 用sudo 命令,但这个默认是没安装。自己安装 apt-get isntall sudo +sudo systemctl restart ssh //重启SSH服务,是root用户可以去掉sudo +su root 更换给root模式 +``` + -- Gitee