• Mac OS X,  Ubuntu,  Unix

    Working Directory

    When I say working directory I am referring to the current directory you are in when using a command prompt.  Just an FYI.  If you are ever unsure as to what your working directory is then you can use the pwd command to print it out to the screen.

  • Network Infrastructure

    SBC Spam Prevention Falls Short

    SBC sends all their residential customers port 25 traffic to their mail server, regardless of the destination IP number, regardless if dial up, DSL, etc.  Expect this trend to continue to other vendors with residential accounts to help combat spam.  IMHO killing spam by effectively blocking out port 25 for end-users is not a huge deterrent of spam.

  • Ubuntu,  Unix

    Quick Install of Squid and Dans Guardian

    To get Squid and Dans Guardian: apt-get install squid dansguardian To backup the squid config file: cp /etc/squid/squid.conf /etc/squid/squid.conf.bak To make it transparent, uncomment this line from the squid.conf file: http_port 127.0.0.1:3128 transparent Add this on the next line: http_port 8080 Next, backup the dansguardian config file using the following command: cp /etc/dansguardian/dansguardian.conf /etc/dansguardian/dansguardian.conf.bak Then change 8080 to 8081 Then change filtergroups to = 2 rather than the default of 1 You can then install the webmin module from: http://internap.dl.sourceforge.net/sourceforge/dgwebminmodule/dg-0.5.10-pr5.wbm

  • Xsan

    Xsan: Qlogic Licensing

    In order to stack Qlogic switches all 20 ports must be active.  Not all ports are active on all switches.  Good to know… THIS POSTING IS OUT OF DATE

  • Mac OS X,  Mac OS X Server,  Ubuntu,  Unix

    vnode

    The vnode table represents all file activity in UNIX. There is a unique vnode allocated in the vnode table for each active file, each current directory, each mounted-on file, text file, and the root.  To see the number of vnodes available in Mac OS X, look to sysctl for the kern.maxvnodes variable using something similar to the following command: sysctl -A | grep vnode

  • Mac OS X,  Mac OS X Server,  Mac Security

    Control SSH Access

    Control access by editing the SSH configuration file and using the AllowUsers directive like so: AllowUsers cedge To add multiple entries, either separate users with a space: AllowUsers cedge kklein Or you can write an entirely new line: AllowUsers cedge AllowUsers kklein