GParted can erase the partitions and format the SDCard to FAT32, in Debian:Nyanical wrote:I'm currently on Crunchbang, and I would like to install PiBang on my RPi so I can use it similar to my Laptop (which uses Crunchbang), I got my RPi in a Pimoroni starter kit, and it has an SD card with the Micro SD inside, I installed raspbian to it a few weeks ago, but I would like to erase that and use PiBang. Does anyone know how to do this? (I'm on Linux, not Windows).
Code: Select all
apt-get update
apt-get install gpartedCode: Select all
sudo umount /media/boot
sudo umount /media/SystemCode: Select all
user@linux~$ dmesg | tail
[159528.121925] sd 0:0:0:0: [sda] No Caching mode page found
[159528.121966] sd 0:0:0:0: [sda] Assuming drive cache: write through
[159528.135077] sd 0:0:0:0: [sda] No Caching mode page found
[159528.135119] sd 0:0:0:0: [sda] Assuming drive cache: write through
[159528.138606] sda: sda1 sda2
[159528.149564] sd 0:0:0:0: [sda] No Caching mode page found
[159528.149606] sd 0:0:0:0: [sda] Assuming drive cache: write through
[159528.149631] sd 0:0:0:0: [sda] Attached SCSI removable disk
[159529.437749] FAT-fs (sda1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[159529.770046] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)Code: Select all
user@linux~$ cat /proc/partitions
major minor #blocks name
8 0 15793152 sda
8 1 57344 sda1
8 2 15731712 sda2
Code: Select all
sudo dd if=your_favorite.img of=/dev/sdX bs=1M && sudo syncI have already tried gParted, the only partition that even allows you to delete/format is /dev/sdb1fruitoftheloom wrote:GParted can erase the partitions and format the SDCard to FAT32, in Debian:Nyanical wrote:I'm currently on Crunchbang, and I would like to install PiBang on my RPi so I can use it similar to my Laptop (which uses Crunchbang), I got my RPi in a Pimoroni starter kit, and it has an SD card with the Micro SD inside, I installed raspbian to it a few weeks ago, but I would like to erase that and use PiBang. Does anyone know how to do this? (I'm on Linux, not Windows).Code: Select all
apt-get update apt-get install gparted
and by using dd... even then no luck?Nyanical wrote:I've still not erased this
Using dd to write the content of a .img file to the SD card is equivalent to erasing the previous content.Nyanical wrote:I've still not erased this