{"id":21996848,"url":"https://github.com/RFCreate/arch-install","last_synced_at":"2025-07-23T02:31:04.406Z","repository":{"id":155388437,"uuid":"627157451","full_name":"RFCreate/arch-install","owner":"RFCreate","description":"Setup your Arch distro.","archived":false,"fork":false,"pushed_at":"2025-05-20T17:22:31.000Z","size":320,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-16T08:50:41.716Z","etag":null,"topics":["arch","archlinux","automation","linux","script","setup"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/RFCreate.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2023-04-12T22:44:13.000Z","updated_at":"2025-05-20T17:22:34.000Z","dependencies_parsed_at":"2023-11-18T15:09:03.514Z","dependency_job_id":"5667177c-57ea-4990-8337-9dc9a0d87b69","html_url":"https://github.com/RFCreate/arch-install","commit_stats":null,"previous_names":["shyguycreate/machine-setup","rfcreate/setup","rfcreate/arch-install"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/RFCreate/arch-install","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RFCreate%2Farch-install","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RFCreate%2Farch-install/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RFCreate%2Farch-install/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RFCreate%2Farch-install/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RFCreate","download_url":"https://codeload.github.com/RFCreate/arch-install/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RFCreate%2Farch-install/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266605985,"owners_count":23955196,"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-07-23T02:00:09.312Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"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","archlinux","automation","linux","script","setup"],"created_at":"2024-11-29T22:12:52.381Z","updated_at":"2025-07-23T02:31:04.395Z","avatar_url":"https://github.com/RFCreate.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Arch Installation\n\nFollow the [installation guide](https://wiki.archlinux.org/title/Installation_guide#Pre-installation) in the Arch wiki to download the [ISO file](https://wiki.archlinux.org/title/Installation_guide#Acquire_an_installation_image) and [verify the signature](https://wiki.archlinux.org/title/Installation_guide#Verify_signature)\n\n---\n\nRun iso2usb script[^1] to copy ISO to USB ([only UEFI](https://wiki.archlinux.org/title/USB_flash_installation_medium#Using_manual_formatting))\u003cbr\u003e\n\u003csub\u003e**Note:** dependencies mkfs.fat and mkfs.ext4 needed\u003c/sub\u003e\n\n```\ncurl -sS -O https://raw.githubusercontent.com/RFCreate/arch-install/main/iso2usb.sh\nchmod +x ./iso2usb.sh\n./iso2usb.sh -d /dev/USB -i /path/to/ISO\n```\n\nWhen finished, [boot into the USB](https://wiki.archlinux.org/title/Installation_guide#Boot_the_live_environment)\n\n---\n\nInside the bootable USB, connect to [wireless internet](https://wiki.archlinux.org/title/Installation_guide#Connect_to_the_internet) using [iwctl](https://wiki.archlinux.org/title/Iwd#iwctl)\n\n```\niwctl\n[iwd]# device list                              # list wifi devices\n[iwd]# device  _name_ set-property Powered on   # turn on device\n[iwd]# adapter _name_ set-property Powered on   # turn on adapter\n[iwd]# station _name_ scan                      # scan for networks\n[iwd]# station _name_ get-networks              # list networks\n[iwd]# station _name_ connect _SSID_            # connect to network\n[iwd]# station _name_ show                      # display connection state\n[iwd]# quit                                     # exit\n```\n\n---\n\nRun pre-installation script[^1]\u003cbr\u003e\n\u003csub\u003e**Note:** download manually if you didn't run iso2usb script\u003c/sub\u003e\n\n```\nmkdir -p /root/usb\nmount /dev/USB1 /root/usb\n/root/usb/preinstall.sh -d /dev/DISK\n```\n\n---\n\n[Change root into new system](https://wiki.archlinux.org/title/Installation_guide#Chroot)\n\n```\narch-chroot /mnt\n```\n\n---\n\nRun installation script[^1]\u003cbr\u003e\n\u003csub\u003e**Note:** install a text editor to modify script\u003c/sub\u003e\n\n```\n/install.sh\n```\n\n---\n\n[Set the root password](https://wiki.archlinux.org/title/Installation_guide#Root_password)\n\n```\npasswd\n```\n\n---\n\n[Reboot the system](https://wiki.archlinux.org/title/Installation_guide#Reboot)\n\n1. Exit chroot: `exit`\n2. Unmount disk: `umount -R /mnt`\n3. Reboot system: `reboot`\n\n---\n\nConnect to wireless internet using [Network Manger](https://wiki.archlinux.org/title/NetworkManager#Usage)\n\n```\nsystemctl start NetworkManager.service\nnmtui\n```\n\n---\n\nRun post-installation script[^1]\u003cbr\u003e\n\u003csub\u003e**Note:** specify your username after the flag\u003c/sub\u003e\n\n```\n/postinstall.sh -u username\n```\n\n---\n\nSet the user password\u003cbr\u003e\n\u003csub\u003e**Note:** replace with your username\u003c/sub\u003e\n\n```\npasswd username\n```\n\n[^1]: Script should run as root\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FRFCreate%2Farch-install","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FRFCreate%2Farch-install","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FRFCreate%2Farch-install/lists"}