-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sh
More file actions
executable file
·32 lines (24 loc) · 1006 Bytes
/
Copy pathbuild.sh
File metadata and controls
executable file
·32 lines (24 loc) · 1006 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/bin/bash
set -ouex pipefail
### Install packages
#sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
# Packages can be installed from any enabled yum repo on the image.
# RPMfusion repos are available by default in ublue main images
# List of rpmfusion packages can be found here:
# https://mirrors.rpmfusion.org/mirrorlist?path=free/fedora/updates/39/x86_64/repoview/index.html&protocol=https&redirect=1
# this installs a package from fedora repos
dnf5 install -y mpv \
virt-manager \
virt-viewer
# Use a COPR Example:
#
# dnf5 -y copr enable ublue-os/staging
# dnf5 -y install package
# Disable COPRs so they don't end up enabled on the final image:
# dnf5 -y copr disable ublue-os/staging
#Trying cachy
#dnf5 -y copr enable bieszczaders/kernel-cachyos
#dnf5 install -y kernel-cachyos kernel-cachyos-devel-matched
#dnf5 -y copr disable bieszczaders/kernel-cachyos
#### Example for enabling a System Unit File
systemctl enable podman.socket