How can I format my disk to NTFS I need to delete everything so I can buy Windows XP and reinstall thanks Barara
Asked
Active
Viewed 1,072 times
1 Answers
0
Check the installation of ntfs-3g
sudo apt-get install ntfs-3g
Open a terminal and identify your drive:
lsblk
Sample output:
sdc 8:32 1 7,5G 0 disk
└─sdc1 8:33 1 7,5G 0 part /media/user/BAFC-91D9
Then unmount the device
sudo umount /dev/<your_device_and_partition>
in my case
sudo umount /dev/sdc1
and format with
sudo mkfs.ntfs /dev/<your_device_and_partition>
in my case
sudo mkfs.ntfs /dev/sdc1
Or simply install Windows. The hard disk is automatically formatted.
A.B.
- 92,125