LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 12-29-2015, 10:35 AM   #1
Joy Stick
Member
 
Registered: Dec 2015
Distribution: RHEL 4.7
Posts: 127

Rep: Reputation: 0
File systems for windows and linux


Hello Everyone,

I am trying to understand FILE SYSTEMS in UNIX/LINUX and WINDOWS.

jpollard wrote

Quote:
Creating filesystems on a disk writes a data structure on the partition
that allows the operating system to know where data has been stored,
what blocks are available, what a directory is, and allows the operating system
to ensure that things don't get mixed up during use.
REF_LINK :
PHP Code:
http://www.linuxquestions.org/questions/showthread.php?p=5469999#post5469999 
1) Without file system cant we use any OS ? (windows/unix)
2) How file Systems are different from Cluster file system ?
3) Do we need any special license to use any available disk file systems/ ?

Last edited by Joy Stick; 12-29-2015 at 10:39 AM.
 
Old 12-29-2015, 10:56 AM   #2
suicidaleggroll
LQ Guru
 
Registered: Nov 2010
Location: Colorado
Distribution: OpenSUSE, CentOS
Posts: 5,573

Rep: Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142
1) No. The OS needs to be installed on a filesystem, the installer won't proceed without creating one first.

3) Not for any that I'm aware of.
 
Old 12-29-2015, 11:15 AM   #3
DavidMcCann
LQ Veteran
 
Registered: Jul 2006
Location: London
Distribution: PCLinuxOS, Debian
Posts: 6,143

Rep: Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314
Have a look at these

https://en.wikipedia.org/wiki/File_system
https://en.wikipedia.org/wiki/Clustered_file_system
https://en.wikipedia.org/wiki/RAID
https://en.wikipedia.org/wiki/Logical_volume_management
https://en.wikipedia.org/wiki/Disk_partitioning

Probably more than you'll ever need to know!
 
2 members found this post helpful.
Old 12-29-2015, 02:43 PM   #4
salasi
Senior Member
 
Registered: Jul 2007
Location: Directly above centre of the earth, UK
Distribution: SuSE, plus some hopping
Posts: 4,070

Rep: Reputation: 897Reputation: 897Reputation: 897Reputation: 897Reputation: 897Reputation: 897Reputation: 897
Quote:
Originally Posted by Joy Stick View Post
1) Without file system cant we use any OS ? (windows/unix)
There are some cases in which you can use an OS without a file system, but I can't think of any that are useful to you, although I am guessing wildly at your use case in saying that.

Quote:
Originally Posted by Joy Stick View Post
3) Do we need any special license to use any available disk file systems/ ?
There certainly have been filesystems for which people have had to pay license fees, but those people would not be you, and the cases in which this occurs probably would not be of any interest to you at the moment. If you stick with open source software, then you won't have license fees to pay, by definition, although you could use a filesystem (and/or filesystem driver) that required license fees, but it is entirely unclear why you should want to do this, particularly given that you have more choice than you can cope with already (probably).
 
Old 12-30-2015, 11:14 PM   #5
jefro
Moderator
 
Registered: Mar 2008
Posts: 22,001

Rep: Reputation: 3629Reputation: 3629Reputation: 3629Reputation: 3629Reputation: 3629Reputation: 3629Reputation: 3629Reputation: 3629Reputation: 3629Reputation: 3629Reputation: 3629
I have seen some OS's that don't need a file system. Linux can use raw drives too but not as a boot that I know of. Might be able to use windows with a raw disk but it would take more time than it is worth.
 
Old 01-01-2016, 03:17 AM   #6
jpollard
Senior Member
 
Registered: Dec 2012
Location: Washington DC area
Distribution: Fedora, CentOS, Slackware
Posts: 4,912

Rep: Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513
Quote:
Originally Posted by jefro View Post
I have seen some OS's that don't need a file system. Linux can use raw drives too but not as a boot that I know of. Might be able to use windows with a raw disk but it would take more time than it is worth.
It only depends on what boot loader you are using. Most of the boot loaders use some filesystem - but it is completely separate from the linux kernel. Once the kernel and initrd are loaded, the only filesystem used is the ramfs/tmpfs in memory only. And that can be sufficient for embedded use, or as a recovery system for device based filesystems.
 
Old 01-01-2016, 03:30 AM   #7
jpollard
Senior Member
 
Registered: Dec 2012
Location: Washington DC area
Distribution: Fedora, CentOS, Slackware
Posts: 4,912

Rep: Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513
Quote:
Originally Posted by Joy Stick View Post
Hello Everyone,

I am trying to understand FILE SYSTEMS in UNIX/LINUX and WINDOWS.

jpollard wrote



REF_LINK :
PHP Code:
http://www.linuxquestions.org/questions/showthread.php?p=5469999#post5469999 
1) Without file system cant we use any OS ? (windows/unix)
It depends on the purpose of the system. Embedded systems tend to have very little to no filesystems in use. When the Linux kernel is used in embedded systems it usually comes with one or two filesystems - a cramfs read only filesystem compressed into a flash chip, it could come with an ISO9660 filesystems for CD/DVD boot, or just used for data (like a DVD player for instance).
Quote:
2) How file Systems are different from Cluster file system ?
Most such filesystems have to be network based (fibre channel/infiniband/... or slower with ethernet). These filesystems differ slightly in that access to the shared devices has to be managed - distributed locking or a central locking manager is necessary to prevent two systems from attempting to allocate/free/write the same storage blocks at the same time.
Quote:
3) Do we need any special license to use any available disk file systems/ ?
Depends on the system. To use Windows, you have to pay for a license (which includes the Microsoft filesystems). Most of Microsofts filesystems (FAT/VFAT/NTFS) have been independantly reimplemented that they are usable (changes to Windows has made it harder to use NTFS, as you can't safely use it unless you first shutdown Windows entirely - hibernation or whatever MS calls the "shutdown" currently does not dismount the filesystem, so using it will cause corruption of the filesystem). VFAT has elements that MS claims as patented... and shouldn't be used on Linux.

Last edited by jpollard; 01-01-2016 at 03:32 AM.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Read only file systems, custom live CDs, and embedded systems coffeecoffee Linux - Newbie 2 02-24-2009 11:09 PM
How to include the windows file systems in RHEL...?????????????????????????????? jack_conner Linux - Desktop 2 09-25-2008 02:09 PM
File Systems, Windows and Linux... Robert Diggs Linux - Newbie 4 12-22-2006 09:16 PM
Could i access the Windows File Systems from Linux? Megnt2004_newbien Linux - Newbie 1 10-02-2005 02:34 PM
Systems Programming - Linux vs Windows dipperdan Programming 8 09-30-2004 08:18 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 06:14 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration