I would like to use an ext partition on my portable drive for use with Linux. I got as far as removing the exFAT partition and the partition table, but that bricked the drive.
This is a
SanDisk Portable SSD - 1TB
SKU: SDSSDE30-1T00-G25
USB drive.
Hi @josephj11
Please check the below link for format the drive.
Title:Steps to Format a Drive for Use with Windows or macOS
Link:Steps to Format a Drive for Use with Windows or macOS
Have you opened a Support Case? If not opened, for more information, please contact the WD Technical Support team for the best assistance and troubleshooting:
IDK if I can get Windows running. It’s dual boot and I haven’t started it for a couple of years. What I want is ext4, not exFAT.
To set up an ext4 partition on your SanDisk SSD, connect it to a Linux system. Use lsblk to identify the drive, then fdisk to create a new GPT partition table and ext4 partition. Format the partition with mkfs.ext4. If the drive isn’t visible, you may need advanced recovery methods. Be careful during this process to avoid data loss. If you run into problems, consider asking for help on Linux forums or from a data recovery professional.
To reformat your 1TB SanDisk Portable SSD to EXT4 for Linux, follow these steps:
- First, save important files, as formatting will erase everything. Then, Plug the SSD into your Linux computer.
- Launch a terminal window and Type
lsblk
to find your SSD (like/dev/sdb
). - Run
sudo fdisk /dev/sdX
(replacesdX
with your drive letter) to delete old partitions. - Follow the prompts in
fdisk
to create a new partition. - Use
sudo mkfs.ext4 /dev/sdX1
(replacesdX1
with your new partition). - Run
sudo mount /dev/sdX1 /mnt
to access it.