How to format an external 64GB SD card (exfat) using command line?
I have an microSD card with 64GB capacity which has exFAT file system. If I insert it to my card reader, it is mounted automatically. But I am looking for a command to format the card. I installed exfat-fuse
and exfat-utils
, but could not find proper command to format my microSD card.
command-line exfat micro-sd
add a comment |
I have an microSD card with 64GB capacity which has exFAT file system. If I insert it to my card reader, it is mounted automatically. But I am looking for a command to format the card. I installed exfat-fuse
and exfat-utils
, but could not find proper command to format my microSD card.
command-line exfat micro-sd
add a comment |
I have an microSD card with 64GB capacity which has exFAT file system. If I insert it to my card reader, it is mounted automatically. But I am looking for a command to format the card. I installed exfat-fuse
and exfat-utils
, but could not find proper command to format my microSD card.
command-line exfat micro-sd
I have an microSD card with 64GB capacity which has exFAT file system. If I insert it to my card reader, it is mounted automatically. But I am looking for a command to format the card. I installed exfat-fuse
and exfat-utils
, but could not find proper command to format my microSD card.
command-line exfat micro-sd
command-line exfat micro-sd
asked Feb 2 '15 at 16:43
PHP LearnerPHP Learner
87541830
87541830
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Straight from apt-cache show exfat-utils
is the description:
Description-en: utilities to create, check, label and dump exFAT filesystem
Utilities to manage extended file allocation table filesystem.
This package provides tools to create, check and label the
filesystem. It contains
- dumpexfat to dump properties of the filesystem
- exfatfsck / fsck.exfat to report errors found on a exFAT filesystem
- exfatlabel to label a exFAT filesystem
- mkexfatfs / mkfs.exfat to create a exFAT filesystem.
You would use mkfs.exfat
to format the partition, the same as you would use mkfs.fat
to format a normal FAT partition.
add a comment |
open the terminal:
1/ type "man mkfs.exfat", to read how to use it.
2/ type "sudo fdisk -l", to determine where your sd card is mounted. example: /dev/sdc
3/ to format a 128gb SD card and give it the name of "sdxc128",
type "sudo mkfs.exfat -n sdxc128 /dev/sdc"
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f580897%2fhow-to-format-an-external-64gb-sd-card-exfat-using-command-line%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Straight from apt-cache show exfat-utils
is the description:
Description-en: utilities to create, check, label and dump exFAT filesystem
Utilities to manage extended file allocation table filesystem.
This package provides tools to create, check and label the
filesystem. It contains
- dumpexfat to dump properties of the filesystem
- exfatfsck / fsck.exfat to report errors found on a exFAT filesystem
- exfatlabel to label a exFAT filesystem
- mkexfatfs / mkfs.exfat to create a exFAT filesystem.
You would use mkfs.exfat
to format the partition, the same as you would use mkfs.fat
to format a normal FAT partition.
add a comment |
Straight from apt-cache show exfat-utils
is the description:
Description-en: utilities to create, check, label and dump exFAT filesystem
Utilities to manage extended file allocation table filesystem.
This package provides tools to create, check and label the
filesystem. It contains
- dumpexfat to dump properties of the filesystem
- exfatfsck / fsck.exfat to report errors found on a exFAT filesystem
- exfatlabel to label a exFAT filesystem
- mkexfatfs / mkfs.exfat to create a exFAT filesystem.
You would use mkfs.exfat
to format the partition, the same as you would use mkfs.fat
to format a normal FAT partition.
add a comment |
Straight from apt-cache show exfat-utils
is the description:
Description-en: utilities to create, check, label and dump exFAT filesystem
Utilities to manage extended file allocation table filesystem.
This package provides tools to create, check and label the
filesystem. It contains
- dumpexfat to dump properties of the filesystem
- exfatfsck / fsck.exfat to report errors found on a exFAT filesystem
- exfatlabel to label a exFAT filesystem
- mkexfatfs / mkfs.exfat to create a exFAT filesystem.
You would use mkfs.exfat
to format the partition, the same as you would use mkfs.fat
to format a normal FAT partition.
Straight from apt-cache show exfat-utils
is the description:
Description-en: utilities to create, check, label and dump exFAT filesystem
Utilities to manage extended file allocation table filesystem.
This package provides tools to create, check and label the
filesystem. It contains
- dumpexfat to dump properties of the filesystem
- exfatfsck / fsck.exfat to report errors found on a exFAT filesystem
- exfatlabel to label a exFAT filesystem
- mkexfatfs / mkfs.exfat to create a exFAT filesystem.
You would use mkfs.exfat
to format the partition, the same as you would use mkfs.fat
to format a normal FAT partition.
answered Feb 2 '15 at 17:19
dobeydobey
32.7k33586
32.7k33586
add a comment |
add a comment |
open the terminal:
1/ type "man mkfs.exfat", to read how to use it.
2/ type "sudo fdisk -l", to determine where your sd card is mounted. example: /dev/sdc
3/ to format a 128gb SD card and give it the name of "sdxc128",
type "sudo mkfs.exfat -n sdxc128 /dev/sdc"
add a comment |
open the terminal:
1/ type "man mkfs.exfat", to read how to use it.
2/ type "sudo fdisk -l", to determine where your sd card is mounted. example: /dev/sdc
3/ to format a 128gb SD card and give it the name of "sdxc128",
type "sudo mkfs.exfat -n sdxc128 /dev/sdc"
add a comment |
open the terminal:
1/ type "man mkfs.exfat", to read how to use it.
2/ type "sudo fdisk -l", to determine where your sd card is mounted. example: /dev/sdc
3/ to format a 128gb SD card and give it the name of "sdxc128",
type "sudo mkfs.exfat -n sdxc128 /dev/sdc"
open the terminal:
1/ type "man mkfs.exfat", to read how to use it.
2/ type "sudo fdisk -l", to determine where your sd card is mounted. example: /dev/sdc
3/ to format a 128gb SD card and give it the name of "sdxc128",
type "sudo mkfs.exfat -n sdxc128 /dev/sdc"
answered Jan 21 at 6:02
rob grunerob grune
538149
538149
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f580897%2fhow-to-format-an-external-64gb-sd-card-exfat-using-command-line%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown