Skip to content

Instantly share code, notes, and snippets.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@volosincu
volosincu / setenv.sh
Created October 14, 2016 11:40 — forked from terrancesnyder/setenv.sh
./setenv.sh - example setenv.sh with defaults set for minimal time spent in garbage collection
#! /bin/sh
# ==================================================================
# ______ __ _____
# /_ __/___ ____ ___ _________ _/ /_ /__ /
# / / / __ \/ __ `__ \/ ___/ __ `/ __/ / /
# / / / /_/ / / / / / / /__/ /_/ / /_ / /
#/_/ \____/_/ /_/ /_/\___/\__,_/\__/ /_/
# Multi-instance Apache Tomcat installation with a focus
# on best-practices as defined by Apache, SpringSource, and MuleSoft
@volosincu
volosincu / arch-linux-qemu-kvm-install.md
Last active September 19, 2018 15:41
Arch linux setup for Qemu/kvm instalation

Arch Linux Qemu/KVM installation guide

1) Partitioning

a) create partitions using a tool like gdisk, cfdisk .... (more about partitioning )
    
       create a partition 1M code ef02 (BIOS Boot Partition) 
 create a partition for luks 8e00 (LVM partition)
@volosincu
volosincu / arch-linux-uefi-install.md
Last active December 5, 2024 06:03
Arch linux UEFI installation guide

Arch Linux UEFI installation guide

1) Partitioning

a) create partitions using a tool like gdisk, cfdisk .... (more about partitioning )

b) after partifioning we must build the filesystems on the devices (format partitions) using mkfs

   
 mkfs.vfat -F 32 /dev/sdX1 // format efi-boot partition as FAT 32