<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="https://mail.knoppix.net/wiki3/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://mail.knoppix.net/wiki3/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Rjent</id>
		<title>Knoppix Documentation Wiki - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://mail.knoppix.net/wiki3/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Rjent"/>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Special:Contributions/Rjent"/>
		<updated>2026-09-18T14:24:30Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.23.3</generator>

	<entry>
		<id>https://mail.knoppix.net/wiki/Talk:Debootstrap_to_LiveCD</id>
		<title>Talk:Debootstrap to LiveCD</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Talk:Debootstrap_to_LiveCD"/>
				<updated>2006-07-19T02:11:25Z</updated>
		
		<summary type="html">&lt;p&gt;Rjent: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;20060710 - This model is very nice! It allows you to start with the basics then taylor for your needs. Keep up the great work!&lt;br /&gt;
20060718 - Also take a look at http://live.debian.net/ . It is very nice as well.&lt;/div&gt;</summary>
		<author><name>Rjent</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/KNOPPIX_Terminal_Server</id>
		<title>KNOPPIX Terminal Server</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/KNOPPIX_Terminal_Server"/>
				<updated>2006-07-12T18:22:19Z</updated>
		
		<summary type="html">&lt;p&gt;Rjent: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Preamble==&lt;br /&gt;
&lt;br /&gt;
*This page will be used to document and describe how to boot KNOPPIX off the network using Samba as opposed to NFS.&lt;br /&gt;
**The page will pull from several resources to provide an official reference at the KNOPPIX site for all to use.&lt;br /&gt;
**Just starting so page will be in progress for a bit and will need to be catagorized.&lt;br /&gt;
*You are welcome to contact me on model (I have a day job, so please bare with me see [[User:Rjent|Rjent]]).&lt;br /&gt;
&lt;br /&gt;
==Model==&lt;br /&gt;
&lt;br /&gt;
* Most of the this information is an exert from a paper on the model at  http://www.mgr3.k12.mo.us/~rjn103s/HybridNotes-20060504-1.pdf&lt;br /&gt;
The methodology for the hybrid environment uses a Common Internet File System (CIFS)&lt;br /&gt;
to boot up KNOPPIX. The base work for this model utilizes existing resources and information&lt;br /&gt;
from http://knoppix.manty.net . The setup information provided here&lt;br /&gt;
assumes you have PXE booting via TFTP already setup on the boot&lt;br /&gt;
server. The rest is as follows:&lt;br /&gt;
* KNOPPIX:&lt;br /&gt;
 Download KNOPPIX 4.0.2+ and burn to a CD.&lt;br /&gt;
&lt;br /&gt;
 Download the miniroot.gz and integrate for the pxe bootup.&lt;br /&gt;
 To do this, place the miniroot.gz in the /tftpboot/hybrid/pxeboot/ directory.&lt;br /&gt;
 Make a directory under /tftpboot/hybrid/pxeboot/&lt;br /&gt;
 called knoppix and copy the /boot/isolinux/linux file from the&lt;br /&gt;
 KNOPPIX CD to /tftpboot/hybrid/pxeboot/knoppix/&lt;br /&gt;
&lt;br /&gt;
 Copy the KNOPPIX folder from the KNOPPIX CD to a location on server of&lt;br /&gt;
 /hybrid/knoppixshare&lt;br /&gt;
&lt;br /&gt;
 Modify the pxe boot menu located at /tftpboot/hybrid/pxeboot/pxelinux.cfg&lt;br /&gt;
 with the below addition:&lt;br /&gt;
  LABEL CIFS KNOPPIX&lt;br /&gt;
  KERNEL knoppix/linux&lt;br /&gt;
  APPEND secure nfsdir=//xxx.xxx.xxx.xxx/knoppix_share nodhcp \&lt;br /&gt;
  lang=en ramdisk_size=100000 init=/etc/init apm=poweroff nomce \&lt;br /&gt;
  vga=791 initrd=miniroot.gz quiet BOOT_IMAGE=knoppix \&lt;br /&gt;
  Note: xxx.xxx.xxx.xxx is the IP address of the server running the samba share.&lt;br /&gt;
