This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| tips:ubuntu:zfs-on-root [2017/07/29 09:17] – [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 / | ||
| + | } | ||
| + | </ | ||