DebianLive/BusterMemo
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
* buster/sid での変更点のメモ [#z1004c52]
debian liveの開発リーダーであったDaniel Baumannが[[開発を...
が、以下はstretchを飛び越して、次にリリース予定のbuster(...
詳しくは[[本家の変更記録:http://metadata.ftp-master.debia...
** UEFI対応 (grub-efi) [#x7bb54df]
最近のstretchやbusterのlive-buildはUEFI(grub-efi)に対応し...
ただし、現時点で secure boot には対応していないので、パソ...
busterのリリース時には secure boot に対応予定のようです (...
secure bootを「有効」にしておかなければ起動できないような...
bootloaderの選択は、
lb config --bootloaders syslinux,grub-efi
のようにします。
ただし、hybrid.isoイメージをビルドする場合はデフォルトが...
起動パラメータの設定は、
あらかじめカスタマイズしたgrubの設定ファイルを、ビルドす...
config/includes.binary/boot/grub/grub.cfg
というファイルに保存しておけばデフォルトの /boot/grub/gru...
ところで、ライブシステムのデフォルトの /boot/grub/grub.cf...
set default=0
loadfont $prefix/dejavu-bold-16.pf2
loadfont $prefix/dejavu-bold-14.pf2
loadfont $prefix/unicode.pf2
set gfxmode=auto
insmod all_video
insmod gfxterm
insmod png
set color_normal=light-gray/black
set color_highlight=white/black
if [ -e /isolinux/splash.png ]; then
# binary_syslinux modifies the theme file to point t...
# background picture
set theme=/boot/grub/live-theme/theme.txt
elif [ -e /boot/grub/splash.png ]; then
set theme=/boot/grub/live-theme/theme.txt
else
set menu_color_normal=cyan/blue
set menu_color_highlight=white/blue
fi
terminal_output gfxterm
insmod play
play 960 440 1 0 4 440 1
# Live boot
menuentry "Live system" {
linux /live/vmlinuz-4.14.0-3-amd64 boot=live c...
initrd /live/initrd.img-4.14.0-3-amd64
}
menuentry "Live system (fail-safe mode)" {
linux /live/vmlinuz-4.14.0-3-amd64 boot=live c...
initrd /live/initrd.img-4.14.0-3-amd64
}
# You can add more entries like this
# menuentry "Alternate live boot" {
# linux /live/vmlinuz-4.14.0-3-amd64 boot=live config pe...
# initrd /live/initrd.img-4.14.0-3-amd64
# }
# menuentry "Alternate graphical installer" {
# linux custom options here
# initrd
# }
# menuentry "Alternate textual installer" {
# linux custom options here
# initrd
# }
# Installer (if any)
submenu 'Advanced options...' {
# More installer entries (if any)
# Memtest (if any)
menuentry "memtest86+" {
linux16 /live/memtest
}
}
例えば、日本語のロケールなどを起動時に選択できるようにし...
menuentry "live system (japanese)" {
linux /live/vmlinuz-4.14.0-3-amd64 boot=live con...
initrd /live/initrd.img
}
** hook の置き場所 [#j02b69e8]
以前の、config/hooks/ から config/hooks/live に変更になっ...
config/hooks/live/foo.hook.chroot
config/hooks/live/bar.hook.binary
のような感じで保存しておきます。
また、それにともなって、local/bin/ の下に置いたローカルな...
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=870164
2018年1月16日からのこのページのだいたいの訪問者数:
本日&counter(today);
昨日&counter(yesterday);
合計&counter(all);
終了行:
* buster/sid での変更点のメモ [#z1004c52]
debian liveの開発リーダーであったDaniel Baumannが[[開発を...
が、以下はstretchを飛び越して、次にリリース予定のbuster(...
詳しくは[[本家の変更記録:http://metadata.ftp-master.debia...
** UEFI対応 (grub-efi) [#x7bb54df]
最近のstretchやbusterのlive-buildはUEFI(grub-efi)に対応し...
ただし、現時点で secure boot には対応していないので、パソ...
busterのリリース時には secure boot に対応予定のようです (...
secure bootを「有効」にしておかなければ起動できないような...
bootloaderの選択は、
lb config --bootloaders syslinux,grub-efi
のようにします。
ただし、hybrid.isoイメージをビルドする場合はデフォルトが...
起動パラメータの設定は、
あらかじめカスタマイズしたgrubの設定ファイルを、ビルドす...
config/includes.binary/boot/grub/grub.cfg
というファイルに保存しておけばデフォルトの /boot/grub/gru...
ところで、ライブシステムのデフォルトの /boot/grub/grub.cf...
set default=0
loadfont $prefix/dejavu-bold-16.pf2
loadfont $prefix/dejavu-bold-14.pf2
loadfont $prefix/unicode.pf2
set gfxmode=auto
insmod all_video
insmod gfxterm
insmod png
set color_normal=light-gray/black
set color_highlight=white/black
if [ -e /isolinux/splash.png ]; then
# binary_syslinux modifies the theme file to point t...
# background picture
set theme=/boot/grub/live-theme/theme.txt
elif [ -e /boot/grub/splash.png ]; then
set theme=/boot/grub/live-theme/theme.txt
else
set menu_color_normal=cyan/blue
set menu_color_highlight=white/blue
fi
terminal_output gfxterm
insmod play
play 960 440 1 0 4 440 1
# Live boot
menuentry "Live system" {
linux /live/vmlinuz-4.14.0-3-amd64 boot=live c...
initrd /live/initrd.img-4.14.0-3-amd64
}
menuentry "Live system (fail-safe mode)" {
linux /live/vmlinuz-4.14.0-3-amd64 boot=live c...
initrd /live/initrd.img-4.14.0-3-amd64
}
# You can add more entries like this
# menuentry "Alternate live boot" {
# linux /live/vmlinuz-4.14.0-3-amd64 boot=live config pe...
# initrd /live/initrd.img-4.14.0-3-amd64
# }
# menuentry "Alternate graphical installer" {
# linux custom options here
# initrd
# }
# menuentry "Alternate textual installer" {
# linux custom options here
# initrd
# }
# Installer (if any)
submenu 'Advanced options...' {
# More installer entries (if any)
# Memtest (if any)
menuentry "memtest86+" {
linux16 /live/memtest
}
}
例えば、日本語のロケールなどを起動時に選択できるようにし...
menuentry "live system (japanese)" {
linux /live/vmlinuz-4.14.0-3-amd64 boot=live con...
initrd /live/initrd.img
}
** hook の置き場所 [#j02b69e8]
以前の、config/hooks/ から config/hooks/live に変更になっ...
config/hooks/live/foo.hook.chroot
config/hooks/live/bar.hook.binary
のような感じで保存しておきます。
また、それにともなって、local/bin/ の下に置いたローカルな...
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=870164
2018年1月16日からのこのページのだいたいの訪問者数:
本日&counter(today);
昨日&counter(yesterday);
合計&counter(all);
ページ名: