How To Remove USB Pen Device MBR
What is MBR ?
MBR is master boot recorded.
The question is how can we remove the MBR for USB device?
in DOS environtment we can just simply type fdisk/mbr command
but this is different, in LINUX/ UNIX please follow this step below :
Login into your server and type command below
[code]$dd if=/dev/zero of=/dev/sdc bs=512 count=1[/code]
YOu will see the output like below
1+0 records in
1+0 records out
512 bytes (512 B) copied, 0.00308483 s, 166 kB/s
↧
How To Remove USB Pen Device MBR
↧