What types of filesystem can I use?
How can I get list of all filesystems, that Ubuntu can create on a disk ?
filesystem
add a comment |
How can I get list of all filesystems, that Ubuntu can create on a disk ?
filesystem
3
Please be more specific. Why do you need it? Filesystems usable by Linux are well known.
– Pilot6
Feb 8 at 20:13
2
Typemkfs.
and see which commands tab autocompletion has to offer?
– Byte Commander
Feb 8 at 20:23
This works, but does not contain all filesystems. I find out, that after using parted then mkpart, you will be asked what FS you want to use, then you click tabulator, and it show all filesystems.
– John Ronald
Feb 8 at 20:27
@ByteCommandercompgen -c mkfs.
does the same programmatically
– wjandrea
Feb 8 at 20:44
add a comment |
How can I get list of all filesystems, that Ubuntu can create on a disk ?
filesystem
How can I get list of all filesystems, that Ubuntu can create on a disk ?
filesystem
filesystem
asked Feb 8 at 19:13
John RonaldJohn Ronald
238
238
3
Please be more specific. Why do you need it? Filesystems usable by Linux are well known.
– Pilot6
Feb 8 at 20:13
2
Typemkfs.
and see which commands tab autocompletion has to offer?
– Byte Commander
Feb 8 at 20:23
This works, but does not contain all filesystems. I find out, that after using parted then mkpart, you will be asked what FS you want to use, then you click tabulator, and it show all filesystems.
– John Ronald
Feb 8 at 20:27
@ByteCommandercompgen -c mkfs.
does the same programmatically
– wjandrea
Feb 8 at 20:44
add a comment |
3
Please be more specific. Why do you need it? Filesystems usable by Linux are well known.
– Pilot6
Feb 8 at 20:13
2
Typemkfs.
and see which commands tab autocompletion has to offer?
– Byte Commander
Feb 8 at 20:23
This works, but does not contain all filesystems. I find out, that after using parted then mkpart, you will be asked what FS you want to use, then you click tabulator, and it show all filesystems.
– John Ronald
Feb 8 at 20:27
@ByteCommandercompgen -c mkfs.
does the same programmatically
– wjandrea
Feb 8 at 20:44
3
3
Please be more specific. Why do you need it? Filesystems usable by Linux are well known.
– Pilot6
Feb 8 at 20:13
Please be more specific. Why do you need it? Filesystems usable by Linux are well known.
– Pilot6
Feb 8 at 20:13
2
2
Type
mkfs.
and see which commands tab autocompletion has to offer?– Byte Commander
Feb 8 at 20:23
Type
mkfs.
and see which commands tab autocompletion has to offer?– Byte Commander
Feb 8 at 20:23
This works, but does not contain all filesystems. I find out, that after using parted then mkpart, you will be asked what FS you want to use, then you click tabulator, and it show all filesystems.
– John Ronald
Feb 8 at 20:27
This works, but does not contain all filesystems. I find out, that after using parted then mkpart, you will be asked what FS you want to use, then you click tabulator, and it show all filesystems.
– John Ronald
Feb 8 at 20:27
@ByteCommander
compgen -c mkfs.
does the same programmatically– wjandrea
Feb 8 at 20:44
@ByteCommander
compgen -c mkfs.
does the same programmatically– wjandrea
Feb 8 at 20:44
add a comment |
2 Answers
2
active
oldest
votes
You can start gparted
and try to format a partition.
You'll get a drop down list of all available filesystems.
In addition you can format to exfat
that is not supported by gparted
.
add a comment |
Try this:
Open Terminal
Paste this and hit Enter:
ls /lib/modules/$(uname -r)/kernel/fs
It lists all filesystems available with your Kernel
More complete list:
https://unix.stackexchange.com/a/219188
Thanks for answer, but that is not exactly I was looking for. Most of these are unusable with mkfs.
– John Ronald
Feb 8 at 19:38
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%2f1116760%2fwhat-types-of-filesystem-can-i-use%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
You can start gparted
and try to format a partition.
You'll get a drop down list of all available filesystems.
In addition you can format to exfat
that is not supported by gparted
.
add a comment |
You can start gparted
and try to format a partition.
You'll get a drop down list of all available filesystems.
In addition you can format to exfat
that is not supported by gparted
.
add a comment |
You can start gparted
and try to format a partition.
You'll get a drop down list of all available filesystems.
In addition you can format to exfat
that is not supported by gparted
.
You can start gparted
and try to format a partition.
You'll get a drop down list of all available filesystems.
In addition you can format to exfat
that is not supported by gparted
.
answered Feb 8 at 20:17
Pilot6Pilot6
53.8k15110198
53.8k15110198
add a comment |
add a comment |
Try this:
Open Terminal
Paste this and hit Enter:
ls /lib/modules/$(uname -r)/kernel/fs
It lists all filesystems available with your Kernel
More complete list:
https://unix.stackexchange.com/a/219188
Thanks for answer, but that is not exactly I was looking for. Most of these are unusable with mkfs.
– John Ronald
Feb 8 at 19:38
add a comment |
Try this:
Open Terminal
Paste this and hit Enter:
ls /lib/modules/$(uname -r)/kernel/fs
It lists all filesystems available with your Kernel
More complete list:
https://unix.stackexchange.com/a/219188
Thanks for answer, but that is not exactly I was looking for. Most of these are unusable with mkfs.
– John Ronald
Feb 8 at 19:38
add a comment |
Try this:
Open Terminal
Paste this and hit Enter:
ls /lib/modules/$(uname -r)/kernel/fs
It lists all filesystems available with your Kernel
More complete list:
https://unix.stackexchange.com/a/219188
Try this:
Open Terminal
Paste this and hit Enter:
ls /lib/modules/$(uname -r)/kernel/fs
It lists all filesystems available with your Kernel
More complete list:
https://unix.stackexchange.com/a/219188
edited Feb 8 at 19:40
answered Feb 8 at 19:36
PAPPLPAPPL
267
267
Thanks for answer, but that is not exactly I was looking for. Most of these are unusable with mkfs.
– John Ronald
Feb 8 at 19:38
add a comment |
Thanks for answer, but that is not exactly I was looking for. Most of these are unusable with mkfs.
– John Ronald
Feb 8 at 19:38
Thanks for answer, but that is not exactly I was looking for. Most of these are unusable with mkfs.
– John Ronald
Feb 8 at 19:38
Thanks for answer, but that is not exactly I was looking for. Most of these are unusable with mkfs.
– John Ronald
Feb 8 at 19:38
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%2f1116760%2fwhat-types-of-filesystem-can-i-use%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
3
Please be more specific. Why do you need it? Filesystems usable by Linux are well known.
– Pilot6
Feb 8 at 20:13
2
Type
mkfs.
and see which commands tab autocompletion has to offer?– Byte Commander
Feb 8 at 20:23
This works, but does not contain all filesystems. I find out, that after using parted then mkpart, you will be asked what FS you want to use, then you click tabulator, and it show all filesystems.
– John Ronald
Feb 8 at 20:27
@ByteCommander
compgen -c mkfs.
does the same programmatically– wjandrea
Feb 8 at 20:44