FILE: /etc/rc.d/rc.local #!/bin/sh # # This script will be executed *after* all the other init scripts. # You can put your own initialization stuff in here if you don't # want to do the full Sys V style init stuff. touch /var/lock/subsys/local # echo 1 > /proc/sys/net/ipv4/tcp_timestamps echo 1 > /proc/sys/net/ipv4/tcp_window_scaling echo 1 > /proc/sys/net/ipv4/tcp_sack echo 8388608 > /proc/sys/net/core/wmem_max echo 8388608 > /proc/sys/net/core/rmem_max echo "4096 87380 4194304" > /proc/sys/net/ipv4/tcp_rmem echo "4096 65536 4194304" > /proc/sys/net/ipv4/tcp_wmem ******************************************************************************** FILE: /etc/fstab /dev/sda2 / ext3 defaults 1 1 /dev/sda1 /boot ext3 defaults 1 2 none /dev/pts devpts gid=5,mode=620 0 0 /dev/sda5 /home ext3 defaults 1 2 none /proc proc defaults 0 0 none /dev/shm tmpfs defaults 0 0 /dev/sda6 /usr ext3 defaults 1 2 /dev/sda3 swap swap defaults 0 0 /dev/fd0 /mnt/floppy auto noauto,owner,kudzu 0 0 /dev/cdrom1 /mnt/cdrom1 udf,iso9660 noauto,user,kudzu,ro 0 0 # /dev/sdd1 /mnt/usbstick auto defaults,noauto,user 0 0 /dev/sdd1 /mnt/usbdrive auto defaults,noauto,user 0 0 # /dev/sdb1 /opt/local ext3 defaults 1 2 /dev/sdc1 /home/staff ext3 defaults 1 2 # /dev/hdc1 /home/data1 ext3 defaults 1 2 /dev/hdc2 /home/data2 ext3 defaults 1 2 /dev/hdc3 /home/data3 ext3 defaults 1 2 /dev/hdc4 /home/data4 ext3 defaults 1 2 # /dev/hdd1 /home/data5 ext3 defaults 1 2 /dev/hdd2 /home/data6 ext3 defaults 1 2 /dev/hdd3 /home/data7 ext3 defaults 1 2 /dev/hdd4 /home/data8 ext3 defaults 1 2 # /home/data1/swapfile swap swap defaults 0 0 /home/data2/swapfile swap swap defaults 0 0 /home/data3/swapfile swap swap defaults 0 0 /home/data4/swapfile swap swap defaults 0 0 /home/data5/swapfile swap swap defaults 0 0 /home/data6/swapfile swap swap defaults 0 0 /home/data7/swapfile swap swap defaults 0 0 /home/data8/swapfile swap swap defaults 0 0 # steffens:/d2/smtsys/html /home/steffens nfs defaults,bg 0 0 # macaroni:/home/backup1 /home/backup1 nfs defaults,bg 0 0 macaroni:/home/backup2 /home/backup2 nfs defaults,bg 0 0 # /dev/cdrom /mnt/cdrom udf,iso9660 noauto,owner,kudzu,ro 0 0 ******************************************************************************** FILE: /etc/sysconfig/network NETWORKING=yes FORWARD_IPV4="no" HOSTNAME=hamms ******************************************************************************** FILE: /etc/sysconfig/network-scripts/ifcfg-eth0 DEVICE=eth0 BOOTPROTO=none IPADDR=192.168.1.155 NETMASK=255.255.255.0 ONBOOT=yes TYPE=Ethernet USERCTL=no PEERDNS=no GATEWAY=192.168.1.1 ******************************************************************************** FILE: /etc/resolv.conf search as.arizona.edu nameserver 128.196.208.2 nameserver 128.196.209.2 nameserver 128.196.128.233 ******************************************************************************** FILE: /etc/exports # /home/aro *.as.arizona.edu(sync,rw,no_root_squash) /home/corona *.as.arizona.edu(sync,rw,no_root_squash) /home/staff *.as.arizona.edu(sync,rw,no_root_squash) /home/image hammslite.as.arizona.edu(sync,rw,no_root_squash) /home/kitt_peak *.as.arizona.edu(sync,rw,no_root_squash) /opt/local *.as.arizona.edu(sync,rw,no_root_squash) /home/data *.as.arizona.edu(sync,rw,no_root_squash) /home/data1 *.as.arizona.edu(sync,rw,no_root_squash) /home/data2 *.as.arizona.edu(sync,rw,no_root_squash) /home/data3 *.as.arizona.edu(sync,rw,no_root_squash) /home/data4 *.as.arizona.edu(sync,rw,no_root_squash) /home/data5 *.as.arizona.edu(sync,rw,no_root_squash) /home/data6 *.as.arizona.edu(sync,rw,no_root_squash) /home/data7 *.as.arizona.edu(sync,rw,no_root_squash) /home/data8 *.as.arizona.edu(sync,rw,no_root_squash) /home/backup *.as.arizona.edu(sync,ro) /mnt/usbdrive *.as.arizona.edu(sync,ro) ******************************************************************************** FILE: /etc/ntp.conf # Prohibit general access to this service. restrict default ignore restrict 128.196.208.177 mask 255.255.255.255 nomodify notrap noquery server 128.196.208.177 server ntp2.as.arizona.edu server ntp1.as.arizona.edu # Permit all access over the loopback interface. This could # be tightened as well, but to do so would effect some of # the administrative functions. restrict 127.0.0.1 # -- CLIENT NETWORK ------- # Permit systems on this network to synchronize with this # time service. Do not permit those systems to modify the # configuration of this service. Also, do not use those # systems as peers for synchronization. # restrict 192.168.1.0 mask 255.255.255.0 notrust nomodify notrap # --- OUR TIMESERVERS ----- # or remove the default restrict line # Permit time synchronization with our time source, but do not # permit the source to query or modify the service on this system. # restrict mytrustedtimeserverip mask 255.255.255.255 nomodify notrap noquery # server mytrustedtimeserverip # --- NTP MULTICASTCLIENT --- #multicastclient # listen on default 224.0.1.1 # restrict 224.0.1.1 mask 255.255.255.255 notrust nomodify notrap # restrict 192.168.1.0 mask 255.255.255.0 notrust nomodify notrap # --- GENERAL CONFIGURATION --- # # Undisciplined Local Clock. This is a fake driver intended for backup # and when no outside source of synchronized time is available. The # default stratum is usually 3, but in this case we elect to use stratum # 0. Since the server line does not have the prefer keyword, this driver # is never used for synchronization, unless no other other # synchronization source is available. In case the local host is # controlled by some external source, such as an external oscillator or # another protocol, the prefer keyword would cause the local host to # disregard all other synchronization sources, unless the kernel # modifications are in use and declare an unsynchronized condition. # server 127.127.1.0 # local clock fudge 127.127.1.0 stratum 10 # # Drift file. Put this in a directory which the daemon can write to. # No symbolic links allowed, either, since the daemon updates the file # by creating a temporary in the same directory and then rename()'ing # it to the file. # driftfile /etc/ntp/drift broadcastdelay 0.008 # # Authentication delay. If you use, or plan to use someday, the # authentication facility you should make the programs in the auth_stuff # directory and figure out what this number should be on your machine. # authenticate yes # # Keys file. If you want to diddle your server at run time, make a # keys file (mode 600 for sure) and define the key number to be # used for making requests. # # PLEASE DO NOT USE THE DEFAULT VALUES HERE. Pick your own, or remote # systems might be able to reset your clock at will. Note also that # ntpd is started with a -A flag, disabling authentication, that # will have to be removed as well. # keys /etc/ntp/keys ******************************************************************************** FILE: crontab for /var/spool/cron/root # DO NOT EDIT THIS FILE - edit the master and reinstall. # (/tmp/crontab.27156 installed on Tue Oct 30 14:16:24 2007) # (Cron version -- $Id: crontab.c,v 2.13 1994/01/17 03:20:37 vixie Exp $) 35 1 * * * /root/sync_cactus.12m 1>> /root/modelo2hamms.log 2>&1 35 2 * * * /root/sync_cactus.smt 1>> /root/cont2hamms.log 2>&1 35 3 * * * /root/sync_laplace.csh 1>> /root/laplace2hamms.log 2>&1 0,5,10,15,20,25,30,35,40,45,50,55 * * * * /root/modeloWx2hamms 1>> /root/modeloWx2hamms.log 2>&1 #2,7,12,17,22,27,32,37,42,47,52,57 * * * * /root/watch_cups.csh 1>> /root/watch_cups.log 2>&1 ******************************************************************************** FILE: crontab for /var/spool/cron/tfolkers # DO NOT EDIT THIS FILE - edit the master and reinstall. # (/tmp/crontab.1314 installed on Wed Oct 3 15:21:16 2007) # (Cron version -- $Id: crontab.c,v 2.13 1994/01/17 03:20:37 vixie Exp $) 5 6 * * * /home/staff/tfolkers/bin/check_disks 1>> /dev/null 2>&1 #0 8 * * Mon /home/staff/tfolkers/bin/maintenance.automail 1>> /home/staff/tfolkers/bin/maintenance.errors 2>&1 1,6,11,16,21,26,31,36,41,46,51,56 * * * * /home/staff/tfolkers/public_html/12m_weather/make_web_page.csh 1>> /home/staff/tfolkers/public_html/12m_weather/make_web_page.log 2>&1 5 18 * * * /home/staff/tfolkers/public_html/12m_weather/copy_wxdata.csh 1>> /home/staff/tfolkers/public_html/12m_weather/copy_wxdata.log 2>&1 0 8 * * Mon /home/staff/tfolkers/bin/compress_wx_files 1>> /home/staff/tfolkers/bin/compress_wx_files.log 2>&1 2,7,12,17,22,27,32,37,42,47,52,57 * * * * /home/staff/tfolkers/public_html/copy_mrtg.csh 1>> /home/staff/tfolkers/public_html/copy_mrtg.log 2>&1 15 5,17 * * * /home/staff/tfolkers/Projects/oandm/src/purge_oplog.csh 1>> /home/staff/tfolkers/Projects/oandm/src/purge_oplog.log 2>&1 ******************************************************************************** FILE: crontab for /var/spool/cron/nut # DO NOT EDIT THIS FILE - edit the master and reinstall. # (/tmp/crontab.24611 installed on Tue Dec 13 09:06:58 2005) # (Cron version -- $Id: crontab.c,v 2.13 1994/01/17 03:20:37 vixie Exp $) 0 6 * * * /home/staff/nut/bin/parse_all_mail.csh 1>> /home/staff/nut/bin/parse_all_mail.log 2>&1 ******************************************************************************** FILE: crontab for /var/spool/cron/peters # DO NOT EDIT THIS FILE - edit the master and reinstall. # (/tmp/crontab.25090 installed on Mon May 15 11:05:06 2006) # (Cron version -- $Id: crontab.c,v 2.13 1994/01/17 03:20:37 vixie Exp $) 0,15,30,45 * * * * ( cd /home/staff/peters/netcheck ; ./netcheck_hamms.sh 2>&1 >> netcheck.log ) ******************************************************************************** FILE: /boot/grub/grub.conf # grub.conf generated by anaconda # # Note that you do not have to rerun grub after making changes to this file # NOTICE: You have a /boot partition. This means that # all kernel and initrd paths are relative to /boot/, eg. # root (hd0,0) # kernel /vmlinuz-version ro root=/dev/sda2 # initrd /initrd-version.img #boot=/dev/sda default=0 timeout=10 splashimage=(hd0,0)/grub/splash.xpm.gz title Red Hat Linux (2.4.20-28.9smp) root (hd0,0) kernel /vmlinuz-2.4.20-28.9smp ro root=LABEL=/ hda=ide-scsi initrd /initrd-2.4.20-28.9smp.img title Red Hat Linux (2.4.20-28.9) root (hd0,0) kernel /vmlinuz-2.4.20-28.9 ro root=LABEL=/ hda=ide-scsi initrd /initrd-2.4.20-28.9.img title Red Hat Linux (2.4.20-8smp) root (hd0,0) kernel /vmlinuz-2.4.20-8smp ro root=LABEL=/ hda=ide-scsi initrd /initrd-2.4.20-8smp.img title Red Hat Linux-up (2.4.20-8) root (hd0,0) kernel /vmlinuz-2.4.20-8 ro root=LABEL=/ hda=ide-scsi initrd /initrd-2.4.20-8.img ******************************************************************************** FILE: /etc/lilo.conf prompt timeout=100 boot=/dev/sda map=/boot/map install=/boot/boot.b message=/boot/message linear default=linux image=/boot/vmlinuz-2.4.20-28.9smp label=linux initrd=/boot/initrd-2.4.20-28.9smp.img read-only append="hda=ide-scsi root=LABEL=/ mem=4096M" image=/boot/vmlinuz-2.4.20-28.9 label=linux.up initrd=/boot/initrd-2.4.20-28.9.img read-only append="hda=ide-scsi root=LABEL=/ mem=4096M"