Posts by Category

Buttons

Pure New Zealand

This site is driven by Blosxom

T
his site was written in vi

SDF is driven by NetBSD

Subscribe to this sites RSS/XML feed

This site has a Tableless Stylesheet

Email me

Feb 10, 2005

Exchange 2003 Real World Tweaks

These guys are running a two part article on Exchange 2003 Server tips and tweaks - part 1 and part 2.

[/tech/windows/exchange] | [permalink] | [2005.02.10-23:43.00]

Blosxom

This site uses blosxom version 2 with the following plugins blox, breadcrumbs, calendar, categorytree, flatarchives and state.

Blosxom is a simple perl script that works in conjunction with your web server - essentially each post is a seperate text file which you place in directory and that gets served up according to some simple rules that can be configured in Blosxom itself. Folders for posts represent categories, plugins provide extra features and flavours allow you to customise the look and feel of the site. Blosxom also automatically generates an RSS/XML feed from your posts making it easy to subscribe to updates in a feed-reader.

I've just discovered blosedit for web based editing although I also use the Mac OS X app blapp and of course ssh / vi.

[/tech/perl/blosxom] | [permalink] | [2005.02.10-19:01.00]

Interesting Links

Gmail tip - Configuring POP/SMTP.

Useful Active Directory tool - Using ADModify to Change Exchange Specific AD User Attributes in Bulk.

Ed Brill is a Lotus Notes guy who recently attended a Notes to Exchange migration course. Interesting reading.

Good New Zealand online stores are hard to find - Clearwater Tarn, suppliers of New Zealand Books, maps and guides. They have a great selection of topographic maps and outdoor hiking guides.

Article on an upcoming Active Directory / Unix integration tool. Their official spiel - Extend Microsoft Active Directory’s identity, access and policy management services to your Unix, Linux, Java and web platforms with Centrify. These people do something similar Vintela - Vintela Authentication Services (VAS) - Identity Management and Authentication for Windows, Unix, and Linux Using Active Directory.

Open source First Person Shooter (looks similar to early Quake) - Cube.

Gives a nice laymens perspective on using Rational Purify in a Linux environment. Purify can be used to debug and find memory leaks in code so its a pretty valuable tool for developers.

Use Access Control Lists to add flexibility to the traditional rwx Linux permissions.

Interesting tips for improving file system performance in Windows - NTFS Performance Hacks.

[/links/2004] | [permalink] | [2005.02.10-04:18.00]

AIX Logical Volume Manager

Allocating disk space on an IBM AIX machine

In this example we'll be increasing the amount of /tmp space available.

You can use a Calculator to fine tune the allocation process (you don't accidentally want to allocate all the remaining space to a file system so start conservatively and increase file system size on request) but this example uses basic approximation.

I'm sure theres a much simpler way to do this for serious AIX types but if you're a 'dabbler' then this process works for me.

Disk Space Before

bash-2.00# df -k /tmp

Filesystem 1024-blocks Free %Used Iused %Iused Mounted on

/dev/hd3 196608 172020 13% 256 1% /tmp

bash-2.00#

1. Login

2. Depending on your terminal emulation you may want to issue a TERM=vt100 (or similar) so SMIT (IBM System Management Utility) works properly in text mode

3. Start smit - the important keys that you will use are F3 to Cancel an Operation and F4 to List Options; arrow keys will allow you to move up and down through menu options - if you find that the function keys don't work, use esc- sequences instead.

4. Select System Storage Management

5. First we need to allocate more LP's (logical partitions) to the /tmp filesystem

a) Logical Volume Manager

b) Set Characteristics of a Logical Volume

c) Increase the Size of a Logical Volume

d) Hit F4 to list the Volumes and select /tmp

e) Bump up the Number of Additional logical partitions

f) Hit Enter to commit and action the changes - you should get a Command: OK

6. Increase the actual partition size

Hit F3 to escape back to the initial System Storage Management screen

a) Select File Systems

b) Select Add / Change / Show / Delete File Systems

c) Select JFS (unless you know the file system has a different format)

d) Change / Show Characteristics of a JFS You should get a pop up list of available file systems; select /tmp

e) Bump up the Size of file system

f) Hit Enter to commit and action the changes; you should see a Command: OK and the new file system size

Disk Space After

bash-2.00# df -k /tmp

Filesystem 1024-blocks Free %Used Iused %Iused Mounted on

/dev/hd3 262144 235496 11% 256 1% /tmp

bash-2.00#

[/tech/unix/aix] | [permalink] | [2005.02.10-04:13.00]