Я работаю над системой (Ubuntu Precise) с монтированием, определенным в /etc/fstab
следующим образом:
/dev/vdb /mnt auto defaults,nobootwait,comment=cloudconfig 0 2
Первоначально я просто хотел узнать, является ли это NFS (из-за потенциальных проблем с блокировкой MySQL). Судя по man mount
, это не:
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.
Но теперь из любопытства, как я могу узнать больше о том, что это за устройство на самом деле? (Для контекста, это виртуальная машина, работающая на OpenStack. Устройство представляет собой выделение 60 ГБ, смонтированное откуда-то, но я не знаю, как это сделать.) `
РЕДАКТИРОВАТЬ Включая ответы здесь:
$ mount
/dev/vdb on /mnt type ext3 (rw,_netdev)
$ df -T
/dev/vdb ext3 61927420 2936068 55845624 5% /mnt
Вы были бы довольны просто df -T /mnt
? :)