- 论坛徽章:
- 0
|
问题在线等待!!关于系统的挂接
原帖由 \"keer5000\" 发表:
#mount -a
mount: /dev/vg00/webapp is already mounted on /webapp
mount - Cannot open /dev/vgbill1/billa: No such device or address
mount: /dev/vg00/oraclelv is already mounted on /oracle
mount: /dev/vg00/lvol8 is already mounted on /var
mount: /dev/vg00/lvol7 is already mounted on /usr
mount: /dev/vg00/lvnie is already mounted on /usr/nie
mount: /dev/vg00/lvol6 is already mounted on /opt
mount: /dev/vg00/lvol5 is already mounted on /home
mount: /dev/vg00/lvol4 is already mounted on /tmp
mount: /dev/vg00/lvol1 is already mounted on /stand
#
我想知道我的哪个 /dev/vgbill1/billa:是否有问题了那.
谢谢. Hi,
1. Check if your \"vgbill1\" is active or not:
# vgdisplay vgbill1
If it\'s not active, then do:
# vgchange -a y vgbill1
2. Check your lv names under the /dev/vgbill1, to see there is a lv called \"billa\":
# ll /dev/vgbill1
You should see both raw and block devices files:
/dev/vgbill1/billa
/dev/vgbill1/rbilla
If you don\'t see the above 2 lines, then your LV is not there. You should either create a LV or make sure you are using the correct lv name (/dev/vgbill1/billa) in your /etc/fstab file.
Hope this helps. |
|