20
6
I want to append new data in a file stored in SSD.
dd if=/dev/shm/test of=/data/sdb/test bs=1G oflag=append
But df -h shows the dd command always overwrite the test file, instead appends new data in the test file. I also tried
dd if=/dev/shm/test of=/data/sdb/test bs=1G conv=notrunc
It does not work, either.
your solution works. Thanks. But do you know why my solutions don't work? I have checked the man page. cannot find the reason. thanks. – city – 2014-12-09T06:46:20.600