什么是黑名单?为什么它们被认为是不可靠的?

什么是黑名单?为什么它们被认为是不可靠的?

我是 Linux 新手,只是想知道什么是黑名单以及为什么它们被认为是不可靠的。

我的问题示例:

will@Will-PC:~$ sudo burg-install /dev/sda1
/usr/sbin/burg-setup: warn: Attempting to install GRUB to a partition instead of the MBR.  This is a BAD idea..
/usr/sbin/burg-setup: warn: Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged..
/usr/sbin/burg-setup: error: if you really want blocklists, use --force

问题是:/dev/sda1是我的 MBR。

任何有关黑名单的描述或针对我的问题的建议都将不胜感激!

答案1

之所以不可靠是因为 burg 仍在开发中,这就是为什么它没有在 Ubuntu 上默认安装。

并且,黑名单是 grub/grub2/burg 所特有的(至少在术语上)。

这用于读取不属于文件系统的数据,即直接在磁盘上读取。您可以在https://www.gnu.org/software/grub/manual/html_node/Block-list-syntax.html#Block-list-syntax

不,MBR 不在 /dev/sda1 上,它位于磁盘的开头(即 /dev/sda,第一个块),而 sda1 是第一个分区。

所以你真的应该检查一下这是否是你应该使用的 /dev/sda。但是,由于引导加载程序至关重要,如果我是你,我会在接触之前仔细检查一切。

相关内容