Skip to content

Instantly share code, notes, and snippets.

View Rockheung's full-sized avatar

Heung Jun Park Rockheung

View GitHub Profile
@Rockheung
Rockheung / ubuntu-efi32-wily.sh
Last active April 25, 2021 03:15
Modified Linuxium script to fix grub on efi32
#!/bin/sh
# Linuxium's installation script for booting from a 32-bit bootloader
chroot /target mount -t proc proc /proc
chroot /target mount -t sysfs sysfs /sys
mount --bind /dev /target/dev
mount --bind /run /target/run
chroot /target mount /dev/sda2 /boot/efi/
chroot /target apt-get -y purge grub-efi-amd64 grub-efi-amd64-bin grub-efi-amd64-signed
@Rockheung
Rockheung / Using Git to Manage a Live Web Site.md
Last active January 10, 2019 07:32 — forked from Nilpo/Using Git to Manage a Live Web Site.md
Using Git to Manage a Live Web Site

Using Git to Manage a Live Web Site

Overview

As a freelancer, I build a lot of web sites. That's a lot of code changes to track. Thankfully, a Git-enabled workflow with proper branching makes short work of project tracking. I can easily see development features in branches as well as a snapshot of the sites' production code. A nice addition to that workflow is that ability to use Git to push updates to any of the various sites I work on while committing changes.

Contents