https://github.com/vncsmyrnk/arch
Useful information about arch config and utilities.
https://github.com/vncsmyrnk/arch
archlinux documentation
Last synced: 4 months 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 (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-25T12:58:36.000Z (about 1 year ago)
- Last Synced: 2025-01-17T06:09:35.884Z (about 1 year ago)
- Topics: archlinux, documentation
- Language: Shell
- Homepage:
- Size: 47.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
```
### Using system clipboard in vim
Vim is useful during the installation for running the commands one by one. Using the system clipboard in this scenario is very useful.
- Install `vim-gtk3`
- Set the clipboard inside vim: `set clipboard=unnamedplus`