Descubra o tipo de um dispositivo montado automaticamente

2

Estou trabalhando em um sistema (Ubuntu Precise) com uma montagem definida em /etc/fstab da seguinte forma:

/dev/vdb        /mnt    auto    defaults,nobootwait,comment=cloudconfig 0       2

Originalmente eu só queria descobrir se é NFS (devido a possíveis problemas de bloqueio do MySQL). A julgar pelo man mount , não é:

If no -t option is given, or if the auto type is specified, mount will try to guess the desired type.  Mount uses the blkid library for guessing  the
filesystem type; if that does not turn up anything that looks familiar, mount will try to read the file /etc/filesystems, or, if that does not exist,
/proc/filesystems.  All of the filesystem types listed there will be tried, except for those that are labeled "nodev" (e.g., devpts, proc  and  nfs).
If /etc/filesystems ends in a line with a single * only, mount will read /proc/filesystems afterwards.

Mas, por curiosidade, como posso saber mais sobre o tipo de dispositivo que realmente é? (Para o contexto, esta é uma VM em execução no OpenStack. O dispositivo é uma alocação de 60Gb montada de algum lugar - mas não sei como). '

EDIT Incluindo respostas aqui:

$ mount
/dev/vdb on /mnt type ext3 (rw,_netdev)

$ df -T
/dev/vdb                       ext3        61927420     2936068   55845624   5% /mnt
    
por Steve Bennett 08.06.2012 / 03:19

1 resposta

3

Você ficaria satisfeito com apenas df -T /mnt ? :)

    
por 08.06.2012 / 04:18