Results 1 to 3 of 3
Hi,
i tried a dd if=file1 of=file2
it copies the file1 to file2
and displays output like,
"
1+1 records in
1+1 records out
"
what's this mean?
Thx...
- 06-28-2007 #1
doubt on dd command output
Hi,
i tried a dd if=file1 of=file2
it copies the file1 to file2
and displays output like,
"
1+1 records in
1+1 records out
"
what's this mean?
Thx- Lakshmipathi.G
-------------------
FOSS India Award winning ext3fs Undelete tool and tutorials www.giis.co.in
First they criticize you,Then they laugh at you,Then they fight with you,Then you win. - M.K.Gandhi
-------------------
- 06-28-2007 #2for dd command, 1 unit = 512 bytes.1+1 records in
1+1 records out
1+1 means filesize of file1 is greater than 512 byte and less than 1024. copy a file having size around 2048 bytes. output will be:
4+1 records in
4+1 records out.
512 * 4 = 2048.It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 06-29-2007 #3
Thanks casper
- Lakshmipathi.G
-------------------
FOSS India Award winning ext3fs Undelete tool and tutorials www.giis.co.in
First they criticize you,Then they laugh at you,Then they fight with you,Then you win. - M.K.Gandhi
-------------------


Reply With Quote
