diff options
Diffstat (limited to 'core/install.html')
-rw-r--r-- | core/install.html | 58 |
1 files changed, 25 insertions, 33 deletions
diff --git a/core/install.html b/core/install.html index dfde50a..46793c9 100644 --- a/core/install.html +++ b/core/install.html @@ -75,7 +75,7 @@ installations. Partition size 128M;</p> <pre> - (parted) mkpart ESP fat32 4 125 + (parted) mkpart ESP fat32 4 132 (parted) name 2 efi (parted) set 2 boot on </pre> @@ -83,70 +83,62 @@ <h3>/boot</h3> <p>Boot partition. Partition with 1G provide room for kernels - and crux iso that can be directly boot from grub (without root + and bootable iso's that can be directly boot from grub (without root partition). Partition size 1G;</p> <pre> - (parted) mkpart primary ext4 125 1128 + (parted) mkpart primary ext4 132 1132 (parted) name 3 boot </pre> <h3>/</h3> - <p>Normal core crux installation root partition uses - approximately 2G, without /usr 200MB-500M. Minimum 2G - is recommended to give room to root home directory with - dedicated (separated) usr and var partition. - Partition size 4G;</p> + <p>Core collection installation on root partition uses + approximately 2G. Partition with 8G-20G is recommended + for a server or desktop with dedicated ports partition + or using only compiled packages. Partition size 20G;</p> <pre> - (parted) mkpart primary ext4 1128 5128 + (parted) mkpart primary ext4 1132 21132 (parted) name 4 root </pre> <h3>/var</h3> <p>Var partition is recommended 1G-5G depending on how - system is configured. Partition size 1G;</p> + system is configured. Partition size 2G;</p> <pre> - (parted) mkpart primary ext4 5128 6128 + (parted) mkpart primary ext4 21132 23132 (parted) name 5 var </pre> - <h3>/usr</h3> - - <p>User partition with 4G-8G is recommended for a desktop - setup, with dedicated partition for ports. Partition size - 8G;</p> - - <pre> - (parted) mkpart primary ext4 6128 14128 - (parted) name 6 usr - </pre> - <h3>Swap (ram)</h3> <p>Swap partition general advice is to have the same size as memory ram, ports system will be configured to build on ram. - To build firefox is necessary at least 34G, swap partitions - will be added to lvm and this partition removed. - Partition size 4G;</p> + To build firefox is necessary at least 34G. Partition size 4G;</p> + + <p>Is better to create swap partition later using + <a href="../tools/lvm.html">lvm</a>.</p> <pre> - (parted) mkpart primary linux-swap 14128 18128 - (parted) name 3 swap + (parted) mkpart primary linux-swap 23132 27132 + (parted) name 6 swap </pre> <h3>/home</h3> - <p>Home partition general advice is to fill the rest of disk - space. Home partition will be added later to lvm and this - partition removed. Fill the rest of disk space;</p> + <p>Home partition on desktop fill the rest of disk + space while on server this partition can be unnecessary. + Fill the rest of disk space;</p> + + <p>Is better to create home partition later using + <a href="../tools/lvm.html">lvm</a>.</p> <pre> - (parted) mkpart primary ext4 18128 100% - (parted) name 8 home + (parted) mkpart primary ext4 27132 100% + (parted) name 7 home </pre> <h2 id="step3">1.1.3. Prepare Install</h2> @@ -354,7 +346,7 @@ <a href="index.html">Core OS Index</a> <p>This is part of the Hive System Documentation. Copyright (C) 2018 - c9 team. + Hive Team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> |