&lt;br /&gt;
* Samba&lt;br /&gt;
 Samba provides the CIFS services, so we setup a share on server xxx.xxx.xxx.xxx.&lt;br /&gt;
 An example smb.conf is listed below:&lt;br /&gt;
 [global]&lt;br /&gt;
  workgroup = HYBRIDGROUP&lt;br /&gt;
  netbios name = HYBRIDSERVER&lt;br /&gt;
  security = share&lt;br /&gt;
  guest account = nobody&lt;br /&gt;
 [knoppix_share]&lt;br /&gt;
  comment = Knoppix Boot Data&lt;br /&gt;
  path = /hybrid/knoppix_share&lt;br /&gt;
  read only = Yes&lt;br /&gt;
  guest ok = Yes&lt;br /&gt;
 Note: After changes to smb.conf you will need to restart samba services.&lt;br /&gt;
&lt;br /&gt;
* DHCP Services&lt;br /&gt;
 Example entry for dhcpd.conf below&lt;br /&gt;
 group {&lt;br /&gt;
  filename &amp;quot;hybrid/pxeboot/pxelinux.0&amp;quot;;&lt;br /&gt;
  host hybrid51 {&lt;br /&gt;
     hardware ethernet MA:CA:DD:RE:SS:ED; fixedaddress xxx.xxx.xxx.xxx;&lt;br /&gt;
  }&lt;br /&gt;
 }&lt;br /&gt;
 Note: After changes to dhcpd.conf restart or reload dhcp services.&lt;br /&gt;
