<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>dd tutorial Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/dd-tutorial/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Thu, 16 Aug 2018 09:46:24 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.12</generator>
	<item>
		<title>DD Simplified with GdiskDump</title>
		<link>https://www.osradar.com/dd-simplified-with-gdiskdump/</link>
					<comments>https://www.osradar.com/dd-simplified-with-gdiskdump/#respond</comments>
		
		<dc:creator><![CDATA[osradar_editor]]></dc:creator>
		<pubDate>Thu, 16 Aug 2018 09:46:24 +0000</pubDate>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[dd]]></category>
		<category><![CDATA[dd gui]]></category>
		<category><![CDATA[dd tutorial]]></category>
		<category><![CDATA[gdiskdump]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=5350</guid>

					<description><![CDATA[<p>If you’re a Linux user, you surely have heard the name of “dd” tool. It’s one of the most powerful features of Linux that provides tremendous power over backing up your drive, writing image files to drive and much more. However, dd is a command line tool – no GUI available officially. I know that [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/dd-simplified-with-gdiskdump/">DD Simplified with GdiskDump</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>If you’re a Linux user, you surely have heard the name of “dd” tool. It’s one of the most powerful features of Linux that provides tremendous power over backing up your drive, writing image files to drive and much more.</p>
<p>However, dd is a command line tool – no GUI available officially. I know that experts and experienced users love the CLI because it provides more power over the system than the GUI tool but for most users, GUI is the preferred method. That’s why let’s check out the GUI tool of dd – GdiskDump.</p>
<p>Don’t forget to check out <a href="https://www.osradar.com/how-to-find-out-the-biggest-files-directory-on-linux/">the easiest management of the biggest files and directories of your Linux system</a>!</p>
<h1>Preparing the system</h1>
<p>Before installing GdiskDump, we have to install the dependencies. The tool depends on the following dependencies –</p>
<ul>
<li><a href="https://pkgs.org/download/python">Python2</a></li>
<li><a href="https://pkgs.org/download/pygtk2">PyGTK2</a> or <a href="https://pkgs.org/download/pygtk">PyGTK</a></li>
<li><a href="https://pkgs.org/download/python-notify">python-notify</a> or <a href="https://pkgs.org/download/python2-notify">python2-notify</a></li>
</ul>
<p>If you’re in Ubuntu/Debian, run the following commands for installing the dependencies –</p>
<pre class="">sudo apt install python-gtk2 python python-notify</pre>
<p><img loading="lazy" class="size-full wp-image-5361 aligncenter" src="https://www.osradar.com/wp-content/uploads/2018/08/install-gdiskdump-dependencies.png" alt="" width="1094" height="299" srcset="https://www.osradar.com/wp-content/uploads/2018/08/install-gdiskdump-dependencies.png 1094w, https://www.osradar.com/wp-content/uploads/2018/08/install-gdiskdump-dependencies-300x82.png 300w, https://www.osradar.com/wp-content/uploads/2018/08/install-gdiskdump-dependencies-768x210.png 768w, https://www.osradar.com/wp-content/uploads/2018/08/install-gdiskdump-dependencies-1024x280.png 1024w, https://www.osradar.com/wp-content/uploads/2018/08/install-gdiskdump-dependencies-696x190.png 696w, https://www.osradar.com/wp-content/uploads/2018/08/install-gdiskdump-dependencies-1068x292.png 1068w" sizes="(max-width: 1094px) 100vw, 1094px" /></p>
<p>For other Linux distros, check out Pkgs.org to get the appropriate installation package.</p>
<h1>Installing GdiskDump</h1>
<p>For Ubuntu/Debian users, run the following commands –</p>
<pre class="">wget https://launchpad.net/gdiskdump/trunk/0.8/+download/gdiskdump_0.8-1_all.deb
sudo dpkg -i gdiskdump_0.8-1_all.deb</pre>
<p><img loading="lazy" class="size-full wp-image-5357 aligncenter" src="https://www.osradar.com/wp-content/uploads/2018/08/downloading-gdiskdump.png" alt="" width="1094" height="387" srcset="https://www.osradar.com/wp-content/uploads/2018/08/downloading-gdiskdump.png 1094w, https://www.osradar.com/wp-content/uploads/2018/08/downloading-gdiskdump-300x106.png 300w, https://www.osradar.com/wp-content/uploads/2018/08/downloading-gdiskdump-768x272.png 768w, https://www.osradar.com/wp-content/uploads/2018/08/downloading-gdiskdump-1024x362.png 1024w, https://www.osradar.com/wp-content/uploads/2018/08/downloading-gdiskdump-696x246.png 696w, https://www.osradar.com/wp-content/uploads/2018/08/downloading-gdiskdump-1068x378.png 1068w" sizes="(max-width: 1094px) 100vw, 1094px" /></p>
<p><img loading="lazy" class="size-full wp-image-5358 aligncenter" src="https://www.osradar.com/wp-content/uploads/2018/08/gdiskdump-install-deb.png" alt="" width="1095" height="433" srcset="https://www.osradar.com/wp-content/uploads/2018/08/gdiskdump-install-deb.png 1095w, https://www.osradar.com/wp-content/uploads/2018/08/gdiskdump-install-deb-300x119.png 300w, https://www.osradar.com/wp-content/uploads/2018/08/gdiskdump-install-deb-768x304.png 768w, https://www.osradar.com/wp-content/uploads/2018/08/gdiskdump-install-deb-1024x405.png 1024w, https://www.osradar.com/wp-content/uploads/2018/08/gdiskdump-install-deb-696x275.png 696w, https://www.osradar.com/wp-content/uploads/2018/08/gdiskdump-install-deb-1068x422.png 1068w, https://www.osradar.com/wp-content/uploads/2018/08/gdiskdump-install-deb-1062x420.png 1062w" sizes="(max-width: 1095px) 100vw, 1095px" /></p>
<p>For installing from the source code, run the following commands –</p>
<pre class="">wget https://launchpad.net/gdiskdump/trunk/0.8/+download/gdiskdump-0.8.tar.gz

tar -xvzf gdiskdump-0.8.tar.gz

cd gdiskdump-0.8
make
make install</pre>
<h1><img loading="lazy" class="size-full wp-image-5359 aligncenter" src="https://www.osradar.com/wp-content/uploads/2018/08/gdiskdump-source-code.png" alt="" width="1097" height="388" srcset="https://www.osradar.com/wp-content/uploads/2018/08/gdiskdump-source-code.png 1097w, https://www.osradar.com/wp-content/uploads/2018/08/gdiskdump-source-code-300x106.png 300w, https://www.osradar.com/wp-content/uploads/2018/08/gdiskdump-source-code-768x272.png 768w, https://www.osradar.com/wp-content/uploads/2018/08/gdiskdump-source-code-1024x362.png 1024w, https://www.osradar.com/wp-content/uploads/2018/08/gdiskdump-source-code-696x246.png 696w, https://www.osradar.com/wp-content/uploads/2018/08/gdiskdump-source-code-1068x378.png 1068w" sizes="(max-width: 1097px) 100vw, 1097px" /></h1>
<h1><img loading="lazy" class="size-full wp-image-5360 aligncenter" src="https://www.osradar.com/wp-content/uploads/2018/08/install-gdiskdump-from-source.png" alt="" width="1096" height="591" srcset="https://www.osradar.com/wp-content/uploads/2018/08/install-gdiskdump-from-source.png 1096w, https://www.osradar.com/wp-content/uploads/2018/08/install-gdiskdump-from-source-300x162.png 300w, https://www.osradar.com/wp-content/uploads/2018/08/install-gdiskdump-from-source-768x414.png 768w, https://www.osradar.com/wp-content/uploads/2018/08/install-gdiskdump-from-source-1024x552.png 1024w, https://www.osradar.com/wp-content/uploads/2018/08/install-gdiskdump-from-source-696x375.png 696w, https://www.osradar.com/wp-content/uploads/2018/08/install-gdiskdump-from-source-1068x576.png 1068w, https://www.osradar.com/wp-content/uploads/2018/08/install-gdiskdump-from-source-779x420.png 779w" sizes="(max-width: 1096px) 100vw, 1096px" /></h1>
<h1>Using GdiskDump</h1>
<p>For starting the tool, run the following command in the terminal –</p>
<pre class="">sudo gdiskdump</pre>
<p><img loading="lazy" class="size-full wp-image-5352 aligncenter" src="https://www.osradar.com/wp-content/uploads/2018/08/start-gdiskdump.png" alt="" width="1116" height="635" srcset="https://www.osradar.com/wp-content/uploads/2018/08/start-gdiskdump.png 1116w, https://www.osradar.com/wp-content/uploads/2018/08/start-gdiskdump-300x171.png 300w, https://www.osradar.com/wp-content/uploads/2018/08/start-gdiskdump-768x437.png 768w, https://www.osradar.com/wp-content/uploads/2018/08/start-gdiskdump-1024x583.png 1024w, https://www.osradar.com/wp-content/uploads/2018/08/start-gdiskdump-696x396.png 696w, https://www.osradar.com/wp-content/uploads/2018/08/start-gdiskdump-1068x608.png 1068w, https://www.osradar.com/wp-content/uploads/2018/08/start-gdiskdump-738x420.png 738w" sizes="(max-width: 1116px) 100vw, 1116px" /></p>
<p>You’ll notice that there are a number of available options as input – File, Harddrive and Partition.</p>
<p><img loading="lazy" class=" wp-image-5355 aligncenter" src="https://www.osradar.com/wp-content/uploads/2018/08/gdiskdump-input-types.png" alt="" width="625" height="521" srcset="https://www.osradar.com/wp-content/uploads/2018/08/gdiskdump-input-types.png 582w, https://www.osradar.com/wp-content/uploads/2018/08/gdiskdump-input-types-300x250.png 300w, https://www.osradar.com/wp-content/uploads/2018/08/gdiskdump-input-types-504x420.png 504w" sizes="(max-width: 625px) 100vw, 625px" /></p>
<p>The “File” option is to burn ISO/IMG to a target device, for example, to USB flash drive. Let’s check it out. Here, I’ve selected the file option and in the in-app browser, I’ve selected the Lubuntu ISO. Click “Forward”.</p>
<p><img loading="lazy" class=" wp-image-5353 aligncenter" src="https://www.osradar.com/wp-content/uploads/2018/08/gdiskdump-demo-1.png" alt="" width="620" height="517" srcset="https://www.osradar.com/wp-content/uploads/2018/08/gdiskdump-demo-1.png 582w, https://www.osradar.com/wp-content/uploads/2018/08/gdiskdump-demo-1-300x250.png 300w, https://www.osradar.com/wp-content/uploads/2018/08/gdiskdump-demo-1-504x420.png 504w" sizes="(max-width: 620px) 100vw, 620px" /></p>
<p>Connect your USB device to the computer. In the output window, select “Partition”. You’ll notice that there is the USB flash drive partition. Select it and click “Forward”.</p>
<p><img loading="lazy" class=" wp-image-5356 aligncenter" src="https://www.osradar.com/wp-content/uploads/2018/08/gdiskdump-demo-2.png" alt="" width="620" height="517" srcset="https://www.osradar.com/wp-content/uploads/2018/08/gdiskdump-demo-2.png 582w, https://www.osradar.com/wp-content/uploads/2018/08/gdiskdump-demo-2-300x250.png 300w, https://www.osradar.com/wp-content/uploads/2018/08/gdiskdump-demo-2-504x420.png 504w" sizes="(max-width: 620px) 100vw, 620px" /></p>
<p>Now, you can define a number of custom options. For the explanation of all of them, <a href="http://man7.org/linux/man-pages/man1/dd.1.html">check out the DD man page</a>. Once you’re ready, click “OK”.</p>
<p><img loading="lazy" class=" wp-image-5354 aligncenter" src="https://www.osradar.com/wp-content/uploads/2018/08/gdiskdump-demo-3.png" alt="" width="638" height="532" srcset="https://www.osradar.com/wp-content/uploads/2018/08/gdiskdump-demo-3.png 582w, https://www.osradar.com/wp-content/uploads/2018/08/gdiskdump-demo-3-300x250.png 300w, https://www.osradar.com/wp-content/uploads/2018/08/gdiskdump-demo-3-504x420.png 504w" sizes="(max-width: 638px) 100vw, 638px" /></p>
<p>Wait for the process to complete.</p>
<p>Just like that, you can take backup of an entire partition and/or hard drive or clone it. All you have to do is select the correct input and output format. Note that each of the processes will take long time to complete.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/dd-simplified-with-gdiskdump/">DD Simplified with GdiskDump</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/dd-simplified-with-gdiskdump/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
