当我使用 dd 工具在磁盘上写入随机数据时,我可以再次访问旧数据。为了测试它,我首先在磁盘中添加了一个“text.txt”文件,并在其中写入了“this is text”。我的磁盘挂载到 /mnt/backup 目录。
$ cat /mnt/backup/text.txt
this is text
$
我用dd:
$ dd if=/dev/urandom of=/dev/sdb1 #this is the disk mounted to the /mnt/backup directory
1025+0 records in
1024+0 records out
1073741824 bytes (1,1 GB, 1,0 GiB) copied, 14,4948 s, 74,1 MB/s
$
如果我尝试列出磁盘的内容,我不会得到任何结果,但是当我输入完整的文件名时,我可以打印文件的内容。
$ ls -l /mnt/backup/
total 0
$ cat /mnt/backup/text.txt
this is text
为什么会这样?我的预期是现有数据也会被覆盖。如果我知道完整的文件名,我仍然可以访问数据。我错过了什么?