Apr 27, 2012
tom

can’t mount /dev/vg00/var

Question

I’m trying to access data on a hard drive using a rescue system. I’ve mounted the root partition as so:

mount /dev/md1 /mnt

If I do

cat /mnt/etc/fstab

I see

/dev/vg00/var  /var     xfs

So I tried:

mount /dev/vg00/usr /mnt/usr/

But I get the error message:

mount: special device /dev/vg00/usr does not exist

Why does it say that the device doesn’t exist if it exists?

Asked by Jorge Bellido

Answer

Try this:

pvscan
vgscan
vgchange -a y

And after that try mounting again.

Answered by Janne Pikkarainen

Related posts:

  1. Cannot mount /dev/sdc1 on Debian 5.0, special device /dev/sdc1 doesn’t exist
  2. Conditional `mount` in Linux: dev or nfs
  3. How to mount space in /dev/sda2
  4. How do I know what arguments were used to mount
  5. LVM snapshot missing /dev and /proc tree

Leave a comment