diff --git "a/41 \351\231\210\345\200\251\345\200\251/20240514_md\346\226\207\344\273\266\350\275\254\344\270\272html.md" "b/41 \351\231\210\345\200\251\345\200\251/20240514_md\346\226\207\344\273\266\350\275\254\344\270\272html.md" new file mode 100644 index 0000000000000000000000000000000000000000..c62d52b3203aeb4ef7347fedee863208b7be4229 --- /dev/null +++ "b/41 \351\231\210\345\200\251\345\200\251/20240514_md\346\226\207\344\273\266\350\275\254\344\270\272html.md" @@ -0,0 +1,75 @@ +#### Linux基础 +##### 如何利用自己写好的markdown文档,生成网站 + +准备工作: + +1. 有md格式文档,(你们的笔记) +2. 需要一些可以用md文件生成静态html文档的工具,vitepress,或markdownpro + + + +以用vitepress为例: + +1. 在D盘创建一个目录,用vs code打开 + +2. 查看打开终端 + +3. npm add -D vitepress // 利用node来安装vitepress + +4. npx vitepress init // 启用vitepress的设置向导 + + 1. ```js + Welcome to VitePress! + │ + ◇ Where should VitePress initialize the config? + │ ./docs + │ + ◇ Site title: + │ 我的笔记我作主 + │ + ◇ Site description: + │ 这是一个用markdown生成的笔记网站 + │ + ◇ Theme: + │ Default Theme + │ + ◇ Use TypeScript for config and theme files? + │ Yes + │ + ◇ Add VitePress npm scripts to package.json? + │ Yes + │ + └ Done! Now run npm run docs:dev and start writing. + ``` + + + +5. npm run docs:dev // 本地预览生成的效果 + +6. 修改index.md可以修改首页的连接 + +7. 修改config可以修改右上角的导航,和左侧的导航 + +8. 将笔记的文档复制到docs目录下的对应子目录 + +9. 利用cmd的tree /F 命令得到所有笔记的文件名,再将 + + 1. ```js + items: [ + { text: 'Markdown Examples', link: '/markdown-examples' }, + { text: 'Runtime API Examples', link: '/api-examples' } + ] + 这种要配置的格式扔给AI,让它整合文件名到这种格式 + ``` + + + +10. 如果你要将笔记放在一个统一的子目录中访问,用在配置文件config中加入一行 + + 'base':'/books/', + +11. npm run docs:build // 将md文件生成html到\docs\.vitepress\dist 目录,想本地预览就执行npm run docs:preview + +12. 登录自己的服务器,使用SSH工具,将dist上传到自己网站的目录 + +13. mv dist books // 将dist改名为books \ No newline at end of file diff --git "a/41 \351\231\210\345\200\251\345\200\251/20240515_\345\256\211\350\243\205\350\231\232\346\213\237\346\234\272&Debian&\350\277\234\347\250\213\350\277\236\346\216\245.md" "b/41 \351\231\210\345\200\251\345\200\251/20240515_\345\256\211\350\243\205\350\231\232\346\213\237\346\234\272&Debian&\350\277\234\347\250\213\350\277\236\346\216\245.md" new file mode 100644 index 0000000000000000000000000000000000000000..cf6847b79680e2bb294a3a3cd519b1308d121a55 --- /dev/null +++ "b/41 \351\231\210\345\200\251\345\200\251/20240515_\345\256\211\350\243\205\350\231\232\346\213\237\346\234\272&Debian&\350\277\234\347\250\213\350\277\236\346\216\245.md" @@ -0,0 +1,76 @@ +# Linux基础 + +1. Linux是操作系统的内核,以其为基础会有很多发行版本 + + - RedHat 收费商业版本 + - Centos 是RedHat的社区版本 很流行 官方现已停止维护 + - Debian 以命令行为主 + - Ubantu 是以Debian+桌面皮肤的版本 + +2. 学习Debian的两种方式 + + 1. 安装虚拟机,再安装debian,快照功能 + 2. 利用阿里云、华为云、腾讯云,也可利用快照功能对服务器进行存档 + +3. 准备好 虚拟机VM 17版本+Debian 12.5 64位的ISO文件,下载Debian的安装镜像文件 https://www.debian.org/ + +4. 先安装VM,再创建一个新虚拟机 + +5. 直接在虚拟机操作debian很麻烦,所以想办法,用SSH远程登录它 + +6. 默认Debian没有安装SSH服务端,自己安装一个 + + ```js + apt-get install ssh -y // 需要root权限,安装SSH服务端 + ip addr show // 查看IP地址 + ifconfig // 需要root权限,可以借权sudo + // 以上两步,就可以让我们用普通用户远程登录了,但是默认下root是不可以直接登录的。需对ssh做配置 + // 为了方便我们编辑文件。安装一个vim编辑器,默认是vi + ``` + +7. 修改ssh的服务端配置文件/etc/ssh/sshd_config文件 + + ```js + vim /etc/ssh/sshd_config //ssh_config是客户端,sshd_config是服务端 + Port 22// 开启端口22 + PermitRootLogin yes // 允许root登录 + PasswordAuthentication yes // 采用密码验证模式 + PermitEmptyPasswords no // 禁用空密码 + + // 重启ssh,让修改后的配置生效,两种方法 + 1. systemctl restart ssh + 2. /etc/init.d/ssh restart + ``` + +8. 如何借用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 + //3. 重新登录普通用户,就可以使用sudo功能 + ``` + +9. 软件 + + ```js + //安装软件 + apt-get install 软件名 -y + //彻底卸载软件 + apt-get remove --purge 软件名 + ``` + +10. 退出logout + +11. 远程连接 + + ```js + 1. ssh -l 用户名 IP地址 + 2. ssh 用户名@IP地址 + ``` + + \ No newline at end of file diff --git a/README.en.md b/README.en.md deleted file mode 100644 index 7ecb642315b1305938427e7c7924cb8aa64f86f2..0000000000000000000000000000000000000000 --- a/README.en.md +++ /dev/null @@ -1,36 +0,0 @@ -# Linux基础 - -#### Description -{**When you're done, you can delete the content in this README and update the file with details for others getting started with your repository**} - -#### Software Architecture -Software architecture description - -#### Installation - -1. xxxx -2. xxxx -3. xxxx - -#### Instructions - -1. xxxx -2. xxxx -3. xxxx - -#### Contribution - -1. Fork the repository -2. Create Feat_xxx branch -3. Commit your code -4. Create Pull Request - - -#### Gitee Feature - -1. You can use Readme\_XXX.md to support different languages, such as Readme\_en.md, Readme\_zh.md -2. Gitee blog [blog.gitee.com](https://blog.gitee.com) -3. Explore open source project [https://gitee.com/explore](https://gitee.com/explore) -4. The most valuable open source project [GVP](https://gitee.com/gvp) -5. The manual of Gitee [https://gitee.com/help](https://gitee.com/help) -6. The most popular members [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/) diff --git a/README.md b/README.md deleted file mode 100644 index cda094fa37a081f0932af0bd52dc12718d684b00..0000000000000000000000000000000000000000 --- a/README.md +++ /dev/null @@ -1,39 +0,0 @@ -# Linux基础 - -#### 介绍 -{**以下是 Gitee 平台说明,您可以替换此简介** -Gitee 是 OSCHINA 推出的基于 Git 的代码托管平台(同时支持 SVN)。专为开发者提供稳定、高效、安全的云端软件开发协作平台 -无论是个人、团队、或是企业,都能够用 Gitee 实现代码托管、项目管理、协作开发。企业项目请看 [https://gitee.com/enterprises](https://gitee.com/enterprises)} - -#### 软件架构 -软件架构说明 - - -#### 安装教程 - -1. xxxx -2. xxxx -3. xxxx - -#### 使用说明 - -1. xxxx -2. xxxx -3. xxxx - -#### 参与贡献 - -1. Fork 本仓库 -2. 新建 Feat_xxx 分支 -3. 提交代码 -4. 新建 Pull Request - - -#### 特技 - -1. 使用 Readme\_XXX.md 来支持不同的语言,例如 Readme\_en.md, Readme\_zh.md -2. Gitee 官方博客 [blog.gitee.com](https://blog.gitee.com) -3. 你可以 [https://gitee.com/explore](https://gitee.com/explore) 这个地址来了解 Gitee 上的优秀开源项目 -4. [GVP](https://gitee.com/gvp) 全称是 Gitee 最有价值开源项目,是综合评定出的优秀开源项目 -5. Gitee 官方提供的使用手册 [https://gitee.com/help](https://gitee.com/help) -6. Gitee 封面人物是一档用来展示 Gitee 会员风采的栏目 [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/)