From b566f452308bad4b0e7ff53db1ddb9aa4e0e27f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=94=90=E5=9B=BD=E4=BA=AE?= <647597435@qq.com> Date: Wed, 15 May 2024 18:07:21 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E6=B5=8B=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- "\345\224\220\345\233\275\344\272\256/66.md" | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 "\345\224\220\345\233\275\344\272\256/66.md" diff --git "a/\345\224\220\345\233\275\344\272\256/66.md" "b/\345\224\220\345\233\275\344\272\256/66.md" new file mode 100644 index 0000000..e69de29 -- Gitee From d7d904185935d6d4a92a055045133a6acf209245 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=94=90=E5=9B=BD=E4=BA=AE?= <647597435@qq.com> Date: Wed, 15 May 2024 18:14:39 +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 --- .../20240515Linux.md" | 93 +++++++++++++++++++ 1 file changed, 93 insertions(+) create mode 100644 "\345\224\220\345\233\275\344\272\256/20240515Linux.md" diff --git "a/\345\224\220\345\233\275\344\272\256/20240515Linux.md" "b/\345\224\220\345\233\275\344\272\256/20240515Linux.md" new file mode 100644 index 0000000..681f91c --- /dev/null +++ "b/\345\224\220\345\233\275\344\272\256/20240515Linux.md" @@ -0,0 +1,93 @@ +Linux是啥?Centos 社区版本,免费,Debian,RedHat ,发行版本 + +8888 + +666888 + +安装VM pro 17 虚拟机 + +安装Debian 12.5 + +查看ip : + +```js +ip addr show // 默认的查看命令 +ifconfig // net-tools组件包的命令,这个组件要自己安装 + +apt-get update // 更新软件库 +apt-get install net-tools + + +// 安装vim编辑器,默认的是vi编辑器 +apt-get install vim // vi 文件名,变成vim 文件名 +``` + +安装ssh + +```js +apt-get install ssh // 安装ssh,默认情况下,只有普通用户才可以登录这个服务器 +// 如何开启root用户登录这个服务器 +vim /etc/ssh/sshd_cofnig //修改/etc/ssh/sshd.config 文件 +// 三件事,开22端口,允许root登录为yes,启用密码验证功能 +// 修改完一定要重启ssh服务 +/etc/init.d/ssh restart + +// 普通用户的权限是很低的。有时候普通用户也需要安装和配置软件,就需要临时借root的权限 +// 用sudo 命令,但这个默认是没安装。自己安装 +apt-get isntall sudo +// 不要忘记对sudo做一些配置,。。。百度。。https://blog.csdn.net/jasonzhoujx/article/details/80468885 +``` + + + +# linux + +一种操作系统内核,有centos,debian,redhat等。 + +## 安装 + +安装vm17,安装debian iso文件。 + +## 命令 + +### 查看ip地址: + +第一种:ip addr show + +第二种: + +apt-get update + +apt-get install net-tools + +ifconfig + +### ssh: + +apt-get install ssh + +apt-get install vim + +vim /etc/ssh/sshd_config + +port 22 打开端口 + +permitrootlogin yes 启用root登录 + +passwordauthentication yes 验证密码 + +permitemptypasswords no 禁止使用空密码登录 + +/etc/init.d/ssh restart + +### sudo: + +su root 更换给root模式 + +apt-get install sudo + +sudo vim /etc/sudoers + +root all=(all:all) all + +用户名 all=(all:all) all 添加用户名 \ No newline at end of file -- Gitee