差别
这里会显示出您选择的修订版和当前版本之间的差别。
后一修订版 | 前一修订版 | ||
is:eos:endeavour系统的一般操作命令 [2025/02/27 04:27] – 创建 A.L | is:eos:endeavour系统的一般操作命令 [2025/03/13 11:19] (当前版本) – A.L | ||
---|---|---|---|
行 1: | 行 1: | ||
+ | ====== 更换镜像源 ====== | ||
+ | - 打开镜像源配置:sudo pacman-mirrors -i -c China -m rank 选择速度较快的中国镜像源。 | ||
+ | - 更新软件包数据库:sudo pacman -Syy | ||
+ | |||
+ | ====== 修改endeavour的grub启动项目 ====== | ||
+ | ===== 修改 GRUB 启动项 ===== | ||
+ | 在 EndeavourOS 中,可以通过编辑 GRUB 配置文件来修改启动项。以下是具体步骤: | ||
+ | - **打开终端**:使用快捷键 `Ctrl + Alt + T` 或在应用程序菜单中搜索“终端”。 | ||
+ | - **编辑 GRUB 配置文件**:< | ||
+ | sudo nano / | ||
+ | </ | ||
+ | - **修改配置**: | ||
+ | - 设置默认启动项:`GRUB_DEFAULT=0` | ||
+ | - 设置启动菜单等待时间:`GRUB_TIMEOUT=5` | ||
+ | - 添加内核参数:`GRUB_CMDLINE_LINUX_DEFAULT=" | ||
+ | - **保存并退出**:按 `Ctrl + O` 保存,按 `Ctrl + X` 退出。 | ||
+ | - **更新 GRUB 配置**:< | ||
+ | sudo grub-mkconfig -o / | ||
+ | </ | ||
+ | - **重启系统**:< | ||
+ | reboot | ||
+ | </ | ||
+ | |||
+ | ====== 取消systemctl的enable项目 ====== | ||
+ | ===== systemctl即禁用服务 ===== | ||
+ | - sudo systemctl disable < | ||
+ | - 执行后,该服务将不会在系统启动时自动启动。 | ||
+ | - 其他相关操作 | ||
+ | - 检查服务状态:sudo systemctl status < | ||
+ | - 停止服务:sudo systemctl stop < | ||
+ | - 启动服务:sudo systemctl start < | ||
+ | - 重新加载服务配置:sudo systemctl reload < | ||
+ | - 重启服务:sudo systemctl restart < | ||
+ | |||
====== AUR(Arch User Repository)中软件查询====== | ====== AUR(Arch User Repository)中软件查询====== | ||
===== 使用 yay(推荐)===== | ===== 使用 yay(推荐)===== | ||
行 9: | 行 43: | ||
- 安装 auracle(如果尚未安装):sudo pacman -S auracle | - 安装 auracle(如果尚未安装):sudo pacman -S auracle | ||
- 搜索 wechat:auracle search wechat | - 搜索 wechat:auracle search wechat | ||
+ | |||
+ | ====== 安装intel显卡 ====== | ||
+ | ===== 确定你的集成显卡型号 ===== | ||
+ | - 首先,你需要确认你的集成显卡型号。可以使用以下命令查看:lspci | grep VGA | ||
+ | - 如果是Intel显卡,输出会显示类似Intel Corporation的信息;如果是AMD显卡,输出会显示AMD或ATI。 | ||
+ | ===== 安装Intel集成显卡驱动 ===== | ||
+ | - 如果你的集成显卡是Intel的,安装以下驱动包:sudo pacman -S xf86-video-intel | ||
+ | - 安装Intel GPU工具(可选,用于监控和调试):sudo pacman -S intel-gpu-tools | ||
+ | - 安装Mesa驱动(提供OpenGL和Vulkan支持):sudo pacman -S mesa lib32-mesa | ||
+ | - 安装Vulkan支持(可选):sudo pacman -S vulkan-intel lib32-vulkan-intel | ||
+ | - 重启系统以应用更改:sudo reboot | ||
+ | |||
+ |