This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { defineAsyncComponent } from 'vue' | |
const Content = defineAsyncComponent(() => import('./component-content.js')) | |
export default { | |
name: 'App', | |
components: { Content }, | |
template: /*html*/` | |
<Content /> | |
` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Google translation from http://victor-sudakov.livejournal.com/328562.html | |
# Here so I will find it again | |
FreeBSD bare metal restore (GPT, ZFS raidz) | |
victor_sudakov | |
November 8th, 2015 | |
1. Full dump |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Addendum to https://gist.github.com/aaronlauterer/dc878ab3e048a8fcf032b2153c166603 | |
# We want to have a swap partition next to the ZFS VDEV inside the encrypted partition to be able to resume from hibernate | |
# Using LVM for this is somewhat overkill and I am not sure how good an idea ZFS inside LVM is. | |
# Therefore we need to partition our cryptoroot until it looks something like the following: | |
$ lsblk | |
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT | |
sda 8:0 0 119.2G 0 disk | |
|-sda1 8:1 0 512M 0 part /boot | |
`-sda2 8:2 0 117.6G 0 part |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# arch uefi dm-crypt zfsroot install (archiso) | |
# modified to work with current repos as of 2016-06-16 and with hints from | |
# comments by larskotthoff | |
# uses only one boot partition for EFI and initramfs | |
# partition disk | |
# start at 1MB (sector 2048) | |
512Mib EFI |