&lt;br /&gt;
At this point, you should be ready to test boot your KNOPPIX&lt;br /&gt;
session.&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* [http://knoppix.manty.net/ The KNOPPIX® terminal server over SMB/CIFS page] - The place where all the starting work was derived.&lt;/div&gt;</summary>
		<author><name>Rjent</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/KNOPPIX_Terminal_Server</id>
		<title>KNOPPIX Terminal Server</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/KNOPPIX_Terminal_Server"/>
				<updated>2006-07-12T18:21:48Z</updated>
		
		<summary type="html">&lt;p&gt;Rjent: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Preamble==&lt;br /&gt;
&lt;br /&gt;
*This page will be used to document and describe how to boot KNOPPIX off the network using Samba as opposed to NFS.&lt;br /&gt;
**The page will pull from several resources to provide an official reference at the KNOPPIX site for all to use.&lt;br /&gt;
**Just starting so page will be in progress for a bit and will need to be catagorized.&lt;br /&gt;
*You are welcome to contact me on model (I have a day job, so please bare with me see [[User:Rjent|Rjent]]).&lt;br /&gt;
&lt;br /&gt;
==Model==&lt;br /&gt;
* Most of the this information is an exert from a paper on the model at  http://www.mgr3.k12.mo.us/~rjn103s/HybridNotes-20060504-1.pdf&lt;br /&gt;
The methodology for the hybrid environment uses a Common Internet File System (CIFS)&lt;br /&gt;
to boot up KNOPPIX. The base work for this model utilizes existing resources and information&lt;br /&gt;
from http://knoppix.manty.net . The setup information provided here&lt;br /&gt;
assumes you have PXE booting via TFTP already setup on the boot&lt;br /&gt;
server. The rest is as follows:&lt;br /&gt;
* KNOPPIX:&lt;br /&gt;
 Download KNOPPIX 4.0.2+ and burn to a CD.&lt;br /&gt;
&lt;br /&gt;
 Download the miniroot.gz and integrate for the pxe bootup.&lt;br /&gt;
 To do this, place the miniroot.gz in the /tftpboot/hybrid/pxeboot/ directory.&lt;br /&gt;
 Make a directory under /tftpboot/hybrid/pxeboot/&lt;br /&gt;
 called knoppix and copy the /boot/isolinux/linux file from the&lt;br /&gt;
 KNOPPIX CD to /tftpboot/hybrid/pxeboot/knoppix/&lt;br /&gt;
&lt;br /&gt;
 Copy the KNOPPIX folder from the KNOPPIX CD to a location on server of&lt;br /&gt;
 /hybrid/knoppixshare&lt;br /&gt;
&lt;br /&gt;
 Modify the pxe boot menu located at /tftpboot/hybrid/pxeboot/pxelinux.cfg&lt;br /&gt;
 with the below addition:&lt;br /&gt;
  LABEL CIFS KNOPPIX&lt;br /&gt;
  KERNEL knoppix/linux&lt;br /&gt;
  APPEND secure nfsdir=//xxx.xxx.xxx.xxx/knoppix_share nodhcp \&lt;br /&gt;
  lang=en ramdisk_size=100000 init=/etc/init apm=poweroff nomce \&lt;br /&gt;
  vga=791 initrd=miniroot.gz quiet BOOT_IMAGE=knoppix \&lt;br /&gt;
  Note: xxx.xxx.xxx.xxx is the IP address of the server running the samba share.&lt;br /&gt;
&lt;br /&gt;
* Samba&lt;br /&gt;
 Samba provides the CIFS services, so we setup a share on server xxx.xxx.xxx.xxx.&lt;br /&gt;
 An example smb.conf is listed below:&lt;br /&gt;
 [global]&lt;br /&gt;
  workgroup = HYBRIDGROUP&lt;br /&gt;
  netbios name = HYBRIDSERVER&lt;br /&gt;
  security = share&lt;br /&gt;
  guest account = nobody&lt;br /&gt;
 [knoppix_share]&lt;br /&gt;
  comment = Knoppix Boot Data&lt;br /&gt;
  path = /hybrid/knoppix_share&lt;br /&gt;
  read only = Yes&lt;br /&gt;
  guest ok = Yes&lt;br /&gt;
 Note: After changes to smb.conf you will need to restart samba services.&lt;br /&gt;
&lt;br /&gt;
* DHCP Services&lt;br /&gt;
 Example entry for dhcpd.conf below&lt;br /&gt;
 group {&lt;br /&gt;
  filename &amp;quot;hybrid/pxeboot/pxelinux.0&amp;quot;;&lt;br /&gt;
  host hybrid51 {&lt;br /&gt;
     hardware ethernet MA:CA:DD:RE:SS:ED; fixedaddress xxx.xxx.xxx.xxx;&lt;br /&gt;
  }&lt;br /&gt;
 }&lt;br /&gt;
 Note: After changes to dhcpd.conf restart or reload dhcp services.&lt;br /&gt;
&lt;br /&gt;
At this point, you should be ready to test boot your KNOPPIX&lt;br /&gt;
session.&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* [http://knoppix.manty.net/ The KNOPPIX® terminal server over SMB/CIFS page] - The place where all the starting work was derived.&lt;/div&gt;</summary>
		<author><name>Rjent</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/KNOPPIX_Terminal_Server</id>
		<title>KNOPPIX Terminal Server</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/KNOPPIX_Terminal_Server"/>
				<updated>2006-07-12T18:21:00Z</updated>
		
		<summary type="html">&lt;p&gt;Rjent: /* Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Preamble==&lt;br /&gt;
&lt;br /&gt;
*This page will be used to document and describe how to boot KNOPPIX off the network using Samba as opposed to NFS.&lt;br /&gt;
**The page will pull from several resources to provide an official reference at the KNOPPIX site for all to use.&lt;br /&gt;
**Just starting so page will be in progress for a bit and will need to be catagorized.&lt;br /&gt;
*You are welcome to contact me on model (I have a day job, so please bare with me see [[User:Rjent|Rjent]]).&lt;br /&gt;
&lt;br /&gt;
==Model==&lt;br /&gt;
* Most of the this information is an exert from a paper on the model at  http://www.mgr3.k12.mo.us/~rjn103s/HybridNotes-20060504-1.pdf&lt;br /&gt;
The methodology for the hybrid environment uses a Common Internet File System (CIFS)&lt;br /&gt;
to boot up KNOPPIX. The base work for this model utilizes existing resources and information&lt;br /&gt;
from http://knoppix.manty.net . The setup information provided here&lt;br /&gt;
assumes you have PXE booting via TFTP already setup on the boot&lt;br /&gt;
server. The rest is as follows:&lt;br /&gt;
* KNOPPIX:&lt;br /&gt;
 Download KNOPPIX 4.0.2 and burn to a CD.&lt;br /&gt;
&lt;br /&gt;
 Download the miniroot.gz and integrate for the pxe bootup.&lt;br /&gt;
 To do this, place the miniroot.gz in the /tftpboot/hybrid/pxeboot/ directory.&lt;br /&gt;
 Make a directory under /tftpboot/hybrid/pxeboot/&lt;br /&gt;
 called knoppix and copy the /boot/isolinux/linux file from the&lt;br /&gt;
 KNOPPIX CD to /tftpboot/hybrid/pxeboot/knoppix/&lt;br /&gt;
&lt;br /&gt;
 Copy the KNOPPIX folder from the KNOPPIX CD to a location on server of&lt;br /&gt;
 /hybrid/knoppixshare&lt;br /&gt;
&lt;br /&gt;
 Modify the pxe boot menu located at /tftpboot/hybrid/pxeboot/pxelinux.cfg&lt;br /&gt;
 with the below addition:&lt;br /&gt;
  LABEL CIFS KNOPPIX&lt;br /&gt;
  KERNEL knoppix/linux&lt;br /&gt;
  APPEND secure nfsdir=//xxx.xxx.xxx.xxx/knoppix_share nodhcp \&lt;br /&gt;
  lang=en ramdisk_size=100000 init=/etc/init apm=poweroff nomce \&lt;br /&gt;
  vga=791 initrd=miniroot.gz quiet BOOT_IMAGE=knoppix \&lt;br /&gt;
  Note: xxx.xxx.xxx.xxx is the IP address of the server running the samba share.&lt;br /&gt;
&lt;br /&gt;
* Samba&lt;br /&gt;
 Samba provides the CIFS services, so we setup a share on server xxx.xxx.xxx.xxx.&lt;br /&gt;
 An example smb.conf is listed below:&lt;br /&gt;
 [global]&lt;br /&gt;
  workgroup = HYBRIDGROUP&lt;br /&gt;
  netbios name = HYBRIDSERVER&lt;br /&gt;
  security = share&lt;br /&gt;
  guest account = nobody&lt;br /&gt;
 [knoppix_share]&lt;br /&gt;
  comment = Knoppix Boot Data&lt;br /&gt;
  path = /hybrid/knoppix_share&lt;br /&gt;
  read only = Yes&lt;br /&gt;
  guest ok = Yes&lt;br /&gt;
 Note: After changes to smb.conf you will need to restart samba services.&lt;br /&gt;
&lt;br /&gt;
* DHCP Services&lt;br /&gt;
 Example entry for dhcpd.conf below&lt;br /&gt;
 group {&lt;br /&gt;
  filename &amp;quot;hybrid/pxeboot/pxelinux.0&amp;quot;;&lt;br /&gt;
  host hybrid51 {&lt;br /&gt;
     hardware ethernet MA:CA:DD:RE:SS:ED; fixedaddress xxx.xxx.xxx.xxx;&lt;br /&gt;
  }&lt;br /&gt;
 }&lt;br /&gt;
 Note: After changes to dhcpd.conf restart or reload dhcp services.&lt;br /&gt;
&lt;br /&gt;
At this point, you should be ready to test boot your KNOPPIX&lt;br /&gt;
session.&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* [http://knoppix.manty.net/ The KNOPPIX® terminal server over SMB/CIFS page] - The place where all the starting work was derived.&lt;/div&gt;</summary>
		<author><name>Rjent</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/KNOPPIX_Terminal_Server</id>
		<title>KNOPPIX Terminal Server</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/KNOPPIX_Terminal_Server"/>
				<updated>2006-07-12T01:55:46Z</updated>
		
		<summary type="html">&lt;p&gt;Rjent: /* Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Preamble==&lt;br /&gt;
&lt;br /&gt;
*This page will be used to document and describe how to boot KNOPPIX off the network using Samba as opposed to NFS.&lt;br /&gt;
**The page will pull from several resources to provide an official reference at the KNOPPIX site for all to use.&lt;br /&gt;
**Just starting so page will be in progress for a bit and will need to be catagorized.&lt;br /&gt;
*You are welcome to contact me on model (I have a day job, so please bare with me see [[User:Rjent|Rjent]]).&lt;br /&gt;
&lt;br /&gt;
==Model==&lt;br /&gt;
* Most of the this information is an exert from a paper on the model at  http://www.mgr3.k12.mo.us/~rjn103s/HybridNotes-20060504-1.pdf&lt;br /&gt;
The methodology for the hybrid environment uses a Common Internet File System (CIFS)&lt;br /&gt;
to boot up KNOPPIX. The base work for this model utilizes existing resources and information&lt;br /&gt;
from http://knoppix.manty.net . The setup information provided here&lt;br /&gt;
assumes you have PXE booting via TFTP already setup on the boot&lt;br /&gt;
server. The rest is as follows:&lt;br /&gt;
* KNOPPIX:&lt;br /&gt;
Download KNOPPIX 4.0.2 and burn to a CD.&lt;br /&gt;
Download the miniroot.gz and integrate for the pxe bootup.&lt;br /&gt;
 To do this, place the miniroot.gz in the /tftpboot/hybrid/pxeboot/ directory.&lt;br /&gt;
Make&lt;br /&gt;
a directory under /tftpboot/hybrid/pxeboot/&lt;br /&gt;
called&lt;br /&gt;
knoppix and copy the /boot/isolinux/linux file from the&lt;br /&gt;
KNOPPIX CD to /tftpboot/hybrid/pxeboot/&lt;br /&gt;
knoppix/&lt;br /&gt;
Copy&lt;br /&gt;
the KNOPPIX folder from the KNOPPIX CD to a location&lt;br /&gt;
on server of /hybrid/knoppixshare&lt;br /&gt;
Modify&lt;br /&gt;
the pxe boot menu located at /tftpboot/hybrid/pxeboot/&lt;br /&gt;
pxelinux.cfg with the below addition:&lt;br /&gt;
LABEL CIFS KNOPPIX&lt;br /&gt;
KERNEL knoppix/linux&lt;br /&gt;
APPEND secure nfsdir=//xxx.xxx.xxx.xxx/knoppix_share nodhcp&lt;br /&gt;
lang=en ramdisk_size=100000 init=/etc/init apm=poweroff&lt;br /&gt;
nomce&lt;br /&gt;
vga=791 initrd=miniroot.gz quiet BOOT_IMAGE=knoppix&lt;br /&gt;
Note: xxx.xxx.xxx.xxx is the IP address of the server running the&lt;br /&gt;
samba share.&lt;br /&gt;
• Samba&lt;br /&gt;
7 of 16&lt;br /&gt;
Samba&lt;br /&gt;
provides the CIFS services, so we setup a share on&lt;br /&gt;
server xxx.xxx.xxx.xxx . An example smb.conf is listed&lt;br /&gt;
below:&lt;br /&gt;
[global]&lt;br /&gt;
workgroup = HYBRIDGROUP&lt;br /&gt;
netbios name = HYBRIDSERVER&lt;br /&gt;
security = share&lt;br /&gt;
guest account = nobody&lt;br /&gt;
[knoppix_share]&lt;br /&gt;
comment = Knoppix Boot Data&lt;br /&gt;
path = /hybrid/knoppix_share&lt;br /&gt;
read only = Yes&lt;br /&gt;
guest ok = Yes&lt;br /&gt;
Restart&lt;br /&gt;
samba services.&lt;br /&gt;
• DHCP Services&lt;br /&gt;
Example&lt;br /&gt;
entry for dhcpd.conf below&lt;br /&gt;
group {&lt;br /&gt;
filename &amp;quot;hybrid/pxeboot/&lt;br /&gt;
pxelinux.0&amp;quot;;&lt;br /&gt;
host hybrid51&lt;br /&gt;
{&lt;br /&gt;
hardware ethernet MA:CA:DD:RE:SS:ED;&lt;br /&gt;
fixedaddress&lt;br /&gt;
xxx.xxx.xxx.xxx;&lt;br /&gt;
}&lt;br /&gt;
}&lt;br /&gt;
Restart&lt;br /&gt;
or reload dhcp services.&lt;br /&gt;
At this point, you should be ready to test boot your KNOPPIX&lt;br /&gt;
session.&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* [http://knoppix.manty.net/ The KNOPPIX® terminal server over SMB/CIFS page] - The place where all the starting work was derived.&lt;/div&gt;</summary>
		<author><name>Rjent</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Talk:Debootstrap_to_LiveCD</id>
		<title>Talk:Debootstrap to LiveCD</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Talk:Debootstrap_to_LiveCD"/>
				<updated>2006-07-11T02:31:12Z</updated>
		
		<summary type="html">&lt;p&gt;Rjent: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;20060710 - This model is very nice! It allows you to start with the basics then taylor for your needs. Keep up the great work!&lt;/div&gt;</summary>
		<author><name>Rjent</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/KNOPPIX_Terminal_Server</id>
		<title>KNOPPIX Terminal Server</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/KNOPPIX_Terminal_Server"/>
				<updated>2006-07-04T19:48:20Z</updated>
		
		<summary type="html">&lt;p&gt;Rjent: /*preamble*/&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Preamble==&lt;br /&gt;
&lt;br /&gt;
*This page will be used to document and describe how to boot KNOPPIX off the network using Samba as opposed to NFS.&lt;br /&gt;
**The page will pull from several resources to provide an official reference at the KNOPPIX site for all to use.&lt;br /&gt;
**Just starting so page will be in progress for a bit and will need to be catagorized.&lt;br /&gt;
*You are welcome to contact me on model (I have a day job, so please bare with me see [[User:Rjent|Rjent]]).&lt;br /&gt;
&lt;br /&gt;
==Model==&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* [http://knoppix.manty.net/ The KNOPPIX® terminal server over SMB/CIFS page] - The place where all the starting work was derived.&lt;/div&gt;</summary>
		<author><name>Rjent</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/User:Rjent</id>
		<title>User:Rjent</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/User:Rjent"/>
				<updated>2006-07-04T19:40:06Z</updated>
		
		<summary type="html">&lt;p&gt;Rjent: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Starting Page(s)==&lt;br /&gt;
[[KNOPPIX Terminal Server]] - KTS over smb/cifs for thick clients. Not LTSP for thin clients.&lt;br /&gt;
&lt;br /&gt;
My e-mail is &lt;br /&gt;
 rjent (at) rjent (dot) pair (dot) com&lt;br /&gt;
Please have &amp;quot;**RJEnt** - KTS&amp;quot; part of your email subject or you may get filtered.&lt;/div&gt;</summary>
		<author><name>Rjent</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/User:Rjent</id>
		<title>User:Rjent</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/User:Rjent"/>
				<updated>2006-07-04T19:35:18Z</updated>
		
		<summary type="html">&lt;p&gt;Rjent: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Starting Page(s)==&lt;br /&gt;
[[KNOPPIX Terminal Server]] - KTS over smb/cifs for thick clients. Not LTSP for thin clients.&lt;br /&gt;
&lt;br /&gt;
My e-mail is &lt;br /&gt;
 rjent (at) pair (dot) com&lt;br /&gt;
Please have &amp;quot;**RJEnt** - KTS&amp;quot; part of your email subject or you may get filtered.&lt;/div&gt;</summary>
		<author><name>Rjent</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/User:Rjent</id>
		<title>User:Rjent</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/User:Rjent"/>
				<updated>2006-07-04T19:26:10Z</updated>
		
		<summary type="html">&lt;p&gt;Rjent: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Starting Page(s)==&lt;br /&gt;
[[KNOPPIX Terminal Server]] - KTS, not LTSP.&lt;br /&gt;
&lt;br /&gt;
My e-mail is &lt;br /&gt;
 rjent (at) pair (dot) com&lt;br /&gt;
Please have &amp;quot;**RJEnt** - KTS&amp;quot; part of your email subject or you may get filtered.&lt;/div&gt;</summary>
		<author><name>Rjent</name></author>	</entry>

	</feed>