Posts

fedora install from container tarball

  https://mirrormanager.fedoraproject.org/ https://mirrors.tuna.tsinghua.edu.cn/fedora/releases/41/ https://mirrors.tuna.tsinghua.edu.cn/fedora/releases/41/Container/x86_64/images/Fedora-Container-Base-Generic-Minimal-41-1.4.x86_64.oci.tar.xz tar xf Fedora-Container-Base-Generic-Minimal-41-1.4.x86_64.oci.tar.xz tar tvf Fedora-Container-Base-Generic-Minimal-41-1.4.x86_64.oci.tar.xz drwxr-xr-x 0/0 0 2024-10-24 20:31 blobs/ drwxr-xr-x 0/0 0 2024-10-24 20:31 blobs/sha256/ -rw-r--r-- 0/0 504 2024-10-24 20:31 blobs/sha256/28e20d822db81517f4fbb67292bf23e1b17131d8b51605c262a02b9b898b24a4 -rw-r--r-- 0/0 50701616 2024-10-24 20:31 blobs/sha256/32b07b9a22d03d120489b279e0d0764e2945a00b566e1de536fb232e718c4dc4 -rw-r--r-- 0/0 858 2024-10-24 20:31 blobs/sha256/856c6718e99185c1e9d7d1ff9eac557283e0e49ecbfe362adfc5efa958550368 -rw-r--r-- 0/0 258 2024-10-24 20:31 index.json -rw-r--r-- 0/0 30 2024-10-24 20:31 oci-l...

github workflow

GITHUB WORKFLOW  KEYS on: events that will trigger the workflow.  This event will only trigger a workflow run if the workflow file exists on the default branch. https://docs.github.com/en/webhooks/webhook-events-and-payloads Webhook event payload : types workflow_dispatch : manual run push repository_dispatch branch_protection_rule : [created,edited, deleted], GITHUB_SHA(last commit) ,GITHUB_REF(default branch) check_run : [created,rerequested,completed,requested_action] check_suite : [completed]  create,delete, Runs your workflow when someone creates a Git reference (Git branch or tag) in the workflow's repository  deployment deployment_status discussion fork gollum : wiki page edits  issue_comment,label : [created,edited, deleted] issues : [opened  edited  deleted  transferred  pinned unpinned  closed  reopened assigned unassigned  labeled  unlabeled  locked  unlocked milestoned demilestoned  typed  ...

download in colab to drive

from google.colab import drive drive.mount('/content/drive') here: COOKIE="your_cookie_here" USER_AGENT="your_user_agent_here" REFERER="your_referer_here" URL="your_download_url_here" OUTPUT_PATH="/content/filename" # Use the placeholders in the wget command wget --header="Cookie: $COOKIE" \      --header="User-Agent: $USER_AGENT" \      --header="Referer: $REFERER" \      --max-redirect=10 --trust-server-names -O $OUTPUT_PATH "$URL" eg:  USER_AGENT="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36" or  >> console . log ( navigator . userAgent ); Mozilla/5.0 (X11; Linux x86_64; rv:136.0) Gecko/20100101 Firefox/136.0   REFERER="https://www.google.com" get coookie form browser in dev console document.cookie direct link from  pausing download    for ubuntu iso into drive !wget -O /content/drive/MyDri...

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...