Regarding application of security patches RHEL 5.5

 
Thread Tools Search this Thread
Operating Systems Linux Red Hat Regarding application of security patches RHEL 5.5
# 1  
Old 08-03-2012
Regarding application of security patches RHEL 5.5

Hi
Is there a direct way to apply a particular security advisory on the system.

Presently we have certain security advisories to be applied which require installation of multiple rpms and their dependencies.

These rpms as listed in the security advisory also mention that they have been outdated by other releases.

So the question is that is downloading and applying all such rpms the only way to confirm to the security advisory or there is some other direct way to get the security advisory updated at the system.

BR
Sapan
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. AIX

Need command to find missing operating system security patches

Hi, Need a command to find out Missing operating system patches for AIX 7.1 or a command to list down all installed patches. (1 Reply)
Discussion started by: Mona Khandelwal
1 Replies

2. Red Hat

How do I install security patches with no internet access?

Hi, I'm pretty new to Linux and I want to download security patches and install them on RHEL 5.4. I've searched the red hat web site but cant seem to find where the download link is. (5 Replies)
Discussion started by: Jardoo
5 Replies

3. AIX

List of Installed patches for AIX from given set of patches

I need to find out list of installed patches from given list of patches. I have tried using instfix -f <File containing list of patches> -i -c But I was not able to understand the output of this command. It was like below. bos.perf.tools: :0.0.0.0:?: bos.rte.libc: :0.0.0.0:?: ... (4 Replies)
Discussion started by: Saurabh Agrawal
4 Replies

4. Red Hat

Roll back patches for RHEL 5

Hi, I want to roll back the packages that are installed during the patch installation of RHEL 5 server. There are in all 110 packages including the kernel package... kernel-2.6.18-274.el5.x86_64.rpm kernel-headers-2.6.18-274.el5.x86_64.rpm How should I proceed ? I don't want to run rpm... (4 Replies)
Discussion started by: aksijain
4 Replies

5. Red Hat

RHEL Security Patches

Hi all, :) I'm quite new with installation of security patches in Linux Redhat Enterprise, here's my question. I have 2 machine of this RHEL(never patch before) since it never connects directly to the internet(block by firewall) and I want to update the patches now because my boss asked me to... (2 Replies)
Discussion started by: flekzout
2 Replies

6. UNIX for Advanced & Expert Users

Linux security patches

Hi all, :) I'm quite new with installation of security patches in Linux Redhat Enterprise, here's my question. I have 2 machine of this RHEL(never patch before) since it never connects directly to the internet(block by firewall) and I want to update the patches now because my boss asked me to... (1 Reply)
Discussion started by: flekzout
1 Replies

7. UNIX for Dummies Questions & Answers

Security or Necessary patches

Hi All, I would like to ask some questions, I have an Solaris 10 and RHEL which is install in separate machine.. The question is: 1. how can I check the latest patches or latest update in my machine? (I need a step or command) 2. where can I get the latest security patch or necessary patch... (5 Replies)
Discussion started by: flekzout
5 Replies
Login or Register to Ask a Question
pam_stack(8)						   System Administrator's Manual					      pam_stack(8)

NAME
pam_stack - recurse into other PAM stacks SYNOPSIS
auth required /lib/security/pam_stack.so service=foo session optional /lib/security/pam_stack.so service=foo password optional /lib/security/pam_stack.so service=foo account optional /lib/security/pam_stack.so service=foo DESCRIPTION
In a nutshell, pam_stack lets you "call", from inside of the stack for a particular service, the stack defined for any another service. The intention is to allow multiple services to "include" a system-wide setup, so that when that setup needs to be changed, it need only be changed in one place. ARGUMENTS
debug turns on debugging via syslog(3). service=name tells pam_stack.so to execute the stack defined for the service name, which will usually be another file in /etc/pam.d. EXAMPLE
/etc/pam.d/imap: auth required /lib/security/pam_stack.so service=system-auth auth required /lib/security/pam_shells.so /etc/pam.d/system-auth: auth sufficient /lib/security/pam_krb5.so auth sufficient /lib/security/pam_unix.so shadow nullok auth required /lib/security/pam_deny.so CAVEAT
Because recursion is fully supported, there is potential to really break things by having a stack call itself either directly or via mutual recursion. BUGS
Let's hope not, but if you find any, please email the author. AUTHOR
Nalin Dahyabhai <nalin@redhat.com> Red Hat Linux 2001/01/30 pam_stack(8)