{"id":20574514,"url":"https://github.com/kostasereksonas/archrice","last_synced_at":"2026-02-16T22:06:52.487Z","repository":{"id":60284337,"uuid":"525347413","full_name":"KostasEreksonas/Archrice","owner":"KostasEreksonas","description":"A shell script for installing a window manager-based graphical environment on Arch Linux","archived":false,"fork":false,"pushed_at":"2024-09-19T06:20:55.000Z","size":97412,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-20T14:40:16.322Z","etag":null,"topics":["arch-linux","archlinux","automation","bash","bash-script","configuration","dwm","linux","rice","suckless"],"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/KostasEreksonas.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}},"created_at":"2022-08-16T11:20:14.000Z","updated_at":"2025-03-04T12:51:13.000Z","dependencies_parsed_at":"2023-02-18T09:15:43.251Z","dependency_job_id":"79c9fe6b-2703-481b-afb5-e13e4f40de5d","html_url":"https://github.com/KostasEreksonas/Archrice","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/KostasEreksonas/Archrice","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KostasEreksonas%2FArchrice","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KostasEreksonas%2FArchrice/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KostasEreksonas%2FArchrice/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KostasEreksonas%2FArchrice/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/KostasEreksonas","download_url":"https://codeload.github.com/KostasEreksonas/Archrice/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KostasEreksonas%2FArchrice/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279016370,"owners_count":26085828,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-13T02:00:06.723Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["arch-linux","archlinux","automation","bash","bash-script","configuration","dwm","linux","rice","suckless"],"created_at":"2024-11-16T05:34:59.970Z","updated_at":"2025-10-13T17:40:38.584Z","avatar_url":"https://github.com/KostasEreksonas.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Archrice\n\nInstall Arch Linux and use the archrice configuration script to install programs and load configs.\n\nTable of Contents\n=================\n* [Installation](#Installation)\n\n# Installation\n\n1. Download Arch iso from https://archlinux.org/download/ .\n\n2. Write Arch iso to usb drive:\n    - `dd if=\u003carch-iso\u003e of=/dev/\u003cusb-device\u003e bs=4M status=progress conv=fdatasync`\n\n3. Reboot into Arch live usb.\n\n4. Get name if network interface:\n    - `ip a`\n\n5. Connect to the internet:\n    - `iwctl station \u003cnetwork-interface\u003e connect \u003cSSID\u003e`\n\n6. Get name of the disk to install Arch to:\n    - `lsblk`\n\n7. Partition the disk:\n    - `fdisk /dev/\u003cdisk-to-partition\u003e`\n\n8. Partitions to create:\n    - /dev/\u003cdisk-to-partition\u003e1 - Boot partition, size: 500M\n    - /dev/\u003cdisk-to-partition\u003e2 - Swap partition, size: 8G\n    - /dev/\u003cdisk-to-partition\u003e3 - Home partiiton, size: rest of the drive\n\n9. Create filesystems:\n    - `mkfs.ext4 -T small /dev/\u003cdisk-to-install\u003e1`\n    - `mkswap /dev/\u003cdisk-to-install\u003e2`\n    - `swapon /dev/\u003cdisk-to-install\u003e2`\n    - `mkfs.ext4 /dev/\u003cdisk-to-install\u003e3`\n\n10. Mount filesystems:\n    - `mount /dev/\u003cdisk-to-install\u003e3 /mnt`\n    - `mkdir /mnt/boot`\n    - `mount /dev/\u003cdisk-to-install\u003e1 /mnt/boot`\n\n11. Install base system:\n    - `pacstrap -K /mnt base base-devel linux linux-firmware vim texinfo man-db man-pages`\n\n12. Generate fstab:\n    - `gensftab -U /mnt \u003e\u003e /mnt/etc/fstab`\n\n13. Chroot into the new environment:\n    - `arch-chroot /mnt`\n\n14. Set timezone:\n    - `ln -sf /usr/share/zoneinfo/Region/City /etc/localtime`\n    - `hwclock --systohc`\n\n15. Set localization:\n    - Run `vim /etc/locale.gen` and uncomment locale: en_US.UTF-8 UTF-8\n    - `locale-gen`\n    - `echo \"LANG=en_US.UTF-8\" | tee -a /etc/locale.conf`\n\n16. Set hostname:\n    - `echo \"Arch\" | tee -a /etc/hostname`\n\n17. Set root password:\n    - `passwd`\n\n18. Enable sudo for other users:\n    - `visudo`\n    - Uncomment line: `# %wheel ALL=(ALL:ALL) ALL`\n\n19. Install and configure bootloader and network manager:\n    - `pacman -S grub networkmanager`\n    - `grub-install --target=i386-pc /dev/\u003cdrive-to-install\u003e`\n    - `grub-mkconfig -o /boot/grub/grub.cfg`\n    - `systemctl enable NetworkManager.service`\n\n20. Exit chrooted environment:\n    - `exit`\n\n21. Unmount partitions:\n    - `umount -R /mnt`\n\n22. Reboot:\n    - `reboot`\n\n23. Login to the new install and start wifi network:\n    - `nmcli device wifi connect \u003cSSID\u003e password \u003cpassword\u003e`\n\n24. Download configuration script:\n    - `curl -LJO https://raw.githubusercontent.com/KostasEreksonas/Archrice/main/archrice`\n\n25. Make the configuration script executable:\n    - `chmod +x archrice`\n\n26. Run the configuration script:\n    - `./archrice`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkostasereksonas%2Farchrice","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkostasereksonas%2Farchrice","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkostasereksonas%2Farchrice/lists"}