Visitas: 6
Tenia un dispositivo NVMe con partición LVM y le conectaba en un puerto USB a un PC para acceder a los datos. Como tenia una partición LVM, debemos de hacer algunos pasos para poder levantar esa partición LVM en nuestro equipo.
Obs:
- Se utiliza Debian Buster de 32 bits.
- Dispositivo NVMe con partición LVM.
Para detectar todos los posibles grupos de volúmenes lógicos. Entramos a la terminal y tecleamos lo siguiente:
sudo vgscan
Sale por pantalla:
Reading all physical volumes. This may take a while... Found volume group "LVM" using metadata type lvm2
Ahora debemos indicarle al sistema, que los volúmenes lógicos de ese volume group deberán estar disponibles. En nuestro caso sería LVM, tecleamos lo siguiente:
sudo vgchange -a y
Sale por pantalla:
2 logical volume(s) in volume group "LVM" now active
Ahora identificamos las particiones para montar:
sudo lvdisplay
Sale por pantalla:
--- Logical volume --- LV Path /dev/LVM/SWAP LV Name SWAP VG Name LVM LV UUID nbT43-Uj6R-hnT4-Np56-nHbD-n08G-mn67RV LV Write Access read/write LV Creation host, time PantanoNegro, 2019-08-24 17:52:59 -0400 LV Status available # open 0 LV Size 9.31 GiB Current LE 2384 Segments 1 Allocation inherit Read ahead sectors auto - currently set to 256 Block device 254:0 --- Logical volume --- LV Path /dev/LVM/Sistema LV Name Sistema VG Name LVM LV UUID JyuhYT-njhy-uy87-nmjd-IunY-poUH-NHjyb6 LV Write Access read/write LV Creation host, time PantanoNegro, 2019-08-24 17:53:10 -0400 LV Status available # open 0 LV Size <922.20 GiB Current LE 236082 Segments 1 Allocation inherit Read ahead sectors auto - currently set to 256 Block device 254:1
Identificamos que queremos levantar la partición /dev/LVM/Sistema
sudo mount /dev/LVM/Sistema /mnt/pen
Verificamos que se monto la partición en /mnt/pen
df -h
Sale por pantalla:
Filesystem Size Used Avail Use% Mounted on udev 484M 0 484M 0% /dev tmpfs 100M 3.2M 97M 4% /run /dev/sda2 144G 1.4G 136G 1% / tmpfs 497M 0 497M 0% /dev/shm tmpfs 5.0M 0 5.0M 0% /run/lock tmpfs 497M 0 497M 0% /sys/fs/cgroup tmpfs 100M 0 100M 0% /run/user/1000 /dev/mapper/LVM-Sistema 907G 632G 230G 74% /mnt/pen
Imagen destacada: MVPS
Fuente: Phenobarbital con Soda