Suggetion for the Installer
/dev/sda1 (Type 83 : Linux) -> for boot with 2 GiB i set boot flag
/dev/sda2 (Type 8e : LVM) -> for LVM with the rest of the free space available.
i had use cfdisk for make that partitions. and i wrote the changes.
on a root user terminal :
i create the physical volume with :
Code: Select all
pvcreate /dev/sda2i create the group volume with :Physical volume "/dev/sda2" successfully created.
Code: Select all
vgcreate Lignux /dev/sda2i create the logical volumes with :Volume group "Lignux" successfully created
Code: Select all
lvcreate -L 40G -n lv_64bits Lignuxlv_64bits Lignux for Salix 64 BitsLogical volume "lv_64bits" created.
Code: Select all
lvcreate -L 30G -n lv_32bits Lignuxlv_32bits Lignux for Salix 32 BitsLogical volume "lv_32bits" created.
Code: Select all
lvcreate -L 2G -n lv_intc Lignuxlvcreate -L 2G -n lv_intc Lignux for SwapLogical volume "lv_intc" created.
Logical volume "lv_hogar" created.
Code: Select all
lvcreate -l 100%FREE -n lv_hogar Lignuxlv_hogar Lignux for my home partition.
i format my partition with:
Code: Select all
mkfs.ext4 -O ^has_journal -E discard /dev/Lignux/lv_64bitsmke2fs 1.46.5 (30-Dec-2021)
No está activado que se admitan sistemas de ficheros de 64 bits. Los campos más grandes ofrecidos por esta característica permiten la suma de comprobación más potente. Pase -O 64bit para rectificar.
Descartando los bloques del dispositivo: hecho
Se está creando un sistema de ficheros con 10485760 bloques de 4k y 2621440 nodos-i
UUID del sistema de ficheros: fa2eee58-e66c-4807-be1f-dfb489d815a5
Respaldos del superbloque guardados en los bloques:
32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208,
4096000, 7962624
Reservando las tablas de grupo: hecho
Escribiendo las tablas de nodos-i: hecho
Escribiendo superbloques y la información contable del sistema de ficheros: hecho
Code: Select all
mkfs.ext4 -O ^has_journal -E discard /dev/Lignux/lv_32bitsmke2fs 1.46.5 (30-Dec-2021)
No está activado que se admitan sistemas de ficheros de 64 bits. Los campos más grandes ofrecidos por esta característica permiten la suma de comprobación más potente. Pase -O 64bit para rectificar.
Descartando los bloques del dispositivo: hecho
Se está creando un sistema de ficheros con 7864320 bloques de 4k y 1966080 nodos-i
UUID del sistema de ficheros: 739a51eb-7964-4fd6-83c8-9599bd021e74
Respaldos del superbloque guardados en los bloques:
32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208,
4096000
Reservando las tablas de grupo: hecho
Escribiendo las tablas de nodos-i: hecho
Escribiendo superbloques y la información contable del sistema de ficheros: hecho
Code: Select all
mkfs.xfs -f /dev/Lignux/lv_hogarmeta-data=/dev/Lignux/lv_hogar isize=512 agcount=4, agsize=10778880 blks
= sectsz=512 attr=2, projid32bit=1
= crc=1 finobt=1, sparse=1, rmapbt=0
= reflink=1 bigtime=0 inobtcount=0
data = bsize=4096 blocks=43115520, imaxpct=25
= sunit=0 swidth=0 blks
naming =version 2 bsize=4096 ascii-ci=0, ftype=1
log =internal log bsize=4096 blocks=21052, version=2
= sectsz=512 sunit=0 blks, lazy-count=1
realtime =none extsz=4096 blocks=0, rtextents=0
Discarding blocks...Done.
Code: Select all
mkswap /dev/Lignux/lv_intcConfigurando espacio de intercambio versión 1, tamaño = 2 GiB (2147479552 bytes)
sin etiqueta, UUID=2b066328-fa62-4551-b9db-5ac3b57d2234
Code: Select all
vgscanFound volume group "Lignux" using metadata type lvm2
Code: Select all
lvscanWell after that i try to install Salix (32 Bits) but from the USB for some unknow reason for me, the partition /dev/sdg3 can't access to the ISO file for continue with the installation, well i after copy the same file to another pendrive partition for testACTIVE '/dev/Lignux/lv_64bits' [40,00 GiB] inherit
ACTIVE '/dev/Lignux/lv_32bits' [30,00 GiB] inherit
ACTIVE '/dev/Lignux/lv_intc' [2,00 GiB] inherit
ACTIVE '/dev/Lignux/lv_hogar' [164,47 GiB] inherit
After i try to install Salix Live Xfce (64 Bits), but i can't see options for install on LVM partitions, and i don't know if the Live version came with some textual installer compatible with LVM.

Well the suggetions are :
1 - For the Live Versions, put a initrd capable to run ISO from GRUB2.
2 - For the Live Installer, add the support for LVM partitions.
