Does this site look plain?

This site uses advanced css techniques

This is Steve's internal parking page for stuff he uses a lot; it is not intended for public consumption.

Linux Installers

64-bit installers

Windows Installers

VS2012 C++ Runtime Installers

32-bit installers

IBM ServeRAID

ipssend getconfig 1

Dell Tools

Dell Firmware

Dell OpenManage Stuff

HP/Compaq RAID

Win Updates for Server 2008

Ok to apply anytime

Breaks modifier!

Hide / Don't install

Common stuff

gsec
gsec
add EUSER -pw pps97
modify SYSDBA -pw pps97
quit
/tmp/fixpass
evo-isql localhost:/db/evolution/S_BUREAU.gdb <<END
select USER_PASSWORD
  from SB_USER
  where upper(USER_ID) = 'ADMIN'
    and ACTIVE_RECORD = 'C';

update SB_USER
 set USER_PASSWORD =
    'Pb1.FbOy/5IHqTLn15xxtYjf0ElKHI81' -- "evolution"
, WRONG_PSWD_ATTEMPTS = 0
 where Upper(USER_ID) = 'ADMIN'
   and ACTIVE_RECORD = 'C';
END
/etc/xinetd.d/firebird
service gds_db
{
        flags           = KEEPALIVE NOLIBWRAP
        socket_type     = stream
        wait            = no
        user            = firebird
        instances       = UNLIMITED
        per_source      = UNLIMITED
        cps             = 200 5
        server          = /opt/firebird/bin/fb_inet_server
        log_on_success  =
        disable         = no
}
alternatives --set mta /usr/sbin/sendmail.postfix
/etc/ssh/sshd_config in CentOS6
# Local network allows root login and password auth
# Remote requires key and denies root *entirely*

PermitRootLogin no
PasswordAuthentication no

Match Address 192.168.1.0/24,127.0.0.1,::1
  PermitRootLogin yes
  PasswordAuthentication yes
/etc/security/limits.d/90-nproc.conf
# Default limit for number of user's processes to prevent
# accidental fork bombs.
# See rhbz #432903 for reasoning.

*          soft    nproc     1024 unlimited
root       soft    nproc     unlimited