From 20102490b093141137df04af64178efd7d96fb57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=99=E7=A5=A5?= <3490926810@qq.com> Date: Sun, 19 May 2024 13:32:43 +0000 Subject: [PATCH 1/4] =?UTF-8?q?=E7=AC=94=E8=AE=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 孙祥 <3490926810@qq.com> --- .../\347\254\224\350\256\260/202405018.md" | 32 ++++++++++++ .../\347\254\224\350\256\260/20240516.md" | 52 +++++++++++++++++++ 2 files changed, 84 insertions(+) create mode 100644 "\345\255\231\347\245\245/\347\254\224\350\256\260/202405018.md" create mode 100644 "\345\255\231\347\245\245/\347\254\224\350\256\260/20240516.md" diff --git "a/\345\255\231\347\245\245/\347\254\224\350\256\260/202405018.md" "b/\345\255\231\347\245\245/\347\254\224\350\256\260/202405018.md" new file mode 100644 index 0000000..d456903 --- /dev/null +++ "b/\345\255\231\347\245\245/\347\254\224\350\256\260/202405018.md" @@ -0,0 +1,32 @@ + +在root用户建立一个普通用户 +useradd -m 用户名 //创建用户 +passwd 用户名 //进入用户设置密码 +安装sudo配置用户(root) +apt-get install sudo +将新用户加入sudo组内,让用户可以借用权限(root) +usermod -aG usdo landawang +在新用户更新可用的包 +sudo apt-get update +配置用户环境变量(root) +chsh -s /bin/bash 用户名 +将新建用户加入环境 + +创建文件和文件夹,在文件添加内容 +创建文件夹 +mkdir /文件夹名称 //单个文件 +mkdir -p /文件夹名称/。。。。。。 //文件夹下级目录 +创建文件 +touch 文件名称.文件格式 +vim 文件名称 //进入文件编辑模式 +压缩文件 +安装zip +sudo apt-get install zip +用zip压缩文件 +zip archive.zip file1 //单个文件打包 file1(文件名) +zip archive.zip file1 file2 file3 // 多个文件打包 + +zip -r archive.zip directory //压缩整个目录及其子目录 archive.zip(打包后的名字) directory(要打包的文件夹) +zip -r archive.zip directory -x "file_or_directory" //打包时排除某些文件或目录 +下载到本地 +scr 用户名@服务器ip:目标文件的准确地址 下载的地址 \ No newline at end of file diff --git "a/\345\255\231\347\245\245/\347\254\224\350\256\260/20240516.md" "b/\345\255\231\347\245\245/\347\254\224\350\256\260/20240516.md" new file mode 100644 index 0000000..67eed47 --- /dev/null +++ "b/\345\255\231\347\245\245/\347\254\224\350\256\260/20240516.md" @@ -0,0 +1,52 @@ +初识Linux +如何安装一个Debian +安装一个VM虚拟机 +下载VM +注册VM:百度到处都是序列号 +下载Debian的安装镜像ISO +https://mirror.lzu.edu.cn/debian-cd/12.5.0/amd64/iso-cd/ +debian-12.5.0-amd64-netinst.iso +将Debian安装进VM +创建一个空白虚拟机 +配置好相关的硬件参数 +关键是修改CD-ROM,选择ISO文件路径 +启动虚拟机 +在选择语言时,选择简体中文,可以将配置的界面都中文显示 +遇到选镜像站点时,选mirror.lzu.edu.cn 兰州大学的站点 +软件安装时,只保留最后的标准工具,其它都不选 +安装好系统之后,可以用两种帐号登录。 +root 超级管理员,他具有最高的权限。 +普通用户 dabian2ban 权限很低 +默认情况,我们是没有安装SSH服务端的。得自己在debian安装一个SSH的服务端 +apt-get update // 将软件库更新到最新,得到最新可用的软件列表 +apt-get install ssh //安装ssh + +// 安装SSH服务端之后,就可以用电脑的SSH客户端进行连接 +// cmd,finalshell,tabby,putty +// ssh -l 用户名 ip +// ssh 用户名@ip +// 但普通用户权限受限,所以需要一些权限时,要么切换到root登录,要么借用root的权限 +root@172.16.90.103's password: +Permission denied, please try again. // root用户默认是禁止SSH登录的。 +// 为了使root可以远程登录,配置SSH服务端 +// /etc/ssh/sshd_config // 编辑sshd_config这个文件,但vi编辑器太原始 +// 改用vim, +apt-get install vim -y // 安装vim +vim /etc/ssh/sshd_config + + Port 22 // 开启端口22 + PermitRootLogin yes // 允许root登录 +PasswordAuthentication yes // 使用密码验证的模式 +PermitEmptyPasswords no // 禁用空密码 +// 重启ssh让配置生效 +systemctl restart ssh +/etc/init.d/ssh restart + + +// 默认是命令模式,按i进入编辑模式 +// 保存时,按ESC,退回命令模式,按shift+: ,输入qw! +linux 执行的服务的命令 + +systemctl 指令 服务名 +/etc/init.d/服务器 指令 +默认也可以用ip addr show 查看ip 地址 \ No newline at end of file -- Gitee From e5ded04fa977a3c5778e44c1794061359797c0db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=99=E7=A5=A5?= <3490926810@qq.com> Date: Sun, 19 May 2024 13:33:24 +0000 Subject: [PATCH 2/4] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=96=87=E4=BB=B6=20?= =?UTF-8?q?=E5=AD=99=E7=A5=A5/=E7=BB=83=E4=B9=A0/22XXYY=E7=BD=91=E7=BB=9C?= =?UTF-8?q?=E8=AE=BE=E5=A4=87=E9=85=8D=E7=BD=AE.pka?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...7\273\234\350\256\276\345\244\207\351\205\215\347\275\256.pka" | 0 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 "\345\255\231\347\245\245/\347\273\203\344\271\240/22XXYY\347\275\221\347\273\234\350\256\276\345\244\207\351\205\215\347\275\256.pka" diff --git "a/\345\255\231\347\245\245/\347\273\203\344\271\240/22XXYY\347\275\221\347\273\234\350\256\276\345\244\207\351\205\215\347\275\256.pka" "b/\345\255\231\347\245\245/\347\273\203\344\271\240/22XXYY\347\275\221\347\273\234\350\256\276\345\244\207\351\205\215\347\275\256.pka" deleted file mode 100644 index e69de29..0000000 -- Gitee From 925d114b9d14f76e627ef9f8703bba0535556fd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=99=E7=A5=A5?= <3490926810@qq.com> Date: Sun, 19 May 2024 13:33:38 +0000 Subject: [PATCH 3/4] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=96=87=E4=BB=B6=20?= =?UTF-8?q?=E5=AD=99=E7=A5=A5/=E7=BB=83=E4=B9=A0/=E8=AF=95=E5=8D=B7.pdf?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../\347\273\203\344\271\240/\350\257\225\345\215\267.pdf" | 0 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 "\345\255\231\347\245\245/\347\273\203\344\271\240/\350\257\225\345\215\267.pdf" diff --git "a/\345\255\231\347\245\245/\347\273\203\344\271\240/\350\257\225\345\215\267.pdf" "b/\345\255\231\347\245\245/\347\273\203\344\271\240/\350\257\225\345\215\267.pdf" deleted file mode 100644 index e69de29..0000000 -- Gitee From 53dfe0d7825071b5e39c4c34203b8c8821e7a7c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=99=E7=A5=A5?= <3490926810@qq.com> Date: Sun, 19 May 2024 13:33:43 +0000 Subject: [PATCH 4/4] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=96=87=E4=BB=B6=20?= =?UTF-8?q?=E5=AD=99=E7=A5=A5/=E7=BB=83=E4=B9=A0/22XXYY=E7=BD=91=E7=BB=9C?= =?UTF-8?q?=E8=AE=BE=E5=A4=87=E6=95=85=E9=9A=9C=E6=8E=92=E9=99=A4.pka?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...5\244\207\346\225\205\351\232\234\346\216\222\351\231\244.pka" | 0 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 "\345\255\231\347\245\245/\347\273\203\344\271\240/22XXYY\347\275\221\347\273\234\350\256\276\345\244\207\346\225\205\351\232\234\346\216\222\351\231\244.pka" diff --git "a/\345\255\231\347\245\245/\347\273\203\344\271\240/22XXYY\347\275\221\347\273\234\350\256\276\345\244\207\346\225\205\351\232\234\346\216\222\351\231\244.pka" "b/\345\255\231\347\245\245/\347\273\203\344\271\240/22XXYY\347\275\221\347\273\234\350\256\276\345\244\207\346\225\205\351\232\234\346\216\222\351\231\244.pka" deleted file mode 100644 index e69de29..0000000 -- Gitee