룬오디오가 설치되어있는 라즈베리파이3의 마이크로SD의 용량을 증대시키는 명령어.
첨엔 뭔소린지 설명도 없어서 당황했는데...
차분히 명령어들을 입력해보면 결국 원하는 대로
저장공간이 늘어난것을 확인할 수 있다.
용도.
- 룬오디오 작동시 플레이 중인 곡정보를 CLCD 16X2 또는 20X4 에
표시하고자 할 때 gcc를 설치하고자 하면 메모리 블럭이 모자른다는
메시지가 나온다... 이때 아래의 작업이 필요하다.
As root:
fdisk /dev/mmcblk0
Delete the second partition /dev/mmcblk0p2
d
2
Create a new primary partition and use default sizes prompted. This will then create a partiton that fills the disk
n
p
2
enter
enter
Save and exit fdisk:
w
Now reboot. Once rebooted:
resize2fs /dev/mmcblk0p2 (제일 중요... 깜빡 잊고 입력하지 않아서 고생했음)
Your main / partition should be the full size of the disk now.