This file contains 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
1) Start in uefi mode. | |
At Line 216 use: | |
echo password | zpool create -f \ | |
-o ashift=12 \ | |
-O compression=lz4 \ | |
-O acltype=posixacl \ | |
-O xattr=sa \ | |
-O relatime=on \ |
This file contains 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
# Check TPM version | |
# Install TPM 1.2 dependancies | |
apt install tpm-tools | |
# My tpm didn't have a one time configuration done in the factory and required me to run an additional command. I had output like: | |
# Tspi_TPM_TakeOwnership failed: 0x00000023 - layer=tpm, code=0023 (35), No EK | |
# https://sourceforge.net/p/trousers/mailman/message/19415379/ instructed me to run: | |
# tpm_createek |
This file contains 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
<!DOCTYPE html> | |
<title>ZFS Feature Matrix</title> | |
<meta charset="utf-8" /><meta name="referrer" content="never" /> | |
<style>body{font-family: "Helvetica", "Arial", sans-serif} | |
.yes{background-color:lightgreen} | |
.warn{background-color:yellow} | |
.no{background-color:lightsalmon} | |
table{border-collapse: collapse} | |
th,td{padding:0.2em 0.4em;border:1px solid #aaa;background-color:#f9f9f9} |
This file contains 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
#!/usr/bin/env python3 | |
# A messy script that figures out features. | |
# It's... uh... messy. Sorry. | |
# Feel free to steal it, modify it to suit your own needs, et cetera. | |
# I am not responsible if this script eats your laundry. | |
# License: CC0 https://creativecommons.org/share-your-work/public-domain/cc0/ | |
# Yes, this uses manpages. |
This file contains 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
# Run as root | |
# sudo -i | |
# Prepare LiveCD Environment | |
add-apt-repository -y ppa:jonathonf/zfs | |
apt install -y zfs-dkms | |
systemctl stop zfs-zed.service | |
modprobe -r zfs | |
modprobe zfs |
This file has been truncated, but you can view the full file.
This file contains 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
Ubiquity 18.04.14 | |
/usr/lib/ubiquity/ubiquity/frontend/gtk_ui.py:54: PyGIWarning: Gtk was imported without specifying a version first. Use gi.require_version('Gtk', '3.0') before import to ensure that the right version gets loaded. | |
from gi.repository import Gtk, Gdk, GObject, GLib, Atk, Gio | |
(ubiquity:1414): IBUS-WARNING **: 12:11:51.408: The owner of /home/ubuntu/.config/ibus/bus is not root! | |
/usr/lib/ubiquity/ubiquity/frontend/gtk_components/nmwidgets.py:5: PyGIWarning: NM was imported without specifying a version first. Use gi.require_version('NM', '1.0') before import to ensure that the right version gets loaded. | |
from gi.repository import NM, NMA | |
/usr/lib/ubiquity/ubiquity/frontend/gtk_components/nmwidgets.py:5: PyGIWarning: NMA was imported without specifying a version first. Use gi.require_version('NMA', '1.0') before import to ensure that the right version gets loaded. | |
from gi.repository import NM, NMA | |
/usr/lib/ubiquity/plugins/ubi-timezone.py:195: PyGIWarning: TimezoneMap was imported without spe |