我正在尝试获取 /dev/sda2 的最后 1024 个字节。当我这样做时sudo tail -c 1024 /dev/sda2 | hd,提示会一直挂起,直到我按下 Ctrl-C。但是,当 I 时tail -c 1024 ddfilecopyofsda2 | hd,我立即得到文件最后 1024 个字节的不错输出。我在这里读到(https://unix.stackexchange.com/questions/60034/what-are-character-special-and-block-special-files-in-a-unix-system)“块设备通常是可查找的, “那我错过了什么?