Hugo's Blog

#howto

Cannot install ESET Security on Debian 4.0 Etch Virtuozzo VPS

As part of some mail filter testing, I needed to install ESET Mail Security onto a Debian 4.0 Etch VPS running on Virtuozzo. As a side-note, I found that the install package for ESET’s Gateway Filter, Mail Security, and File Server Security for Linux is all the exact same package; the functionality is basically just controlled/activated by means of licensing the appropriate component. Anyway, the download comes as an installation script called esets.i386.deb.bin. Running that script outputs a license agreement that you have to accept, produces a .deb package called esets.i386.deb, and outputs instructions on how to install the .deb package by using dpkg and import the license file. The .deb package installed just fine on another Debian test box, but when I attempted to run dpkg –i esets.i386.deb on the Virtuozzo VPS, tar squawked at me that it could not open /dev/stdin and the installation bailed: hostname:/usr/local/src/eset# dpkg -i esets-3.0.11.i386.deb Selecting previously deselected package esets. (Reading database ... 24639 files and directories currently installed.) Unpacking esets (from esets-3.0.11.i386.deb) ... Setting up esets (3.0.11) ... Unpacking esets modules ... tar: /dev/stdin: Cannot open: No such file or directory tar: Error is not recoverable: exiting now dpkg: error processing esets (--install): subprocess post-installation script returned error exit status 2 Errors were encountered while processing: esets…
·
Cannot install ESET Security on Debian 4.0 Etch Virtuozzo VPS

Accessing Active Directory in PHP using ADLDAP

Lately, our company has started developing user web portals for our clients. The main goal is to provide a central reference point for common links (webmail, helpdesk, remote assistance links ... ), howto documents, and other files and resources. A secondary goal was to also allow user administrators to perform basic user management through a web interface. This would include things like disabling/creating/unlocking user accounts, resetting passwords, and modifying group memberships for access reasons. Myself and the other admin tasked with setting up this portal are most familiar with PHP, and so we went of looking for the best means of interfacing with Active Directory through PHP…
·
Accessing Active Directory in PHP using ADLDAP

Gmail Filesystem for Windows

If you're looking for an easy online storage solution for Windows (and have a gmail account kicking around), check out the Gmail Drive by bjarke. It's a free shell extension for Windows that basically adds a new drive to your computer. When you try to access the drive through Windows explorer, you are prompted for your gmail login details (you have the option of saving the details to avoid having to login each time you access the drive)…
·
Gmail Filesystem for Windows

Find Disabled and Inactive User and Computer Accounts using Powershell - Part I

We'll start off with Inactive accounts first, and then work on the disabled accounts after that. Active Directory in Server 2003 has a nice user/computer attribute called lastLogonTimeStamp that can help us keep track of inactive accounts. If you have ever tried to use that attribute, however, you might have come up with something like this…
·
Find Disabled and Inactive User and Computer Accounts using Powershell - Part I