{"id":28915865,"url":"https://github.com/a-catgirl-dev/linux-catgirl-edition","last_synced_at":"2026-01-30T19:10:48.999Z","repository":{"id":289579056,"uuid":"969836578","full_name":"a-catgirl-dev/linux-catgirl-edition","owner":"a-catgirl-dev","description":"Striving to offer the best possible Linux experience. No holding back.","archived":false,"fork":false,"pushed_at":"2026-01-18T16:15:22.000Z","size":308,"stargazers_count":6,"open_issues_count":1,"forks_count":3,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-18T23:57:02.410Z","etag":null,"topics":["cachyos","catgirl","fast","linux","linux-kernel"],"latest_commit_sha":null,"homepage":"https://a-catgirl.dev","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/a-catgirl-dev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-04-21T02:37:11.000Z","updated_at":"2026-01-10T12:37:21.000Z","dependencies_parsed_at":"2025-04-24T02:22:38.412Z","dependency_job_id":"f701fbae-c906-4665-9af9-5dd8eaf3c7bb","html_url":"https://github.com/a-catgirl-dev/linux-catgirl-edition","commit_stats":null,"previous_names":["pparaxan/linux-catgirl-edition","a-catgirl-dev/linux-catgirl-edition"],"tags_count":39,"template":false,"template_full_name":null,"purl":"pkg:github/a-catgirl-dev/linux-catgirl-edition","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a-catgirl-dev%2Flinux-catgirl-edition","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a-catgirl-dev%2Flinux-catgirl-edition/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a-catgirl-dev%2Flinux-catgirl-edition/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a-catgirl-dev%2Flinux-catgirl-edition/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/a-catgirl-dev","download_url":"https://codeload.github.com/a-catgirl-dev/linux-catgirl-edition/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a-catgirl-dev%2Flinux-catgirl-edition/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28917492,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-30T16:37:38.804Z","status":"ssl_error","status_checked_at":"2026-01-30T16:37:37.878Z","response_time":66,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cachyos","catgirl","fast","linux","linux-kernel"],"created_at":"2025-06-21T23:06:29.404Z","updated_at":"2026-01-30T19:10:48.957Z","avatar_url":"https://github.com/a-catgirl-dev.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# The Linux Catgirl Edition kernel\n\nA custom Linux build system forked from the work by [CachyOS](https://github.com/cachyos/linux-cachyos), aiming to provide the foundation for compiling highly scalable Linux systems.\n\nTo achieve this goal, we provide the option to disable certain Linux kernel features and pull in certain patches.\n\n\u003c!-- This kernel is able to allocate several gigabytes over its physical memory and swap it into zram, whereas mainline would livelock immediately. --\u003e\n\u003c!-- TODO: show more cases or disprove the above --\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003eList of optimizations\u003c/summary\u003e\n\nNote that the precompiled binaries and PKGBUILD do not enable all of these by default. This list is non-exhaustive.\n\nReview the `PKGBUILD` file to see the tradeoff(s) (if any) in more detail.\n\n## perf:\n\n- Use Guess unwinder by default (Has zero overhead as opposed to ORC/frame pointer)\n- Fine grained kernel tickrates (default: 1000Hz)\n- Remove paravirtualized layer\n- Google's [TCP BBRv3 congestion protocol](https://github.com/google/bbr/tree/v3)\n- Disable memory zero-init (dangerous, but is ~1% faster :rocket:)\n- Disable stack zero-init (also dangerous, but is faster :rocket:)\n- No structure corruption checking (disabled in upstream but arch kernel enables)\n- `-march=native` (or similar) optimization to guide the compiler to optimize better w.r.t. cache sizes\n- CachyOS kernel patches\n- Choose between BORE, EEVDF, or BMQ schedulers (and also real-time)\n- `-O3` optimization (!)\n- Fine grained preemption control (rt, full, lazy, voluntary, none)\n- No module unloading\n- `modify_ldt(2)` removed for lower context switch latency\n\n## size:\n\n- Remove BUG()\n- Remove coredump support\n- Remove tracing (profiling) infrastructure\n- Remove module decompression in kernel\n- Remove 16/32 bit app support\n\n## size \u0026 perf:\n\n- Clang [Thin]LTO;\n- No printk() support. This reduces kernel size (no more strings) and reduces overhead where `printk()` calls are plenty (eg during boot, resume);\n- Remove scheduler debugging;\n- Trim unused headers to help LTO and optimization if headers are disabled\n\n... aaaand much more that you can still set yourself in `make nconfig` (in which case, submit a PR!)\n\n[^1]: source: i made it up.\n\n\u003c/details\u003e\n\n## What does linux-catgirl-edition not do?\n\nlinux-catgirl-edition avoids doing tweaks that can be easier set during runtime instead of compile time. that means sysctl values will still have to be set by you.\n\nthis kernel only changes things that cannot be easily changed or straight up impossible to change during runtime (e.g. module support)\n\n---\n\n## Where can I get linux-catgirl-edition?\n\nYou can download the precompiled package either from the [releases page](https://github.com/pparaxan/linux-catgirl-edition/releases) or build from the [actions page](https://github.com/pparaxan/linux-catgirl-edition/actions).\n\n## How do I compile linux-catgirl-edition locally?\n\n* Clone this repository, and **c**hange **d**irectory into it.\n* This is important, open the `PKGBUILD` file and enable or disable any optimizations you may or may not want[^2].\n* Run the command `makepkg -scf --cleanbuild --skipchecksums` to install the package.\n\n[^2]: don't worry, its very documented. and to clarify the important part: many optimizations displayed in the optimizations section are disabled by default because I know some of you will blindly `makepkg -s` anyway.\n\n## I don't use Arch Linux (btw)\n\nYou can use an Arch Linux docker container to build the kernel. It's _probably_ trivial to turn a `.tar.zst` into a `.deb` or whatever packaging type (except for flatpak) you prefer\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fa-catgirl-dev%2Flinux-catgirl-edition","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fa-catgirl-dev%2Flinux-catgirl-edition","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fa-catgirl-dev%2Flinux-catgirl-edition/lists"}