dd command clones 10MB and stops

Multi tool use
up vote
0
down vote
favorite
I am trying to clone old windows 8 HDD disk to new SSD. Both have the same capacity: 250GB
The problem is that dd command stops quickly after copying 10MB only.
Here is the output:
root@x72j:~# dd if=/dev/sdd of=/dev/sdc bs=128M conv=notrunc,noerror
0+1 records in
0+1 records out
10485760 bytes (10 MB) copied, 0.384963 s, 27.2 MB/s
I even tried copying to /dev/null
root@x72j:~# dd if=/dev/sdd of=/dev/null bs=128M conv=notrunc,noerror
0+1 records in
0+1 records out
10485760 bytes (10 MB) copied, 0.00766644 s, 1.4 GB/s
Why it doesn't clone full disk?
hard-drive dd clone
add a comment |
up vote
0
down vote
favorite
I am trying to clone old windows 8 HDD disk to new SSD. Both have the same capacity: 250GB
The problem is that dd command stops quickly after copying 10MB only.
Here is the output:
root@x72j:~# dd if=/dev/sdd of=/dev/sdc bs=128M conv=notrunc,noerror
0+1 records in
0+1 records out
10485760 bytes (10 MB) copied, 0.384963 s, 27.2 MB/s
I even tried copying to /dev/null
root@x72j:~# dd if=/dev/sdd of=/dev/null bs=128M conv=notrunc,noerror
0+1 records in
0+1 records out
10485760 bytes (10 MB) copied, 0.00766644 s, 1.4 GB/s
Why it doesn't clone full disk?
hard-drive dd clone
Have you tried to just use a simpledd if=/dev/sdd of=/dev/sdc
with no limiting arguments? Here is an answer that talks to this subject: Check out this answer for details: askubuntu.com/questions/435694/…
– SDsolar
Aug 13 '17 at 16:43
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I am trying to clone old windows 8 HDD disk to new SSD. Both have the same capacity: 250GB
The problem is that dd command stops quickly after copying 10MB only.
Here is the output:
root@x72j:~# dd if=/dev/sdd of=/dev/sdc bs=128M conv=notrunc,noerror
0+1 records in
0+1 records out
10485760 bytes (10 MB) copied, 0.384963 s, 27.2 MB/s
I even tried copying to /dev/null
root@x72j:~# dd if=/dev/sdd of=/dev/null bs=128M conv=notrunc,noerror
0+1 records in
0+1 records out
10485760 bytes (10 MB) copied, 0.00766644 s, 1.4 GB/s
Why it doesn't clone full disk?
hard-drive dd clone
I am trying to clone old windows 8 HDD disk to new SSD. Both have the same capacity: 250GB
The problem is that dd command stops quickly after copying 10MB only.
Here is the output:
root@x72j:~# dd if=/dev/sdd of=/dev/sdc bs=128M conv=notrunc,noerror
0+1 records in
0+1 records out
10485760 bytes (10 MB) copied, 0.384963 s, 27.2 MB/s
I even tried copying to /dev/null
root@x72j:~# dd if=/dev/sdd of=/dev/null bs=128M conv=notrunc,noerror
0+1 records in
0+1 records out
10485760 bytes (10 MB) copied, 0.00766644 s, 1.4 GB/s
Why it doesn't clone full disk?
hard-drive dd clone
hard-drive dd clone
asked May 29 '16 at 11:07
redochka
1266
1266
Have you tried to just use a simpledd if=/dev/sdd of=/dev/sdc
with no limiting arguments? Here is an answer that talks to this subject: Check out this answer for details: askubuntu.com/questions/435694/…
– SDsolar
Aug 13 '17 at 16:43
add a comment |
Have you tried to just use a simpledd if=/dev/sdd of=/dev/sdc
with no limiting arguments? Here is an answer that talks to this subject: Check out this answer for details: askubuntu.com/questions/435694/…
– SDsolar
Aug 13 '17 at 16:43
Have you tried to just use a simple
dd if=/dev/sdd of=/dev/sdc
with no limiting arguments? Here is an answer that talks to this subject: Check out this answer for details: askubuntu.com/questions/435694/…– SDsolar
Aug 13 '17 at 16:43
Have you tried to just use a simple
dd if=/dev/sdd of=/dev/sdc
with no limiting arguments? Here is an answer that talks to this subject: Check out this answer for details: askubuntu.com/questions/435694/…– SDsolar
Aug 13 '17 at 16:43
add a comment |
3 Answers
3
active
oldest
votes
up vote
0
down vote
Try this:
exec sudo -i
fdisk -l
umount /dev/sdd?
fsck -y /dev/sdd?
dd if=/dev/sdd of=/dev/sdc bs=1M conv=noerror,sync
Change ? for the corresponding partition of /dev/sdd
thanks for the response but I am targeting the device sdd and not just its partition.
– redochka
Jan 10 '17 at 21:41
add a comment |
up vote
0
down vote
For anyone experiencing the same issue, it is likely because you have actually created the "file" /dev/sdd
The virtual /dev
parition is usually 10MB which is why the dd
stops after 10MB.
Even if the "device" /dev/sdd
later shows up, it will be blocked by the existing file.
Try ls -la /dev/sd*
and you should see some anomalies.
i don't understand your response. Sorry
– redochka
Jan 10 '17 at 21:40
add a comment |
up vote
0
down vote
Most dd commands can be replaced with cat.
E.g.:
cat /dev/sdd > /dev/sdc
add a comment |
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
Try this:
exec sudo -i
fdisk -l
umount /dev/sdd?
fsck -y /dev/sdd?
dd if=/dev/sdd of=/dev/sdc bs=1M conv=noerror,sync
Change ? for the corresponding partition of /dev/sdd
thanks for the response but I am targeting the device sdd and not just its partition.
– redochka
Jan 10 '17 at 21:41
add a comment |
up vote
0
down vote
Try this:
exec sudo -i
fdisk -l
umount /dev/sdd?
fsck -y /dev/sdd?
dd if=/dev/sdd of=/dev/sdc bs=1M conv=noerror,sync
Change ? for the corresponding partition of /dev/sdd
thanks for the response but I am targeting the device sdd and not just its partition.
– redochka
Jan 10 '17 at 21:41
add a comment |
up vote
0
down vote
up vote
0
down vote
Try this:
exec sudo -i
fdisk -l
umount /dev/sdd?
fsck -y /dev/sdd?
dd if=/dev/sdd of=/dev/sdc bs=1M conv=noerror,sync
Change ? for the corresponding partition of /dev/sdd
Try this:
exec sudo -i
fdisk -l
umount /dev/sdd?
fsck -y /dev/sdd?
dd if=/dev/sdd of=/dev/sdc bs=1M conv=noerror,sync
Change ? for the corresponding partition of /dev/sdd
answered May 29 '16 at 14:57


