Questions tagged «hexadecimal»




2
如何使用dd填充“ FF”文件?
如何垫与文件0xFF使用dd? 此命令将用零填充输出文件,直到文件大小达到100 KB: dd if=inputFile.bin ibs=1k count=100 of=paddedFile.bin conv=sync 但是,我想用0xFFs而不是0x00s 填充文件。
20 linux  dd  hexadecimal 




2
唯一的Linux系统标识符
我鼓励我的学生在他们的计算机上安装Linux发行版。为了确保他们已完成任务,我请他们执行此命令以生成唯一标识符: echo $(sudo dmidecode -t 4 | grep ID | sed 's/.*ID://;s/ //g') $(ifconfig | grep -oP 'HWaddr \K.*' | sed 's/://g') | sha256sum | awk '{print $1}' ...并向我发送获得的十六进制字符串。 现在,许多学生提供相同的字符串。这个字符串对每个安装都不是唯一的吗?(我在每台机器上都获得了不同的一台),还是作弊?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.