Step-by-Step Guide- How to Create Partitions on an SD Card Using the Command Prompt
How to Make Partition on SD Card Using Command Prompt
In today’s digital age, the need for additional storage space on our devices is more prevalent than ever. One of the most common storage devices used for expanding the storage capacity of smartphones, cameras, and other portable devices is the SD card. However, if you are using a Windows PC, you might want to create partitions on your SD card to better organize your files and data. In this article, we will guide you through the process of how to make partition on SD card using Command Prompt.
Step 1: Insert the SD Card
Firstly, make sure you have inserted the SD card into your computer’s SD card reader. If your computer doesn’t have an SD card reader, you can use an external USB SD card reader for convenience.
Step 2: Open Command Prompt
Next, you need to open the Command Prompt. There are several ways to do this:
1. Press the Windows key + R to open the Run dialog box. Type “cmd” in the text field and press Enter.
2. Click on the Start button, type “cmd” in the search bar, and press Enter.
3. Press Windows key + X and select “Command Prompt (Admin)” from the list.
Step 3: Identify the SD Card
Once the Command Prompt is open, you need to identify the drive letter assigned to your SD card. To do this, type the following command and press Enter:
“`
list disk
“`
This command will display a list of all the disk drives connected to your computer. Look for the disk with the size of your SD card. The drive letter assigned to your SD card will be listed next to it.
Step 4: Select the SD Card
Now, you need to select the SD card by typing the following command, replacing “x” with the drive letter assigned to your SD card:
“`
select disk x
“`
Step 5: Clean the Disk
Before creating a partition, it’s essential to clean the disk to remove any existing partitions. To clean the disk, type the following command and press Enter:
“`
clean
“`
Step 6: Create a Partition
To create a new partition on the SD card, type the following command and press Enter:
“`
create partition primary size=1024
“`
In this example, the “size=1024” parameter is used to allocate 1 GB of space for the partition. You can adjust the size according to your needs.
Step 7: Format the Partition
After creating the partition, you need to format it to make it usable. Type the following command and press Enter:
“`
format fs=fat32 quick
“`
In this example, the “fs=fat32” parameter is used to format the partition with the FAT32 file system, which is widely compatible with various devices. You can also use “fs=ntfs” for a more robust file system.
Step 8: Assign a Drive Letter
To assign a drive letter to the newly created partition, type the following command and press Enter:
“`
assign letter=y
“`
Replace “y” with the drive letter you want to assign to the partition.
Step 9: Exit Command Prompt
Now that you have successfully created a partition on your SD card, you can exit the Command Prompt by typing “exit” and pressing Enter.
Congratulations! You have successfully made a partition on your SD card using Command Prompt. You can now use the new partition to store and organize your files and data more efficiently.