AIX 组件安装方法

版权声明:转载请注明出处及作者! https://blog.csdn.net/chenzhanhai/article/details/7433872

现象:
安装AIX 5.3.06后,查看系统版本仍然是AIX 5.3.05

原因:
由于一些关键的系统组件没有安装成功

分析:
--查看系统版本
# oslevel -s
5300-05-00-0000

--查看影响版本缺少的组件:
# oslevel -rl 5300-06
Fileset                                 Actual Level           Recommended ML
-----------------------------------------------------------------------------
bos.adt.debug                           5.3.0.50               5.3.0.60      
bos.adt.graphics                        5.3.0.50               5.3.0.60      
bos.adt.libm                            5.3.0.40               5.3.0.60       --
bos.adt.libmio                          5.3.0.0                5.3.0.60      
bos.adt.prof                            5.3.0.50               5.3.0.60       --
bos.adt.sccs                            5.3.0.50               5.3.0.60      
bos.adt.syscalls                        5.3.0.50               5.3.0.60       --
bos.adt.utils                           5.3.0.50               5.3.0.60      
bos.clvm.enh                            5.3.0.50               5.3.0.60  --


安装组件:
1).把光盘(disk1/ppc)里的缺少的包的传输到服务器,或是直接使用光盘
2).用smitty工具安装
#smitty install
Install and Update Software-> Install Software->
                                              Install Software

Type or select values in entry fields.
Press Enter AFTER making all desired changes.          
                           
                                                        [Entry Fields]
* INPUT device / directory for software               /component
* SOFTWARE to install                                [+ 5.3.0.60  Base Application Development Debuggers   @@>  +
  PREVIEW only? (install operation will NOT occur)    no                                                        +
  COMMIT software updates?                            yes                                                       +
  SAVE replaced files?                                no                                                        +
  AUTOMATICALLY install requisite software?           yes                                                       +
  EXTEND file systems if space needed?                yes                                                       +
  OVERWRITE same or newer versions?                   no                                                        +
  VERIFY install and check file sizes?                no                                                        +
  Include corresponding LANGUAGE filesets?            yes                                                       +
  DETAILED output?                                    no                                                        +
  Process multiple volumes?                           yes                                                       +
  ACCEPT new license agreements?                      no                                                        +
  Preview new LICENSE agreements?                     no                                                        +

3).回车安装

--安装成功后,再次检查系统版本
# oslevel -s
5300-06-00-0000

inode1:root::/db/doc> lslpp -l bos.cifs_fs*
  Fileset                      Level  State      Description        
  ----------------------------------------------------------------------------
Path: /usr/lib/objrepos
  bos.cifs_fs.rte           5.3.0.60  COMMITTED  Runtime for SMBFS
  bos.cifs_fs.smit          5.3.0.60  COMMITTED  SMIT Interface for SMBFS

Path: /etc/objrepos
  bos.cifs_fs.rte           5.3.0.60  COMMITTED  Runtime for SMBFS
  bos.cifs_fs.smit          5.3.0.60  COMMITTED  SMIT Interface for SMBFS


 注意:

如果把组件放到默认安装目录,用smitty 安装时不用选择目录

#cd /usr/sys/inst.images --默认的安装目录

猜你喜欢

转载自blog.csdn.net/chenzhanhai/article/details/7433872
AIX