I am not very clear with identifying the partition type or filesystem residing on it here is what lvscan reports me
ACTIVE '/dev/virtualization/vm1' [100.00 GiB] inherit
ACTIVE '/dev/virtualization/vm2' [150.00 GiB] inherit
ACTIVE '/dev/virtualization/vm3' [50.00 GiB] inherit
ACTIVE '/dev/virtualization/vm4' [100.00 GiB] inherit
How can I identify the file system running on it. It is a Ubuntu server and the above are LVM partitions created by virt-manager.
The output of mount command is
/dev/sda1 on / type ext4 (rw,errors=remount-ro)
proc on /proc type proc (rw,noexec,nosuid,nodev)
none on /sys type sysfs (rw,noexec,nosuid,nodev)
none on /sys/fs/fuse/connections type fusectl (rw)
none on /sys/kernel/debug type debugfs (rw)
none on /sys/kernel/security type securityfs (rw)
none on /dev type devtmpfs (rw,mode=0755)
none on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=0620)
none on /dev/shm type tmpfs (rw,nosuid,nodev)
none on /var/run type tmpfs (rw,nosuid,mode=0755)
none on /var/lock type tmpfs (rw,noexec,nosuid,nodev)
none on /lib/init/rw type tmpfs (rw,nosuid,mode=0755)
nfsd on /proc/fs/nfsd type nfsd (rw)
The output of blkid
as some one requested below is
blkid /dev/sda1
/dev/sda1: UUID="6876c294-0c70-4b4e-87a2-636ea19e5ed6" TYPE="ext4"
but this did not helped me much.Also I did
blkid /dev/virtualization
but there was no result i.e. nothing in output.
Also the output of file command
I did file /dev/virtualization/*
site4: symbolic link to `../mapper/virtualization-site4'
site3: symbolic link to `/dev/mapper/virtualization-site3'
site2: symbolic link to `../mapper/virtualization-site2'
site1: symbolic link to `../mapper/virtualization-site1'
What more should I be doing?