<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[Dewlance&reg; Forum - Tech Talk]]></title>
		<link>https://www.dewlance.com/forum/</link>
		<description><![CDATA[Dewlance&reg; Forum - https://www.dewlance.com/forum]]></description>
		<pubDate>Mon, 06 Apr 2026 05:07:32 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[How to extract or unzip tar.gz file to a specific destination?]]></title>
			<link>https://www.dewlance.com/forum/Thread-How-to-extract-or-unzip-tar-gz-file-to-a-specific-destination</link>
			<pubDate>Sun, 19 Feb 2017 01:42:09 -0500</pubDate>
			<dc:creator><![CDATA[<a href="https://www.dewlance.com/forum/member.php?action=profile&uid=1">DewlanceCTO</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.dewlance.com/forum/Thread-How-to-extract-or-unzip-tar-gz-file-to-a-specific-destination</guid>
			<description><![CDATA[You have a filename.tar.gz file and you wish to extract in a specific directory. For example you are in /home folder and wish to extract it into /root directory.<br />
<br />
<br />
<span style="font-weight: bold;" class="mycode_b">How to extract or unzip filename.tar.gz to a specific destination?</span><br />
Run this command:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>tar xf filename.tar.gz -C /root/</code></div></div><br />
<br />
<span style="font-weight: bold;" class="mycode_b">Other option</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>mv /home/filename.tar.gz /root</code></div></div><br />
Means we moved filename.tar.gz from home to /root folder and now run this command.<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>tar -xzvf filename.tar.gz</code></div></div><br />
<br />
Its simple? <img src="https://www.dewlance.com/forum/images/smilies/wink.gif" alt="Wink" title="Wink" class="smilie smilie_2" />]]></description>
			<content:encoded><![CDATA[You have a filename.tar.gz file and you wish to extract in a specific directory. For example you are in /home folder and wish to extract it into /root directory.<br />
<br />
<br />
<span style="font-weight: bold;" class="mycode_b">How to extract or unzip filename.tar.gz to a specific destination?</span><br />
Run this command:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>tar xf filename.tar.gz -C /root/</code></div></div><br />
<br />
<span style="font-weight: bold;" class="mycode_b">Other option</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>mv /home/filename.tar.gz /root</code></div></div><br />
Means we moved filename.tar.gz from home to /root folder and now run this command.<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>tar -xzvf filename.tar.gz</code></div></div><br />
<br />
Its simple? <img src="https://www.dewlance.com/forum/images/smilies/wink.gif" alt="Wink" title="Wink" class="smilie smilie_2" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[How to extract .tar.gz file?]]></title>
			<link>https://www.dewlance.com/forum/Thread-How-to-extract-tar-gz-file</link>
			<pubDate>Sun, 19 Feb 2017 01:36:21 -0500</pubDate>
			<dc:creator><![CDATA[<a href="https://www.dewlance.com/forum/member.php?action=profile&uid=1">DewlanceCTO</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.dewlance.com/forum/Thread-How-to-extract-tar-gz-file</guid>
			<description><![CDATA[tar.gz file is a compressed file and you can extract it by using a simple command.<br />
<br />
If you have a tarball file on your Linux OS or you wish to extract it using SSH command then you can extract it by this method.<br />
<br />
<br />
<span style="font-weight: bold;" class="mycode_b">How to Extract .tar.gz file?</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>tar -zxvf filename.tar.gz</code></div></div><br />
Replace filename with your tar filename, For example If your file name is servergame.tar.gz then run this command<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>tar -zxvf servergame.tar.gz</code></div></div><br />
<br />
<span style="font-weight: bold;" class="mycode_b">How can I extract only one file from tar.gz?</span><br />
Run this command for extracting single file from tarball.<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>tar -zxvf filename.tar.gz setup.exe</code></div></div><br />
<br />
Once it will be extracted then you can find file in same directory, For example If your file located in /root/ directory then it will extracted in same directory.]]></description>
			<content:encoded><![CDATA[tar.gz file is a compressed file and you can extract it by using a simple command.<br />
<br />
If you have a tarball file on your Linux OS or you wish to extract it using SSH command then you can extract it by this method.<br />
<br />
<br />
<span style="font-weight: bold;" class="mycode_b">How to Extract .tar.gz file?</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>tar -zxvf filename.tar.gz</code></div></div><br />
Replace filename with your tar filename, For example If your file name is servergame.tar.gz then run this command<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>tar -zxvf servergame.tar.gz</code></div></div><br />
<br />
<span style="font-weight: bold;" class="mycode_b">How can I extract only one file from tar.gz?</span><br />
Run this command for extracting single file from tarball.<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>tar -zxvf filename.tar.gz setup.exe</code></div></div><br />
<br />
Once it will be extracted then you can find file in same directory, For example If your file located in /root/ directory then it will extracted in same directory.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[How to register/transfer .bharat (.भारत) IDN domain name?]]></title>
			<link>https://www.dewlance.com/forum/Thread-How-to-register-transfer-bharat-%E0%A4%AD%E0%A4%BE%E0%A4%B0%E0%A4%A4-IDN-domain-name</link>
			<pubDate>Thu, 29 Dec 2016 08:09:24 -0500</pubDate>
			<dc:creator><![CDATA[<a href="https://www.dewlance.com/forum/member.php?action=profile&uid=1">DewlanceCTO</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.dewlance.com/forum/Thread-How-to-register-transfer-bharat-%E0%A4%AD%E0%A4%BE%E0%A4%B0%E0%A4%A4-IDN-domain-name</guid>
			<description><![CDATA[I have made a video tutorial on how to register a .bharat(.भारत) Domain without downloading any hindi typing software.<br />
<br />
.भारत Domain is a IDN TLD and .भारत is a part of Digital India, If you are Hindi lover or want to promote your Hindi language then you can start a revolution by registering your domain using .भारत(bharat) डोमेन।<br />
<br />
<br />
You can register domain like बलिया.भारत, योगा.भारत, etc.<br />
<br />
This is so easy and you can watch our video tutorial.<br />
<br />
<iframe width="560" height="315" src="//www.youtube-nocookie.com/embed/hRlJpwv8l8w" frameborder="0" allowfullscreen="true"></iframe>]]></description>
			<content:encoded><![CDATA[I have made a video tutorial on how to register a .bharat(.भारत) Domain without downloading any hindi typing software.<br />
<br />
.भारत Domain is a IDN TLD and .भारत is a part of Digital India, If you are Hindi lover or want to promote your Hindi language then you can start a revolution by registering your domain using .भारत(bharat) डोमेन।<br />
<br />
<br />
You can register domain like बलिया.भारत, योगा.भारत, etc.<br />
<br />
This is so easy and you can watch our video tutorial.<br />
<br />
<iframe width="560" height="315" src="//www.youtube-nocookie.com/embed/hRlJpwv8l8w" frameborder="0" allowfullscreen="true"></iframe>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[How to pay us via new Skrill.com? (With Images)]]></title>
			<link>https://www.dewlance.com/forum/Thread-How-to-pay-us-via-new-Skrill-com-With-Images</link>
			<pubDate>Wed, 26 Nov 2014 12:04:49 -0500</pubDate>
			<dc:creator><![CDATA[<a href="https://www.dewlance.com/forum/member.php?action=profile&uid=1">DewlanceCTO</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.dewlance.com/forum/Thread-How-to-pay-us-via-new-Skrill-com-With-Images</guid>
			<description><![CDATA[Recently Skrill change template of Payment page and If you have a existing Skrill Account then its a hard to find a "login" button on Payment page.<br />
<br />
If your payment method is Skrill then open your unpaid invoice and click on "Pay now via Skrill" button and then you will be redirected to Skrill Payment Page.<br />
<br />
On Payment Page, Click on "Pay By Skrill" logo and then click on "Proceed to Skrill Login" and you will be able to pay your invoice using your existing Skrill Account.<br />
<br />
Screen Shot:  <a href="http://dewlance.com/forum/attachment.php?aid=87" target="_blank" rel="noopener" class="mycode_url">http://dewlance.com/forum/attachment.php?aid=87</a><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.dewlance.com/forum/images/attachtypes/image.gif" title="GIF Image" border="0" alt=".gif" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=87" target="_blank" title="">how-to-pay-us-by-skrill.gif</a> (Size: 41.8 KB / Downloads: 1)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[Recently Skrill change template of Payment page and If you have a existing Skrill Account then its a hard to find a "login" button on Payment page.<br />
<br />
If your payment method is Skrill then open your unpaid invoice and click on "Pay now via Skrill" button and then you will be redirected to Skrill Payment Page.<br />
<br />
On Payment Page, Click on "Pay By Skrill" logo and then click on "Proceed to Skrill Login" and you will be able to pay your invoice using your existing Skrill Account.<br />
<br />
Screen Shot:  <a href="http://dewlance.com/forum/attachment.php?aid=87" target="_blank" rel="noopener" class="mycode_url">http://dewlance.com/forum/attachment.php?aid=87</a><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.dewlance.com/forum/images/attachtypes/image.gif" title="GIF Image" border="0" alt=".gif" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=87" target="_blank" title="">how-to-pay-us-by-skrill.gif</a> (Size: 41.8 KB / Downloads: 1)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Firefox homepage keep resetting - solustion]]></title>
			<link>https://www.dewlance.com/forum/Thread-Firefox-homepage-keep-resetting-solustion</link>
			<pubDate>Tue, 10 Apr 2012 02:01:39 -0400</pubDate>
			<dc:creator><![CDATA[<a href="https://www.dewlance.com/forum/member.php?action=profile&uid=1">DewlanceCTO</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.dewlance.com/forum/Thread-Firefox-homepage-keep-resetting-solustion</guid>
			<description><![CDATA[Hello,<br />
<br />
Is your Firefox homepage keep resetting even you change your homepage url?<br />
<br />
Here is solution <img src="https://www.dewlance.com/forum/images/smilies/smile.gif" alt="Smile" title="Smile" class="smilie smilie_1" /><br />
<br />
Open <span style="font-weight: bold;" class="mycode_b">about:config</span> in your firefox browser then click on warning button..<br />
<span style="font-weight: bold;" class="mycode_b">Search for:</span> browser.startup.homepage<br />
<br />
Right click on "<span style="font-weight: bold;" class="mycode_b">browser.startup.homepage</span>" and then click on <span style="font-weight: bold;" class="mycode_b">Reset</span>..<br />
<br />
<br />
Once you do this then firefox will reset your "startup.hompage" setting to "resource:/browserconfig.properties" and now you need to go back to Tools &gt;&gt; Option &gt;&gt; General &gt;&gt; Homepage and set your homepage URL..<br />
<br />
<br />
<br />
<br />
<br />
<img src="https://www.dewlance.com/forum/images/smilies/grin.gif" alt="grin" title="grin" class="smilie smilie_4" />]]></description>
			<content:encoded><![CDATA[Hello,<br />
<br />
Is your Firefox homepage keep resetting even you change your homepage url?<br />
<br />
Here is solution <img src="https://www.dewlance.com/forum/images/smilies/smile.gif" alt="Smile" title="Smile" class="smilie smilie_1" /><br />
<br />
Open <span style="font-weight: bold;" class="mycode_b">about:config</span> in your firefox browser then click on warning button..<br />
<span style="font-weight: bold;" class="mycode_b">Search for:</span> browser.startup.homepage<br />
<br />
Right click on "<span style="font-weight: bold;" class="mycode_b">browser.startup.homepage</span>" and then click on <span style="font-weight: bold;" class="mycode_b">Reset</span>..<br />
<br />
<br />
Once you do this then firefox will reset your "startup.hompage" setting to "resource:/browserconfig.properties" and now you need to go back to Tools &gt;&gt; Option &gt;&gt; General &gt;&gt; Homepage and set your homepage URL..<br />
<br />
<br />
<br />
<br />
<br />
<img src="https://www.dewlance.com/forum/images/smilies/grin.gif" alt="grin" title="grin" class="smilie smilie_4" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Copy & Paste not work on Remote Desktop - RDP?]]></title>
			<link>https://www.dewlance.com/forum/Thread-Copy-Paste-not-work-on-Remote-Desktop-RDP</link>
			<pubDate>Fri, 18 Mar 2011 13:49:24 -0400</pubDate>
			<dc:creator><![CDATA[<a href="https://www.dewlance.com/forum/member.php?action=profile&uid=1">DewlanceCTO</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.dewlance.com/forum/Thread-Copy-Paste-not-work-on-Remote-Desktop-RDP</guid>
			<description><![CDATA[Hello,<br />
<br />
Sometimes Copy &amp; Paste from Local PC to Remote Desktop is not working then I try this trick(100% Working)<br />
<br />
<br />
Open <span style="font-weight: bold;" class="mycode_b">Task Manager</span> on your Remote Desktop and kill this process <span style="font-weight: bold;" class="mycode_b">rdpclip.exe </span>  then go to <span style="font-weight: bold;" class="mycode_b">Start Menu</span> &gt;&gt; RUN and type   rdpclip.exe   and press ok.<br />
<br />
Now you can copy and paste from your Local PC to Remote Desktop and Remote Desktop to Local PC.<br />
<br />
<img src="https://www.dewlance.com/forum/images/newsmilies/big-grin.png" alt="Big Grin" title="Big Grin" class="smilie smilie_143" /><br />
<br />
<br />
]]></description>
			<content:encoded><![CDATA[Hello,<br />
<br />
Sometimes Copy &amp; Paste from Local PC to Remote Desktop is not working then I try this trick(100% Working)<br />
<br />
<br />
Open <span style="font-weight: bold;" class="mycode_b">Task Manager</span> on your Remote Desktop and kill this process <span style="font-weight: bold;" class="mycode_b">rdpclip.exe </span>  then go to <span style="font-weight: bold;" class="mycode_b">Start Menu</span> &gt;&gt; RUN and type   rdpclip.exe   and press ok.<br />
<br />
Now you can copy and paste from your Local PC to Remote Desktop and Remote Desktop to Local PC.<br />
<br />
<img src="https://www.dewlance.com/forum/images/newsmilies/big-grin.png" alt="Big Grin" title="Big Grin" class="smilie smilie_143" /><br />
<br />
<br />
]]></content:encoded>
		</item>
	</channel>
</rss>