Posts

debian to lmde

 deb [trusted=yes] http://packages.linuxmint.com faye main upstream import backport  http://packages.linuxmint.com/ main upstream import backport  http://packages.linuxmint.com/search.php?release=faye&section=any&keyword=   http://packages.linuxmint.com/pool/main/l/linuxmint-keyring/    http://packages.linuxmint.com/pool/main/l/linuxmint-keyring/linuxmint-keyring_2022.06.21_all.deb lmde has only cinamon as of lmde 6  lmde5=elsie lmde6=faye cinnamon is in backport  https://github.com/linuxmint        

clean git

git checkout --orphan new_branch git add . git commit -m "clean" git branch -D main git branch -m main git push -f origin main

void linux busybox test

xbps-query -m  base-files-0.144_1 runit-void-20231124_6 shadow-4.8.1_3 xbps-0.59.2_3 wget https://repo-default.voidlinux.org/static/xbps-static-latest.x86_64-musl.tar.xz tar xf xbps-static-latest.x86_64-musl.tar.xz   sudo mount /dev/nvme0n1p4 /mnt mkdir -p /mnt/var/db/xbps/keys cp var/db/xbps/keys/* /mnt/var/db/xbps/keys/ export XBPS_ARCH=x86_64    #coz we are using musl xbps   # if cert error #export SSL_NO_VERIFY_PEER=true      sudo  ./usr/bin/xbps-install -S -r /mnt -R "https://repo-default.voidlinux.org/current" base-files runit-void shadow xbps    https://www.busybox.net/downloads/binaries/ https://www.busybox.net/   doesnt have latest binary   https://archlinux.org/packages/extra/x86_64/busybox/download/   busybox --install -s  without coreutils xbps postinstall script wont work for some apps so run xbps-reconfigure -fa     list of wayland compositor in void https://voidlinux.org/package...

waydroid

  sudo apt install curl ca-certificates -y curl -s https://repo.waydro.id | sudo bash sudo apt install waydroid -y   sudo waydroid init Downloading   https://sourceforge.net/projects/waydroid/files/images/system/lineage/waydroid_x86_64/lineage-18.1-20250118-VANILLA-waydroid_x86_64-system.zip/download  788.9 MB   https://sourceforge.net/projects/waydroid/files/images/vendor/waydroid_x86_64/lineage-18.1-20250118-MAINLINE-waydroid_x86_64-vendor.zip/download   187.11 MB sudo waydroid container start  waydroid show-full-ui   https://f-droid.org/repo/com.aurora.store_65.apk   https://web.archive.org/web/20230928212250/https://f-droid.org/repo/com.aurora.store_47.apk   https://gitlab.com/AuroraOSS/AuroraStore/-/releases https://auroraoss.com/AuroraStore/Stable/AuroraStore_4.2.5.apk   waydroid app install com.aurora.store_47.apk      waydroid session stop sudo waydroid container stop sudo apt auto r...

debian dbus-broker and dbus switch

broker to dbus   sudo systemctl disable dbus.service or  sudo rm /etc/systemd/system/dbus.service    sudo ln -s /usr/lib/systemd/system/dbus.socket /etc/systemd/system/sockets.target.wants/ sudo apt autoremove dbus dbus to broker  sudo ln -s /usr/lib/systemd/system/dbus-broker.service /etc/systemd/system/dbus.service  sudo ln -s /usr/lib/systemd/system/dbus.socket /etc/systemd/system/sockets.target.wants/

kde on debian

https://wiki.debian.org/KDE sudo apt install   xserver-xorg-input-libinput xserver-xorg-video-intel  sudo apt install plasma-desktop plasma-workspace-wayland  sddm  issue  file:///usr/share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/Kickoff.qml:157:34: Type FullRepresentat ion unavailable file:///usr/share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/FullRepresentation.qml:80:22: Type Norma lPage unavailable file:///usr/share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/NormalPage.qml:43:13: Type Footer unavai lable file:///usr/share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/Footer.qml:155:5: Type LeaveButtons unav ailable file:///usr/share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/LeaveButtons.qml:14:1: module "org.kde.k itemmodels" is not installed # upower , it is installed by powerdevil though sudo apt install kde-config-gtk-style  kde-config-gtk-style-preview   breeze-gtk-theme  sudo apt i...

chimer linux install

  https://repo.chimera-linux.org/ https://chimera-linux.org/docs/installation   https://repo.chimera-linux.org/live/latest/   https://repo.chimera-linux.org/live/latest/chimera-linux-x86_64-ROOTFS-20241204-full.tar.gz https://repo.chimera-linux.org/live/latest/chimera-linux-x86_64-ROOTFS-20241204-bootstrap.tar.gz   sudo mkfs.ext4 /dev/sda4   wget https://repo.chimera-linux.org/live/latest/chimera-linux-x86_64-ROOTFS-20241204-bootstrap.tar.gz sudo tar xvpf chimera-linux-x86_64-ROOTFS-20241204-bootstrap.tar.gz -C /mnt/    echo "nameserver 1.1.1.1" > /etc/resolv.conf apk update fetch https://repo.chimera-linux.org/current/main/x86_64/APKINDEX.tar.gz [https://repo.chimera-linux.org/current/main] OK: 9900 distinct packages available   cat /etc/apk/world base-bootstrap apk list base-*   list of bases base-bootstrap already installed  apk info -R base-bootstrap base-bootstrap-0.1-r1 depends on: apk-tools chimera-repo-main chimerautil...