- Fedora: 28
- ZFS on Linux: 0.7.9
Note: for newer Fedora releases see Reliably boot Fedora with root on ZFS.
- Download Fedora Workstation network installer image.
{ | |
"add_disks": [ | |
{ | |
"media": "disk", | |
"model": "virtio", | |
"nocreate": true, | |
"boot": false, | |
"path": "/dev/zvol/rdsk/tank0/s1node1", | |
"size": 20480 | |
} |
{ | |
"brand": "kvm", | |
"vcpus": 2, | |
"alias": "s1node1.paulluaq.lan", | |
"hostname": "s1node1.paulluaq.lan", | |
"autoboot": false, | |
"ram": 4096, | |
"resolvers": ["192.168.1.102", "192.168.1.102"], | |
"disks": [ | |
{ |
Note: for newer Fedora releases see Reliably boot Fedora with root on ZFS.
This is my first attempt to install Arch Linux - either on bare metal or in a virtual environment. I spent a couple of hours trying to boot the image and get to the system for the actual installation. - Pressing enter on the boot entry Arch Linux archiso x86_64 UEFI CD always resulted in a black screen. After trying several boot parameters I decided to rewrite the USB key. After that I was able to boot, with no startup parameters needed.
Run all commands as the root
user.
setfont latarcyrheb-sun32
UTF-8 encoded sample plain-text file | |
‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ | |
Markus Kuhn [ˈmaʳkʊs kuːn] <http://www.cl.cam.ac.uk/~mgk25/> — 2002-07-25 CC BY | |
The ASCII compatible UTF-8 encoding used in this plain-text file | |
is defined in Unicode, ISO 10646-1, and RFC 2279. | |
Using Unicode/UTF-8, you can write in emails and source code things such as |
#!/bin/bash | |
echo | |
echo "to exit, press Ctrl-C and wait for the locomotive to pass" | |
echo | |
sleep 3 | |
clear | |
trap "exit" INT | |
declare -a ca=( "-a" "-l" "-F" "-c" "-al" "-aF" "-ac" "-lF" "-lc" "-alF" "-alc" "-lFc" "-alFc") |
#!/usr/bin/env bash | |
# | |
# CPU isolation in QEMU/KVM | |
# | |
# As the cset scripts no longer work (systemd switched to cgroups v2), this is my | |
# attempt at emulating its functionality. It may be incorrect and/or it may break | |
# stuff. Blind copy-pasting with some reasoning follows. | |
# | |
# Host: |