Update
This commit is contained in:
parent
7cd5f83d56
commit
8ebc00ae00
10
03_make.sh
10
03_make.sh
|
@ -5,10 +5,14 @@ sudo ./mkarchiso_last_my -v "."
|
||||||
date_tag=$(date +%Y.%m.%d)
|
date_tag=$(date +%Y.%m.%d)
|
||||||
iso_name="Melawy-linux-${date_tag}-x86_64.iso"
|
iso_name="Melawy-linux-${date_tag}-x86_64.iso"
|
||||||
|
|
||||||
gpg --detach-sign --local-user BC8B600E8DDA1F4CB77B10D2BA803A261A5EE6B8 --output "../boot/txt/${iso_name}.sig" "../boot/iso/${iso_name}"
|
|
||||||
sha1sum "../boot/iso/${iso_name}" > "../boot/txt/${iso_name}.sha1"
|
|
||||||
sha256sum "../boot/iso/${iso_name}" > "../boot/txt/${iso_name}.sha256"
|
|
||||||
cp "../work/iso/arch/pkglist.x86_64.txt" "../boot/txt/Melawy-linux-${date_tag}-pkglist.txt"
|
cp "../work/iso/arch/pkglist.x86_64.txt" "../boot/txt/Melawy-linux-${date_tag}-pkglist.txt"
|
||||||
|
gpg --detach-sign --local-user BC8B600E8DDA1F4CB77B10D2BA803A261A5EE6B8 --output "../boot/txt/${iso_name}.sig" "../boot/iso/${iso_name}"
|
||||||
|
|
||||||
|
|
||||||
|
cd "../boot/iso/"
|
||||||
|
|
||||||
|
sha1sum "${iso_name}" > "../../boot/txt/${iso_name}.sha1"
|
||||||
|
sha256sum "${iso_name}" > "../../boot/txt/${iso_name}.sha256"
|
||||||
|
|
||||||
notify-send -a "$(basename $(pwd)): Make" -t 999999999 "finished" "$(date '+%Y.%m.%d %H:%M:%S')"
|
notify-send -a "$(basename $(pwd)): Make" -t 999999999 "finished" "$(date '+%Y.%m.%d %H:%M:%S')"
|
||||||
|
|
||||||
|
|
12
04_sign.sh
12
04_sign.sh
|
@ -5,11 +5,15 @@
|
||||||
date_tag=$(date +%Y.%m.%d)
|
date_tag=$(date +%Y.%m.%d)
|
||||||
iso_name="Melawy-linux-${date_tag}-x86_64.iso"
|
iso_name="Melawy-linux-${date_tag}-x86_64.iso"
|
||||||
|
|
||||||
gpg --detach-sign --local-user BC8B600E8DDA1F4CB77B10D2BA803A261A5EE6B8 --output "../boot/txt/${iso_name}.sig" "../boot/iso/${iso_name}"
|
|
||||||
sha1sum "../boot/iso/${iso_name}" > "../boot/txt/${iso_name}.sha1"
|
|
||||||
sha256sum "../boot/iso/${iso_name}" > "../boot/txt/${iso_name}.sha256"
|
|
||||||
cp "../work/iso/arch/pkglist.x86_64.txt" "../boot/txt/Melawy-linux-${date_tag}-pkglist.txt"
|
cp "../work/iso/arch/pkglist.x86_64.txt" "../boot/txt/Melawy-linux-${date_tag}-pkglist.txt"
|
||||||
|
gpg --detach-sign --local-user BC8B600E8DDA1F4CB77B10D2BA803A261A5EE6B8 --output "../boot/txt/${iso_name}.sig" "../boot/iso/${iso_name}"
|
||||||
|
|
||||||
notify-send -a "$(basename $(pwd)): Sign" -t 999999999 "finished" "$(date '+%Y.%m.%d %H:%M:%S')"
|
|
||||||
|
cd "../boot/iso/"
|
||||||
|
|
||||||
|
sha1sum "${iso_name}" > "../../boot/txt/${iso_name}.sha1"
|
||||||
|
sha256sum "${iso_name}" > "../../boot/txt/${iso_name}.sha256"
|
||||||
|
|
||||||
|
notify-send -a "$(basename $(pwd)): Make" -t 999999999 "finished" "$(date '+%Y.%m.%d %H:%M:%S')"
|
||||||
|
|
||||||
echo "Ready"
|
echo "Ready"
|
||||||
|
|
|
@ -1,55 +1,89 @@
|
||||||
|
#
|
||||||
# /etc/pacman.conf
|
# /etc/pacman.conf
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
# See the pacman.conf(5) manpage for option and repository directives
|
# See the pacman.conf(5) manpage for option and repository directives
|
||||||
#
|
#
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
#
|
#
|
||||||
# GENERAL OPTIONS
|
# GENERAL OPTIONS
|
||||||
#
|
#
|
||||||
[options]
|
[options]
|
||||||
# RootDir = /
|
# The following paths are commented out with their default values listed.
|
||||||
# DBPath = /var/lib/pacman/
|
# If you wish to use different paths, uncomment and update the paths.
|
||||||
# CacheDir = /var/cache/pacman/pkg/
|
# RootDir = /
|
||||||
# LogFile = /var/log/pacman.log
|
# DBPath = /var/lib/pacman/
|
||||||
# GPGDir = /etc/pacman.d/gnupg/
|
# CacheDir = /var/cache/pacman/pkg/
|
||||||
# HookDir = /etc/pacman.d/hooks/
|
# LogFile = /var/log/pacman.log
|
||||||
HoldPkg = base base-devel pacman glibc
|
# GPGDir = /etc/pacman.d/gnupg/
|
||||||
# XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
|
# HookDir = /etc/pacman.d/hooks/
|
||||||
|
HoldPkg = base base-devel pacman glibc
|
||||||
|
# XferCommand = /usr/bin/curl -L -C - -f -o %o %u
|
||||||
# XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
|
# XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
|
||||||
# CleanMethod = KeepInstalled
|
# CleanMethod = KeepInstalled
|
||||||
Architecture = auto
|
Architecture = auto
|
||||||
|
|
||||||
|
# Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
|
||||||
#IgnorePkg =
|
#IgnorePkg =
|
||||||
# IgnoreGroup =
|
#IgnoreGroup =
|
||||||
# NoUpgrade =
|
|
||||||
# NoExtract =
|
#NoUpgrade =
|
||||||
# UseSyslog
|
#NoExtract =
|
||||||
|
|
||||||
|
# Misc options
|
||||||
|
#UseSyslog
|
||||||
Color
|
Color
|
||||||
ILoveCandy
|
ILoveCandy
|
||||||
# NoProgressBar
|
# NoProgressBar
|
||||||
CheckSpace
|
CheckSpace
|
||||||
VerbosePkgLists
|
VerbosePkgLists
|
||||||
ParallelDownloads = 8
|
ParallelDownloads = 8
|
||||||
SigLevel = Required DatabaseOptional
|
|
||||||
|
# By default, pacman accepts packages signed by keys that its local keyring
|
||||||
|
# trusts (see pacman-key and its man page), as well as unsigned packages.
|
||||||
|
SigLevel = Required DatabaseOptional
|
||||||
LocalFileSigLevel = Optional
|
LocalFileSigLevel = Optional
|
||||||
# RemoteFileSigLevel = Required
|
# RemoteFileSigLevel = Required
|
||||||
|
|
||||||
#[core]
|
# NOTE: You must run `pacman-key --init` before first using pacman; the local
|
||||||
#SigLevel = Never
|
# keyring can then be populated with the keys of all official Arch Linux
|
||||||
#Include = /etc/pacman.d/kaos-mirrorlist
|
# packagers with `pacman-key --populate archlinux`.
|
||||||
|
|
||||||
#[main]
|
#
|
||||||
#SigLevel = Never
|
# REPOSITORIES
|
||||||
#Include = /etc/pacman.d/kaos-mirrorlist
|
# - can be defined here or included from another file
|
||||||
|
# - pacman will search repositories in the order defined here
|
||||||
|
# - local/custom mirrors can be added here or in separate files
|
||||||
|
# - repositories listed first will take precedence when packages
|
||||||
|
# have identical names, regardless of version number
|
||||||
|
# - URLs will have $repo replaced by the name of the current repo
|
||||||
|
# - URLs will have $arch replaced by the name of the architecture
|
||||||
|
#
|
||||||
|
# Repository entries are of the format:
|
||||||
|
# [repo-name]
|
||||||
|
# Server = ServerName
|
||||||
|
# Include = IncludePath
|
||||||
|
#
|
||||||
|
# The header [repo-name] is crucial - it must be present and
|
||||||
|
# uncommented to enable the repo.
|
||||||
|
#
|
||||||
|
|
||||||
#[apps]
|
# [core]
|
||||||
#SigLevel = Never
|
# SigLevel = Never
|
||||||
#Include = /etc/pacman.d/kaos-mirrorlist
|
# Include = /etc/pacman.d/kaos-mirrorlist
|
||||||
|
|
||||||
|
# [main]
|
||||||
|
# SigLevel = Never
|
||||||
|
# Include = /etc/pacman.d/kaos-mirrorlist
|
||||||
|
|
||||||
|
# [apps]
|
||||||
|
# SigLevel = Never
|
||||||
|
# Include = /etc/pacman.d/kaos-mirrorlist
|
||||||
|
|
||||||
|
|
||||||
#[kde-unstable]
|
# [kde-unstable]
|
||||||
#Include = /etc/pacman.d/mirrorlist
|
# Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[melawy]
|
[melawy]
|
||||||
Include = /etc/pacman.d/melawy-linux-mirrorlist
|
Include = /etc/pacman.d/melawy-linux-mirrorlist
|
||||||
|
@ -61,6 +95,10 @@ Include = /etc/pacman.d/melawy-linux-mirrorlist
|
||||||
SigLevel = Optional
|
SigLevel = Optional
|
||||||
Server = http://192.168.1.250/$repo/$arch
|
Server = http://192.168.1.250/$repo/$arch
|
||||||
|
|
||||||
|
# The testing repositories are disabled by default. To enable, uncomment the
|
||||||
|
# repo name header and Include lines. You can add preferred servers immediately
|
||||||
|
# after the header, and they will be used before the default mirrors.
|
||||||
|
|
||||||
# [core-testing]
|
# [core-testing]
|
||||||
# Include = /etc/pacman.d/mirrorlist
|
# Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
|
@ -73,12 +111,21 @@ Include = /etc/pacman.d/mirrorlist
|
||||||
[extra]
|
[extra]
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
|
# If you want to run 32 bit applications on your x86_64 system,
|
||||||
|
# enable the multilib repositories as required here.
|
||||||
|
|
||||||
# [multilib-testing]
|
# [multilib-testing]
|
||||||
# Include = /etc/pacman.d/mirrorlist
|
# Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[multilib]
|
[multilib]
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
|
# An example of a custom package repository. See the pacman manpage for
|
||||||
|
# tips on creating your own repositories.
|
||||||
|
#[custom]
|
||||||
|
#SigLevel = Optional TrustAll
|
||||||
|
#Server = file:///home/custompkgs
|
||||||
|
|
||||||
[arcolinux_repo]
|
[arcolinux_repo]
|
||||||
Include = /etc/pacman.d/arcolinux-mirrorlist
|
Include = /etc/pacman.d/arcolinux-mirrorlist
|
||||||
|
|
||||||
|
|
|
@ -1,55 +1,89 @@
|
||||||
|
#
|
||||||
# /etc/pacman.conf
|
# /etc/pacman.conf
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
# See the pacman.conf(5) manpage for option and repository directives
|
# See the pacman.conf(5) manpage for option and repository directives
|
||||||
#
|
#
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
#
|
#
|
||||||
# GENERAL OPTIONS
|
# GENERAL OPTIONS
|
||||||
#
|
#
|
||||||
[options]
|
[options]
|
||||||
# RootDir = /
|
# The following paths are commented out with their default values listed.
|
||||||
# DBPath = /var/lib/pacman/
|
# If you wish to use different paths, uncomment and update the paths.
|
||||||
# CacheDir = /var/cache/pacman/pkg/
|
# RootDir = /
|
||||||
# LogFile = /var/log/pacman.log
|
# DBPath = /var/lib/pacman/
|
||||||
# GPGDir = /etc/pacman.d/gnupg/
|
# CacheDir = /var/cache/pacman/pkg/
|
||||||
# HookDir = /etc/pacman.d/hooks/
|
# LogFile = /var/log/pacman.log
|
||||||
HoldPkg = base base-devel pacman glibc
|
# GPGDir = /etc/pacman.d/gnupg/
|
||||||
# XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
|
# HookDir = /etc/pacman.d/hooks/
|
||||||
|
HoldPkg = base base-devel pacman glibc
|
||||||
|
# XferCommand = /usr/bin/curl -L -C - -f -o %o %u
|
||||||
# XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
|
# XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
|
||||||
# CleanMethod = KeepInstalled
|
# CleanMethod = KeepInstalled
|
||||||
Architecture = auto
|
Architecture = auto
|
||||||
|
|
||||||
|
# Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
|
||||||
#IgnorePkg =
|
#IgnorePkg =
|
||||||
# IgnoreGroup =
|
#IgnoreGroup =
|
||||||
# NoUpgrade =
|
|
||||||
# NoExtract =
|
#NoUpgrade =
|
||||||
# UseSyslog
|
#NoExtract =
|
||||||
|
|
||||||
|
# Misc options
|
||||||
|
#UseSyslog
|
||||||
Color
|
Color
|
||||||
ILoveCandy
|
ILoveCandy
|
||||||
# NoProgressBar
|
# NoProgressBar
|
||||||
CheckSpace
|
CheckSpace
|
||||||
VerbosePkgLists
|
VerbosePkgLists
|
||||||
ParallelDownloads = 8
|
ParallelDownloads = 8
|
||||||
SigLevel = Required DatabaseOptional
|
|
||||||
|
# By default, pacman accepts packages signed by keys that its local keyring
|
||||||
|
# trusts (see pacman-key and its man page), as well as unsigned packages.
|
||||||
|
SigLevel = Required DatabaseOptional
|
||||||
LocalFileSigLevel = Optional
|
LocalFileSigLevel = Optional
|
||||||
# RemoteFileSigLevel = Required
|
# RemoteFileSigLevel = Required
|
||||||
|
|
||||||
#[core]
|
# NOTE: You must run `pacman-key --init` before first using pacman; the local
|
||||||
#SigLevel = Never
|
# keyring can then be populated with the keys of all official Arch Linux
|
||||||
#Include = /etc/pacman.d/kaos-mirrorlist
|
# packagers with `pacman-key --populate archlinux`.
|
||||||
|
|
||||||
#[main]
|
#
|
||||||
#SigLevel = Never
|
# REPOSITORIES
|
||||||
#Include = /etc/pacman.d/kaos-mirrorlist
|
# - can be defined here or included from another file
|
||||||
|
# - pacman will search repositories in the order defined here
|
||||||
|
# - local/custom mirrors can be added here or in separate files
|
||||||
|
# - repositories listed first will take precedence when packages
|
||||||
|
# have identical names, regardless of version number
|
||||||
|
# - URLs will have $repo replaced by the name of the current repo
|
||||||
|
# - URLs will have $arch replaced by the name of the architecture
|
||||||
|
#
|
||||||
|
# Repository entries are of the format:
|
||||||
|
# [repo-name]
|
||||||
|
# Server = ServerName
|
||||||
|
# Include = IncludePath
|
||||||
|
#
|
||||||
|
# The header [repo-name] is crucial - it must be present and
|
||||||
|
# uncommented to enable the repo.
|
||||||
|
#
|
||||||
|
|
||||||
#[apps]
|
# [core]
|
||||||
#SigLevel = Never
|
# SigLevel = Never
|
||||||
#Include = /etc/pacman.d/kaos-mirrorlist
|
# Include = /etc/pacman.d/kaos-mirrorlist
|
||||||
|
|
||||||
|
# [main]
|
||||||
|
# SigLevel = Never
|
||||||
|
# Include = /etc/pacman.d/kaos-mirrorlist
|
||||||
|
|
||||||
|
# [apps]
|
||||||
|
# SigLevel = Never
|
||||||
|
# Include = /etc/pacman.d/kaos-mirrorlist
|
||||||
|
|
||||||
|
|
||||||
#[kde-unstable]
|
# [kde-unstable]
|
||||||
#Include = /etc/pacman.d/mirrorlist
|
# Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[melawy]
|
[melawy]
|
||||||
Include = /etc/pacman.d/melawy-linux-mirrorlist
|
Include = /etc/pacman.d/melawy-linux-mirrorlist
|
||||||
|
@ -61,6 +95,10 @@ Include = /etc/pacman.d/melawy-linux-mirrorlist
|
||||||
# SigLevel = Optional
|
# SigLevel = Optional
|
||||||
# Server = http://192.168.1.250/$repo/$arch
|
# Server = http://192.168.1.250/$repo/$arch
|
||||||
|
|
||||||
|
# The testing repositories are disabled by default. To enable, uncomment the
|
||||||
|
# repo name header and Include lines. You can add preferred servers immediately
|
||||||
|
# after the header, and they will be used before the default mirrors.
|
||||||
|
|
||||||
# [core-testing]
|
# [core-testing]
|
||||||
# Include = /etc/pacman.d/mirrorlist
|
# Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
|
@ -73,12 +111,21 @@ Include = /etc/pacman.d/mirrorlist
|
||||||
[extra]
|
[extra]
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
|
# If you want to run 32 bit applications on your x86_64 system,
|
||||||
|
# enable the multilib repositories as required here.
|
||||||
|
|
||||||
# [multilib-testing]
|
# [multilib-testing]
|
||||||
# Include = /etc/pacman.d/mirrorlist
|
# Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[multilib]
|
[multilib]
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
|
# An example of a custom package repository. See the pacman manpage for
|
||||||
|
# tips on creating your own repositories.
|
||||||
|
#[custom]
|
||||||
|
#SigLevel = Optional TrustAll
|
||||||
|
#Server = file:///home/custompkgs
|
||||||
|
|
||||||
[arcolinux_repo]
|
[arcolinux_repo]
|
||||||
Include = /etc/pacman.d/arcolinux-mirrorlist
|
Include = /etc/pacman.d/arcolinux-mirrorlist
|
||||||
|
|
||||||
|
|
|
@ -1,55 +1,89 @@
|
||||||
|
#
|
||||||
# /etc/pacman.conf
|
# /etc/pacman.conf
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
# See the pacman.conf(5) manpage for option and repository directives
|
# See the pacman.conf(5) manpage for option and repository directives
|
||||||
#
|
#
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
#
|
#
|
||||||
# GENERAL OPTIONS
|
# GENERAL OPTIONS
|
||||||
#
|
#
|
||||||
[options]
|
[options]
|
||||||
# RootDir = /
|
# The following paths are commented out with their default values listed.
|
||||||
# DBPath = /var/lib/pacman/
|
# If you wish to use different paths, uncomment and update the paths.
|
||||||
# CacheDir = /var/cache/pacman/pkg/
|
# RootDir = /
|
||||||
# LogFile = /var/log/pacman.log
|
# DBPath = /var/lib/pacman/
|
||||||
# GPGDir = /etc/pacman.d/gnupg/
|
# CacheDir = /var/cache/pacman/pkg/
|
||||||
# HookDir = /etc/pacman.d/hooks/
|
# LogFile = /var/log/pacman.log
|
||||||
HoldPkg = base base-devel pacman glibc
|
# GPGDir = /etc/pacman.d/gnupg/
|
||||||
# XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
|
# HookDir = /etc/pacman.d/hooks/
|
||||||
|
HoldPkg = base base-devel pacman glibc
|
||||||
|
# XferCommand = /usr/bin/curl -L -C - -f -o %o %u
|
||||||
# XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
|
# XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
|
||||||
# CleanMethod = KeepInstalled
|
# CleanMethod = KeepInstalled
|
||||||
Architecture = auto
|
Architecture = auto
|
||||||
|
|
||||||
|
# Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
|
||||||
#IgnorePkg =
|
#IgnorePkg =
|
||||||
# IgnoreGroup =
|
#IgnoreGroup =
|
||||||
# NoUpgrade =
|
|
||||||
# NoExtract =
|
#NoUpgrade =
|
||||||
# UseSyslog
|
#NoExtract =
|
||||||
|
|
||||||
|
# Misc options
|
||||||
|
#UseSyslog
|
||||||
Color
|
Color
|
||||||
ILoveCandy
|
ILoveCandy
|
||||||
# NoProgressBar
|
# NoProgressBar
|
||||||
CheckSpace
|
CheckSpace
|
||||||
VerbosePkgLists
|
VerbosePkgLists
|
||||||
ParallelDownloads = 8
|
ParallelDownloads = 8
|
||||||
SigLevel = Required DatabaseOptional
|
|
||||||
|
# By default, pacman accepts packages signed by keys that its local keyring
|
||||||
|
# trusts (see pacman-key and its man page), as well as unsigned packages.
|
||||||
|
SigLevel = Required DatabaseOptional
|
||||||
LocalFileSigLevel = Optional
|
LocalFileSigLevel = Optional
|
||||||
# RemoteFileSigLevel = Required
|
# RemoteFileSigLevel = Required
|
||||||
|
|
||||||
#[core]
|
# NOTE: You must run `pacman-key --init` before first using pacman; the local
|
||||||
#SigLevel = Never
|
# keyring can then be populated with the keys of all official Arch Linux
|
||||||
#Include = /etc/pacman.d/kaos-mirrorlist
|
# packagers with `pacman-key --populate archlinux`.
|
||||||
|
|
||||||
#[main]
|
#
|
||||||
#SigLevel = Never
|
# REPOSITORIES
|
||||||
#Include = /etc/pacman.d/kaos-mirrorlist
|
# - can be defined here or included from another file
|
||||||
|
# - pacman will search repositories in the order defined here
|
||||||
|
# - local/custom mirrors can be added here or in separate files
|
||||||
|
# - repositories listed first will take precedence when packages
|
||||||
|
# have identical names, regardless of version number
|
||||||
|
# - URLs will have $repo replaced by the name of the current repo
|
||||||
|
# - URLs will have $arch replaced by the name of the architecture
|
||||||
|
#
|
||||||
|
# Repository entries are of the format:
|
||||||
|
# [repo-name]
|
||||||
|
# Server = ServerName
|
||||||
|
# Include = IncludePath
|
||||||
|
#
|
||||||
|
# The header [repo-name] is crucial - it must be present and
|
||||||
|
# uncommented to enable the repo.
|
||||||
|
#
|
||||||
|
|
||||||
#[apps]
|
# [core]
|
||||||
#SigLevel = Never
|
# SigLevel = Never
|
||||||
#Include = /etc/pacman.d/kaos-mirrorlist
|
# Include = /etc/pacman.d/kaos-mirrorlist
|
||||||
|
|
||||||
|
# [main]
|
||||||
|
# SigLevel = Never
|
||||||
|
# Include = /etc/pacman.d/kaos-mirrorlist
|
||||||
|
|
||||||
|
# [apps]
|
||||||
|
# SigLevel = Never
|
||||||
|
# Include = /etc/pacman.d/kaos-mirrorlist
|
||||||
|
|
||||||
|
|
||||||
#[kde-unstable]
|
# [kde-unstable]
|
||||||
#Include = /etc/pacman.d/mirrorlist
|
# Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[melawy]
|
[melawy]
|
||||||
Include = /etc/pacman.d/melawy-linux-mirrorlist
|
Include = /etc/pacman.d/melawy-linux-mirrorlist
|
||||||
|
@ -61,6 +95,10 @@ Include = /etc/pacman.d/melawy-linux-mirrorlist
|
||||||
# SigLevel = Optional
|
# SigLevel = Optional
|
||||||
# Server = http://192.168.1.250/$repo/$arch
|
# Server = http://192.168.1.250/$repo/$arch
|
||||||
|
|
||||||
|
# The testing repositories are disabled by default. To enable, uncomment the
|
||||||
|
# repo name header and Include lines. You can add preferred servers immediately
|
||||||
|
# after the header, and they will be used before the default mirrors.
|
||||||
|
|
||||||
# [core-testing]
|
# [core-testing]
|
||||||
# Include = /etc/pacman.d/mirrorlist
|
# Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
|
@ -73,12 +111,21 @@ Include = /etc/pacman.d/mirrorlist
|
||||||
[extra]
|
[extra]
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
|
# If you want to run 32 bit applications on your x86_64 system,
|
||||||
|
# enable the multilib repositories as required here.
|
||||||
|
|
||||||
# [multilib-testing]
|
# [multilib-testing]
|
||||||
# Include = /etc/pacman.d/mirrorlist
|
# Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[multilib]
|
[multilib]
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
|
# An example of a custom package repository. See the pacman manpage for
|
||||||
|
# tips on creating your own repositories.
|
||||||
|
#[custom]
|
||||||
|
#SigLevel = Optional TrustAll
|
||||||
|
#Server = file:///home/custompkgs
|
||||||
|
|
||||||
[arcolinux_repo]
|
[arcolinux_repo]
|
||||||
Include = /etc/pacman.d/arcolinux-mirrorlist
|
Include = /etc/pacman.d/arcolinux-mirrorlist
|
||||||
|
|
||||||
|
|
|
@ -178,7 +178,7 @@ clonezilla
|
||||||
ddrescue
|
ddrescue
|
||||||
gpart
|
gpart
|
||||||
grsync
|
grsync
|
||||||
melawy-calamares
|
melawy-calamares-qt6
|
||||||
memtest86+
|
memtest86+
|
||||||
mkinitcpio-archiso
|
mkinitcpio-archiso
|
||||||
mkinitcpio-nfs-utils
|
mkinitcpio-nfs-utils
|
||||||
|
|
|
@ -43,6 +43,8 @@
|
||||||
- xf86-input-void
|
- xf86-input-void
|
||||||
- xf86-video-fbdev
|
- xf86-video-fbdev
|
||||||
- xf86-video-openchrome
|
- xf86-video-openchrome
|
||||||
|
- fwupd
|
||||||
|
- fwupd-efi
|
||||||
|
|
||||||
- name: "Virtual machines"
|
- name: "Virtual machines"
|
||||||
description: "Required if OS run in virtual environment"
|
description: "Required if OS run in virtual environment"
|
||||||
|
@ -329,6 +331,7 @@
|
||||||
- screen
|
- screen
|
||||||
- screenfetch
|
- screenfetch
|
||||||
- sed
|
- sed
|
||||||
|
- sshpass
|
||||||
- sudo
|
- sudo
|
||||||
- sysfsutils
|
- sysfsutils
|
||||||
- syslog-ng
|
- syslog-ng
|
||||||
|
@ -404,7 +407,7 @@
|
||||||
selected: true
|
selected: true
|
||||||
packages:
|
packages:
|
||||||
- appimagelauncher
|
- appimagelauncher
|
||||||
- discover
|
# - discover
|
||||||
- downgrade
|
- downgrade
|
||||||
- flatpak
|
- flatpak
|
||||||
- flatpak-kcm
|
- flatpak-kcm
|
||||||
|
@ -439,8 +442,10 @@
|
||||||
- ffmpegthumbnailer
|
- ffmpegthumbnailer
|
||||||
- ffmpegthumbs
|
- ffmpegthumbs
|
||||||
- file-roller
|
- file-roller
|
||||||
|
- filezilla
|
||||||
- glfw-wayland
|
- glfw-wayland
|
||||||
- gnome-keyring
|
- gnome-keyring
|
||||||
|
- gnome-firmware
|
||||||
- gparted
|
- gparted
|
||||||
- gst-libav
|
- gst-libav
|
||||||
- gst-plugin-pipewire
|
- gst-plugin-pipewire
|
||||||
|
@ -692,6 +697,7 @@
|
||||||
- kitty-terminfo
|
- kitty-terminfo
|
||||||
|
|
||||||
- name: "Office"
|
- name: "Office"
|
||||||
|
description: "Add the office applications"
|
||||||
hidden: false
|
hidden: false
|
||||||
expanded: false
|
expanded: false
|
||||||
selected: true
|
selected: true
|
||||||
|
|
|
@ -10,6 +10,8 @@ chaotic-mirrorlist
|
||||||
chwd
|
chwd
|
||||||
chwd-db
|
chwd-db
|
||||||
dracut
|
dracut
|
||||||
|
fwupd
|
||||||
|
fwupd-efi
|
||||||
gptfdisk
|
gptfdisk
|
||||||
iptables-nft
|
iptables-nft
|
||||||
linux-firmware
|
linux-firmware
|
||||||
|
@ -209,6 +211,7 @@ s-nail
|
||||||
screen
|
screen
|
||||||
screenfetch
|
screenfetch
|
||||||
sed
|
sed
|
||||||
|
sshpass
|
||||||
sudo
|
sudo
|
||||||
sysfsutils
|
sysfsutils
|
||||||
syslog-ng
|
syslog-ng
|
||||||
|
@ -275,7 +278,6 @@ xl2tpd
|
||||||
|
|
||||||
## Package management
|
## Package management
|
||||||
appimagelauncher
|
appimagelauncher
|
||||||
discover
|
|
||||||
downgrade
|
downgrade
|
||||||
flatpak
|
flatpak
|
||||||
flatpak-kcm
|
flatpak-kcm
|
||||||
|
@ -307,7 +309,9 @@ drkonqi
|
||||||
ffmpegthumbnailer
|
ffmpegthumbnailer
|
||||||
ffmpegthumbs
|
ffmpegthumbs
|
||||||
file-roller
|
file-roller
|
||||||
|
filezilla
|
||||||
glfw-wayland
|
glfw-wayland
|
||||||
|
gnome-firmware
|
||||||
gnome-keyring
|
gnome-keyring
|
||||||
gparted
|
gparted
|
||||||
gst-libav
|
gst-libav
|
||||||
|
@ -600,7 +604,7 @@ clonezilla
|
||||||
ddrescue
|
ddrescue
|
||||||
gpart
|
gpart
|
||||||
grsync
|
grsync
|
||||||
melawy-calamares
|
melawy-calamares-qt6
|
||||||
memtest86+
|
memtest86+
|
||||||
mkinitcpio-archiso
|
mkinitcpio-archiso
|
||||||
mkinitcpio-nfs-utils
|
mkinitcpio-nfs-utils
|
||||||
|
|
99
pacman.conf
99
pacman.conf
|
@ -1,99 +0,0 @@
|
||||||
# /etc/pacman.conf
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# See the pacman.conf(5) manpage for option and repository directives
|
|
||||||
#
|
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
||||||
|
|
||||||
#
|
|
||||||
# GENERAL OPTIONS
|
|
||||||
#
|
|
||||||
[options]
|
|
||||||
# RootDir = /
|
|
||||||
# DBPath = /var/lib/pacman/
|
|
||||||
# CacheDir = /var/cache/pacman/pkg/
|
|
||||||
# LogFile = /var/log/pacman.log
|
|
||||||
# GPGDir = /etc/pacman.d/gnupg/
|
|
||||||
# HookDir = /etc/pacman.d/hooks/
|
|
||||||
HoldPkg = base base-devel pacman glibc
|
|
||||||
# XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
|
|
||||||
# XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
|
|
||||||
# CleanMethod = KeepInstalled
|
|
||||||
Architecture = auto
|
|
||||||
#IgnorePkg =
|
|
||||||
# IgnoreGroup =
|
|
||||||
# NoUpgrade =
|
|
||||||
# NoExtract =
|
|
||||||
# UseSyslog
|
|
||||||
Color
|
|
||||||
ILoveCandy
|
|
||||||
# NoProgressBar
|
|
||||||
CheckSpace
|
|
||||||
VerbosePkgLists
|
|
||||||
ParallelDownloads = 8
|
|
||||||
SigLevel = Required DatabaseOptional
|
|
||||||
LocalFileSigLevel = Optional
|
|
||||||
# RemoteFileSigLevel = Required
|
|
||||||
|
|
||||||
#[core]
|
|
||||||
#SigLevel = Never
|
|
||||||
#Include = /etc/pacman.d/kaos-mirrorlist
|
|
||||||
|
|
||||||
#[main]
|
|
||||||
#SigLevel = Never
|
|
||||||
#Include = /etc/pacman.d/kaos-mirrorlist
|
|
||||||
|
|
||||||
#[apps]
|
|
||||||
#SigLevel = Never
|
|
||||||
#Include = /etc/pacman.d/kaos-mirrorlist
|
|
||||||
|
|
||||||
|
|
||||||
#[kde-unstable]
|
|
||||||
#Include = /etc/pacman.d/mirrorlist
|
|
||||||
|
|
||||||
[melawy]
|
|
||||||
Include = /etc/pacman.d/melawy-linux-mirrorlist
|
|
||||||
|
|
||||||
[melawy-3party]
|
|
||||||
Include = /etc/pacman.d/melawy-linux-mirrorlist
|
|
||||||
|
|
||||||
[cache]
|
|
||||||
SigLevel = Optional
|
|
||||||
Server = http://192.168.1.250/$repo/$arch
|
|
||||||
|
|
||||||
# [core-testing]
|
|
||||||
# Include = /etc/pacman.d/mirrorlist
|
|
||||||
|
|
||||||
[core]
|
|
||||||
Include = /etc/pacman.d/mirrorlist
|
|
||||||
|
|
||||||
# [extra-testing]
|
|
||||||
# Include = /etc/pacman.d/mirrorlist
|
|
||||||
|
|
||||||
[extra]
|
|
||||||
Include = /etc/pacman.d/mirrorlist
|
|
||||||
|
|
||||||
# [multilib-testing]
|
|
||||||
# Include = /etc/pacman.d/mirrorlist
|
|
||||||
|
|
||||||
[multilib]
|
|
||||||
Include = /etc/pacman.d/mirrorlist
|
|
||||||
|
|
||||||
[arcolinux_repo]
|
|
||||||
Include = /etc/pacman.d/arcolinux-mirrorlist
|
|
||||||
|
|
||||||
[arcolinux_repo_xlarge]
|
|
||||||
Include = /etc/pacman.d/arcolinux-mirrorlist
|
|
||||||
|
|
||||||
[arcolinux_repo_3party]
|
|
||||||
Include = /etc/pacman.d/arcolinux-mirrorlist
|
|
||||||
|
|
||||||
[garuda]
|
|
||||||
Include = /etc/pacman.d/chaotic-mirrorlist
|
|
||||||
|
|
||||||
[chaotic-aur]
|
|
||||||
Include = /etc/pacman.d/chaotic-mirrorlist
|
|
||||||
|
|
||||||
# [custom]
|
|
||||||
# SigLevel = Optional TrustAll
|
|
||||||
# Server = file:///home/custompkgs
|
|
|
@ -1,26 +1,27 @@
|
||||||
#
|
#
|
||||||
# /etc/pacman.conf
|
# /etc/pacman.conf
|
||||||
#
|
#
|
||||||
|
#
|
||||||
# See the pacman.conf(5) manpage for option and repository directives
|
# See the pacman.conf(5) manpage for option and repository directives
|
||||||
#
|
#
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
#
|
#
|
||||||
# GENERAL OPTIONS
|
# GENERAL OPTIONS
|
||||||
#
|
#
|
||||||
[options]
|
[options]
|
||||||
# The following paths are commented out with their default values listed.
|
# The following paths are commented out with their default values listed.
|
||||||
# If you wish to use different paths, uncomment and update the paths.
|
# If you wish to use different paths, uncomment and update the paths.
|
||||||
#RootDir = /
|
# RootDir = /
|
||||||
#DBPath = /var/lib/pacman/
|
# DBPath = /var/lib/pacman/
|
||||||
#CacheDir = /var/cache/pacman/pkg/
|
# CacheDir = /var/cache/pacman/pkg/
|
||||||
#LogFile = /var/log/pacman.log
|
# LogFile = /var/log/pacman.log
|
||||||
#GPGDir = /etc/pacman.d/gnupg/
|
# GPGDir = /etc/pacman.d/gnupg/
|
||||||
#HookDir = /etc/pacman.d/hooks/
|
# HookDir = /etc/pacman.d/hooks/
|
||||||
HoldPkg = base base-devel pacman glibc
|
HoldPkg = base base-devel pacman glibc
|
||||||
#XferCommand = /usr/bin/curl -L -C - -f -o %o %u
|
# XferCommand = /usr/bin/curl -L -C - -f -o %o %u
|
||||||
#XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
|
# XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
|
||||||
#CleanMethod = KeepInstalled
|
# CleanMethod = KeepInstalled
|
||||||
Architecture = auto
|
Architecture = auto
|
||||||
|
|
||||||
# Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
|
# Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
|
||||||
|
@ -34,8 +35,8 @@ Architecture = auto
|
||||||
#UseSyslog
|
#UseSyslog
|
||||||
Color
|
Color
|
||||||
ILoveCandy
|
ILoveCandy
|
||||||
#NoProgressBar
|
# NoProgressBar
|
||||||
#CheckSpace
|
CheckSpace
|
||||||
VerbosePkgLists
|
VerbosePkgLists
|
||||||
ParallelDownloads = 8
|
ParallelDownloads = 8
|
||||||
|
|
||||||
|
@ -43,7 +44,7 @@ ParallelDownloads = 8
|
||||||
# trusts (see pacman-key and its man page), as well as unsigned packages.
|
# trusts (see pacman-key and its man page), as well as unsigned packages.
|
||||||
SigLevel = Required DatabaseOptional
|
SigLevel = Required DatabaseOptional
|
||||||
LocalFileSigLevel = Optional
|
LocalFileSigLevel = Optional
|
||||||
#RemoteFileSigLevel = Required
|
# RemoteFileSigLevel = Required
|
||||||
|
|
||||||
# NOTE: You must run `pacman-key --init` before first using pacman; the local
|
# NOTE: You must run `pacman-key --init` before first using pacman; the local
|
||||||
# keyring can then be populated with the keys of all official Arch Linux
|
# keyring can then be populated with the keys of all official Arch Linux
|
||||||
|
@ -68,6 +69,22 @@ LocalFileSigLevel = Optional
|
||||||
# uncommented to enable the repo.
|
# uncommented to enable the repo.
|
||||||
#
|
#
|
||||||
|
|
||||||
|
# [core]
|
||||||
|
# SigLevel = Never
|
||||||
|
# Include = /etc/pacman.d/kaos-mirrorlist
|
||||||
|
|
||||||
|
# [main]
|
||||||
|
# SigLevel = Never
|
||||||
|
# Include = /etc/pacman.d/kaos-mirrorlist
|
||||||
|
|
||||||
|
# [apps]
|
||||||
|
# SigLevel = Never
|
||||||
|
# Include = /etc/pacman.d/kaos-mirrorlist
|
||||||
|
|
||||||
|
|
||||||
|
# [kde-unstable]
|
||||||
|
# Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[melawy]
|
[melawy]
|
||||||
Include = /etc/pacman.d/melawy-linux-mirrorlist
|
Include = /etc/pacman.d/melawy-linux-mirrorlist
|
||||||
|
|
||||||
|
@ -78,14 +95,14 @@ Include = /etc/pacman.d/melawy-linux-mirrorlist
|
||||||
# repo name header and Include lines. You can add preferred servers immediately
|
# repo name header and Include lines. You can add preferred servers immediately
|
||||||
# after the header, and they will be used before the default mirrors.
|
# after the header, and they will be used before the default mirrors.
|
||||||
|
|
||||||
#[core-testing]
|
# [core-testing]
|
||||||
#Include = /etc/pacman.d/mirrorlist
|
# Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[core]
|
[core]
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
#[extra-testing]
|
# [extra-testing]
|
||||||
#Include = /etc/pacman.d/mirrorlist
|
# Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[extra]
|
[extra]
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
@ -93,8 +110,8 @@ Include = /etc/pacman.d/mirrorlist
|
||||||
# If you want to run 32 bit applications on your x86_64 system,
|
# If you want to run 32 bit applications on your x86_64 system,
|
||||||
# enable the multilib repositories as required here.
|
# enable the multilib repositories as required here.
|
||||||
|
|
||||||
#[multilib-testing]
|
# [multilib-testing]
|
||||||
#Include = /etc/pacman.d/mirrorlist
|
# Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
[multilib]
|
[multilib]
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
@ -114,42 +131,50 @@ Include = /etc/pacman.d/arcolinux-mirrorlist
|
||||||
[arcolinux_repo_3party]
|
[arcolinux_repo_3party]
|
||||||
Include = /etc/pacman.d/arcolinux-mirrorlist
|
Include = /etc/pacman.d/arcolinux-mirrorlist
|
||||||
|
|
||||||
[xhbp]
|
|
||||||
SigLevel = Optional TrustAll
|
|
||||||
Server = https://repos.xerolinux.xyz/$repo/$arch
|
|
||||||
|
|
||||||
[xiso]
|
|
||||||
SigLevel = Optional TrustAll
|
|
||||||
Server = https://repos.xerolinux.xyz/$repo/$arch
|
|
||||||
|
|
||||||
[xerolinux_repo]
|
|
||||||
SigLevel = Optional TrustAll
|
|
||||||
Server = https://xerolinux.github.io/$repo/$arch
|
|
||||||
|
|
||||||
[xerolinux_repo_xl]
|
|
||||||
SigLevel = Optional TrustAll
|
|
||||||
Server = https://repos.xerolinux.xyz/$repo/$arch
|
|
||||||
|
|
||||||
[cachyos]
|
|
||||||
Include = /etc/pacman.d/cachyos-mirrorlist
|
|
||||||
|
|
||||||
[garuda]
|
[garuda]
|
||||||
Include = /etc/pacman.d/chaotic-mirrorlist
|
Include = /etc/pacman.d/chaotic-mirrorlist
|
||||||
|
|
||||||
[chaotic-aur]
|
[chaotic-aur]
|
||||||
Include = /etc/pacman.d/chaotic-mirrorlist
|
Include = /etc/pacman.d/chaotic-mirrorlist
|
||||||
|
|
||||||
|
# [xhbp]
|
||||||
|
# SigLevel = Optional TrustAll
|
||||||
|
# Server = https://xerolinux.github.io/$repo/$arch
|
||||||
|
#
|
||||||
|
# [xiso]
|
||||||
|
# SigLevel = Optional TrustAll
|
||||||
|
# Server = https://xerolinux.github.io/$repo/$arch
|
||||||
|
|
||||||
|
[xerolinux_repo]
|
||||||
|
SigLevel = Optional TrustAll
|
||||||
|
Include = /etc/pacman.d/xero-mirrorlist
|
||||||
|
|
||||||
|
[xerolinux_repo_xl]
|
||||||
|
SigLevel = Optional TrustAll
|
||||||
|
Include = /etc/pacman.d/xero-mirrorlist
|
||||||
|
|
||||||
|
[cachyos]
|
||||||
|
Include = /etc/pacman.d/cachyos-mirrorlist
|
||||||
|
|
||||||
[endeavouros]
|
[endeavouros]
|
||||||
Include = /etc/pacman.d/endeavouros-mirrorlist
|
Include = /etc/pacman.d/endeavouros-mirrorlist
|
||||||
|
|
||||||
[melawy-aur]
|
# [melawy-aur]
|
||||||
Include = /etc/pacman.d/melawy-linux-mirrorlist
|
# Include = /etc/pacman.d/melawy-linux-mirrorlist
|
||||||
|
|
||||||
[melawy-aur-kde]
|
# [melawy-aur-kde]
|
||||||
Include = /etc/pacman.d/melawy-linux-mirrorlist
|
# Include = /etc/pacman.d/melawy-linux-mirrorlist
|
||||||
|
|
||||||
[melawy-aur-theme]
|
# [melawy-aur-theme]
|
||||||
Include = /etc/pacman.d/melawy-linux-mirrorlist
|
# Include = /etc/pacman.d/melawy-linux-mirrorlist
|
||||||
|
|
||||||
[melawy-aur-gui-app]
|
# [melawy-aur-gui-app]
|
||||||
Include = /etc/pacman.d/melawy-linux-mirrorlist
|
# Include = /etc/pacman.d/melawy-linux-mirrorlist
|
||||||
|
|
||||||
|
# [cache]
|
||||||
|
# SigLevel = Optional
|
||||||
|
# Server = https://repo.melawy.ru/$repo/$arch
|
||||||
|
|
||||||
|
# [custom]
|
||||||
|
# SigLevel = Optional TrustAll
|
||||||
|
# Server = file:///home/custompkgs
|
Loading…
Reference in New Issue