August 27th, 2009
SNMP is not installed by default on Open Solaris but really easy to set up. You don’t need to compile it from source as some would suggest.
All you’ll need is to install the SUNWsmmgr package.
pkg install SUNWsmmgr
All of the config files, including snmpd.conf are in /etc/sma/snmp.
The service to enable snmp is called sma.
svcadm enable svc:/application/management/sma:default
To install utilities like snmpwalk and snmpget, you can install the SUNWsmcmd package.
Posted in *nix, howto | No Comments »
July 27th, 2009
In order to install Virtual Box Additions on your newly install Ubuntu virtual machine, you will need to fulfill the following dependencies.
Install dkms and the GNU C Compiler using the following command:
sudo apt-get install dkms gcc
Install the build and header files for Ubuntu using the following command:
sudo apt-get install linux-headers-$(uname -r)
$(uname -r) in the above command just passes your kernel version to apt-get
Posted in *nix, howto | No Comments »
July 15th, 2009
The officially supported method of detecting the presence of the .NET Framework 2.0 is to check the following registry key/value:
[HKEY_LOCAL_MACHINE\Software\Microsoft\Net Framework Setup\NDP\v2.0.50727]
Install = 1 (REG_DWORD)
Posted in howto, windows | No Comments »
July 1st, 2009
net user <username> <password>
Or if you want to hide the password and enter it at a prompt
net user <username> *
Posted in howto, windows | No Comments »
July 1st, 2009
If you want to allow non-admin users in Windows to change the IP address settings on their PCs, you can add them to the built-in “Network Configuration Operators” group. This can be done from the command line as
net localgroup "Network Configuration Operators" /add <username>
Posted in howto, windows | No Comments »