What does the jargon filesystem mean?
Sometimes when I go through sections of Linux books about filesystem, it may turn out that it is a chapter talking about the directory structure of a standard Linux system, like /proc, /dev, /etc, /usr directories, with a brief explanation. Sometimes it may be about filesystem types like ext3, ext4 and nfs, dos, etc. I feel quite confused about that. Which one is correct? Or did I miss something?
In short, my question is:
The word filesystem means directory structure of Linux system or things like ext3, ext4, fat32, etc.?
filesystems directory-structure terminology
add a comment |
Sometimes when I go through sections of Linux books about filesystem, it may turn out that it is a chapter talking about the directory structure of a standard Linux system, like /proc, /dev, /etc, /usr directories, with a brief explanation. Sometimes it may be about filesystem types like ext3, ext4 and nfs, dos, etc. I feel quite confused about that. Which one is correct? Or did I miss something?
In short, my question is:
The word filesystem means directory structure of Linux system or things like ext3, ext4, fat32, etc.?
filesystems directory-structure terminology
en.wikipedia.org/wiki/File_system - it means both.
– Mat
Sep 2 '13 at 7:29
The ext3, ext4, fat32, etc. thing are the types of filesystem, or filesystem formats. The directory structure of the filesystem is the directory structure of the filesystem. I heavily agree that the terminology is quite confusing. I tend to prefer the term persistence system better than the historical filesystem.
– uprego
Sep 2 '13 at 7:44
1
Put yet another way: ext4 is a [kind of] filesystem, a directory tree is [the content of] a filesystem.
– goldilocks
Sep 2 '13 at 12:58
add a comment |
Sometimes when I go through sections of Linux books about filesystem, it may turn out that it is a chapter talking about the directory structure of a standard Linux system, like /proc, /dev, /etc, /usr directories, with a brief explanation. Sometimes it may be about filesystem types like ext3, ext4 and nfs, dos, etc. I feel quite confused about that. Which one is correct? Or did I miss something?
In short, my question is:
The word filesystem means directory structure of Linux system or things like ext3, ext4, fat32, etc.?
filesystems directory-structure terminology
Sometimes when I go through sections of Linux books about filesystem, it may turn out that it is a chapter talking about the directory structure of a standard Linux system, like /proc, /dev, /etc, /usr directories, with a brief explanation. Sometimes it may be about filesystem types like ext3, ext4 and nfs, dos, etc. I feel quite confused about that. Which one is correct? Or did I miss something?
In short, my question is:
The word filesystem means directory structure of Linux system or things like ext3, ext4, fat32, etc.?
filesystems directory-structure terminology
filesystems directory-structure terminology
edited yesterday
Rui F Ribeiro
38.8k1479128
38.8k1479128
asked Sep 2 '13 at 7:23
Biscuitz
264
264
en.wikipedia.org/wiki/File_system - it means both.
– Mat
Sep 2 '13 at 7:29
The ext3, ext4, fat32, etc. thing are the types of filesystem, or filesystem formats. The directory structure of the filesystem is the directory structure of the filesystem. I heavily agree that the terminology is quite confusing. I tend to prefer the term persistence system better than the historical filesystem.
– uprego
Sep 2 '13 at 7:44
1
Put yet another way: ext4 is a [kind of] filesystem, a directory tree is [the content of] a filesystem.
– goldilocks
Sep 2 '13 at 12:58
add a comment |
en.wikipedia.org/wiki/File_system - it means both.
– Mat
Sep 2 '13 at 7:29
The ext3, ext4, fat32, etc. thing are the types of filesystem, or filesystem formats. The directory structure of the filesystem is the directory structure of the filesystem. I heavily agree that the terminology is quite confusing. I tend to prefer the term persistence system better than the historical filesystem.
– uprego
Sep 2 '13 at 7:44
1
Put yet another way: ext4 is a [kind of] filesystem, a directory tree is [the content of] a filesystem.
– goldilocks
Sep 2 '13 at 12:58
en.wikipedia.org/wiki/File_system - it means both.
– Mat
Sep 2 '13 at 7:29
en.wikipedia.org/wiki/File_system - it means both.
– Mat
Sep 2 '13 at 7:29
The ext3, ext4, fat32, etc. thing are the types of filesystem, or filesystem formats. The directory structure of the filesystem is the directory structure of the filesystem. I heavily agree that the terminology is quite confusing. I tend to prefer the term persistence system better than the historical filesystem.
– uprego
Sep 2 '13 at 7:44
The ext3, ext4, fat32, etc. thing are the types of filesystem, or filesystem formats. The directory structure of the filesystem is the directory structure of the filesystem. I heavily agree that the terminology is quite confusing. I tend to prefer the term persistence system better than the historical filesystem.
– uprego
Sep 2 '13 at 7:44
1
1
Put yet another way: ext4 is a [kind of] filesystem, a directory tree is [the content of] a filesystem.
– goldilocks
Sep 2 '13 at 12:58
Put yet another way: ext4 is a [kind of] filesystem, a directory tree is [the content of] a filesystem.
– goldilocks
Sep 2 '13 at 12:58
add a comment |
2 Answers
2
active
oldest
votes
A filesystem is both a reference to a tree structure of directories and files as well as a overarching structure that can be placed on a physical medium such as a hard drive or other similar types of medium.
At the end of of the day they're both layers of abstraction that people create so that things are standardized.
The directories + files analogy used is to mimic how people think, with respect to the physical world for storing items (files) inside of something (folders).
So too is a filesystem such as ext4 of fat32. Here it might not be so obvious, but the structure that this type of filesystem provides serves the same purpose, just at a lower level.
For example, a raw disk is just a sequence of bits. By creating a structure on top of it using inodes, we're able to access sections of the disk in an organized methodical fashion.
Notice the image of the inode structure (from wikipedia article titled: inode pointer structure
The structure of a filesystem representing files + directories
computer architectures
One thing you'll notice as you continue to study computer architectures is that the same concepts are used over and over again. The notion of hostnames is nested too.
.---> <-----.
| |
.------. .------.
^------------>| .com | | .net |
| '------' '------'
| ^
| |
.--------. .---------------.
| google | | stackexchange |
'--------' '---------------'
^ ^
| |
.-----. .------.
| www | | unix |
'-----' '------'
Or in programming, class inheritance (Ruby):
class Mammal
def breathe
puts "inhale and exhale"
end
end
class Cat < Mammal
def speak
puts "Meow"
end
end
jake = Cat.new
jake.breathe
jake.speak
Hierarchical structures tend to be easy to visualize, navigate and manipulate.
– Shadur
Sep 2 '13 at 12:32
@Shadur - yeah they're a very easy concept to comprehend, plus they're all around us in nature. A fractal is a form of hierarchy.
– slm♦
Sep 2 '13 at 12:37
@sim - Thank you for your answer. I like the ruby example!
– Biscuitz
Sep 3 '13 at 7:19
@Biscuitz - you're quite welcome. Thank you for your question.
– slm♦
Sep 3 '13 at 11:36
add a comment |
As is usual in natural languages, the word filesystem has several related meanings. A filesystem relates to how files are organized; this can be interpreted at various levels.
The filesystem of a unix system is the set of all files that are accessible at a given time. For example, a system call that accesses a file can be classified as a filesystem system call. A process's filesystem credentials are the credentials that determine what files it can access.
The filesystem can also refer to the structure of that filesystem: what directories and files exist on a unix system and what they're used for. On Unix & Linux, we use the tag directory-structure for that meaning.
A filesystem is a way through which files can be accessed on a given system. The filesystem (in the first sense above) of a unix systems consists of several filesystems (in this sense), each mounted at a particular directory. Filesystems in this sense are usually refered to by their mount point: the root filesystem (mounted on /
), the proc filesystem (normally mounted on /proc
), the or a home filesystem (normally mounted on /home
or a subdirectory, containing users' home directories), etc.
A filesystem type (or filesystem format) is a layout format for filesystems in the previous sense. Ext2, tmpfs, proc, sshfs, etc. are filesystem types. Filesystem type can be abbreviated to filesystem by metonymy. In fact, filesystem or filesystem is strictly speaking not just the layout format, but also the rules for modifying it.
A filesystem can also be a specific driver for a filesystem type.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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%2funix.stackexchange.com%2fquestions%2f89114%2fwhat-does-the-jargon-filesystem-mean%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
A filesystem is both a reference to a tree structure of directories and files as well as a overarching structure that can be placed on a physical medium such as a hard drive or other similar types of medium.
At the end of of the day they're both layers of abstraction that people create so that things are standardized.
The directories + files analogy used is to mimic how people think, with respect to the physical world for storing items (files) inside of something (folders).
So too is a filesystem such as ext4 of fat32. Here it might not be so obvious, but the structure that this type of filesystem provides serves the same purpose, just at a lower level.
For example, a raw disk is just a sequence of bits. By creating a structure on top of it using inodes, we're able to access sections of the disk in an organized methodical fashion.
Notice the image of the inode structure (from wikipedia article titled: inode pointer structure
The structure of a filesystem representing files + directories
computer architectures
One thing you'll notice as you continue to study computer architectures is that the same concepts are used over and over again. The notion of hostnames is nested too.
.---> <-----.
| |
.------. .------.
^------------>| .com | | .net |
| '------' '------'
| ^
| |
.--------. .---------------.
| google | | stackexchange |
'--------' '---------------'
^ ^
| |
.-----. .------.
| www | | unix |
'-----' '------'
Or in programming, class inheritance (Ruby):
class Mammal
def breathe
puts "inhale and exhale"
end
end
class Cat < Mammal
def speak
puts "Meow"
end
end
jake = Cat.new
jake.breathe
jake.speak
Hierarchical structures tend to be easy to visualize, navigate and manipulate.
– Shadur
Sep 2 '13 at 12:32
@Shadur - yeah they're a very easy concept to comprehend, plus they're all around us in nature. A fractal is a form of hierarchy.
– slm♦
Sep 2 '13 at 12:37
@sim - Thank you for your answer. I like the ruby example!
– Biscuitz
Sep 3 '13 at 7:19
@Biscuitz - you're quite welcome. Thank you for your question.
– slm♦
Sep 3 '13 at 11:36
add a comment |
A filesystem is both a reference to a tree structure of directories and files as well as a overarching structure that can be placed on a physical medium such as a hard drive or other similar types of medium.
At the end of of the day they're both layers of abstraction that people create so that things are standardized.
The directories + files analogy used is to mimic how people think, with respect to the physical world for storing items (files) inside of something (folders).
So too is a filesystem such as ext4 of fat32. Here it might not be so obvious, but the structure that this type of filesystem provides serves the same purpose, just at a lower level.
For example, a raw disk is just a sequence of bits. By creating a structure on top of it using inodes, we're able to access sections of the disk in an organized methodical fashion.
Notice the image of the inode structure (from wikipedia article titled: inode pointer structure
The structure of a filesystem representing files + directories
computer architectures
One thing you'll notice as you continue to study computer architectures is that the same concepts are used over and over again. The notion of hostnames is nested too.
.---> <-----.
| |
.------. .------.
^------------>| .com | | .net |
| '------' '------'
| ^
| |
.--------. .---------------.
| google | | stackexchange |
'--------' '---------------'
^ ^
| |
.-----. .------.
| www | | unix |
'-----' '------'
Or in programming, class inheritance (Ruby):
class Mammal
def breathe
puts "inhale and exhale"
end
end
class Cat < Mammal
def speak
puts "Meow"
end
end
jake = Cat.new
jake.breathe
jake.speak
Hierarchical structures tend to be easy to visualize, navigate and manipulate.
– Shadur
Sep 2 '13 at 12:32
@Shadur - yeah they're a very easy concept to comprehend, plus they're all around us in nature. A fractal is a form of hierarchy.
– slm♦
Sep 2 '13 at 12:37
@sim - Thank you for your answer. I like the ruby example!
– Biscuitz
Sep 3 '13 at 7:19
@Biscuitz - you're quite welcome. Thank you for your question.
– slm♦
Sep 3 '13 at 11:36
add a comment |
A filesystem is both a reference to a tree structure of directories and files as well as a overarching structure that can be placed on a physical medium such as a hard drive or other similar types of medium.
At the end of of the day they're both layers of abstraction that people create so that things are standardized.
The directories + files analogy used is to mimic how people think, with respect to the physical world for storing items (files) inside of something (folders).
So too is a filesystem such as ext4 of fat32. Here it might not be so obvious, but the structure that this type of filesystem provides serves the same purpose, just at a lower level.
For example, a raw disk is just a sequence of bits. By creating a structure on top of it using inodes, we're able to access sections of the disk in an organized methodical fashion.
Notice the image of the inode structure (from wikipedia article titled: inode pointer structure
The structure of a filesystem representing files + directories
computer architectures
One thing you'll notice as you continue to study computer architectures is that the same concepts are used over and over again. The notion of hostnames is nested too.
.---> <-----.
| |
.------. .------.
^------------>| .com | | .net |
| '------' '------'
| ^
| |
.--------. .---------------.
| google | | stackexchange |
'--------' '---------------'
^ ^
| |
.-----. .------.
| www | | unix |
'-----' '------'
Or in programming, class inheritance (Ruby):
class Mammal
def breathe
puts "inhale and exhale"
end
end
class Cat < Mammal
def speak
puts "Meow"
end
end
jake = Cat.new
jake.breathe
jake.speak
A filesystem is both a reference to a tree structure of directories and files as well as a overarching structure that can be placed on a physical medium such as a hard drive or other similar types of medium.
At the end of of the day they're both layers of abstraction that people create so that things are standardized.
The directories + files analogy used is to mimic how people think, with respect to the physical world for storing items (files) inside of something (folders).
So too is a filesystem such as ext4 of fat32. Here it might not be so obvious, but the structure that this type of filesystem provides serves the same purpose, just at a lower level.
For example, a raw disk is just a sequence of bits. By creating a structure on top of it using inodes, we're able to access sections of the disk in an organized methodical fashion.
Notice the image of the inode structure (from wikipedia article titled: inode pointer structure
The structure of a filesystem representing files + directories
computer architectures
One thing you'll notice as you continue to study computer architectures is that the same concepts are used over and over again. The notion of hostnames is nested too.
.---> <-----.
| |
.------. .------.
^------------>| .com | | .net |
| '------' '------'
| ^
| |
.--------. .---------------.
| google | | stackexchange |
'--------' '---------------'
^ ^
| |
.-----. .------.
| www | | unix |
'-----' '------'
Or in programming, class inheritance (Ruby):
class Mammal
def breathe
puts "inhale and exhale"
end
end
class Cat < Mammal
def speak
puts "Meow"
end
end
jake = Cat.new
jake.breathe
jake.speak
edited Sep 2 '13 at 8:08
answered Sep 2 '13 at 7:52
slm♦
246k66507673
246k66507673
Hierarchical structures tend to be easy to visualize, navigate and manipulate.
– Shadur
Sep 2 '13 at 12:32
@Shadur - yeah they're a very easy concept to comprehend, plus they're all around us in nature. A fractal is a form of hierarchy.
– slm♦
Sep 2 '13 at 12:37
@sim - Thank you for your answer. I like the ruby example!
– Biscuitz
Sep 3 '13 at 7:19
@Biscuitz - you're quite welcome. Thank you for your question.
– slm♦
Sep 3 '13 at 11:36
add a comment |
Hierarchical structures tend to be easy to visualize, navigate and manipulate.
– Shadur
Sep 2 '13 at 12:32
@Shadur - yeah they're a very easy concept to comprehend, plus they're all around us in nature. A fractal is a form of hierarchy.
– slm♦
Sep 2 '13 at 12:37
@sim - Thank you for your answer. I like the ruby example!
– Biscuitz
Sep 3 '13 at 7:19
@Biscuitz - you're quite welcome. Thank you for your question.
– slm♦
Sep 3 '13 at 11:36
Hierarchical structures tend to be easy to visualize, navigate and manipulate.
– Shadur
Sep 2 '13 at 12:32
Hierarchical structures tend to be easy to visualize, navigate and manipulate.
– Shadur
Sep 2 '13 at 12:32
@Shadur - yeah they're a very easy concept to comprehend, plus they're all around us in nature. A fractal is a form of hierarchy.
– slm♦
Sep 2 '13 at 12:37
@Shadur - yeah they're a very easy concept to comprehend, plus they're all around us in nature. A fractal is a form of hierarchy.
– slm♦
Sep 2 '13 at 12:37
@sim - Thank you for your answer. I like the ruby example!
– Biscuitz
Sep 3 '13 at 7:19
@sim - Thank you for your answer. I like the ruby example!
– Biscuitz
Sep 3 '13 at 7:19
@Biscuitz - you're quite welcome. Thank you for your question.
– slm♦
Sep 3 '13 at 11:36
@Biscuitz - you're quite welcome. Thank you for your question.
– slm♦
Sep 3 '13 at 11:36
add a comment |
As is usual in natural languages, the word filesystem has several related meanings. A filesystem relates to how files are organized; this can be interpreted at various levels.
The filesystem of a unix system is the set of all files that are accessible at a given time. For example, a system call that accesses a file can be classified as a filesystem system call. A process's filesystem credentials are the credentials that determine what files it can access.
The filesystem can also refer to the structure of that filesystem: what directories and files exist on a unix system and what they're used for. On Unix & Linux, we use the tag directory-structure for that meaning.
A filesystem is a way through which files can be accessed on a given system. The filesystem (in the first sense above) of a unix systems consists of several filesystems (in this sense), each mounted at a particular directory. Filesystems in this sense are usually refered to by their mount point: the root filesystem (mounted on /
), the proc filesystem (normally mounted on /proc
), the or a home filesystem (normally mounted on /home
or a subdirectory, containing users' home directories), etc.
A filesystem type (or filesystem format) is a layout format for filesystems in the previous sense. Ext2, tmpfs, proc, sshfs, etc. are filesystem types. Filesystem type can be abbreviated to filesystem by metonymy. In fact, filesystem or filesystem is strictly speaking not just the layout format, but also the rules for modifying it.
A filesystem can also be a specific driver for a filesystem type.
add a comment |
As is usual in natural languages, the word filesystem has several related meanings. A filesystem relates to how files are organized; this can be interpreted at various levels.
The filesystem of a unix system is the set of all files that are accessible at a given time. For example, a system call that accesses a file can be classified as a filesystem system call. A process's filesystem credentials are the credentials that determine what files it can access.
The filesystem can also refer to the structure of that filesystem: what directories and files exist on a unix system and what they're used for. On Unix & Linux, we use the tag directory-structure for that meaning.
A filesystem is a way through which files can be accessed on a given system. The filesystem (in the first sense above) of a unix systems consists of several filesystems (in this sense), each mounted at a particular directory. Filesystems in this sense are usually refered to by their mount point: the root filesystem (mounted on /
), the proc filesystem (normally mounted on /proc
), the or a home filesystem (normally mounted on /home
or a subdirectory, containing users' home directories), etc.
A filesystem type (or filesystem format) is a layout format for filesystems in the previous sense. Ext2, tmpfs, proc, sshfs, etc. are filesystem types. Filesystem type can be abbreviated to filesystem by metonymy. In fact, filesystem or filesystem is strictly speaking not just the layout format, but also the rules for modifying it.
A filesystem can also be a specific driver for a filesystem type.
add a comment |
As is usual in natural languages, the word filesystem has several related meanings. A filesystem relates to how files are organized; this can be interpreted at various levels.
The filesystem of a unix system is the set of all files that are accessible at a given time. For example, a system call that accesses a file can be classified as a filesystem system call. A process's filesystem credentials are the credentials that determine what files it can access.
The filesystem can also refer to the structure of that filesystem: what directories and files exist on a unix system and what they're used for. On Unix & Linux, we use the tag directory-structure for that meaning.
A filesystem is a way through which files can be accessed on a given system. The filesystem (in the first sense above) of a unix systems consists of several filesystems (in this sense), each mounted at a particular directory. Filesystems in this sense are usually refered to by their mount point: the root filesystem (mounted on /
), the proc filesystem (normally mounted on /proc
), the or a home filesystem (normally mounted on /home
or a subdirectory, containing users' home directories), etc.
A filesystem type (or filesystem format) is a layout format for filesystems in the previous sense. Ext2, tmpfs, proc, sshfs, etc. are filesystem types. Filesystem type can be abbreviated to filesystem by metonymy. In fact, filesystem or filesystem is strictly speaking not just the layout format, but also the rules for modifying it.
A filesystem can also be a specific driver for a filesystem type.
As is usual in natural languages, the word filesystem has several related meanings. A filesystem relates to how files are organized; this can be interpreted at various levels.
The filesystem of a unix system is the set of all files that are accessible at a given time. For example, a system call that accesses a file can be classified as a filesystem system call. A process's filesystem credentials are the credentials that determine what files it can access.
The filesystem can also refer to the structure of that filesystem: what directories and files exist on a unix system and what they're used for. On Unix & Linux, we use the tag directory-structure for that meaning.
A filesystem is a way through which files can be accessed on a given system. The filesystem (in the first sense above) of a unix systems consists of several filesystems (in this sense), each mounted at a particular directory. Filesystems in this sense are usually refered to by their mount point: the root filesystem (mounted on /
), the proc filesystem (normally mounted on /proc
), the or a home filesystem (normally mounted on /home
or a subdirectory, containing users' home directories), etc.
A filesystem type (or filesystem format) is a layout format for filesystems in the previous sense. Ext2, tmpfs, proc, sshfs, etc. are filesystem types. Filesystem type can be abbreviated to filesystem by metonymy. In fact, filesystem or filesystem is strictly speaking not just the layout format, but also the rules for modifying it.
A filesystem can also be a specific driver for a filesystem type.
edited Apr 13 '17 at 12:36
Community♦
1
1
answered Sep 3 '13 at 0:21
Gilles
527k12710561580
527k12710561580
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- 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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2funix.stackexchange.com%2fquestions%2f89114%2fwhat-does-the-jargon-filesystem-mean%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
en.wikipedia.org/wiki/File_system - it means both.
– Mat
Sep 2 '13 at 7:29
The ext3, ext4, fat32, etc. thing are the types of filesystem, or filesystem formats. The directory structure of the filesystem is the directory structure of the filesystem. I heavily agree that the terminology is quite confusing. I tend to prefer the term persistence system better than the historical filesystem.
– uprego
Sep 2 '13 at 7:44
1
Put yet another way: ext4 is a [kind of] filesystem, a directory tree is [the content of] a filesystem.
– goldilocks
Sep 2 '13 at 12:58