http://www.gnu.org/software/grub/manual/grub.html#index-search 에있는 search
명령에 대한 공식 GRUB2 문서를보고 있습니다 .
Command: search [--file|--label|--fs-uuid] [--set [var]] [--no-floppy] name
Search devices by file (-f, --file), filesystem label (-l, --label),
or filesystem UUID (-u, --fs-uuid).
If the --set option is used, the first device found is set as the
value of environment variable var. The default variable is ‘root’.
The --no-floppy option prevents searching floppy devices, which can be slow.
The ‘search.file’, ‘search.fs_label’, and ‘search.fs_uuid’ commands are aliases
for ‘search --file’, ‘search --label’, and ‘search --fs-uuid’ respectively.
섹션 5.3에는 많은 예제가 있습니다.
menuentry "FreeBSD" {
insmod zfs
search --set=root --label freepool --hint hd0,msdos7
...
}
--hint
옵션이 예제 이외의 문서화되지 않은 것으로 나타납니다 . 정확히 무엇을합니까? 인수의 정확한 형식은 무엇입니까?