<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-GB">
	<id>https://wiki.tipstrade.net/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Root</id>
	<title>TipsTrade Wiki - User contributions [en-gb]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.tipstrade.net/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Root"/>
	<link rel="alternate" type="text/html" href="https://wiki.tipstrade.net/index.php?title=Special:Contributions/Root"/>
	<updated>2026-04-17T23:11:34Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.31.14</generator>
	<entry>
		<id>https://wiki.tipstrade.net/index.php?title=File:HMRC_Scale_Charge-Rfsc-2014.pdf&amp;diff=34</id>
		<title>File:HMRC Scale Charge-Rfsc-2014.pdf</title>
		<link rel="alternate" type="text/html" href="https://wiki.tipstrade.net/index.php?title=File:HMRC_Scale_Charge-Rfsc-2014.pdf&amp;diff=34"/>
		<updated>2014-05-12T09:44:55Z</updated>

		<summary type="html">&lt;p&gt;Root: HMRC VAT fuel scale charges - 2014&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;HMRC VAT fuel scale charges - 2014&lt;/div&gt;</summary>
		<author><name>Root</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tipstrade.net/index.php?title=File:TipsTrade_Info_Pack.pdf&amp;diff=29</id>
		<title>File:TipsTrade Info Pack.pdf</title>
		<link rel="alternate" type="text/html" href="https://wiki.tipstrade.net/index.php?title=File:TipsTrade_Info_Pack.pdf&amp;diff=29"/>
		<updated>2014-05-12T09:42:36Z</updated>

		<summary type="html">&lt;p&gt;Root: TipsTrade Information Pack&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;TipsTrade Information Pack&lt;/div&gt;</summary>
		<author><name>Root</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tipstrade.net/index.php?title=File:Saab_VIN.pdf&amp;diff=24</id>
		<title>File:Saab VIN.pdf</title>
		<link rel="alternate" type="text/html" href="https://wiki.tipstrade.net/index.php?title=File:Saab_VIN.pdf&amp;diff=24"/>
		<updated>2014-05-12T09:41:54Z</updated>

		<summary type="html">&lt;p&gt;Root: Saab VIN information&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Saab VIN information&lt;/div&gt;</summary>
		<author><name>Root</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tipstrade.net/index.php?title=File:Focus_RS.pdf&amp;diff=19</id>
		<title>File:Focus RS.pdf</title>
		<link rel="alternate" type="text/html" href="https://wiki.tipstrade.net/index.php?title=File:Focus_RS.pdf&amp;diff=19"/>
		<updated>2014-05-12T09:41:27Z</updated>

		<summary type="html">&lt;p&gt;Root: Ford Focus RS brochure&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Ford Focus RS brochure&lt;/div&gt;</summary>
		<author><name>Root</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tipstrade.net/index.php?title=Systems&amp;diff=3</id>
		<title>Systems</title>
		<link rel="alternate" type="text/html" href="https://wiki.tipstrade.net/index.php?title=Systems&amp;diff=3"/>
		<updated>2014-04-15T11:23:21Z</updated>

		<summary type="html">&lt;p&gt;Root: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== SATA/SCSI Hot plugging ==&lt;br /&gt;
