https://github.com/mfinelli/arch-install
new machine setup automation for arch linux, debian, and macos
https://github.com/mfinelli/arch-install
ansible archlinux debian installer macos raspberry-pi ubuntu
Last synced: about 1 month ago
JSON representation
new machine setup automation for arch linux, debian, and macos
- Host: GitHub
- URL: https://github.com/mfinelli/arch-install
- Owner: mfinelli
- License: mpl-2.0
- Created: 2016-02-24T00:56:48.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2025-03-09T09:26:30.000Z (11 months ago)
- Last Synced: 2025-03-09T10:24:23.629Z (11 months ago)
- Topics: ansible, archlinux, debian, installer, macos, raspberry-pi, ubuntu
- Language: Jinja
- Homepage:
- Size: 903 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# arch-install
Originally created to automate installing [Arch Linux](https://archlinux.org),
this repository now contains installation configuration for many systems:
[Debian](https://www.debian.org), [Ubuntu](https://ubuntu.com),
[macOS](https://www.apple.com/macos/), and
[Raspberry Pi OS](https://www.raspberrypi.com/software/) (as well, of course,
as the original Arch Linux). Installations are mostly managed using
[Ansible](https://www.ansible.com), using bash scripts for steps where that is
not feasible or reasonable.
Refer to the README in the specific operating system directories for specific
instructions for a given system.
## preparing USB installation medium
Other options available in the Arch wiki, but I find the following the simplest
option (as root):
```shell
dd bs=4M if=/path/to.iso of=/dev/sda conv=fsync oflag=direct status=progress
```