内核相关报错,升级Archlinux时

全部问题 ==> WARNING: Possibly missing firmware for module: ‘qla1280’ ==> WARNING: Possibly missing firmware for module: ‘qed’ ==> WARNING: Possibly missing firmware for module: ‘bfa’ ==> WARNING: Possibly missing firmware for module: ‘aic94xx’ ==> WARNING: Possibly missing firmware for module: ‘wd719x’ ==> WARNING: Possibly missing firmware for module: ‘qla2xxx’ ==> …

ArchLinux升级时签名错误的处理方法

长期不升级的系统,再次升级时比较容易遇到。 https://www.cnblogs.com/codeaaa/p/6844331.html 1、一般可以这样升级 sudo pacman -Syu 或 sudo yaourt -Syu 2、升级时经常遇到报错,类似: error: php53: signature from “lilac (build machine) <lilac@build.archlinuxcn.org>” is unknown trust 3、如果升级遇到报错,大部分都是签名错误的问题。长时间不更新就可能遇到这个问题。 解决的办法是重新生成签名。 sudo pacman-key –init sudo pacman-key –populate archlinux sudo pacman-key –refresh-keys 4、 sudo pacman-key –refresh-keys 在执行以上语句的时候,可能会遇到各种问题。这时需要确认两点。 一是,如果是虚拟机安装的系统,需要修改为桥接模式。 二是,如果报not changed 可能需要执行: cd /etc/pacman“.d/sudo rm -R  gnupg/ # 删除gnupg目录及其文件

ArchLinux: libpangox-1.0.so.0 => not found

https://blog.csdn.net/FiveCu5/article/details/107572967 https://jlk.fjfi.cvut.cz/arch/repo/README.html To enable the repository in pacman.conf: [jlk] Server = https://jlk.fjfi.cvut.cz/arch/repo Packages in the repository are signed with a subkey of my PGP key. The fingerprint of the signing key is 932BA3FA0C86812A32D1F54DAB5964AEB9FEDDDC. See the pacman/Package signing page for details. The package listing is available at /arch/repo/. There are modified packages from the official repositories as …

报错:-bash: append_path: command not found

https://forum.endeavouros.com/t/bash-append-path-command-not-found/8049 This happened to me after last system update. After inspecting /var/log/pacman.log to see what changed, I found this line: warning: /etc/profile installed as /etc/profile.pacnew Updated packages were filesystem, perl, srt and sudo. /etc/profile is used to set system wide environmental variables on users shells. /etc/profile contained appendpath function declaration, /etc/profile.pacnew contained append_path If that …

chroot安装grub

分别介绍Arch和Ubuntu系统下chroot安装grub的方法。 Arch 下载一张Arch系统的光盘镜像,烧录到优盘或者光盘,从优盘或光盘启动系统。将待修复的系统挂载到当前live系统下,这里以挂载到/mnt为例,待修复系统所在分区假设为/dev/sda1。假如待修复系统挂载了多个分区,则需要分别挂载到live系统下,也就是说,在live系统的挂载点上有一个完整的文件系统,这是为了保证grub软件正常工作。下面以上面提到的例子来说明修复过程。 挂载分区: #mount /dev/sda1 /mnt chroot到待修复系统挂载点 #arch-chroot /mnt 安装grub工具包 #pacman -S grub-pc #BIOS模式启动的系统 #pacman -S grub-efi-amd64 #UEFI模式启动的系统(64位) 更新grub配置文件 #grub-mkconfig -o /boot/grub/grub.cfg 退出chroot #exit 重启 #reboot Ubuntu 下载Ubuntu Server或者Desktop镜像,烧录到U盘或光盘,从U盘或光盘启动。Server版在启动安装选择语言的界面的帮助按钮下能够找到shell的入口,桌面版则打开一个Terminal,当然也可以在虚拟终端下进行。 先挂载分区,仍然假设待修复系统根分区为/dev/sda1 #mount /dev/sda1 /mnt 此外,为保证grub程序运行,仍需要挂载另外几个几个分区,需要加上–bind选项,挂载的是目录内容 #mount –bind /dev /mnt/dev #mount –bind /dev/pts /mnt/dev/pts #mount –bind /proc /mnt/proc #mount –bind /sys …

Arch User Repository

Arch User Repository Jump to: navigation, search Contents 1 Overview 2 Accessing the AUR 2.1 Using GUI Pamac 2.2 Using commandline Pamac 2.3 Using GUI Octopi 3 Installing from the AUR by hand 3.1 Manual 4 Upgrading the packages installed from the AUR 5 See Also Overview Warning: Use the …