pages:howtos:windows:format-external-usb-storage-for-windows
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
pages:howtos:windows:format-external-usb-storage-for-windows [2022/01/23 15:33] – created mischerh | pages:howtos:windows:format-external-usb-storage-for-windows [2022/01/23 18:44] (current) – mischerh | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | {{tag> | + | {{tag> |
====== Format external USB storage for windows ====== | ====== Format external USB storage for windows ====== | ||
===== Sources ===== | ===== Sources ===== | ||
Line 6: | Line 6: | ||
* https:// | * https:// | ||
* https:// | * https:// | ||
+ | * https:// | ||
+ | * https:// | ||
+ | * https:// | ||
===== How to do it ===== | ===== How to do it ===== | ||
Line 61: | Line 64: | ||
Warning: The existing disk label on /dev/sdb will be destroyed and all data on this disk will be lost. Do you want to continue? | Warning: The existing disk label on /dev/sdb will be destroyed and all data on this disk will be lost. Do you want to continue? | ||
Yes/No? | Yes/No? | ||
- | press < | + | |
+ | press < | ||
+ | |||
Information: | Information: | ||
- | some arithmetics to calculate the starting sector for the new partition | + | create |
<sxh bash; gutter: false> | <sxh bash; gutter: false> | ||
- | MYDEV=" | + | parted -a optimal |
- | OIS=$(cat | + | </sxh> |
- | MIS=$(cat | + | |
- | AO=$(cat | + | |
- | PBS=$(cat / | + | |
- | ((START_SECTOR=$OIS+$AO)) | + | |
- | ((START_SECTOR=$START_SECTOR/ | + | |
- | echo " | + | |
- | mkpart primary " | + | check if the partition is aligned correctly |
+ | <sxh bash; gutter: false> | ||
+ | parted /dev/sdb align-check optimal 1 | ||
</ | </ | ||
+ | 1 aligned | ||
- | now format | + | check the partition |
+ | <sxh bash; gutter: false> | ||
+ | parted /dev/sdb print | ||
+ | </ | ||
+ | Model: BUFFALO External HDD (scsi) | ||
+ | Disk /dev/sdb: 500GB | ||
+ | Sector size (logical/ | ||
+ | Partition Table: msdos | ||
+ | Disk Flags: | ||
+ | |||
+ | Number | ||
+ | | ||
+ | now format the partition | ||
<sxh bash; gutter: false> | <sxh bash; gutter: false> | ||
- | mkfs.vfat /dev/<YOUR DEVICE> | + | mkfs.vfat |
</ | </ | ||
+ | mkfs.fat 4.2 (2021-01-31) | ||
+ | Auto-selecting FAT32 for large filesystem | ||
+ | /dev/sdb1 has 255 heads and 63 sectors per track, | ||
+ | hidden sectors 0x0800; | ||
+ | logical sector size is 512, | ||
+ | using 0xf8 media descriptor, with 976771026 sectors; | ||
+ | drive number 0x80; | ||
+ | filesystem has 2 32-bit FATs and 64 sectors per cluster. | ||
+ | FAT size is 119232 sectors, and provides 15258320 clusters. | ||
+ | There are 64 reserved sectors. | ||
+ | Volume ID is aa1a69ca, no volume label. | ||
---- | ---- | ||
~~DISCUSSION~~ | ~~DISCUSSION~~ | ||
pages/howtos/windows/format-external-usb-storage-for-windows.1642952036.txt.gz · Last modified: 2022/01/23 15:33 by mischerh