{"id":20743802,"url":"https://github.com/serioushoax/anythinglinux","last_synced_at":"2026-05-06T04:04:07.406Z","repository":{"id":258386580,"uuid":"861342413","full_name":"SeriousHoax/AnythingLinux","owner":"SeriousHoax","description":"Linux related useful items","archived":false,"fork":false,"pushed_at":"2025-12-11T17:03:45.000Z","size":51,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-26T16:44:34.371Z","etag":null,"topics":["archlinux","linux","opensuse","ubuntu"],"latest_commit_sha":null,"homepage":"","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/SeriousHoax.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":"2024-09-22T16:34:40.000Z","updated_at":"2025-12-11T17:03:48.000Z","dependencies_parsed_at":"2024-10-18T19:12:28.766Z","dependency_job_id":null,"html_url":"https://github.com/SeriousHoax/AnythingLinux","commit_stats":null,"previous_names":["serioushoax/anythinglinux"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/SeriousHoax/AnythingLinux","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SeriousHoax%2FAnythingLinux","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SeriousHoax%2FAnythingLinux/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SeriousHoax%2FAnythingLinux/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SeriousHoax%2FAnythingLinux/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SeriousHoax","download_url":"https://codeload.github.com/SeriousHoax/AnythingLinux/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SeriousHoax%2FAnythingLinux/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32677933,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-06T02:33:58.958Z","status":"ssl_error","status_checked_at":"2026-05-06T02:33:39.611Z","response_time":117,"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":["archlinux","linux","opensuse","ubuntu"],"created_at":"2024-11-17T07:12:49.327Z","updated_at":"2026-05-06T04:04:07.382Z","avatar_url":"https://github.com/SeriousHoax.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AnythingLinux\nA place for linux related useful items\n\n## [Arch Linux](https://archlinux.org)\n1. [Enable Zram on Arch Linux](https://github.com/SeriousHoax/AnythingLinux#enable-zram-on-arch-linux)\n2. [Sign Arch systemd-bootloader using sbctl](https://github.com/SeriousHoax/AnythingLinux#sign-arch-systemd-bootloader-using-sbctl-for-secureboot-support)\n## [openSUSE Tumbleweed](https://www.opensuse.org)\n1. [Enable Zram on openSUSE](https://github.com/SeriousHoax/AnythingLinux#enable-zram-on-opensuse)\n\n## [Any Distribution](https://www.linux.org/pages/download)\n1. [Enable syntax highlighting for nano](https://github.com/SeriousHoax/AnythingLinux#enable-syntax-highlighting-for-nano)\n\n## Arch Linux\n\n### Enable [Zram](https://wiki.archlinux.org/title/Zram) on Arch Linux\nCopy the code below and paste it into your Terminal. It will download the `Zram-install-Arch.sh` script from the repository to your `home` directory, install the required tool for configuration, optimize the swapping parameters to the recommended values, and enable it on your device\n```\ncurl -o ~/Zram-install-Arch.sh https://raw.githubusercontent.com/SeriousHoax/AnythingLinux/refs/heads/main/Zram-install-Arch.sh \u0026\u0026 chmod +x ~/Zram-install-Arch.sh \u0026\u0026 ~/Zram-install-Arch.sh \u0026\u0026 rm ~/Zram-install-Arch.sh\n```\n\n### Sign Arch systemd-bootloader using [sbctl](https://github.com/Foxboron/sbctl) for SecureBoot support\n1. First of all enable ```secure boot``` in your BIOS and set it to ```setup mode```\n\n2. Install sbctl, \n```\nsudo pacman -S sbctl\n```\n3. Get root privilage, \n```\nsudo -i\n```\n4. Check if Setup Mode is enabled, \n```\nsbctl status\n```\n5. Create keys, \n```\nsbctl create-keys\n```\n6. Enroll Microsoft keys,\n```\nsbctl enroll-keys -m\n```\n7. Verify if vendor keys have successfully been enrolled, \n```\nsbctl status\n```\n8. Sign systemd EFI,\n```\nsbctl sign -s -o /usr/lib/systemd/boot/efi/systemd-bootx64.efi.signed /usr/lib/systemd/boot/efi/systemd-bootx64.efi\n```\n09. Sign all required files automatically,\n```\nsbctl verify | sed 's/✗ /sbctl sign -s /e'\n```\n10. Verify if all required files has been signed,\n```\nsbctl verify\n```\n11. Reinstall Bootloader,\n```\nbootctl install\n```\nTo sign systemd-boot for distributions other than Arch, modify step 2 according to the information provided on sbctl's GitHub.\n\nThe systemd-boot configuration file is located at, ```/boot/loader/loader.conf```\n\n## openSUSE Tumbleweed\n\n### Enable [Zram](https://wiki.archlinux.org/title/Zram) on openSUSE\nCopy the code below and paste it into your Terminal. It will download the `Zram-install-openSUSE.sh` script from the repository to your `home` directory, install the required tool for configuration, optimize the swapping parameters to the recommended values, and enable it on your device\n```\ncurl -o ~/Zram-install-openSUSE.sh https://raw.githubusercontent.com/SeriousHoax/AnythingLinux/refs/heads/main/Zram-install-openSUSE.sh \u0026\u0026 chmod +x ~/Zram-install-openSUSE.sh \u0026\u0026 ~/Zram-install-openSUSE.sh \u0026\u0026 rm ~/Zram-install-openSUSE.sh\n```\n\n## Any Distribution\n\n### Enable [syntax highlighting](https://en.wikipedia.org/wiki/Syntax_highlighting) for [nano](https://www.nano-editor.org)\nCopy and paste the code into your Terminal. It will download the `nano-syntax-highlighting.sh` script from this repository to your home directory, download all the required files from [nano-syntax-highlighting](https://github.com/galenguyer/nano-syntax-highlighting) and configure them on your system\n```\ncurl -o ~/nano-syntax-highlighting.sh https://raw.githubusercontent.com/SeriousHoax/AnythingLinux/refs/heads/main/nano-syntax-highlighting.sh \u0026\u0026 chmod +x ~/nano-syntax-highlighting.sh \u0026\u0026 ~/nano-syntax-highlighting.sh \u0026\u0026 rm ~/nano-syntax-highlighting.sh\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fserioushoax%2Fanythinglinux","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fserioushoax%2Fanythinglinux","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fserioushoax%2Fanythinglinux/lists"}