JR6PUE HOME PAGE

5.pi-starのSDカードサイズを拡大


 pi-starのイメージをSDカードに焼くと2GBしか利用しません。
 せっかく、サイズの大きなSDカードを利用しているのでサイズ拡大することにします。(2018.06.27)

1.SSHでpi-starにアクセスします。
  user pi-star
   初期パスワード raspberry

2.現在のSDカードのサイズを確認します。

pi-star@pi-star(rw):~$ df -h

Filesystem      Size  Used Avail Use% Mounted on
/dev/root       1.7G  1.4G  222M  87% /
devtmpfs        237M     0  237M   0% /dev
tmpfs           241M     0  241M   0% /dev/shm
tmpfs            16M  4.6M   12M  29% /run
tmpfs           5.0M  4.0K  5.0M   1% /run/lock
tmpfs           241M     0  241M   0% /sys/fs/cgroup
tmpfs           1.0M  472K  552K  47% /var/cache/samba
tmpfs           4.0M  2.2M  1.9M  54% /var/lib/samba/private
tmpfs            64K     0   64K   0% /var/lib/php5/sessions
tmpfs           1.0M     0  1.0M   0% /var/lib/nginx/body
tmpfs            16K     0   16K   0% /var/lib/logrotate
tmpfs            16K     0   16K   0% /var/lib/ntp
tmpfs            16K     0   16K   0% /var/lib/dhcp
tmpfs            16K     0   16K   0% /var/lib/dhcpcd5
tmpfs            64M  208K   64M   1% /var/log
tmpfs            16K     0   16K   0% /var/lib/sudo
tmpfs            64M  8.0K   64M   1% /tmp
tmpfs            16M     0   16M   0% /var/tmp
/dev/mmcblk0p1   63M   22M   42M  35% /boot

pi-star@pi-star(rw):~$

3.pi-starを書き込み可能にします。
pi-star@pi-star(ro):~$ rpi-rw

4.SDカードのサイズ拡大を行います。

pi-star@pi-star(rw):~$ sudo fdisk /dev/mmcblk0

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 /dev/mmcblk0: 14.7 GiB, 15811477504 bytes, 30881792 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: 0xa0e29a9d

Device         Boot  Start     End Sectors  Size Id Type
/dev/mmcblk0p1        8192  137215  129024   63M  c W95 FAT32 (LBA)
/dev/mmcblk0p2      137216 3782655 3645440  1.8G 83 Linux

Command (m for help): d
Partition number (1,2, default 2): 2

Partition 2 has been deleted.

Command (m for help): n
Partition type
  p   primary (1 primary, 0 extended, 3 free)
  e   extended (container for logical partitions)
Select (default p): p
Partition number (2-4, default 2): 2
First sector (2048-30881791, default 2048): 137216
Last sector, +sectors or +size{K,M,G,T,P} (137216-30881791, default 30881791): 30881791

Created a new partition 2 of type 'Linux' and of size 14.7 GiB.

Command (m for help): w
The partition table has been altered.
Calling ioctl() to re-read partition table.
Re-reading the partition table failed.: Device or resource busy

The kernel still uses the old table. The new table will be used at the next reboot or after you run partprobe(8) or kpartx(8).

5.再起動します

pi-star@pi-star(rw):~$ sudo reboot

6.resize2fsコマンドで領域をリサイズ

pi-star@pi-star(rw):~$ sudo resize2fs /dev/mmcblk0p2
resize2fs 1.43.3 (04-Sep-2016)
Filesystem at /dev/mmcblk0p2 is mounted on /; on-line resizing required
old_desc_blocks = 1, new_desc_blocks = 2
The filesystem on /dev/mmcblk0p2 is now 3843072 (4k) blocks long.

7.サイズを確認します。

無事にサイズが拡大できました。\(^o^)/

pi-star@pi-star(rw):~$ df -h
Filesystem      Size  Used Avail Use% Mounted on
/dev/root        15G  1.4G   13G  10% /
devtmpfs        237M     0  237M   0% /dev
tmpfs           241M     0  241M   0% /dev/shm
tmpfs            16M  4.6M   12M  29% /run
tmpfs           5.0M  4.0K  5.0M   1% /run/lock
tmpfs           241M     0  241M   0% /sys/fs/cgroup
tmpfs           4.0M  2.2M  1.9M  54% /var/lib/samba/private
tmpfs           1.0M  472K  552K  47% /var/cache/samba
tmpfs            64K     0   64K   0% /var/lib/php5/sessions
tmpfs           1.0M     0  1.0M   0% /var/lib/nginx/body
tmpfs            16K     0   16K   0% /var/lib/logrotate
tmpfs            16K     0   16K   0% /var/lib/ntp
tmpfs            16K     0   16K   0% /var/lib/dhcp
tmpfs            16K     0   16K   0% /var/lib/sudo
tmpfs            16K     0   16K   0% /var/lib/dhcpcd5
tmpfs            64M  188K   64M   1% /var/log
tmpfs            64M  8.0K   64M   1% /tmp
tmpfs            16M     0   16M   0% /var/tmp
/dev/mmcblk0p1   63M   22M   42M  35% /boot
pi-star@pi-star(rw):~$