Solução descoberta horas depois!
Este é um problema de a configuração do LVM não ser preservada durante a nova instalação, e a instalação não tem interesse em outros discos no sistema ( sigh ).
A pista para isso veio de: link
(Este mini-editor faz uma bagunça na saída de texto!)
- pvscan
- vgscan
- lvscan
- vgchange -a y
root @ argentine: / home / bruce # pvscan
PV /dev/sdb1 VG tera01 lvm2 [931.00 GiB / 0 free] Total: 1 [931.00 GiB] / in use: 1 [931.00 GiB] / in no VG: 0 [0 ]
root @ argentine: / home / bruce # vgscan
Reading all physical volumes. This may take a while... Found volume group "tera01" using metadata type lvm2
root @ argentine: / home / bruce # lvscan
inactive '/dev/tera01/teravol00' [931.00 GiB] inherit
root @ argentine: / home / bruce # vgchange -a y
1 logical volume(s) in volume group "tera01" now active
root @ argentine: / home / bruce # lvscan
ACTIVE '/dev/tera01/teravol00' [931.00 GiB] inherit
root @ argentine: / home / bruce # mount -t ext3 / dev / sdb1 / tera
mount: /dev/sdb1 already mounted or /tera busy
root @ argentine: / home / bruce # mount -t ext3 / dev / tera01 / teravol00 / tera
root @ argentine: / home / bruce # ls -l / tera
total 32 drwxr-xr-x. 3 root root 4096 Jun 2 2008 export drwxrwxrwx. 5 root root 4096 Nov 15 2009 kept drwx------ 2 root root 16384 May 16 2009 lost+found
root @ argentine: / home / bruce #
Bingo !!! (Eu realmente não queria tirá-los dos backups!)
Eu então tentei adicionar o seguinte ao / etc / fstab (para reinicializar)
/ dev / tera01 / teravol100 / tera padrões do ext3 0 2
mas isso não funcionou, então eu finalmente usei a GUI system-config-lvm para configurá-lo para montar na reinicialização. (Eu acho que ele fez algo em segundo plano para também ativar o LVM na reinicialização.)
- Espero que isso ajude alguém no futuro.