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

adding environment

nvim ~/.bashrc
source ~/.bashrc

instaling java

sudo pacman -sS java | grep jdk
sudo pacman -S jdk21-openjdk
https://blog.expo.dev/expo-sdk-48-ccb8302e231

Note

MD file doc. Install react native without framework.

@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

Linux (Fedora)

  1. Acess Root
visudo
[nama user] ALL=(ALL:ALL) ALL
[nama user] ALL=(ALL) NOPASSWD:ALL
  1. Install Node Js
  • create directori download

Setup Flathub

https://flathub.org/setup

Install Flathub on Arch linux

sudo pacman -S flatpak
@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]"

Guide to install and setup a Laravel framework on your archlinux system and serve php-based database applications.
LLAMP stands for a Laravel (php framework) Linux system with Apache (webserver), MariaDB (database) and PHP (programming language). In this guide we will also install PhpMyAdmin (database admin GUI) to easily manage the SQL tables.

Laravel

laravel logo

Laravel is a web application framework with expressive, elegant syntax. We’ve already laid the foundation — freeing you to create without sweating the small things.

Install packages