码迷,mamicode.com
首页 > 其他好文 > 详细

RHCSA7LVM的管理

时间:2015-03-13 16:11:50      阅读:430      评论:0      收藏:0      [点我收藏+]

标签:

以下试题来自:

http://www.certdepot.net/rhel7-rhcsa-sample-exam-1/

 

1. Create a xfs file system on a new logical volume of 100MB called lv_xfs. Mount it permanently with uuid under /xfs.

2. Extend the existing xfs file system to a total size of 200MB and add a label called myFS.


Reference answer:

# lvcreate -n lv_xfs -L 100M vg0

# mkdir /xfs

# mkfs.xfs /dev/vg0/lv_xfs

# blkid | grep lv_xfs >> /etc/fstab

# vim /etc/fstab

UUID=xxx /xfs xfs default 1 2

# mount -a

 

# lvextend -L 200M /dev/vg0/lv_xfs

# xfs_growfs /xfs

# umount /xfs

# xfs_admin -l "myFS" /dev/vg0/lv_xfs

# mount /xfs

RHCSA7LVM的管理

标签:

原文地址:http://www.cnblogs.com/emmagikyo/p/4334838.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!