<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://www.ninerpedia.org/index.php?action=history&amp;feed=atom&amp;title=Interfacing_with_the_outside_world</id>
	<title>Interfacing with the outside world - Revision history</title>
	<link rel="self" type="application/atom+xml" href="http://www.ninerpedia.org/index.php?action=history&amp;feed=atom&amp;title=Interfacing_with_the_outside_world"/>
	<link rel="alternate" type="text/html" href="http://www.ninerpedia.org/index.php?title=Interfacing_with_the_outside_world&amp;action=history"/>
	<updated>2026-04-25T05:17:58Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.37.1</generator>
	<entry>
		<id>http://www.ninerpedia.org/index.php?title=Interfacing_with_the_outside_world&amp;diff=46771&amp;oldid=prev</id>
		<title>Mizapf at 23:45, 8 December 2009</title>
		<link rel="alternate" type="text/html" href="http://www.ninerpedia.org/index.php?title=Interfacing_with_the_outside_world&amp;diff=46771&amp;oldid=prev"/>
		<updated>2009-12-08T23:45:17Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== Image exchange via SCSI ==&lt;br /&gt;
&lt;br /&gt;
=== Copying from a SCSI drive to the PC ===&lt;br /&gt;
Here, we need to read the SCSI drive and copy the contents to a file. In Linux or OSX this is pretty easy: The &amp;#039;&amp;#039;&amp;#039;dd&amp;#039;&amp;#039;&amp;#039; command allows to access the device at low level. For SCSI this means to copy the sectors.&lt;br /&gt;
&lt;br /&gt;
If your drive is attached as sdb (you can find out using the fdisk command), you issue the following command:&lt;br /&gt;
&lt;br /&gt;
 dd if=/dev/sdb of=dumpfile bs=256 count=1015808&lt;br /&gt;
&lt;br /&gt;
Note that you do not provide a device name like sdb1 or sdb2: You simply do not have any partitioning in the TI/Geneve environment. When dd returns, we should have the contents in a file called &amp;#039;&amp;#039;dumpfile&amp;#039;&amp;#039;. The count parameter prevents dd to read past 248 MiB which cannot be handled in the TI/Geneve file system anyway. The bs parameter is the block size, which may be set as large as the size of an allocation unit. It does not play an essential role here.&lt;br /&gt;
&lt;br /&gt;
If you want to use the image in [[MESS]], you should continue with reading [[MESS HD Preparation]].&lt;br /&gt;
&lt;br /&gt;
=== Copying from the PC to a SCSI drive ===&lt;br /&gt;
&lt;br /&gt;
Similarly, if your drive is attached as sdb, type in&lt;br /&gt;
&lt;br /&gt;
  dd if=dumpfile of=/dev/sdb bs=256&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Caution&amp;#039;&amp;#039;&amp;#039;: I assume you are already wise enough that you know what you are doing. Double-check whether you have used the right device names. Make sure (really sure) that you are not about to overwrite your PC hard drive. The system will not ask you whether you really mean to overwrite your drive. Anyway, in case something goes wrong, you&amp;#039;ll just restore your backup which you hopefully create regularly.&lt;/div&gt;</summary>
		<author><name>Mizapf</name></author>
	</entry>
</feed>