{"id":16813589,"url":"https://github.com/bmiddha/archlinux-install-script-acm-uic","last_synced_at":"2026-05-10T06:32:50.894Z","repository":{"id":98812505,"uuid":"165462381","full_name":"bmiddha/archlinux-install-script-acm-uic","owner":"bmiddha","description":"Installl and Configure Archlinux ACM@UIC Style","archived":false,"fork":false,"pushed_at":"2022-02-13T00:01:48.000Z","size":45,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-01-23T20:55:04.741Z","etag":null,"topics":["archlinux","archlinux-automatic","archlinux-installer","archlinux-server","archlinuxinstall","archlinuxinstallation","bash","bash-script","shell","shell-script","ssh"],"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/bmiddha.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}},"created_at":"2019-01-13T03:40:16.000Z","updated_at":"2020-09-05T05:55:33.000Z","dependencies_parsed_at":"2023-03-13T15:54:27.259Z","dependency_job_id":null,"html_url":"https://github.com/bmiddha/archlinux-install-script-acm-uic","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bmiddha%2Farchlinux-install-script-acm-uic","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bmiddha%2Farchlinux-install-script-acm-uic/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bmiddha%2Farchlinux-install-script-acm-uic/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bmiddha%2Farchlinux-install-script-acm-uic/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bmiddha","download_url":"https://codeload.github.com/bmiddha/archlinux-install-script-acm-uic/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244022945,"owners_count":20385189,"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","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","archlinux-automatic","archlinux-installer","archlinux-server","archlinuxinstall","archlinuxinstallation","bash","bash-script","shell","shell-script","ssh"],"created_at":"2024-10-13T10:27:21.333Z","updated_at":"2026-05-10T06:32:50.859Z","avatar_url":"https://github.com/bmiddha.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# archlinux-install-script-acm-uic\n\n## Configure\n\nConfigure the `.env` files as needed. Configs are located in the `configs/` directory.\n\nCopy/rename `secrets.env.example` to `secrets.env` and modify as needed. Modify `global.env` as needed.\n\nThis script comes with a few profiles:\n- workstation\n- hypervisor\n- virtual-mahine\n\n\nBoot into archiso, enable ssh server, and set the root password\n```bash\nsystemctl start sshd\necho \"root:superPASSWORRD\" | chpasswd\n```\nThen run `driver.sh` from a computer on the network.\n\n## Usage\n\n```\nUsage: driver.sh --profile \u003cprofile\u003e --host \u003cip/hostname\u003e\n      -p, --profile           specify profile file\n      -h, --host              specify host\n      -k, --key               ssh key file\n      --help                  Displays Help Information\nExample: driver.sh --config config/virtual-machine.env --host computer.example.com\n```\n\n\n\n## What does it do?\n\nHere is an outline of the workings of the script\n\n- Inject SSH key \n- Login into remote host\n- Partition, format, and mount\n- Install archlinux\n  - Inject mirrors\n  - Update repository lists\n  - Run pacstrap\n  - Generate fstab\n  - Generate and configure swapfile\n- `chroot` into the new archlinux intsall\n  - Configure system basics\n    - Timezone\n    - Locale and Language\n    - Hostname and hosts\n    - `pacman` config\n    - Configure ACM pacman repository\n    - Configure ssh server\n    - Add users, inject keys, and lock root\n  - Configure network\n    - Setup bonding\n    - Get hostname from DHCP\n  - Configure sudoers\n  - Configure ACM active directory\n  - Install and configure hypervisor\n    - Install qemu, libvirt\n    - Configure virtual network\n    - Configure iptables forwarding for virtual network\n    - Configure DHCP server\n    - Configure UEFI for qemu\n    - Install virtio drivers for Windows guests\n  - Install apps\n    - Install and configure yay\n    - Optimize makepkg\n    - Install extra apps from config files\n  - Install Bootloader\n    - Set bootloader timeout to 0\n    - Install and configure GRUB\n## archiso customizations\nUsing the `releng` profile from `/usr/share/archiso/configs/releng`\n\n`airootfs/root/customize_airootfs.sh`\n```bash\nsystemctl enable sshd\necho \"root:superPASSWORD\" | chpasswd\n```\n`efiboot/loader/loader.conf`\n```\ntimeout 0\ndefault archiso-x86_64\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbmiddha%2Farchlinux-install-script-acm-uic","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbmiddha%2Farchlinux-install-script-acm-uic","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbmiddha%2Farchlinux-install-script-acm-uic/lists"}