Thursday Apr 30, 2009

AI SMF profile

AI services get the SMF treatment.


We just moved to b111a bits on our install server and with the
new installadm tools there came another config change. Instead
of the services living in their own little file off /var/installadm/services,
they now reside as properties of a property group within the
svc:/system/install/server:default SMF service.


Instead of wiping all my already unpacked services I wrote a small
script to populate these SMF properties instead. The script takes a file in /var/installadm/services> and populates the
SMF services as needed.


Lastly all was needed is a svcadm start svc:/system/install/server:default to get
things going.

Tuesday Mar 24, 2009

Adobe Acrobat Reader for x86 on solaris finally

Today Adobe released Reader 9.1 for [Open]Solaris on x86


Get it

Monday Mar 16, 2009

What any 'cloud' based app/service will have to beable to beat


What any 'cloud' based app/service/api will have to be able to beat in terms of self-serviceability
(i.e. upgrading itself), propagation over new compute nodes, speedy integration new features..


All that good stuff.


It'll have to match what the Conflicker virus already can do.

Tuesday Mar 03, 2009

Photos and Pixies

An interesting thing is happening (again).

[Read More]

Tuesday Nov 25, 2008

Adding a disk image to a xvm/xen guest

Adding a disk to a linux guest.


Create a 16GB vmdk format sparse disk image:



/usr/lib/xen/bin/vdiskadm create -t vmdk:sparse -s 16g -c "extra disk" /path/to/disk/dir


Attach that new disk image to a guest:



virsh attach-disk virtual-guest /path/to/disk/dir xvdd --driver tap --subdriver vdisk


Note the use of 'xvdd' for the disk name that the linux will see the disk as.


Then one can add the disk to the linux guest's /etc/fstab:



/dev/xvdd1 /export/dsk1 ext3 noauto 0 0


And off one goes

Monday May 19, 2008

SPECjvm2008 free

Free java benchmark, specjvm2008.

[Read More]

Thursday Mar 27, 2008

povray 3.7 on Solaris

Compiling the beta of povray3.7 on Solaris using SunStudio.

[Read More]

Thursday Jan 17, 2008

SSL fingerprints mailserver

Changing the SSL fingerprint for fetchmail.

[Read More]

Wednesday Sep 05, 2007

Compiz on Solaris

Compiz 5.2 on Solaris !

[Read More]

Wednesday Jun 06, 2007

Nokia 6300 with opensolaris

Getting a nokia 6300 working with solaris

[Read More]

Wednesday May 23, 2007

zfs command tab completion

Mark has a nice bash profile addition to help
with zfs commands. With this script one can
have bash completion for zfs. Work quite nicely.

The script and more from the bigadmin site.

Wednesday May 09, 2007

Solaris USB devices

My other entry on gettng me canon 400D working with Solaris had one
little thing in error. I used update_drv(1M) thinking it was needed
for the ugen(7D) driver to attach correctly. Its not the case. We
don't need no update_drv(1M) for usb devices anymore (really). The
system will do everything needed (or its a bug).


This functionality was introduced into solaris via this bug; 6213551 libusb support should just work thanks a lot to Frits and the usb guys.


A FAQ is available as well
as the ugen(7D) manpage.

Tuesday May 08, 2007

Answering a question

I was asked a question. I answered.


>< Hey,
><
>< You ever seen a 'ROUTER' flag in the output from 'ifconfig -a' ?
>
> Yes.
>
>
its things like that that get you beaten.

Irish humour :)

Monday May 07, 2007

Rebel XTi/400D with gphoto on Solaris

Canon Rebel XTi 400D with Solaris

[Read More]

Tuesday Mar 06, 2007

Little Samba SMF changes a comming.

Samba changes upcoming in the Solaris Nevada trains. Theres gonna be two more SMF
services; winbind and wins. Tis for running samba in a domain controlled by ADS-PDC.
Since ADS resolves hostnames via whatever nameserver (nis, dns, ldap...) it no
longer needs the old WINS protocol (nmdb).

Though if you've got an older setup and may still need the WINS protocol you'll need
to enable the network/wins server ala:

svcadm enable network/wins
And of course having a proper /etc/swf/smb.conf config file.

Some details of this are with this bug; 6525472