Tagged: how_to

AIX: HOWTO: Apply Patch(es)

This is a collection of AIX tips from the time I worked as system admin:

Disclaimer:
The information below is the result of my researches in the Internet and of my experiences. It is solely used for my purpose and may not be suitable for others.

  1. Always run the inutoc command to ensure the installation subsystem will recognize the new fix packages you download. This command creates a new .toc file for the fix package. Run the inutoc command in the same directory where you downloaded the package filesets. For example, if you downloaded the filesets to /usr/sys/inst.images, run the following command: # inutoc /usr/sys/inst.images

  2. For selected updates
    To install selected updates from this package, use the following command: # smit update_by_fix

  3. For all updates
    To install all updates from this package that apply to the installed filesets on your system, use the following command: # smit update_all It is highly recommended that you apply all updates from this package.

  4. Reboot the system. A reboot is required for this update to take effect.
  5. That's all!
    -gibb

AIX: gzip File Too Large Error

This is a collection of AIX tips from the time I worked as system admin:

Disclaimer:
The information below is the result of my researches in the Internet and of my experiences. It is solely used for my purpose and may not be suitable for others.

gzip File Too Large Error

# gzip -d *.tar.gz

gzip: *.tar: File too large

When this happens, it's possible that your system's ulimit value prevents from creating a large file. Execute the `ulimit` command: # ulimit -a < - report all current resource limits # ulimit -f unlimited <- set file resource to unlimited

That's all!
-gibb

Switch-Router: HOWTO: Set Password

This is a part of collection of Switch/Router tips from the time I worked as system admin:

Disclaimer:
The information below is the result of my researches in the Internet and of my experiences. It is solely used for my purpose and may not be suitable for others.

Login Password On Catalyst 5500 columbia> en columbia> (enable) set password Enter old password: Enter new password: Retype new password: columbia>

Privilege Mode Password On Catalyst 5500 columbia> en columbia> (enable) set enablepass Enter old password: Enter new password: Retype new password: columbia>


That's all!
-gibb

Switch-Router: HOWTO: Enable/Disable Ports (CISCO Catalyst 2900)

This is a part of collection of Switch/Router tips from the time I worked as system admin:

Disclaimer:
The information below is the result of my researches in the Internet and of my experiences. It is solely used for my purpose and may not be suitable for others.

Enabling Ports for CISCO Switch
Login to cisco switch cisco2900switch> show cisco2900switch> enable password cisco2900switch# config Configure from terminal, memory, or network [terminal]? t ... cisco2900switch(config)# interface fa0/2

To shutdown port cisco2900switch(config-if)# shutdown

To bring it up cisco2900switch(config-if)# un shutdown


That's all!
-gibb