windows
Active Directory authentication in Ubuntu
Submitted by madvip on Fri, 06/20/2008 - 07:29.This article will explain how to log inside a Linux box using Windows Domain credentials. This is especially useful in an enterprise environment. I am assuming that my windows username is james.attard and the domain is called ACME. First of all we install Likewise-Open:
james@madvip.net:~$ sudo apt-get install likewise-open
Now we can try to join the domain ACME with a domain administrator account. I'm assuming that my windows username james.attard is part of the domain admins:
james@madvip.net:~$ sudo domainjoin-cli join ACME james.attard
Boost audio in mplayer
Submitted by madvip on Tue, 01/01/2008 - 15:44.Sometimes you may be watching a DVD whose volume is very quite. In mplayer, to boost audio, is just a piece of cake:
mplayer -af volume=10.1:0 media.avi
This example was taken from the manual page of mplayer. In this case this would amplify the sound by 10.1dB and hard-clip if the sound level is too high.
Registering ASP with IIS
Submitted by madvip on Wed, 11/14/2007 - 16:33.More than often we install the ASP engine before IIS server and therefore we end up with ASP pages not showing up. This is because ASP is not registered with IIS. To solve this you must first register ASP with IIS:
c:\> aspnet_regiis.exe -i
Next step is to reset the IIS server to apply changes:
c:\> iisreset

