Skip to content

Instantly share code, notes, and snippets.

View ogarcia's full-sized avatar

Óscar García Amor ogarcia

View GitHub Profile
@d-513
d-513 / arch-ovh.md
Last active June 10, 2024 16:28
Arch Linux on OVH VPS

Install Arch on OVH VPS

This guide will show you how to install Arch Linux on an OVH VPS.
As you may have noticed, OVH does not have an Arch image, which is a problem. Follow these instructions to install Arch using recovery mode.

Conventions

Assume anything reffered to as low ram vps in the guide to be a VPS with <8gb ram

This guide assumes the following:

  • Your VPS has one drive
@ajdiaz
ajdiaz / git post-commit hook to dot files.
Created November 3, 2010 10:38
git post-commit hook to dot files.
#! /bin/bash
# (c) 2010 Andres J. Diaz <ajdiaz@connectical.com>
# Modified 2011 by Ryan Turner <rjturner@cmu.edu>
# A hook to git-commit(1) to update the home dot files link using this
# repository as based.
#
# To enable this hook, rename this file to "post-commit".
for dot in $PWD/*; do
home_dot="$HOME/.${dot##*/}"