Gentoo Archives: gentoo-user

From: Volker Armin Hemmann <volkerarmin@××××××××××.com>
To: gentoo-user@l.g.o
Subject: Re: [gentoo-user] dd says no space left on device
Date: Sun, 15 May 2011 18:18:58
Message-Id: 2838751.RHmzLI4HuL@localhost
In Reply to: Re: [gentoo-user] dd says no space left on device by Mick
1 On Sunday 15 May 2011 18:52:21 Mick wrote:
2 > On Sunday 15 May 2011 08:45:05 Adam Carter wrote:
3 > > I'm cloning a windows disk using gentoo;
4 > >
5 > > On the old 66GB disk;
6 > > # dd if=/dev/sdb of=/root/winmbr.bin bs=512 count=1
7 > > # dd if=/dev/sdb1 bs=10M | gzip -v > winpartition.gz
8 > >
9 > > Then after swapping in the new 500GB disk;
10 > > dd if=/root/winmbr.bin of=/dev/sdb bs=512 count=1
11 > > # gunzip -c winpartition.gz | dd of=/dev/sdb1 bs=10M
12 > > dd: writing `/dev/sdb1': No space left on device
13 > > 0+306 records in
14 > > 0+305 records out
15 > > 10137600 bytes (10 MB) copied, 0.109885 s, 92.3 MB/s
16 > > # fdisk -l /dev/sdb
17 > >
18 > > Disk /dev/sdb: 500.1 GB, 500107862016 bytes
19 > > 255 heads, 63 sectors/track, 60801 cylinders, total 976773168 sectors
20 > > Units = sectors of 1 * 512 = 512 bytes
21 > > Sector size (logical/physical): 512 bytes / 512 bytes
22 > > I/O size (minimum/optimal): 512 bytes / 512 bytes
23 > > Disk identifier: 0xe3f7e3f7
24 > >
25 > > Device Boot Start End Blocks Id System
26 > >
27 > > /dev/sdb1 * 206848 117207039 58500096 7 HPFS/NTFS/exFAT
28 > >
29 > > Why is dd saying no space left after copying 10MB when sdb1 is 65GB?
30 >
31 > Not sure if the bs=10M is too large?
32 >
33 > You can try finding the optimum size of the bs= value by creating a
34 > partition on the new disk, formating it and then run something like:
35 >
36 > dd if=/dev/zero bs=1024 count=1000000 of=/1G_test.file
37 > dd if=/dev/zero bs=2048 count=500000 of=/1G_test.file
38 > dd if=/dev/zero bs=4096 count=250000 of=/1G_test.file
39 > dd if=/dev/zero bs=8192 count=125000 of=/1G_test.file
40 >
41 > and compare the results that dd reports. bs=4096 often gives best
42 > performance (on my drives at least) but with the new 1T+ drives you may
43 > find that another block size does the job better.
44 >
45 > Then zero the drive first using dd:
46 >
47 > dd if=/dev/zero of=/dev/sdb bs=4096 oflag=direct conv=notrunc
48 >
49 > and try repeating your restoring from back up with a more suitable block
50 > size.
51
52 a) sector sizes are mentioned in the docu
53 b) compeletly unrelated.

Replies

Subject Author
Re: [gentoo-user] dd says no space left on device Mick <michaelkintzios@×××××.com>