Skip to main content

Rawhide + KDE Plasma/Gear/Builder Stack Git!

 

There used to be a "Kinoite-nightly" image at https://gitlab.com/fedora/ostree/ci-test/-/pipelines that combined Kinoite Rawhide and KDE Git versions of Plasma and Gear based on COPR repos maintained by solopasha.  However those COPR repos had not been updated in months and so the "nightly" version stopped being produced.

Recently KDE developer silverhadch produced a nightly build of KDE Git versions of Plasma, Gear and a full developer stack based on Universal Blue's base image (no small amount of work to make that happen!).  You can find it at https://github.com/silverhadch/ublue-kde-dx.  Universal Blue takes its time to adopt new Fedora versions.  So it makes a perfect choice for users looking for the latest KDE on a thoughtful base image.

My preference, however is to use a Rawhide base (bleeding edge + bleeding edge!).  I also prefer a "stock" Fedora base without the choices made by Universal Blue (i.e., Bazaar vs. Discover). So I forked silverhadch's repo and changed the base to the Rawhide version of Fedora's base at https://github.com/whelanh/fedora-kde-git.  I also added some additional packages useful to me onto the produced image.  It is set to run nightly.

To "install" either silverhadch's or my versions, you will need to install a Universal Blue or Fedora atomic version first.  Then follow the instructions to re-base to the nightly versions above.

If you rebase to my image but miss the "ujust" recipes provided on the Universal Blue base, I've created a repo with set-up instructions on how to emulate Universal Blue's just file recipe set up at https://github.com/whelanh/justfile-recipes

Comments

Popular posts from this blog

Install Windows 11 on Virt-Manager

 Virt-Manager will have been installed in base install.  But to enable it (make sure SVM, or whatever virtualization is called in your BIOS is enabled). From https://computingforgeeks.com/install-kvm-qemu-virt-manager-arch-manjar/ sudo pacman -S qemu-full virt-manager virt-viewer dnsmasq vde2 bridge-utils openbsd-netcat dmidecode ip tables libguestfs edk2-ovmf swtpm Then enable and start libritd.service sudo systemctl enable libvirtd.service sudo systemctl start libvirtd.service sudo micro /etc/libvirt/libvirtd.conf Set the UNIX domain socket group ownership to libvirt, (around line 85 ) unix_sock_group = "libvirt" Set the UNIX socket permissions for the R/W socket (around line 102 ) unix_sock_rw_perms = "0770" Add your user account to libvirt group.   sudo usermod -a -G libvirt $(whoami) newgrp libvirt Restart libvirt daemon. sudo systemctl restart libvirtd.service Section below is quoted directly from https://linustechtips.com/topic/1379063-windows-11-in-virt-mana...

Getting rtcwake working on Bluefin

#!/bin/bash # User systemd setup for auto suspend/wake on Bluefin #Please run these two commands manually: #1. First, create the sudo rule: echo "$( whoami ) ALL=(ALL) NOPASSWD: /usr/bin/rtcwake" | sudo tee /etc/sudoers.d/rtcwake-nopasswd #bash #2. Then set the correct permissions: sudo chmod 440 /etc/sudoers.d/rtcwake-nopasswd #bash #After you've run those commands, we can test if passwordless sudo works: sudo rtcwake -m show #❯ sudo rtcwake -m show #alarm: off # Create user service directory mkdir -p ~/.config/systemd/user # Create helper script for suspend + rtcwake mkdir -p ~/bin cat > ~/bin/rtc-suspend.sh << 'EOF' #!/bin/bash # Helper script to suspend and set RTC wake time # Usage: rtc-suspend.sh "wake_time_description" if [ $# -ne 1 ]; then echo "Usage: $0 'wake_time_description'" echo "Example: $0 '15:00 today'" exit 1 fi wake_time="$1" wake_timestamp=$(date -d ...

KDE's Own Distro

For installation details see the Installation section https://community.kde.org/KDE_Linux#Installation  and  https://kde.org/linux/install/ Install homebrew: (do oh-my-zsh and powerlevel10k first so .zshrc modification by brew survives) /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" Install distrobox:    curl -s https://raw.githubusercontent.com/89luca89/distrobox/main/install | sh -s -- --prefix ~/.local echo 'export PATH="$PATH:~/.local/bin"' >> ~/.bashrc echo 'export PATH="$PATH:~/.local/bin"' >> ~/.zshrc OneDrive:  brew install onedrive # type onedrive to register/connect with your MSft OneDrive account  brew services start onedrive-cli onedrive --force --skip-dot-files --skip-dir venv --sync    NOW ON MY Kinoite IMAGE, so just initiate normally and then: mkdir -p ~/.config/systemd/user/onedrive.service.d cat > ~/.config/systemd/user/onedrive.service.d/override.conf <...