&lt;br /&gt;
'''Scan SCSI bus for hot plugged devices:'''&lt;br /&gt;
&amp;lt;pre&amp;gt;echo &amp;quot;- - -&amp;quot; &amp;gt; /sys/class/scsi_host/host&amp;lt;HOST&amp;gt;/scan&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Spin down a device before hot plug removal:'''&lt;br /&gt;
&amp;lt;pre&amp;gt;echo 1 &amp;gt; /sys/block/&amp;lt;DEVICE&amp;gt;/device/delete&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Software RAID (mdadm) ==&lt;br /&gt;
&lt;br /&gt;
Taken from mdadm cheat sheet[http://www.ducea.com/2009/03/08/mdadm-cheat-sheet/]&lt;br /&gt;
&lt;br /&gt;
'''Creates a new array:'''&amp;lt;br&amp;gt;&lt;br /&gt;
This creates a new level 1 (mirrored) array over two devices - sda and sdb.&lt;br /&gt;
&amp;lt;pre&amp;gt;mdadm --create --verbose /dev/md0 --level=1 /dev/sda1 /dev/sdb2&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Write the configuration:'''&lt;br /&gt;
&amp;lt;pre&amp;gt;mdadm --detail --scan &amp;gt;&amp;gt; /etc/mdadm/mdadm.conf&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Remove a disk from an array:'''&amp;lt;br&amp;gt;&lt;br /&gt;
The disk needs to be failed first before it can be removed, although it's most likely in a failed state already.&lt;br /&gt;
&amp;lt;pre&amp;gt;mdadm --fail /dev/md0 /dev/sda1&amp;lt;/pre&amp;gt;&lt;br /&gt;
and now remove it&lt;br /&gt;
&amp;lt;pre&amp;gt;mdadm --remove /dev/md0 /dev/sda1&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Add a disk to an existing array:'''&amp;lt;br&amp;gt;&lt;br /&gt;
The partition table will probably have to be recreated.&lt;br /&gt;
&amp;lt;pre&amp;gt;sfdisk -d /dev/&amp;lt;ORIGINAL&amp;gt; | sfdisk /dev/&amp;lt;NEW&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
then add the device to the array.&lt;br /&gt;
&amp;lt;pre&amp;gt;mdadm --add /dev/md0 /dev/sdb1&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Verifying the status of the RAID arrays:'''&lt;br /&gt;
&amp;lt;pre&amp;gt;cat /proc/mdstat&amp;lt;/pre&amp;gt;&lt;br /&gt;
or&lt;br /&gt;
&amp;lt;pre&amp;gt;mdadm --detail /dev/md0&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Root</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tipstrade.net/index.php?title=Systems&amp;diff=2</id>
		<title>Systems</title>
		<link rel="alternate" type="text/html" href="https://wiki.tipstrade.net/index.php?title=Systems&amp;diff=2"/>
		<updated>2014-04-15T11:17:34Z</updated>

		<summary type="html">&lt;p&gt;Root: Created page with &amp;quot;== SATA/SCSI Hot pluggin ==  '''Scan SCSI bus for hot plugged devices:''' &amp;lt;pre&amp;gt;echo &amp;quot;- - -&amp;quot; &amp;gt; /sys/class/scsi_host/host&amp;lt;HOST&amp;gt;/scan&amp;lt;/pre&amp;gt;  '''Spin down a device before hot plug...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== SATA/SCSI Hot pluggin ==&lt;br /&gt;
&lt;br /&gt;
'''Scan SCSI bus for hot plugged devices:'''&lt;br /&gt;
&amp;lt;pre&amp;gt;echo &amp;quot;- - -&amp;quot; &amp;gt; /sys/class/scsi_host/host&amp;lt;HOST&amp;gt;/scan&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Spin down a device before hot plug removal:'''&lt;br /&gt;
&amp;lt;pre&amp;gt;echo 1 &amp;gt; /sys/block/&amp;lt;DEVICE&amp;gt;/device/delete&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Software RAID (mdadm) ==&lt;br /&gt;
&lt;br /&gt;
Taken from mdadm cheat sheet[http://www.ducea.com/2009/03/08/mdadm-cheat-sheet/]&lt;br /&gt;
&lt;br /&gt;
'''Creates a new array:'''&amp;lt;br&amp;gt;&lt;br /&gt;
This creates a new level 1 (mirrored) array over two devices - sda and sdb.&lt;br /&gt;
&amp;lt;pre&amp;gt;mdadm --create --verbose /dev/md0 --level=1 /dev/sda1 /dev/sdb2&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Write the configuration:'''&lt;br /&gt;
&amp;lt;pre&amp;gt;mdadm --detail --scan &amp;gt;&amp;gt; /etc/mdadm/mdadm.conf&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Remove a disk from an array:'''&amp;lt;br&amp;gt;&lt;br /&gt;
The disk needs to be failed first before it can be removed, although it's most likely in a failed state already.&lt;br /&gt;
&amp;lt;pre&amp;gt;mdadm --fail /dev/md0 /dev/sda1&amp;lt;/pre&amp;gt;&lt;br /&gt;
and now remove it&lt;br /&gt;
&amp;lt;pre&amp;gt;mdadm --remove /dev/md0 /dev/sda1&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Add a disk to an existing array:'''&lt;br /&gt;
&amp;lt;pre&amp;gt;mdadm --add /dev/md0 /dev/sdb1&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Verifying the status of the RAID arrays:'''&lt;br /&gt;
&amp;lt;pre&amp;gt;cat /proc/mdstat&amp;lt;/pre&amp;gt;&lt;br /&gt;
or&lt;br /&gt;
&amp;lt;pre&amp;gt;mdadm --detail /dev/md0&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Root</name></author>
		
	</entry>
</feed>