Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
tips:ubuntu:zfs-on-root [2017/07/28 20:18] – [Complete system] scipio | tips:ubuntu:zfs-on-root [2018/03/09 10:57] (current) – nicola | ||
---|---|---|---|
Line 26: | Line 26: | ||
< | < | ||
DISK=/ | DISK=/ | ||
- | sgdisk --clear $DISK | + | sgdisk --clear |
</ | </ | ||
Line 187: | Line 187: | ||
</ | </ | ||
+ | |||
+ | === manual grub menu === | ||
+ | |||
+ | <file txt / | ||
+ | #!/bin/sh | ||
+ | exec tail -n +3 $0 | ||
+ | # This file provides an easy way to add custom menu entries. | ||
+ | # menu entries you want to add after this comment. | ||
+ | # the 'exec tail' line above. | ||
+ | |||
+ | menuentry ' | ||
+ | recordfail | ||
+ | load_video | ||
+ | gfxmode $linux_gfx_mode | ||
+ | insmod gzio | ||
+ | insmod part_gpt | ||
+ | insmod zfs | ||
+ | set root=' | ||
+ | search --no-floppy --fs-uuid --set=root 3f1e7de17907507c | ||
+ | linux / | ||
+ | initrd / | ||
+ | } | ||
+ | </ | ||
Line 255: | Line 278: | ||
#apt install --yes ubuntu-desktop | #apt install --yes ubuntu-desktop | ||
apt-get -y install $(check-language-support -l it) | apt-get -y install $(check-language-support -l it) | ||
+ | |||
+ | # HWE support for XENIAL | ||
+ | sudo apt-get install --install-recommends linux-generic-hwe-16.04 xserver-xorg-hwe-16.04 | ||
</ | </ | ||