From d35a4d20a71fd55b9c1933e3ae25954b6325a521 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E8=AF=97=E7=90=B3?= <11802631+rkliushilin@user.noreply.gitee.com> Date: Mon, 20 May 2024 16:34:51 +0000 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=96=87=E4=BB=B6=2051?= =?UTF-8?q?=E5=88=98=E8=AF=97=E7=90=B3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Linux\345\237\272\347\241\200.md" | 53 ------------------- 1 file changed, 53 deletions(-) delete mode 100644 "51\345\210\230\350\257\227\347\220\263/Linux\345\237\272\347\241\200.md" diff --git "a/51\345\210\230\350\257\227\347\220\263/Linux\345\237\272\347\241\200.md" "b/51\345\210\230\350\257\227\347\220\263/Linux\345\237\272\347\241\200.md" deleted file mode 100644 index 4cdeb97..0000000 --- "a/51\345\210\230\350\257\227\347\220\263/Linux\345\237\272\347\241\200.md" +++ /dev/null @@ -1,53 +0,0 @@ -#### Linux 基础 - -1. Linux是操作系统的内核 - - RedHat 收费商业版本,Centos 是RedHat的社区版本 很流行 - - Debian 命令行为主,Ubantu 是以Debian+桌面皮肤的版本 - - 类似显卡的核心,N卡A卡相当于内核,不同商家出的具体的型号的显卡,相当于发行版本 - -2. 学习Debian的两种方式 - - 虚拟机,再安装debian,快照:对服务器进行存档 - - 服务器 - -3. 虚拟机VM 17版本+Debian 12.5 64位的ISO文件 - - 1. 先安装Vm,再创建一个新的虚拟机 - 1. 下载Debian的安装镜像 https://www.debian.org/ - -4. 直接再虚拟机上操作很麻烦,需用ssh远程登录 -5. 默认的Debian没有安装ssh服务端 - -```js -apt-get install ssh -y // 需要root权限,安装SSH服务端 -ip addr show // 查看IP地址 -ifconfig // 需要root权限,可以借权sudo -// 以上两步,就可以让我们用普通用户远程登录了,但是默认下root是不可以直接登录的。需对ssh做配置 - -// 为了方便我们编辑文件。安装一个vim编辑器,默认是vi -``` - -6. 修改ssh的服务端配置文件 - -```js -vim /etc/ssh/sshd_config -Port 22// 开启端口22 -PermitRootLogin yes // 允许root登录 -PasswordAuthentication yes // 采用密码验证模式 -PermitEmptyPasswords no // 禁用空密码 -``` - -7.借用root权限 - -```js -1. 安装sudo -apt-get install sudo -y -2. 将普通用户名加入 -vim /etc/sudoers -## -## Allow root to run any commands anywhere -root ALL=(ALL) ALL -用户名 ALL=(ALL) ALL - -``` - -8.重新登录普通用户就可以sudo功能 \ No newline at end of file -- Gitee