Installing SSH on the Linkstation

To install SSH run though the following
useradd sshd
cd <folder_for_compiling>
wget ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-4.3p2.tar.gz
tar xzvf openssh-4.3p2.tar.gz
cd openssh-4.3p2
./configure –without-zlib-version-check
make
make install
Create the following statup script:
=====
#! /bin/sh
# export USER=”root”
# NAME=ssh
start()
{
    if [ ! -d /var/empty ]; then
        mkdir /var/empty
    fi�
    /usr/local/sbin/sshd
}
stop()
{
    killall sshd
}
case “$1″ in
    start)
        echo -n “Starting sshd: ”
        start
        ;;
    stop)
        echo -n “Stopping sshd ”
        stop
        ;;
    restart)
        [...]

ASP SQL Nested Loop doing the Loop

Nesting the loop, Important thing to note make sure that you use recordset
Â
<%@ LANGUAGE=”VBSCRIPT” %>
<% response.cachecontrol = “Public” %>
<%Response.Buffer = False%>
<HTML>
<HEAD>
<TITLE>Title</TITLE>
</HEAD>
<%
Set conn= Server.CreateObject(“ADODB.Connection”)
conn.ConnectionTimeout = Session(“Support_ConnectionTimeout”)
conn.CommandTimeout = Session(“Support_CommandTimeout”)
conn.Open Session(“Support_ConnectionString”), Session(“Support_RuntimeUserName”), Session(“Support_RuntimePassword”)
Set cmdTemp = Server.CreateObject(“ADODB.Command”)
Set rs1 = Server.CreateObject(“ADODB.Recordset”)
cmdTemp.CommandText = “exec sp”
cmdTemp.CommandType = 1
Set cmdTemp.ActiveConnection = conn
rs1.Open cmdTemp, , 0, 1
%>
Â
<% If Not rs1.EOF Or Not rs2.BOF Then [...]

MS release Vitualisation Platform Design and Planning Documents

MS have now released there vitualisation platform design and planning documents;
Â
they can be found here: http://www.microsoft.com/downloads/details.aspx?FamilyId=AD3921FB-8224-4681-9064-075FDF042B0C&displaylang=en