Heus
Heus
BBlueBuild
Created by Heus on 12/23/2024 in #questions
[F41] misconfigured dbus or freedesktop
11 replies
BBlueBuild
Created by Heus on 12/23/2024 in #questions
[F41] misconfigured dbus or freedesktop
11 replies
BBlueBuild
Created by Heus on 12/23/2024 in #questions
[F41] misconfigured dbus or freedesktop
maybe my sddm is configured wrong
11 replies
BBlueBuild
Created by Heus on 12/23/2024 in #questions
[F41] misconfigured dbus or freedesktop
I have an idea of ​​what might be causing the error, I just tested the apps that were giving errors on tty3 and the errors disappeared
11 replies
BBlueBuild
Created by Heus on 12/26/2024 in #questions
error installing nvidia akmods
it didn't work
18 replies
BBlueBuild
Created by Heus on 12/26/2024 in #questions
error installing nvidia akmods
18 replies
BBlueBuild
Created by Heus on 12/26/2024 in #questions
error installing nvidia akmods
18 replies
BBlueBuild
Created by Heus on 12/26/2024 in #questions
error installing nvidia akmods
like this?
type: akmods
base: main # if not specified, classic "main" base is used by default
install:
- nvidia: true
type: akmods
base: main # if not specified, classic "main" base is used by default
install:
- nvidia: true
18 replies
BBlueBuild
Created by Heus on 12/23/2024 in #questions
[F41] misconfigured dbus or freedesktop
to see if it resolves any broken packages or files
11 replies
BBlueBuild
Created by Heus on 12/23/2024 in #questions
[F41] misconfigured dbus or freedesktop
I'm thinking of rebasing to silverblue and then rebasing to my image again
11 replies
BBlueBuild
Created by Heus on 12/23/2024 in #questions
[F41] misconfigured dbus or freedesktop
I didn't test the other recipes, I use the dx version more, but the problem appeared recently after updating to Fedora 41
11 replies
BBlueBuild
Created by tn on 12/4/2024 in #questions
Fonts module no longer working
thanks for the help
12 replies
BBlueBuild
Created by tn on 12/4/2024 in #questions
Fonts module no longer working
No description
12 replies
BBlueBuild
Created by tn on 12/4/2024 in #questions
Fonts module no longer working
12 replies
BBlueBuild
Created by Heus on 12/15/2024 in #questions
"is not valid under any of the schemas listed in the 'anyOf' " error
I solved it by putting "[ ]" where there is an empty list
8 replies
BBlueBuild
Created by Heus on 12/15/2024 in #questions
"is not valid under any of the schemas listed in the 'anyOf' " error
can i do this in the containerfile module? use the os_version variable instead of the number
- type: containerfile
snippets:
- COPY --from=ghcr.io/ublue-os/akmods:main-%OS_VERSION% /rpms /tmp/rpms
- type: containerfile
snippets:
- COPY --from=ghcr.io/ublue-os/akmods:main-%OS_VERSION% /rpms /tmp/rpms
8 replies
BBlueBuild
Created by Heus on 12/15/2024 in #questions
"is not valid under any of the schemas listed in the 'anyOf' " error
No description
8 replies
BBlueBuild
Created by Heus on 10/14/2024 in #questions
Can I download the material symbols using the font module?
Yes, it is possible to download
5 replies
BBlueBuild
Created by Yokai on 9/3/2024 in #questions
Virt Manager: Failed to connect socket to '/var/run/libvirt/virtnetworkd-sock'
Have you tried enabling virt-manager services?
systemctl enable virtnetworkd.socket virtstoraged.socket virtnodedevd.socket

systemctl start --now virtnetworkd.socket virtstoraged.socket virtnodedevd.socket
systemctl enable virtnetworkd.socket virtstoraged.socket virtnodedevd.socket

systemctl start --now virtnetworkd.socket virtstoraged.socket virtnodedevd.socket
8 replies
BBlueBuild
Created by Heus on 9/2/2024 in #questions
Questions about firstboot scripts
# Check if the script has already run
if [[ ! -f "$FIRSTBOOT_FILE" ]]; then
echo "First boot detected. Running setup script..."
run_modules

# Create the file to indicate that the script has run
touch "$FIRSTBOOT_FILE"

# Generate and store the hash in the firstboot file
generate_hash

# Disable the systemd service after successful execution
echo "Disabling firstboot systemd service..."
sudo systemctl disable firstboot.service

else
echo "First boot script has already run. Nothing to do."
fi
# Check if the script has already run
if [[ ! -f "$FIRSTBOOT_FILE" ]]; then
echo "First boot detected. Running setup script..."
run_modules

# Create the file to indicate that the script has run
touch "$FIRSTBOOT_FILE"

# Generate and store the hash in the firstboot file
generate_hash

# Disable the systemd service after successful execution
echo "Disabling firstboot systemd service..."
sudo systemctl disable firstboot.service

else
echo "First boot script has already run. Nothing to do."
fi
9 replies