|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
虽然Linux桌面应用发展很快,但是命令在Linux中依然有很强的生命力。Linux是一个命令行组成的操作系统,精髓在命令行。
可使用sam工具
ioscan-funCdisk检察硬盘信息
ioscan-funCtape检察磁带信息
/dev/dsk/c1t5d0
c暗示cardinstancenumber对应体系中的scsi卡
t暗示target号用于对应物理硬盘
d暗示lun号体系中看到的逻辑硬盘
#insf设置新硬件,他会更新/etc/ioconfig和io_tree中的信息
#insf-e往失落旧的硬件信息
#rmsf/dev/dsk/c1t5d0删除此硬件
pvdisplay-v
vgdisplay-v
lvdisplay-v
建pv:
#pvcreate/dev/rdsk/c0t0d1
#pvcreate-f/dev/rdsk/c0t0d1假如磁盘之前属于其他vg,加f
建vg:
Create:
#mkdir/dev/vg01
#mknod/dev/vg01/groupc640x010000--0x010000中的01暗示vg号,是16进制数
#vgcreatevg01/dev/dsk/c0t3d0/dev/dsk/c0t4d0
Check:
#vgdisplay-vvg01
#pvdisplay-v/dev/dsk/c0t3d0
#pvdisplay-v/dev/dsk/c0t4d0
Theoptionsonvgcreateinclude:
-emax_physical_extentsSetsthemaximumnumberofphysicalextentsper
physicalvolumeinavolumegroup(defaultis1016).
-lmax_logical_volsSetsthemaximumnumberoflogicalvolumesallowed
inavolumegroup(default255).
-pmax_physical_volsSetsthemaximumnumberofLVMdisks(physical
volumes)allowedinavolumegroup(default16).
-sphysical_extent_sizeSetsthesize,inmegabytes,foreachphysicalextentina
volumegroup(default4).
建lv:
Create:
#lvcreate-L16-nmyswapvg01
#lvcreate-L16-nmyfs1vg01
#lvcreate-L16-nmyfs2vg01
Check:
#vgdisplay-vvg01
#lvdisplay-v/dev/vg01/myswap
Options
-Llogical_volume_sizeThesizeofthelogicalvolumeinmegabytes.Thesize
specifiedwillberoundeduptothenearestwhole
logicalextent.Thedefaultiszero.
-llogical_extents_numberThenumberoflogicalextentsinthelogicalvolume.
Thedefaultiszero.
-nnameAcustomnameyouwanttoassigntothelogicalvolume.Thedefaultnamefollowsthenamingconvention.
Tocreatealogicalvolumeof10logicalextentsinsize:
#lvcreate-l10/dev/vg01
Tocreatealogicalvolumewithasizeof100MB:建一个100m的lv
#lvcreate-L100/dev/vg01
Tocreatealogicalvolumewithanonstandardname:
#lvcreate-L16-nmyswapvg01
建文件体系:
#mount-v#reportswhichfilesystemsaremountedwhere
#bdf#alsoreportsfilesystemsizes,andotherinfo
1.Createthenewfilesystem
#newfs-Fhfs/dev/vg01/rmyfs1
2.Createamountpointdirectoryforthefilesystem
#mkdir/myfs1
3.Mountthenewfilesystem
#mount/dev/vg01/myfs1/myfs1
4.Addthefilesystemtothe/etc/fstabfile
#vi/etc/fstab
</p>
由于在linux中,用户权限很大,做任何事情都很自由,所以,你往往需要知道你做的每一步在干什么。 |
|