Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vncsmyrnk/arch
Useful information about arch config and utilities.
https://github.com/vncsmyrnk/arch
archlinux documentation
Last synced: 20 days ago
JSON representation
Useful information about arch config and utilities.
- Host: GitHub
- URL: https://github.com/vncsmyrnk/arch
- Owner: vncsmyrnk
- License: gpl-3.0
- Created: 2024-09-22T20:12:33.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-12-25T12:58:36.000Z (about 1 month ago)
- Last Synced: 2024-12-25T13:37:47.980Z (about 1 month ago)
- Topics: archlinux, documentation
- Language: Shell
- Homepage:
- Size: 45.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Arch
Useful information about arch config and utilities.
## Useful links
- [Wiki](https://wiki.archlinux.org/title/Main_page)
- [ISOs](https://archlinux.org/download/)## Archinstall
```bash
curl -LO https://raw.githubusercontent.com/vncsmyrnk/arch/refs/heads/main/install.sh
chmod +x install.sh
MY_PASSWORD=password MY_ROOT_PASSWORD=root_password ./install.sh
```## Installation caveats
### Networking
Reference: https://wiki.archlinux.org/title/Network_configuration
```bash
cat < /etc/systemd/network/20-wired.network
[Match]
Name=enp2s0[Network]
DHCP=yes
EOF
``````bash
cat "nameserver 8.8.8.8" > /etc/resolv.conf
sudo pacman -S networkmanager
sudo systemctl enable systemd-networkd
sudo systemctl start systemd-networkd
sudo systemctl enable NetworkManager
sudo systemctl start NetworkManager
``````bash
ping 8.8.8.8 # for testing
```### GPU Drivers
```bash
sudo pacman -S mesa xf86-video-amdgpu
```