<?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=Markhu</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=Markhu"/>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Special:Contributions/Markhu"/>
		<updated>2026-09-18T09:33:19Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.23.3</generator>

	<entry>
		<id>https://mail.knoppix.net/wiki/Install_Over_Net_HowTo</id>
		<title>Install Over Net HowTo</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Install_Over_Net_HowTo"/>
				<updated>2008-06-26T22:17:55Z</updated>
		
		<summary type="html">&lt;p&gt;Markhu: /* Optimizing: */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Cloning a Hard disk install (any OS) over a network:===&lt;br /&gt;
&lt;br /&gt;
Because of the simplicity of it and the netboot option, we are able to use Knoppix to clone computers without having to purchase a Norton Ghost license for each system. Here is how I use Knoppix on a daily basis.&lt;br /&gt;
&lt;br /&gt;
We have several computers that are configured identically for the product that we sell. So I start one &amp;quot;set&amp;quot; up. One acts as the knoppix boot server and the others net boot off of it. Then I connect a long ethernet cable to a &amp;quot;fresh&amp;quot; set that has not had the OS or our special software loaded yet and net boot them off of the knoppix server.&lt;br /&gt;
&lt;br /&gt;
Then one by one I execute a command like this to clone them.&lt;br /&gt;
&lt;br /&gt;
*On the machine I want to copy from:&lt;br /&gt;
**Open 2 root windows&lt;br /&gt;
**start xload on one of them&lt;br /&gt;
**cat /dev/hda | gzip -9 | nc -l -p 5030&lt;br /&gt;
&lt;br /&gt;
*On the machine I copy to:&lt;br /&gt;
**nc 192.168.0.1 5030 | gunzip &amp;gt; /dev/hda (192.168.0.1 is the ip of whatever machine I am cloning)&lt;br /&gt;
&lt;br /&gt;
When the xload drops down to zero, then I know it is done. I can typically start about 2 or 3 clients to copy them.&lt;br /&gt;
&lt;br /&gt;
For Windows 9x systems. I do a format c: /s from dos and then untar a tarred backup that I made using knoppix.&lt;br /&gt;
&lt;br /&gt;
Since Knoppix auto configures the hardware, I don't have to mess with making boot floppies or keeping track of them.&lt;br /&gt;
&lt;br /&gt;
==== Optimizing: ====&lt;br /&gt;
&lt;br /&gt;
I often do such things although the above also works.&lt;br /&gt;
The following is faster though:&lt;br /&gt;
&lt;br /&gt;
*First find out the IP of the targetcomputer:&lt;br /&gt;
**ifconfig -a&lt;br /&gt;
&lt;br /&gt;
*Then&lt;br /&gt;
**echo Data is being transferred | nc -v -v -l -p 5030 | gunzip -| buffer -m 1m &amp;gt; /dev/hda&lt;br /&gt;
&lt;br /&gt;
*While it's waiting, on the Server:&lt;br /&gt;
**buffer -m 1m &amp;lt; /dev/hda | gzip -2 | nc -v -v -w 10 192.168.0.17 5030&lt;br /&gt;
&lt;br /&gt;
(Where 192.168.0.17 is the IP of the targetcomputer.)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This solution has the following pros compared to the one above:&lt;br /&gt;
&lt;br /&gt;
*More efficient due to using &amp;quot;buffer&amp;quot;. (You can experiment using gzip or nc or both).&lt;br /&gt;
*Normally &amp;quot;gzip -9 is used due to high compression.&lt;br /&gt;
*With &amp;quot;-w 10&amp;quot; on the server the data is constructed. It is not necessary to use xload: or similar for checking.  &lt;br /&gt;
&lt;br /&gt;
*With 3 targetcomputers 192.168.0.18 to 192.168.0.20, I would start by using the same commands on each targetcomputer, then do on the server:&lt;br /&gt;
**cd /tmp&lt;br /&gt;
**mknod pipe1 p; nc -v -v -w 10 192.168.0.18 5030 &amp;lt; pipe1 ~&amp;amp;&lt;br /&gt;
**mknod pipe2 p; nc -v -v -w 10 192.168.0.19 5030 &amp;lt; pipe2 ~&amp;amp;&lt;br /&gt;
**buffer -m 1m &amp;lt; /dev/hda | gzip -2 | buffer -m 1m ~|&lt;br /&gt;
**tee pipe1 | tee pipe2 | nc -v -v -w 10 192.168.0.20 5030&lt;br /&gt;
&lt;br /&gt;
The trick here is that by the &amp;quot;named pipes&amp;quot; the hard disk on the server is read only once.  This procedure also works with more than 3 target computers.&lt;br /&gt;
&lt;br /&gt;
[[Category: Networking]]&lt;br /&gt;
[[Category: Hard drive Installation]]&lt;/div&gt;</summary>
		<author><name>Markhu</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Install_Over_Net_HowTo</id>
		<title>Install Over Net HowTo</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Install_Over_Net_HowTo"/>
				<updated>2008-06-26T22:16:57Z</updated>
		
		<summary type="html">&lt;p&gt;Markhu: restore first section prior to spamming&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Cloning a Hard disk install (any OS) over a network:===&lt;br /&gt;
