Erinevus lehekülje "Failisüsteemi partitsioonile loomine" redaktsioonide vahel
(Uus lehekülg: ''''2.3. Creating a File System on the Partition''' Now that a blank partition has been set up, the file system can be created. The most widely-used system in the Linux world is the...') |
(Erinevus puudub)
|
Redaktsioon: 30. mai 2011, kell 15:50
2.3. Creating a File System on the Partition
Now that a blank partition has been set up, the file system can be created. The most widely-used system in the Linux world is the second extended file system (ext2), but with newer high-capacity hard disks, journaling file systems are becoming increasingly popular. The third extended filesystem (ext3) is a widely used enhancement to ext2, which adds journaling capabilities and is compatible with the E2fsprogs utilities. We will create an ext3 file system. Instructions for creating other file systems can be found at http://www.linuxfromscratch.org/blfs/view/svn/postlfs/filesystems.html.
Nüüd kui tühi partitsioon on loodud tuleb sellele tekitada failisüsteem. Kõige laiemalt kasutatud failisüsteem Linuximaailmas on teine laiendatud failisüsteem (EXT2).
To create an ext3 file system on the LFS partition, run the following: Selleks, et luua ext3 failisüsteem LFS partitsioonile käivita järgnev:
mke2fs -jv /dev/<xxx>
<xxx> tuleb sii näites asendada enda LFS partitsiooniga (eelmises näites hda5).
Note
Some host distributions use custom features in their filesystem creation tools (E2fsprogs). This can cause problems when booting into your new LFS in Chapter 9, as those features will not be supported by the LFS-installed E2fsprogs; you will get an error similar to “unsupported filesystem features, upgrade your e2fsprogs”. To check if your host system uses custom enhancements, run the following command:
debugfs -R feature /dev/<xxx> If the output contains features other than has_journal, ext_attr, resize_inode, dir_index, filetype, sparse_super, large_file or needs_recovery, then your host system may have custom enhancements. In that case, to avoid later problems, you should compile the stock E2fsprogs package and use the resulting binaries to re-create the filesystem on your LFS partition:
cd /tmp tar -xzvf /path/to/sources/e2fsprogs-1.41.14.tar.gz cd e2fsprogs-1.41.14 mkdir -v build cd build ../configure make #note that we intentionally don't 'make install' here! ./misc/mke2fs -jv /dev/<xxx> cd /tmp rm -rfv e2fsprogs-1.41.14 If you are using an existing swap partition, there is no need to format it. If a new swap partition was created, it will need to be initialized with this command:
mkswap /dev/<yyy> Replace <yyy> with the name of the swap partition.