Archive for April, 2004



To allow for remote, Xvnc-based sessions from the network to a Linux machine using vncserver, we can leverage the xinetd infrastructure to dynamically, and on-demand, spawning Xvnc servers for incoming remote connections. To do so, create a file named /etc/xinetd.d/xvncserver:
# cat > /etc/xinetd.d/xvncserver
service vnc
{
protocol [...]

With ASP.NET pages, if code behind is used, a separate .cs file must contain the C# source code. This C# file must be manually compiled into a .DLL and placed in the Mono /lib directory, so that Mono can make use of it.
However, with XSP, it’s possible to tell Mono where the .cs code behind [...]