&lt;br /&gt;
Because of the simplicity of it and the netboot option, we are able to use Knoppix to clone computers without having to purchase a Norton Ghost license for each system. Here is how I use Knoppix on a daily basis.&lt;br /&gt;
&lt;br /&gt;
We have several computers that are configured identically for the product that we sell. So I start one &amp;quot;set&amp;quot; up. One acts as the knoppix boot server and the others net boot off of it. Then I connect a long ethernet cable to a &amp;quot;fresh&amp;quot; set that has not had the OS or our special software loaded yet and net boot them off of the knoppix server.&lt;br /&gt;
&lt;br /&gt;
Then one by one I execute a command like this to clone them.&lt;br /&gt;
&lt;br /&gt;
*On the machine I want to copy from:&lt;br /&gt;
**Open 2 root windows&lt;br /&gt;
**start xload on one of them&lt;br /&gt;
**cat /dev/hda | gzip -9 | nc -l -p 5030&lt;br /&gt;
&lt;br /&gt;
*On the machine I copy to:&lt;br /&gt;
**nc 192.168.0.1 5030 | gunzip &amp;gt; /dev/hda (192.168.0.1 is the ip of whatever machine I am cloning)&lt;br /&gt;
&lt;br /&gt;
When the xload drops down to zero, then I know it is done. I can typically start about 2 or 3 clients to copy them.&lt;br /&gt;
&lt;br /&gt;
For Windows 9x systems. I do a format c: /s from dos and then untar a tarred backup that I made using knoppix.&lt;br /&gt;
&lt;br /&gt;
Since Knoppix auto configures the hardware, I don't have to mess with making boot floppies or keeping track of them.&lt;br /&gt;
&lt;br /&gt;
==== Optimizing: ====&lt;br /&gt;
&lt;br /&gt;
I often do such things although the above also works.&lt;br /&gt;
The following is faster though:&lt;br /&gt;
&lt;br /&gt;
*First find out the IP of the targetcomputer:&lt;br /&gt;
**ifconfig -a&lt;br /&gt;
&lt;br /&gt;
*Then&lt;br /&gt;
**echo Data is being transferred | nc -v -v -l -p 5030 | gunzip ~| buffer -m 1m &amp;gt; /dev/hda&lt;br /&gt;
&lt;br /&gt;
*While it's waiting, on the Server:&lt;br /&gt;
**buffer -m 1m &amp;lt; /dev/hda | gzip -2 | nc -v -v -w 10 192.168.0.17 5030&lt;br /&gt;
&lt;br /&gt;
(Where 192.168.0.17 is the IP of the targetcomputer.)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This solution has the following pros compared to the one above:&lt;br /&gt;
&lt;br /&gt;
*More efficient due to using &amp;quot;buffer&amp;quot;. (You can experiment using gzip or nc or both).&lt;br /&gt;
*Normally &amp;quot;gzip -9 is used due to high compression.&lt;br /&gt;
*With &amp;quot;-w 10&amp;quot; on the server the data is constructed. It is not necessary to use xload: or similar for checking.  &lt;br /&gt;
&lt;br /&gt;
*With 3 targetcomputers 192.168.0.18 to 192.168.0.20, I would start by using the same commands on each targetcomputer, then do on the server:&lt;br /&gt;
**cd /tmp&lt;br /&gt;
**mknod pipe1 p; nc -v -v -w 10 192.168.0.18 5030 &amp;lt; pipe1 ~&amp;amp;&lt;br /&gt;
**mknod pipe2 p; nc -v -v -w 10 192.168.0.19 5030 &amp;lt; pipe2 ~&amp;amp;&lt;br /&gt;
**buffer -m 1m &amp;lt; /dev/hda | gzip -2 | buffer -m 1m ~|&lt;br /&gt;
**tee pipe1 | tee pipe2 | nc -v -v -w 10 192.168.0.20 5030&lt;br /&gt;
&lt;br /&gt;
The trick here is that by the &amp;quot;named pipes&amp;quot; the hard disk on the server is read only once.  This procedure also works with more than 3 target computers.&lt;br /&gt;
&lt;br /&gt;
[[Category: Networking]]&lt;br /&gt;
[[Category: Hard drive Installation]]&lt;/div&gt;</summary>
		<author><name>Markhu</name></author>	</entry>

	</feed>