kyodake
9,47011932
9,47011932
thanks for the response but I am targeting the device sdd and not just its partition.
– redochka
Jan 10 '17 at 21:41
add a comment |
thanks for the response but I am targeting the device sdd and not just its partition.
– redochka
Jan 10 '17 at 21:41
thanks for the response but I am targeting the device sdd and not just its partition.
– redochka
Jan 10 '17 at 21:41
thanks for the response but I am targeting the device sdd and not just its partition.
– redochka
Jan 10 '17 at 21:41
add a comment |
up vote
0
down vote
For anyone experiencing the same issue, it is likely because you have actually created the "file" /dev/sdd
The virtual /dev
parition is usually 10MB which is why the dd
stops after 10MB.
Even if the "device" /dev/sdd
later shows up, it will be blocked by the existing file.
Try ls -la /dev/sd*
and you should see some anomalies.
i don't understand your response. Sorry
– redochka
Jan 10 '17 at 21:40
add a comment |
up vote
0
down vote
For anyone experiencing the same issue, it is likely because you have actually created the "file" /dev/sdd
The virtual /dev
parition is usually 10MB which is why the dd
stops after 10MB.
Even if the "device" /dev/sdd
later shows up, it will be blocked by the existing file.
Try ls -la /dev/sd*
and you should see some anomalies.
i don't understand your response. Sorry
– redochka
Jan 10 '17 at 21:40
add a comment |
up vote
0
down vote
up vote
0
down vote
For anyone experiencing the same issue, it is likely because you have actually created the "file" /dev/sdd
The virtual /dev
parition is usually 10MB which is why the dd
stops after 10MB.
Even if the "device" /dev/sdd
later shows up, it will be blocked by the existing file.
Try ls -la /dev/sd*
and you should see some anomalies.
For anyone experiencing the same issue, it is likely because you have actually created the "file" /dev/sdd
The virtual /dev
parition is usually 10MB which is why the dd
stops after 10MB.
Even if the "device" /dev/sdd
later shows up, it will be blocked by the existing file.
Try ls -la /dev/sd*
and you should see some anomalies.
answered Jan 10 '17 at 6:42
Finally WorkedItOut
1
1
i don't understand your response. Sorry
– redochka
Jan 10 '17 at 21:40
add a comment |
i don't understand your response. Sorry
– redochka
Jan 10 '17 at 21:40
i don't understand your response. Sorry
– redochka
Jan 10 '17 at 21:40
i don't understand your response. Sorry
– redochka
Jan 10 '17 at 21:40
add a comment |
up vote
0
down vote
Most dd commands can be replaced with cat.
E.g.:
cat /dev/sdd > /dev/sdc
add a comment |
up vote
0
down vote
Most dd commands can be replaced with cat.
E.g.:
cat /dev/sdd > /dev/sdc
add a comment |
up vote
0
down vote
up vote
0
down vote
Most dd commands can be replaced with cat.
E.g.:
cat /dev/sdd > /dev/sdc
Most dd commands can be replaced with cat.
E.g.:
cat /dev/sdd > /dev/sdc
answered 4 hours ago
Owl
1012
1012
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f779015%2fdd-command-clones-10mb-and-stops%23new-answer', 'question_page');
}
);
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
bNDu,6hyv,PUikARYKdUEX06itUhpJogSMHo1U Fs TR,9zHHP3J1GBPFGOzTy zd65Fwb
Have you tried to just use a simple
dd if=/dev/sdd of=/dev/sdc
with no limiting arguments? Here is an answer that talks to this subject: Check out this answer for details: askubuntu.com/questions/435694/…– SDsolar
Aug 13 '17 at 16:43