Unix小笔记

简介:
这里记录工作中常用到一些命令,错误处理方法,可能比较杂,但愿对你我都有用.
一、HP-UX创建文件系统:
1. umount /applog 如果没有挂载不用执行该步
2 . lvremove /dev/vg00/applog 删除原逻辑卷 
3. lvcreate -L 20000 -n applog /dev/vg00  新建逻辑卷
4. newfs -F vxfs /dev/vg00/rapplog         格式化逻辑卷
5. mkdir /applog                                   创建挂载目录
6. mount /dev/vg00/applog /applog        执行挂载
注意:mount命令要求的是一个块设备文件,而newfs命令需要的是一个字符设备文件
7.编辑fstab文件,添加自动挂载: /dev/vg00/applog /applog vxfs delaylog 0 2
如果没修改fstab.重启之后文件系统丢失这时要重新挂载
8. mount /dev/vg00/applog /applog  
 V-3-21268: /dev/vg00/applogis corrupted. needs checking
好像属正常吧。执行
9.  fsck -F vxfs /dev/vg00/applog
replay complete - marking super-block as CLEAN
10. mount /dev/vg00/applog /applog 
OK.完成
二、
AIX虚拟内存包括物理内存(RAM)与交换空间(Paging space)
查看物理内存:
1. # prtconf |grep Memory
Memory Size: 4096 MB
Good Memory Size: 4096 MB
2. # lsdev -Cc memory
L2cache0 Available  L2 Cache
mem0     Available  Memory
# lsattr -El mem0
goodsize 4096 Amount of usable physical memory in Mbytes False
size     4096 Total amount of physical memory in Mbytes  False
3. # vmstat
System configuration: lcpu=2 mem=4096MB

kthr    memory              page              faults        cpu
----- ----------- ------------------------ ------------ -----------
 r  b   avm   fre  re  pi  po  fr   sr  cy  in   sy  cs us sy id wa
 1  1 937988 21956   0   1   1  32   93   0 131 4571 469  5  3 90  3
4. lsattr -El sys0 -a realmem
realmem 4194304 Amount of usable physical memory in Kbytes False 
查看交换空间:
1. #lsps -s
Total Paging Space   Percent Used
      5120MB              38%
# lsps -a
Page Space      Physical Volume   Volume Group    Size %Used Active  Auto  Type
hd6             hdisk0            rootvg        4992MB    38   yes   yes    lv
hd6             hdisk1            rootvg         128MB    38   yes   yes    lv

AIX存储类型主要包括 1.永久段(Persistent segment)例如进程堆栈,数据区
2. 工作段(Working segment),例如数据文件,可执行文件.
内存可以简单的分为两类:计算型内存和文件型内存.计算型内存包括工作段和永久段的可执行
文件部分。其余的都放入文件型内存。
查看两种内存分配:
# svmon -G(4K为一页)
               size      inuse       free        pin    virtual
memory      1048576    1028386      20190     258895     939977
pg space    1310720     487104

               work       pers       clnt
pin          258895          0          0
in use       705715       5036     317635
待续...

本文转自 anranran 51CTO博客,原文链接:http://blog.51cto.com/guojuanjun/290619

相关文章
|
Unix Shell 数据安全/隐私保护
|
数据安全/隐私保护 Shell Unix