Skip to content

Instantly share code, notes, and snippets.

View bagus-Arya's full-sized avatar
🏠
Working from home

vandr-crabrust bagus-Arya

🏠
Working from home
View GitHub Profile
@bagus-Arya
bagus-Arya / docker-arch.md
Created December 14, 2024 15:07 — forked from kashifulhaque/docker-arch.md
How to install Docker and Docker Compose on Arch Linux

If you do not have yay installed, then follow these steps to install it first

Update

yay

Install

yay -S docker docker-compose
@bagus-Arya
bagus-Arya / archlinux-qemu-kvm.md
Created December 10, 2024 08:55 — forked from tatumroaquin/archlinux-qemu-kvm.md
QEMU-KVM Installation for Arch Linux

QEMU-KVM in Arch Linux

Check Virtualization Support

Check CPU has VM capabilities

lscpu | grep -i Virtualization
  • VT-x for Intel
  • AMD-Vi for AMD
@bagus-Arya
bagus-Arya / postgresql_plus_arch-linux.md
Created December 8, 2024 15:40 — forked from NickMcSweeney/postgresql_plus_arch-linux.md
Getting postgresql running on Arch Linux

Setup Postgresql

run postgresql with systemctl

Install postgres

latest

sudo pacman -S postgresql

specific version

find version & build from source

@bagus-Arya
bagus-Arya / Set up GitHub push with SSH keys.md
Last active November 18, 2024 13:01 — forked from xirixiz/Set up GitHub push with SSH keys.md
Set up GitHub push with SSH keys

SSH keypair setup for GitHub (or GitHub/GitLab/BitBucket, etc, etc)

Create a repo.

Make sure there is at least one file in it (even just the README.md)

Generate a SSH key pair (private/public):

ssh-keygen -t rsa -C "[email protected]"