我创建了一个 LVM,在其中创建了卷组,并在其中创建了逻辑卷,并给出了挂载点 /u001/app/pracle 我将其命名为错误而不是甲骨文公司我应该已经输入了普拉克。
现在 RHEL 5.6 的安装已完成,我现在注意到了。我怎样才能改变这个/u001/应用程序/pracle到/u001/应用程序/甲骨文
答案1
由于您似乎对有用的卷组和卷名称不感兴趣(当前您的 vg 已命名VolGroup00
,您的 lv LogVol01
),我将保留这些不变。
因此,唯一需要的是更改安装点,因此您可以编辑/etc/fstab
并将相应的行从 更改pracle
为oracle
。这是为了下次重新启动。
然后做
mkdir /u001/app/oracle # necessary before changes can take effect!
umount /u001/app/pracle # unmount the old one
mount /u001/app/oracle # mount it on the new place
rmdir /u001/app/pracle # and dispose of the garbage.
用于清理并立即进行更改。
从长远来看,至少拥有有用的卷名称可能会很有用:这就是目的lvrename
。你会这样做
lvrename VolGroup00/LogVol01 oracle
/dev/VolGroup00/LogVol01
之后,当设备位置从变为 时,再次需要编辑 fstab /dev/VolGroup00/oracle
。从/dev/mapper/VolGroup00-LogVol01
到/dev/mapper/VolGroup00-oracle
。