* what is the fs type of root filesystem ? @ 2013-02-11 6:38 horseriver 2013-02-11 16:29 ` Kristof Provost 2013-02-12 21:14 ` Bradley D. Thornton 0 siblings, 2 replies; 6+ messages in thread From: horseriver @ 2013-02-11 6:38 UTC (permalink / raw) To: linux-newbie hi:) root fs is ext3 or ext4 ? thanks -- To unsubscribe from this list: send the line "unsubscribe linux-newbie" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.linux-learn.org/faqs ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: what is the fs type of root filesystem ? 2013-02-11 6:38 what is the fs type of root filesystem ? horseriver @ 2013-02-11 16:29 ` Kristof Provost 2013-02-11 21:26 ` horseriver 2013-02-12 21:14 ` Bradley D. Thornton 1 sibling, 1 reply; 6+ messages in thread From: Kristof Provost @ 2013-02-11 16:29 UTC (permalink / raw) To: horseriver; +Cc: linux-newbie On 2013-02-11 14:38:23 (+0800), horseriver <horserivers@gmail.com> wrote: > root fs is ext3 or ext4 ? > That depends on what the installer chose. The kernel doesn't require the root to use any specific file system. Regards, Kristof -- To unsubscribe from this list: send the line "unsubscribe linux-newbie" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.linux-learn.org/faqs ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: what is the fs type of root filesystem ? 2013-02-11 16:29 ` Kristof Provost @ 2013-02-11 21:26 ` horseriver 2013-02-12 7:51 ` sannikov 0 siblings, 1 reply; 6+ messages in thread From: horseriver @ 2013-02-11 21:26 UTC (permalink / raw) To: Kristof Provost; +Cc: linux-newbie On Mon, Feb 11, 2013 at 05:29:03PM +0100, Kristof Provost wrote: > On 2013-02-11 14:38:23 (+0800), horseriver <horserivers@gmail.com> wrote: > > root fs is ext3 or ext4 ? > > > That depends on what the installer chose. The kernel doesn't > require the root to use any specific file system. thanks! You mean a root filesystem will be installed on the harddisk when I install kernel on it ? > > Regards, > Kristof > -- To unsubscribe from this list: send the line "unsubscribe linux-newbie" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.linux-learn.org/faqs ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: what is the fs type of root filesystem ? 2013-02-11 21:26 ` horseriver @ 2013-02-12 7:51 ` sannikov 0 siblings, 0 replies; 6+ messages in thread From: sannikov @ 2013-02-12 7:51 UTC (permalink / raw) To: horseriver; +Cc: linux-newbie Kristof, bootloader read memory image from boot partition (usually it is same partition to root) and initiate work of kernel from that image. After that kernel can work with any FS built-in in it's image. So your root file system will by any of supported by kernel, and your boot file system should be supported by bootloader. If you use one for boot and root - you should choose FS from intersection of that sets. You can read more there: http://www.ibm.com/developerworks/linux/library/l-linuxboot/index.html WBR, Alexander horseriver писал 2013-02-12 01:26: > On Mon, Feb 11, 2013 at 05:29:03PM +0100, Kristof Provost wrote: >> On 2013-02-11 14:38:23 (+0800), horseriver <horserivers@gmail.com> >> wrote: >> > root fs is ext3 or ext4 ? >> > >> That depends on what the installer chose. The kernel doesn't >> require the root to use any specific file system. > > thanks! > You mean a root filesystem will be installed on the harddisk when I > install kernel on it ? > >> >> Regards, >> Kristof >> > -- > To unsubscribe from this list: send the line "unsubscribe > linux-newbie" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > Please read the FAQ at http://www.linux-learn.org/faqs -- To unsubscribe from this list: send the line "unsubscribe linux-newbie" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.linux-learn.org/faqs ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: what is the fs type of root filesystem ? 2013-02-11 6:38 what is the fs type of root filesystem ? horseriver 2013-02-11 16:29 ` Kristof Provost @ 2013-02-12 21:14 ` Bradley D. Thornton 2013-02-12 22:35 ` horseriver 1 sibling, 1 reply; 6+ messages in thread From: Bradley D. Thornton @ 2013-02-12 21:14 UTC (permalink / raw) To: linux-newbie -----BEGIN PGP SIGNED MESSAGE----- Hash: RIPEMD160 On 02/10/2013 10:38 PM, horseriver wrote: > hi:) > > root fs is ext3 or ext4 ? When you install your operating system, you must first decide upon upon the devices which will be used to house your operating system (Which disk devices will contain your operating system). The next thing is to decide how you are going to partition that resource, and typically, that means at least two partitions - one for your "swap" and one for your "/", but usually, one will partition the disk by allocating additional partitions to break up the tree under "/" with additional partitions. Those partitions might be "/", "/home", and "/boot", as well as others, but for the purposes of this example I'll simply address those three as if they were the choices made. The third thing you need to do after partitioning is to prepare those partitions - In the case of swap, you will use type 82. In the case of all others, the type will remain unchanged as type 83 (you don't need to do anything - it is already set as this). The fourth thing is to decide upon a *file system* for "/", "/boot", and "/home" (as per our example layout). If you choose 'ext3', you really can't go wrong, as this file system type is supported by almost all Linux distros, out of the box, so to speak. You do NOT want to choose 'xfs' as the file system for "/boot" (if you have a "/boot" - if you don't, then do not choose xfs for "/"). So, for the purposes of our example, a typical layout might be as follows: /dev/sda1 /boot 200MBytes ext2 type 83 /dev/sda2 swap 2048MBytes swap type 82 /dev/sda3 / 20GBytes ext3 type 83 /dev/sda4 /home 40GBytes xfs type 83 Of course, you can safely and effectively decide upon and use ext3 file system type for "/boot", "/", as well as "/home". I personally prefer ext2 for "/boot", and xfs for performance reasons on "/home", and ext3 or ext4 for the others. So to summarize, if you choose ext3 for ALL of your partitions, you shouldn't have any issues whatsoever :) this might be a good choice for you until you develop your own personal prejudices and preferences - until you know what your personal preferences are, and why, choosing ext3 is a good choice. I hope that helps :) - -- Bradley D. Thornton Manager Network Services NorthTech Computer TEL: +1.310.388.9469 (US) TEL: +44.203.318.2755 (UK) TEL: +41.43.508.05.10 (CH) http://NorthTech.US -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (GNU/Linux) Comment: Find this cert at x-hkp://pool.sks-keyservers.net iQEcBAEBAwAGBQJRGrCyAAoJEE1wgkIhr9j34+gIAK1If0dycTKvlRu6JDb8VQVw Q+OJLCvwukvojm8v7gNSybL4GjGHJyy58QvEFiytdOxxncUqyOSQbIRJv/af4Eok jjoIyX3v+en3LQpCm9xZHhh6RkJVFmu3H/Wdt9DFprC2Hmc5bHdGViZty2lsP4jP yNk0N3vkh6FrNnwwLCpuUj6tUnQpEgfMYwaNLGE171s3mICjpdyRiWRu00X1Q9RT /26c0C+hkihE07OQB0gRP1KIqNqEENUm9n3lV12hnBQYNOP1X7m8oXa6RV0jouf2 DRiRhyP5XB9+rNE0cLK1QXItSJbI2qcejJdgvTq3qZQQZgqR5SN6RYu6/USTb4Q= =aOD7 -----END PGP SIGNATURE----- -- To unsubscribe from this list: send the line "unsubscribe linux-newbie" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.linux-learn.org/faqs ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: what is the fs type of root filesystem ? 2013-02-12 21:14 ` Bradley D. Thornton @ 2013-02-12 22:35 ` horseriver 0 siblings, 0 replies; 6+ messages in thread From: horseriver @ 2013-02-12 22:35 UTC (permalink / raw) To: linux-newbie On Tue, Feb 12, 2013 at 01:14:26PM -0800, Bradley D. Thornton wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: RIPEMD160 > > > > On 02/10/2013 10:38 PM, horseriver wrote: > > hi:) > > > > root fs is ext3 or ext4 ? > > When you install your operating system, you must first decide upon upon > the devices which will be used to house your operating system (Which > disk devices will contain your operating system). > > The next thing is to decide how you are going to partition that > resource, and typically, that means at least two partitions - one for > your "swap" and one for your "/", but usually, one will partition the > disk by allocating additional partitions to break up the tree under "/" > with additional partitions. > > Those partitions might be "/", "/home", and "/boot", as well as others, > but for the purposes of this example I'll simply address those three as > if they were the choices made. > > The third thing you need to do after partitioning is to prepare those > partitions - In the case of swap, you will use type 82. In the case of > all others, the type will remain unchanged as type 83 (you don't need to > do anything - it is already set as this). > > The fourth thing is to decide upon a *file system* for "/", "/boot", and > "/home" (as per our example layout). > > If you choose 'ext3', you really can't go wrong, as this file system > type is supported by almost all Linux distros, out of the box, so to speak. > > You do NOT want to choose 'xfs' as the file system for "/boot" (if you > have a "/boot" - if you don't, then do not choose xfs for "/"). > > So, for the purposes of our example, a typical layout might be as follows: > > /dev/sda1 /boot 200MBytes ext2 type 83 > > /dev/sda2 swap 2048MBytes swap type 82 > > /dev/sda3 / 20GBytes ext3 type 83 > > /dev/sda4 /home 40GBytes xfs type 83 > > Of course, you can safely and effectively decide upon and use ext3 file > system type for "/boot", "/", as well as "/home". > > I personally prefer ext2 for "/boot", and xfs for performance reasons on > "/home", and ext3 or ext4 for the others. > > So to summarize, if you choose ext3 for ALL of your partitions, you > shouldn't have any issues whatsoever :) this might be a good choice for > you until you develop your own personal prejudices and preferences - > until you know what your personal preferences are, and why, choosing > ext3 is a good choice. > > I hope that helps :) > > Thanks! I think , virtually ,mounting a file system is reading and analysising the disk's data . then the user can operate these data in form of file tree . Do I comprehend correctly ? > - -- > Bradley D. Thornton > Manager Network Services > NorthTech Computer > TEL: +1.310.388.9469 (US) > TEL: +44.203.318.2755 (UK) > TEL: +41.43.508.05.10 (CH) > http://NorthTech.US > > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.4.10 (GNU/Linux) > Comment: Find this cert at x-hkp://pool.sks-keyservers.net > > iQEcBAEBAwAGBQJRGrCyAAoJEE1wgkIhr9j34+gIAK1If0dycTKvlRu6JDb8VQVw > Q+OJLCvwukvojm8v7gNSybL4GjGHJyy58QvEFiytdOxxncUqyOSQbIRJv/af4Eok > jjoIyX3v+en3LQpCm9xZHhh6RkJVFmu3H/Wdt9DFprC2Hmc5bHdGViZty2lsP4jP > yNk0N3vkh6FrNnwwLCpuUj6tUnQpEgfMYwaNLGE171s3mICjpdyRiWRu00X1Q9RT > /26c0C+hkihE07OQB0gRP1KIqNqEENUm9n3lV12hnBQYNOP1X7m8oXa6RV0jouf2 > DRiRhyP5XB9+rNE0cLK1QXItSJbI2qcejJdgvTq3qZQQZgqR5SN6RYu6/USTb4Q= > =aOD7 > -----END PGP SIGNATURE----- > -- > To unsubscribe from this list: send the line "unsubscribe linux-newbie" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > Please read the FAQ at http://www.linux-learn.org/faqs -- To unsubscribe from this list: send the line "unsubscribe linux-newbie" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.linux-learn.org/faqs ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2013-02-12 22:35 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2013-02-11 6:38 what is the fs type of root filesystem ? horseriver 2013-02-11 16:29 ` Kristof Provost 2013-02-11 21:26 ` horseriver 2013-02-12 7:51 ` sannikov 2013-02-12 21:14 ` Bradley D. Thornton 2013-02-12 22:35 ` horseriver
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox