#SOLVED
33 messages · Page 1 of 1 (latest)
but i'm not sure if sda 1 is the usb, or if sda 2 is it
because i want to now unmount it
the usb device should be sda, the numbers shows the partitions of the device, if you want to know which one are mounted, you can use the command df
lsblk or mount -l might be better suited as df has a different use-case
so if i want to wipe the device i wipe both partitions?
yes
how come the 2nd one is saying it's not mounted tho?
aren't both of these partitions on this same usb? and i have it plugged in and clicked mount/open
can you take a screenshot of the output of df command?
also if you want to a wipe the usb with a graphical interface, gparted is pretty good
okay wait but how come nothing is returning after shredding it?
doesn't this command work to wipe the usb : sudo shred?
don't know, never tried that command
you can with dd if you want, with sudo dd if=/dev/zero of=/dev/sda bs=1M count=2
okay i'm trying that rn
but it still isn't returning anything i guess the process of wiping takes time
takes a little time, yes
kk ill lyk if it works thanks
its still not returning anything
CTRL+C to stop, you are missing the part bs=1M count=2 in this screenshot, try again adding that too
also if you want to wipe all the usb, you need to put /dev/sda, not /dev/sda1
does the records in / out mean it worked?
yes, try out the lsblk command and you shouldn't see the partitions
tysm !
SOLVED
asd