Quantcast
Channel: Xiao Ling – Dynamsoft Developers
Viewing all articles
Browse latest Browse all 239

How to Resize Raspbian Image for QEMU on Windows

$
0
0

Raspbian is a free operating system based on Debian. It is the recommended operating system for Raspberry Pi. If you do not have a Raspberry Pi, you can experience Raspbian by running the OS image in the emulator – QEMU. In this article, I want to share how to resize the Raspbian image on Windows.

Raspbian and QEMU for Windows

Download the package.

Why do I Need to Resize the Raspbian Image?

The Raspbian image contained in the package is not the latest. Therefore, I want to upgrade the OS with following commands:

sudo apt-get update
sudo apt-get dist-upgrade

Unluckily, when I was trying to upgrade the system, I suffered the lack of space.

raspbian no space

How much storage space can I use? Get the available disk space as follows:

df -h

raspbian image size

Here is the way I tried in order to free up space:

sudo apt-get clean

The outcome is storage space is still not enough. The only solution is to add extra space.

Adding Storage Space to Raspbian Image File (*.img)

According to the answer from StackOverflow, I have verified the steps on Windows:

Steps to resize the *.img file

Install Ubuntu on Windows 10.

ubuntu on windows

Check the original image size and resize it with command ‘truncate’:

truncate -s +2G raspbian.img

resize image

List the partition tables for the image file:

 fdisk -l raspbian.img

fdisk partition table

Although the image size changes to 3.8G, the partition is still 1.8G. We need to re-partition the disk with ‘fdisk’:

fdisk raspbian.img

fdisk delete partition

Use ‘d’ to delete the second partition and use ‘p’ to print the current partition tables.

Create a new partition with ‘n’:

fdisk create partition

The start sector of the second partition is 122880. Don’t forget to enter ‘w’ to commit the change.

The final step is to use ‘resize2fs’ to resize the ext4 (check the file system type with command ‘df -T’) file system.

We need to use ‘losetup’ to mount the image. To find an unused loop device, use the following command:

losetup -f

Unfortunately, it failed. Here is the error message I got:

losetup: cannot find an unused loop device: No such file or directory.

There are no /dev/loop* devices! The function is not supported on Windows 10 yet. The good news is the feature has been listed on the user voice.

Now I have to process the image file in a Linux virtual machine.

resize ext4

Boot QEMU with the new image file:

raspbian image resized

Extra storage space is added.

 

The post How to Resize Raspbian Image for QEMU on Windows appeared first on Code Pool.


Viewing all articles
Browse latest Browse all 239

Trending Articles