Skip to content

Instantly share code, notes, and snippets.

View wilfredgithuka's full-sized avatar
🛰️
Learn C The Hardway

The Wilfred wilfredgithuka

🛰️
Learn C The Hardway
View GitHub Profile

Installing Arch linux with EFI

  1. Change keyboard layout:

    • loadkeys no
  2. Verify boot mode:

    • ls /sys/firmware/efi/efivars (If the directory exist your computer supports EFI)
  3. Ping some site on the Internet to verify connection:

  • ping archlinux.org
@wilfredgithuka
wilfredgithuka / gist:20742574fd4113e545377ccd547f5dec
Created March 4, 2017 10:52 — forked from pitch-gist/gist:2999707
HTML: Simple Maintenance Page
<!doctype html>
<title>Site Maintenance</title>
<style>
body { text-align: center; padding: 150px; }
h1 { font-size: 50px; }
body { font: 20px Helvetica, sans-serif; color: #333; }
article { display: block; text-align: left; width: 650px; margin: 0 auto; }
a { color: #dc8100; text-decoration: none; }
a:hover { color: #333; text-decoration: none; }
</style>