linux kernel – Manjaro repo use inside Arch

It is actually simple. Just create a new pacman config file at /etc/pacman.manjaro.conf:

#
# /etc/pacman.conf
#
# See the pacman.conf(5) manpage for option and repository directives

[options]
HoldPkg     = pacman glibc
Architecture = auto
ParallelDownloads = 10

SigLevel = Optional TrustAll
LocalFileSigLevel = Optional

[core]
Server = https://manjaro.c3sl.ufpr.br/stable/$repo/$arch

[extra]
Server = https://manjaro.c3sl.ufpr.br/stable/$repo/$arch

[community]
Server = https://manjaro.c3sl.ufpr.br/stable/$repo/$arch

[multilib]
Server = https://manjaro.c3sl.ufpr.br/stable/$repo/$arch

#[chaotic-aur]
#Include = /etc/pacman.d/chaotic-mirrorlist

And then install linux69 and linux69-headers by switching to this config:

sudo pacman -Syy --config /etc/pacman.manjaro.conf linux69 linux69-headers

-yy options are required to ensure it doesn’t use the cached repositories versions from the standard pacman.conf.

Read more here: Source link