강좌 & 팁
파티션이 설정되어 있는 .img 파일을 SD 카드 또는 USB 등 기타 장치로 이미지를 복사( dd 명령 등..) 할 경우 고정된 사이즈의 파티션으로 설정됩니다. 즉 .img 가 2GB 이고, SD카드는 8GB일 경우 dd 명령으로 이미지를 복사하면 2GB만 사용 가능하고, 나머지 6GB는 따로 사용해야 합니다.
이를 아래의 방법으로 모든 공간을 사용할 수 있게 바꾸어 보도록 하겠습니다.
아래의 내용은 SD카드가 아닌 파일이미지를 가지고 설명하도록 하겠습니다. ( SD 또는 USB 등 기타 장치도 같은 방식으로 하면 됩니다. )
1. 파티션 확인 하기.
$ sudo fdisk falinux-trusty.img
Welcome to fdisk (util-linux 2.25.2).
Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.
Command (m for help): p
Disk falinux-trusty.img: 6.9 GiB, 7340032000 bytes, 14336000 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x229592a6
Device Boot Start End Sectors Size Id Type
falinux-trusty.img1 2048 7372799 7370752 3.5G 83 Linux
Command (m for help): q
2. 파티션 사이즈 늘리기
$ sudo fdisk falinux-trusty.img
Welcome to fdisk (util-linux 2.25.2).
Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.
Command (m for help): p
Disk falinux-trusty.img: 6.9 GiB, 7340032000 bytes, 14336000 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x229592a6
Device Boot Start End Sectors Size Id Type
falinux-trusty.img1 2048 7372799 7370752 3.5G 83 Linux
Command (m for help): d
Selected partition 1
Partition 1 has been deleted.
Command (m for help): n
Partition type
p primary (0 primary, 0 extended, 4 free)
e extended (container for logical partitions)
Select (default p): p
Partition number (1-4, default 1): 1
First sector (2048-14335999, default 2048): 2048
Last sector, +sectors or +size{K,M,G,T,P} (2048-14335999, default 14335999): 14335999
Created a new partition 1 of type 'Linux' and of size 6.9 GiB.
Command (m for help): w
The partition table has been altered.
Syncing disks.
$ sudo fdisk falinux-trusty.img
Welcome to fdisk (util-linux 2.25.2).
Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.
Command (m for help): p
Disk falinux-trusty.img: 6.9 GiB, 7340032000 bytes, 14336000 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x229592a6
Device Boot Start End Sectors Size Id Type
falinux-trusty.img1 2048 14335999 14333952 6.9G 83 Linux
Command (m for help): q