<?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>gHacks technology news &#187; file-sharing</title>
	<atom:link href="http://www.ghacks.net/tag/file-sharing/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ghacks.net</link>
	<description>A technology blog covering software, mobile phones, gadgets, security, the Internet and other relevant areas.</description>
	<lastBuildDate>Tue, 10 Nov 2009 01:33:24 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Set up your new Ubuntu Server as a Samba Server</title>
		<link>http://www.ghacks.net/2009/09/04/set-up-your-new-ubuntu-server-as-a-samba-server/</link>
		<comments>http://www.ghacks.net/2009/09/04/set-up-your-new-ubuntu-server-as-a-samba-server/#comments</comments>
		<pubDate>Fri, 04 Sep 2009 16:58:23 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networks]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Tutorials Advanced]]></category>
		<category><![CDATA[Tutorials Basic]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[file-sharing]]></category>
		<category><![CDATA[samba]]></category>
		<category><![CDATA[samba server]]></category>
		<category><![CDATA[smb.conf]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=16023</guid>
		<description><![CDATA[I recently did an illustrated guide to installing Ubuntu Server 9.04 (&#8221;Installing Ubuntu Server 9.04&#8220;). I did that for two reasons: 1) It was requested and 2) It will serve as a base for future articles that will cover many different topics. Having that foundation will be key to getting other services up and running.
In [...]]]></description>
			<content:encoded><![CDATA[<p>I recently did an illustrated guide to installing Ubuntu Server 9.04 (&#8221;<a title="Installing Ubuntu Server 9.04" href="http://www.ghacks.net/2009/09/03/installing-ubuntu-server-9-04/" target="_blank">Installing Ubuntu Server 9.04</a>&#8220;). I did that for two reasons: 1) It was requested and 2) It will serve as a base for future articles that will cover many different topics. Having that foundation will be key to getting other services up and running.</p>
<p>In this article I am going to show you how to get a basic Samba Server up and running on top of that Ubuntu Server. Now, because the Ubuntu Server was set up as a headless server, the installation and configuration of Samba will be done completely from the command line. So get your fingers ready to type.</p>
<p><span id="more-16023"></span><strong>What is Samba?</strong></p>
<p>Samba is a very handy tool that can do many things. The primary task it serves is to enable a Windows machine to access a Linux machine serving as a file and/or print server. Samba uses the SMB/CIFS protocols to enable communication between the Windows and the Linux machine.</p>
<p>Samba has often been thought of as very difficult to get up and running. It&#8217;s not really that bad. Hopefully, by the end of this article, you will have a fairly good understanding of how to get it up and running.</p>
<p><strong>Installing Samba</strong></p>
<p>As I said, you will doing this completely from the command line. The command to issue is:</p>
<p><em>sudo apt-get install samba</em></p>
<p>You will have to enter your sudo password to continue with the installation. Depending upon your server installation, you might have to okay some dependencies. Go ahead and do this and then watch as Samba is installed.</p>
<p>Once installed you will have the Samba executable in <strong>/etc/init.d/</strong>. In order to start Samba you will issue the command:</p>
<p><em>/etc/init.d/samba star</em><em>t</em></p>
<p>Of course, before you start Samba, you will need to configure Samba. There are a few steps to take care of. Let&#8217;s first deal with the configuration file.</p>
<p><strong>Configuring Samba</strong></p>
<p>Before you get too deep into this you might want to first read my article &#8220;<a title="Understanding smb.conf" href="http://www.ghacks.net/2009/02/06/get-to-know-linux-understanding-smbconf/" target="_blank">Get To Know Linux: Understanding smb.conf</a>&#8220;. The Samba configuration file is located in the <strong>/etc</strong><strong>/samba</strong> directory and is called <strong>smb.conf</strong>. When you first open up this file you may be overwhelmed. Let&#8217;s avoid that by making a backup of the original <strong>smb.conf </strong>file. Change to the <strong>/etc/samba</strong> directory with the command:</p>
<p><em>cd /etc/samba</em></p>
<p>Now issue the following command:</p>
<p><span style="background-color: #ffffff"><em>sudo cp smb.con smb.conf.bak</em></span></p>
<p><span style="background-color: #ffffff">Now you can open up the <strong>smb.conf</strong> file and erase the entirety of its contents. How do you do that? If you are using the Nano editor it&#8217;s simple. With the file open hold the Ctrl key and the &#8216;K&#8217; key down until the entire contents are gone. Or you can delete the file and create a new one. Your choice.</span></p>
<p><span style="background-color: #ffffff">With a fresh <strong>smb.conf </strong>you are ready to re-create a file based on your needs. A good configuration to start with looks like:</span></p>
<p><code>[global]<br />
netbios name = NETBIOS_NAME<br />
workgroup = WORKGROUP_NAME<br />
security = user<br />
encrypt passwords = yes<br />
smb passwd file = /etc/samba/smbpasswd<br />
interfaces = 192.168.1.1/8</code></p>
<p><code>[SHARE_NAME]<br />
comment = COMMENT<br />
path = /PATH/TO/SHARE<br />
writeable = yes<br />
create mode = 0600<br />
directory mode = 0700<br />
locking = yes</code></p>
<p><span style="background-color: #ffffff">Where everything in ALL CAPS (as well as the interfaces line) is unique to your needs.</span></p>
<p><span style="background-color: #ffffff">The SHARE_NAME is what you want to share out to your users. So if you are setting up a file server for a number of users you will want to have a directory, say <strong>/data</strong>, that is shared out through Samba. </span></p>
<p><span style="background-color: #ffffff">Once you have the <strong>smb.conf</strong> file configured to suit your needs you are ready for the last steps.</span></p>
<p><span style="background-color: #ffffff"><strong>Adding users</strong></span></p>
<p><span style="background-color: #ffffff">This is the step that most people skip and wonder why Samba isn&#8217;t working. For every user that needs to log in to the Samba server you have to add them with the help of the <em>smbpasswd </em>command. Let&#8217;s say I need to add the user &#8220;pickles&#8221;.  To add &#8220;pickles&#8221; I would issue the command:</span></p>
<p><span style="background-color: #ffffff"><em>sudo smbpasswd -L -a pickles</em></span></p>
<p>Now to make sure the users is enabled issue the command:</p>
<p><em>sudo smbpasswd -L -e pickels</em></p>
<p>Now restart Samba with the command:</p>
<p><em>sudo /etc/init.d/samba restart</em></p>
<p>Your Samba file server should be ready to go. Go to your windows machine and the Share should be visible. Double click on that share you and you will enter the username and password combination for any one of the users on the machine (as long as they were also added with smbpasswd). If you can not see it make sure your Windows machine is set up on the Workgroup.</p>

	Tags: <a href="http://www.ghacks.net/tag/file-sharing/" title="file-sharing" rel="tag">file-sharing</a>, <a href="http://www.ghacks.net/tag/samba/" title="samba" rel="tag">samba</a>, <a href="http://www.ghacks.net/tag/samba-server/" title="samba server" rel="tag">samba server</a>, <a href="http://www.ghacks.net/tag/smbconf/" title="smb.conf" rel="tag">smb.conf</a>, <a href="http://www.ghacks.net/tag/ubuntu/" title="ubuntu" rel="tag">ubuntu</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/02/06/get-to-know-linux-understanding-smbconf/" title="Get To Know Linux: Understanding smb.conf (February 6, 2009)">Get To Know Linux: Understanding smb.conf</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/05/03/connecting-linux-to-a-bubba-2/" title="Connecting Linux to a Bubba 2 (May 3, 2009)">Connecting Linux to a Bubba 2</a> (4)</li>
	<li><a href="http://www.ghacks.net/2009/11/04/connect-to-your-samba-server-from-linux/" title="Connect to your Samba server from Linux (November 4, 2009)">Connect to your Samba server from Linux</a> (4)</li>
	<li><a href="http://www.ghacks.net/2008/07/28/you-are-sharing-files/" title="You Are Sharing Files (July 28, 2008)">You Are Sharing Files</a> (4)</li>
	<li><a href="http://www.ghacks.net/2009/10/30/with-ubuntu-9-10-arrives-wubi-9-10/" title="With Ubuntu 9.10 Arrives Wubi 9.10 (October 30, 2009)">With Ubuntu 9.10 Arrives Wubi 9.10</a> (1)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/09/04/set-up-your-new-ubuntu-server-as-a-samba-server/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Connecting Linux to a Bubba 2</title>
		<link>http://www.ghacks.net/2009/05/03/connecting-linux-to-a-bubba-2/</link>
		<comments>http://www.ghacks.net/2009/05/03/connecting-linux-to-a-bubba-2/#comments</comments>
		<pubDate>Sun, 03 May 2009 14:08:02 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Music and Video]]></category>
		<category><![CDATA[Networks]]></category>
		<category><![CDATA[Online Services]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tutorials Basic]]></category>
		<category><![CDATA[Bubba 2]]></category>
		<category><![CDATA[DAAP]]></category>
		<category><![CDATA[file-sharing]]></category>
		<category><![CDATA[samba]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=12550</guid>
		<description><![CDATA[If you don&#8217;t know, the Bubba 2 is a piece of hardware, driven by the Linux operating system, created by ecXito. The Bubba 2 can stream media, serve files, share printers, and more. How? The Bubba 2 uses Samba to share out services and files. Because it uses Samba, connecting to the Bubba 2 is [...]]]></description>
			<content:encoded><![CDATA[<p>If you don&#8217;t know, the Bubba 2 is a piece of hardware, driven by the Linux operating system, created by <a title="eXcito" href="http://www.excito.com" target="_blank">ecXito</a>. The Bubba 2 can stream media, serve files, share printers, and more. How? The Bubba 2 uses Samba to share out services and files. Because it uses Samba, connecting to the Bubba 2 is simple &#8211; that&#8217;s what Samba does best. But when you have a Linux machine you want to connect to the Bubba 2 you won&#8217;t find anything helpful in the manuals.</p>
<p>In fact even getting to the web-based administration screen isn&#8217;t easy from the Linux point of view. The instructions say point your browser to http://bubba and log in. When using a browser on Linux this will take you to search results for &#8220;bubba&#8221;. And the only mention of an IP address in the instructions is 192.168.10.1. Since my local network uses 192.168.1.x I couldn&#8217;t see the address. So what could I do? Let&#8217;s take a look.</p>
<p><span id="more-12550"></span></p>
<div id="attachment_12552" class="wp-caption alignleft" style="width: 283px"><a href="http://www.ghacks.net/wp-content/uploads/2009/05/wireshark.png"><img class="size-full wp-image-12552" src="http://www.ghacks.net/wp-content/uploads/2009/05/wireshark.png" alt="Figure 1" width="273" height="205" /></a><p class="wp-caption-text">Figure 1</p></div>
<p>Once you have the Bubba 2 plugged in (the instructions are quite clear and simple for this step) your first task is to locate the IP address for the machine. For this I employed <a title="Wireshark" href="http://www.wireshark.org/" target="_blank">Wireshark</a>. As you can see, in Figure 1, there is some external traffic (some of which is from <a href="http://www.ghacks.net/2009/10/17/facebook-login/">Facebook</a> &#8211; must look into that) but the IP address of interest is the .16 address. Since there is a lot of traffic coming from that address it is a safe bet that address is attached to the Bubba 2.</p>
<p>So I point my browser to 192.168.1.16 and voila!, the Bubba 2 network admin screen is up. Wireshark has done its job for the day.</p>
<p>Since the Bubba 2 can stream music there has to be a way to place music into the <strong>/home/storage/music</strong> folder. Any music in this folder will be served up via DAAP. Problem is, how to get it there? It took me a bit of time, but I found a solution.</p>
<p>The first thing to do is to log into the web admin tool. By default the user/password is admin/admin. You can change this to meet your needs of course. Log in as your admin and click on the Fileserver section. Here you can upload all the music you need. Problem is, you can only load one file at a time (you can&#8217;t load directories.) With over 15,000 music files to copy this wasn&#8217;t an option. My next attempt found me using FTP to transfer directories to the Bubba 2. This worked to a point. What I now had was a standard user with a directory full of music which could not be streamed. This lead me to my next problem: I couldn&#8217;t move the directories from the users ~/ directory to <strong>/home/storage/music</strong> because of permissions issues.</p>
<p>The work around came about with the help of an external USB hard drive. This is the same drive that contains my entire music collection. By connecting this drive to the Bubba 2 I was then able to copy the entire contents of this drive to the <strong>/home/storage/music</strong> directory which was then ready for streaming.</p>
<p><strong>Streaming to Linux</strong></p>
<div id="attachment_12554" class="wp-caption alignright" style="width: 231px"><a href="http://www.ghacks.net/wp-content/uploads/2009/05/rhythmbox.png"><img class="size-full wp-image-12554" src="http://www.ghacks.net/wp-content/uploads/2009/05/rhythmbox.png" alt="Figure 2" width="221" height="173" /></a><p class="wp-caption-text">Figure 2</p></div>
<p>The easiest method of listening to the music on the Bubba 2 is with a DAAP-enalbed piece of software. Out of the box Rhythmbox was able to connect to the stream. To do this you right click in an empty area of the left nav where a new menu will open (see Figure 2). In this new menu you will see an entry &#8220;Connect to DAAP share&#8221;. Select that and enter the IP address of your Bubba 2.</p>
<p>Shortly after you do this, your Shared library will populate with music from your Bubba 2. Listen away.</p>
<p><strong>Final Thoughts</strong></p>
<p>The Bubba 2 isn&#8217;t limited to only music streaming. You can share out printers and email as well. But when you&#8217;re having to connect from a Linux box, you might have to go through a few more steps than you would with either Windows or Mac. Even with these extra steps, it&#8217;s worth it. The Bubba 2 is an outstanding piece of hardware that makes sharing to small networks a snap.</p>

	Tags: <a href="http://www.ghacks.net/tag/bubba-2/" title="Bubba 2" rel="tag">Bubba 2</a>, <a href="http://www.ghacks.net/tag/daap/" title="DAAP" rel="tag">DAAP</a>, <a href="http://www.ghacks.net/tag/file-sharing/" title="file-sharing" rel="tag">file-sharing</a>, <a href="http://www.ghacks.net/tag/linux/" title="Linux" rel="tag">Linux</a>, <a href="http://www.ghacks.net/tag/samba/" title="samba" rel="tag">samba</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/02/06/get-to-know-linux-understanding-smbconf/" title="Get To Know Linux: Understanding smb.conf (February 6, 2009)">Get To Know Linux: Understanding smb.conf</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/09/04/set-up-your-new-ubuntu-server-as-a-samba-server/" title="Set up your new Ubuntu Server as a Samba Server (September 4, 2009)">Set up your new Ubuntu Server as a Samba Server</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/04/19/auto-mounting-a-samba-share-in-linux/" title="Auto mounting a Samba share in Linux (April 19, 2009)">Auto mounting a Samba share in Linux</a> (5)</li>
	<li><a href="http://www.ghacks.net/2008/07/28/you-are-sharing-files/" title="You Are Sharing Files (July 28, 2008)">You Are Sharing Files</a> (4)</li>
	<li><a href="http://www.ghacks.net/2008/02/07/yoggie-pico-personal-mobile-security-computer/" title="Yoggie PICO Personal Mobile Security Computer (February 7, 2008)">Yoggie PICO Personal Mobile Security Computer</a> (3)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/05/03/connecting-linux-to-a-bubba-2/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>P2P: The Owner Free File System</title>
		<link>http://www.ghacks.net/2009/04/10/p2p-the-owner-free-file-system/</link>
		<comments>http://www.ghacks.net/2009/04/10/p2p-the-owner-free-file-system/#comments</comments>
		<pubDate>Fri, 10 Apr 2009 14:29:09 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[P2p]]></category>
		<category><![CDATA[file distribution]]></category>
		<category><![CDATA[file-sharing]]></category>
		<category><![CDATA[Networks]]></category>
		<category><![CDATA[off-system]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[peer to peer]]></category>
		<category><![CDATA[windows software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2009/04/10/p2p-the-owner-free-file-system/</guid>
		<description><![CDATA[Peer to peer networks are often associated with the dark side of the Internet as they became widely known for containing large amounts of copyrighted files accessible to anyone with the right client software. File sharing on standard p2p networks like Bittorrent is not anonymous as IPs are visible once a connection has been established. [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.ghacks.net/wp-content/uploads/2009/04/off_system.jpg" alt="off system" title="off system" width="128" height="140" class="alignleft size-full wp-image-11874" />Peer to peer networks are often associated with the dark side of the Internet as they became widely known for containing large amounts of copyrighted files accessible to anyone with the right client software. File sharing on standard p2p networks like Bittorrent is not anonymous as IPs are visible once a connection has been established. </p>
<p>The <a href="http://offsystem.sourceforge.net/">OFF-System</a> is a peer to peer networking system that is using a different approach than darknets like Freenet. Darknets anonymize user data while the Off-System creates randomized multi-used data blocks which means that it is not possible to map a data block to a single file on the network.</p>
<p>To retrieve data from the peer to peer network one would need to download all required blocks plus the so called retrieval url which is created when files are added to the network. Each block on its own is nothing but a set of random data which means that this data is not copyrighted by anyone.</p>
<p><span id="more-11875"></span><img src="http://www.ghacks.net/wp-content/uploads/2009/04/p2p_off_system-500x256.jpg" alt="p2p off system" title="p2p off system" width="500" height="256"  /></p>
<p>The developers have a <a href="http://offsystem.sourceforge.net/">multi-page</a> article on their website describing it in great detail. Users on the other hand can simply download the Open Source client of the Off-System which comes with a comfortable search function build in. </p>
<p>The options are quite extensive ranging from incoming and outgoing filters, security settings like trusted nodes to networking and advanced options. There is usually a overhead involved when replicating files which can range from a 50%-200% file increase on the receiving end. </p>

	Tags: <a href="http://www.ghacks.net/tag/file-distribution/" title="file distribution" rel="tag">file distribution</a>, <a href="http://www.ghacks.net/tag/file-sharing/" title="file-sharing" rel="tag">file-sharing</a>, <a href="http://www.ghacks.net/tag/networks/" title="Networks" rel="tag">Networks</a>, <a href="http://www.ghacks.net/tag/off-system/" title="off-system" rel="tag">off-system</a>, <a href="http://www.ghacks.net/tag/open-source/" title="Open Source" rel="tag">Open Source</a>, <a href="http://www.ghacks.net/tag/p2p/" title="P2p" rel="tag">P2p</a>, <a href="http://www.ghacks.net/tag/peer-to-peer/" title="peer to peer" rel="tag">peer to peer</a>, <a href="http://www.ghacks.net/tag/windows-software/" title="windows software" rel="tag">windows software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/10/21/xkcd-comic-wallpaper-changer/" title="Xkcd Comic Wallpaper Changer (October 21, 2009)">Xkcd Comic Wallpaper Changer</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/07/03/wireless-network-scanner-inssider/" title="Wireless Network Scanner inSSIDer (July 3, 2009)">Wireless Network Scanner inSSIDer</a> (3)</li>
	<li><a href="http://www.ghacks.net/2008/11/22/windows-tabbed-browsing/" title="Windows Tabbed Browsing (November 22, 2008)">Windows Tabbed Browsing</a> (4)</li>
	<li><a href="http://www.ghacks.net/2009/05/05/windows-run-aliases/" title="Windows Run Aliases (May 5, 2009)">Windows Run Aliases</a> (8)</li>
	<li><a href="http://www.ghacks.net/2009/05/12/windows-management-super-maximize-windows/" title="Windows Management: Super Maximize Windows (May 12, 2009)">Windows Management: Super Maximize Windows</a> (9)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/04/10/p2p-the-owner-free-file-system/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Get To Know Linux: Understanding smb.conf</title>
		<link>http://www.ghacks.net/2009/02/06/get-to-know-linux-understanding-smbconf/</link>
		<comments>http://www.ghacks.net/2009/02/06/get-to-know-linux-understanding-smbconf/#comments</comments>
		<pubDate>Fri, 06 Feb 2009 21:16:56 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Advice]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tutorials Basic]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[domain]]></category>
		<category><![CDATA[file-sharing]]></category>
		<category><![CDATA[samba]]></category>
		<category><![CDATA[shares]]></category>
		<category><![CDATA[smb.conf]]></category>
		<category><![CDATA[workgroup]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=10373</guid>
		<description><![CDATA[Next to the xorg.conf file (read my Get To Know Linux: Understanding xorg.conf for more) the smb.conf file might be the most misunderstood of all files. Part of the reason for this is because the default file is, well, rather large and confusing. When you compare what you need vs what you have (in the [...]]]></description>
			<content:encoded><![CDATA[<p>Next to the xorg.conf file (read my <a title="Get To Know Linux: Understanding xorg.conf" href="http://www.ghacks.net/2009/02/04/get-to-know-linux-understanding-xorgconf/" target="_blank">Get To Know Linux: Understanding xorg.conf for more</a>) the smb.conf file might be the most misunderstood of all files. Part of the reason for this is because the default file is, well, rather large and confusing. When you compare what you <strong>need</strong> vs what you <strong>have</strong> (in the default at least), you will be surprised at how simple Samba can be to configure.</p>
<p>After Samba is installed the smb.conf file will be around 533 lines long. Fear not. It&#8217;s much easier than it seems.</p>
<p><span id="more-10373"></span></p>
<p>The smb.conf file is broken into sections. Each section will start with a line that looks like:</p>
<p>[TITLE]</p>
<p>Where TITLE is the actual title of the block. Each block represents either a configuration or a  share that other machines can connect to. You will, at minimum, have a global block and a single share.</p>
<p><strong>Global</strong></p>
<p>The global block is one of the more important blocks in your smb.conf file. This block defines the global configuration of your Samba server. This block begins with:</p>
<p><em>[global]</em></p>
<p>Within your blocks your configuration lines will be made up of:</p>
<p><em>option = value</em></p>
<p>statements.</p>
<p>The most important statements you will need in your global block are:<br />
<code>netbios name= NAME<br />
workgroup = WORKGROUP_NAME<br />
security = SECURITY_TYPE<br />
encrypt passwords = YES/NO<br />
smb passwd file = /path/to/smbpasswd<br />
interfaces = ALLOWED_ADDRESSES<br />
</code><br />
The values for each option above should be self explanatory. But there is one thing to note. If you are encrypting passwords you will need to add users (with passwords) with the smbpasswd command.<br />
Within the global block one of the more important options is the security option. This option refers to authentication (how users will be able to log in). There are five different types of security:</p>
<ul>
<li> ADS &#8211; Active Directory Domain</li>
<li> Domain &#8211; User verification through NT Primary or Backup Domain</li>
<li> Server &#8211; Samba server passes on authentication to another server</li>
<li> Share &#8211; Users do not have to enter username or password (until they try to access a specific directory)</li>
<li> User &#8211; Users must provide valid username/password. This is the default.</li>
</ul>
<p><strong>Share Blocks</strong></p>
<p>The next blocks will refer to individual shares. You will need a different block for each directory you want to share to Samba users. A typical share block will look like this:<br />
<code>[SHARE NAME]<br />
comment = COMMENT<br />
path = /path/to/share<br />
writeable = YES/NO<br />
create mode = NUMERIC VALUE<br />
directory mode = NUMERIC VALUE<br />
locking = YES/NO</code></p>
<p>Everything in caps above will be defined according to your needs. The tricky entries will be the create and directory modes. What this does is define permissions for any file created as well as the share directories. So the values will be in the form of 0700 or 0600 (depending upon your permission needs). Remember, you will need a share block for every directory you want to share out.</p>
<p>Naturally there are plenty of options that can be used in Samba. Many of these options will fall in the global block.</p>
<p><strong>Printer Block</strong></p>
<p>You can also define a block to share out printers. This block will start with:</p>
<p>[printers]</p>
<p>and will contain options like:<br />
<code>comment = COMMENT<br />
path = /PATH/TO/PRINTER/SPOOL<br />
browseable = YES/NO<br />
guest ok = YES/NO<br />
writable = YES/NO<br />
printable = YES/NO<br />
create mode = NUMERIC VALUE</code></p>
<p><strong>Sample smb.conf</strong></p>
<p>I have an external drive that I mount to <strong>/media/music</strong> and I share out to my home network with the following <strong>smb.conf </strong>file:<br />
<code>[global]<br />
netbios name = MONKEYPANTZ<br />
workgroup = MONKEYPANTZ<br />
security = user<br />
encrypt passwords = yes<br />
smb passwd file = /etc/samba/smbpasswd<br />
interfaces = 192.168.1.1/8<br />
[wallen music]<br />
comment = Music Library<br />
path = /media/music<br />
writeable = yes<br />
create mode = 0600<br />
directory mode = 0700<br />
locking = yes<br />
</code><br />
And that&#8217;s it. That is my entire <strong>smb.conf</strong> file. Granted I am only sharing out a single directory, but it shows how simple <strong>smb.conf</strong> can be to configure.</p>

	Tags: <a href="http://www.ghacks.net/tag/domain/" title="domain" rel="tag">domain</a>, <a href="http://www.ghacks.net/tag/file-sharing/" title="file-sharing" rel="tag">file-sharing</a>, <a href="http://www.ghacks.net/tag/linux/" title="Linux" rel="tag">Linux</a>, <a href="http://www.ghacks.net/tag/samba/" title="samba" rel="tag">samba</a>, <a href="http://www.ghacks.net/tag/shares/" title="shares" rel="tag">shares</a>, <a href="http://www.ghacks.net/tag/smbconf/" title="smb.conf" rel="tag">smb.conf</a>, <a href="http://www.ghacks.net/tag/workgroup/" title="workgroup" rel="tag">workgroup</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/09/04/set-up-your-new-ubuntu-server-as-a-samba-server/" title="Set up your new Ubuntu Server as a Samba Server (September 4, 2009)">Set up your new Ubuntu Server as a Samba Server</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/05/03/connecting-linux-to-a-bubba-2/" title="Connecting Linux to a Bubba 2 (May 3, 2009)">Connecting Linux to a Bubba 2</a> (4)</li>
	<li><a href="http://www.ghacks.net/2009/11/04/connect-to-your-samba-server-from-linux/" title="Connect to your Samba server from Linux (November 4, 2009)">Connect to your Samba server from Linux</a> (4)</li>
	<li><a href="http://www.ghacks.net/2009/04/19/auto-mounting-a-samba-share-in-linux/" title="Auto mounting a Samba share in Linux (April 19, 2009)">Auto mounting a Samba share in Linux</a> (5)</li>
	<li><a href="http://www.ghacks.net/2008/07/28/you-are-sharing-files/" title="You Are Sharing Files (July 28, 2008)">You Are Sharing Files</a> (4)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/02/06/get-to-know-linux-understanding-smbconf/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Joe Biden: Piracy&#8217;s New Enemy</title>
		<link>http://www.ghacks.net/2008/11/17/joe-biden-piracy%e2%80%99s-new-enemy/</link>
		<comments>http://www.ghacks.net/2008/11/17/joe-biden-piracy%e2%80%99s-new-enemy/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 17:00:27 +0000</pubDate>
		<dc:creator>Cheryl</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[P2p]]></category>
		<category><![CDATA[The Web]]></category>
		<category><![CDATA[file-sharing]]></category>
		<category><![CDATA[internet security]]></category>
		<category><![CDATA[Joe Biden]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=8344</guid>
		<description><![CDATA[Now that the US elections are over and the results are out, it’s worthwhile looking at how the winners fare with technology. Everyone knows that Barack Obama actively used the Internet while campaigning but what are his views on other things technology related? Most notably, how do the new guys plan to tackle issues like [...]]]></description>
			<content:encoded><![CDATA[<p>Now that the US elections are over and the results are out, it’s worthwhile looking at how the winners fare with technology. Everyone knows that Barack Obama actively used the Internet while campaigning but what are his views on other things technology related? Most notably, how do the new guys plan to tackle issues like online piracy?</p>
<p>One person who has acted on this subject in the past is Joe Biden. Yes, the same guy who’s now the U.S. Vice President. In fact, he’s been pretty active in trying to defend the rights of media companies. Let’s take a look at his accomplishments.</p>
<p>Joe Biden’s earliest tryst against piracy came in 2002, when he drafted a letter to the Justice Department, urging action against people who ‘intentionally’ allow copying over p2p networks. Then last year, Biden supported an RIAA-led bill to restrict Americans from copying songs from Internet radio services. His efforts got him invited to the MPAA’s party in favor of the Digital Millenium Copyright Act.</p>
<p><span id="more-8344"></span></p>
<p>In April of this year, Biden tried to get the US government to spend a billion dollars so that authorities could monitor p2p networks for illegal activity. What constitutes illegal activity, I have no idea.</p>
<p>Joe Biden has been pretty vocal about other aspects of the Internet as well, most notably a strong supporter of having Internet filters in place for schools. Another interesting tidbit is that at one time, the man also supported levying an Internet tax on people.</p>
<p>It remains to be seen what Joe Biden will do in his newfound political role as Vice President. However, going by his track record, it’s fair to say he’ll be on the media companies’ side most of the time.</p>
<p>What do you think of Joe Biden’s war against Internet piracy? Do you know of other political figures who have the same ideals? How do you think politics affects Internet legislation? Let me know in the comments.</p>

	Tags: <a href="http://www.ghacks.net/tag/file-sharing/" title="file-sharing" rel="tag">file-sharing</a>, <a href="http://www.ghacks.net/tag/internet-security/" title="internet security" rel="tag">internet security</a>, <a href="http://www.ghacks.net/tag/joe-biden/" title="Joe Biden" rel="tag">Joe Biden</a>, <a href="http://www.ghacks.net/tag/p2p/" title="P2p" rel="tag">P2p</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/11/08/the-big-guys-get-it-wrong-once-again-prosecute-innocent-people/" title="The Big Guys get it Wrong Once Again, Prosecute Innocent People (November 8, 2008)">The Big Guys get it Wrong Once Again, Prosecute Innocent People</a> (7)</li>
	<li><a href="http://www.ghacks.net/2008/03/03/private-encrypted-file-sharing/" title="Private Encrypted File Sharing (March 3, 2008)">Private Encrypted File Sharing</a> (6)</li>
	<li><a href="http://www.ghacks.net/2009/04/10/p2p-the-owner-free-file-system/" title="P2P: The Owner Free File System (April 10, 2009)">P2P: The Owner Free File System</a> (5)</li>
	<li><a href="http://www.ghacks.net/2008/11/10/frostwire-free-and-fast-gnutella/" title="FrostWire, free and fast Gnutella (November 10, 2008)">FrostWire, free and fast Gnutella</a> (5)</li>
	<li><a href="http://www.ghacks.net/2008/07/27/eztv-allows-bittorrent-streaming/" title="EZTV Allows BitTorrent Streaming (July 27, 2008)">EZTV Allows BitTorrent Streaming</a> (8)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/11/17/joe-biden-piracy%e2%80%99s-new-enemy/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>Torrentvalley is No More</title>
		<link>http://www.ghacks.net/2008/11/13/torrentvalley-is-no-more/</link>
		<comments>http://www.ghacks.net/2008/11/13/torrentvalley-is-no-more/#comments</comments>
		<pubDate>Thu, 13 Nov 2008 15:49:36 +0000</pubDate>
		<dc:creator>Cheryl</dc:creator>
				<category><![CDATA[Music Industry]]></category>
		<category><![CDATA[Online Services]]></category>
		<category><![CDATA[P2p]]></category>
		<category><![CDATA[Search Engines]]></category>
		<category><![CDATA[bittorrent]]></category>
		<category><![CDATA[copyright]]></category>
		<category><![CDATA[file-sharing]]></category>
		<category><![CDATA[Torrentvalley]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=8250</guid>
		<description><![CDATA[Ever so often, the people in charge try to get tough with those who break the law. Sometimes, the ‘bad guys’ get away but more often than not, they get caught. And that’s exactly what happened to Torrentvalley.com yesterday.
Torrentvalley is different from other BitTorrent services in that it’s not a file tracker like Pirate Bay. [...]]]></description>
			<content:encoded><![CDATA[<p>Ever so often, the people in charge try to get tough with those who break the law. Sometimes, the ‘bad guys’ get away but more often than not, they get caught. And that’s exactly what happened to Torrentvalley.com yesterday.</p>
<p>Torrentvalley is different from other BitTorrent services in that it’s not a file tracker like Pirate Bay. Instead, it’s a torrent indexer. That means Torrentvalley does not host any torrents itself. Rather, it acts like a search engine and attempts to locate the torrent across different trackers.</p>
<p>Another interesting fact is that Torrentvalley’s servers are located in Bulgaria, a country not particularly noted for targeting file-sharers. Unfortunately, that hasn’t lasted very long. Acting on the advice of the Bulgarian Association of Music Producers (BAMP), the Cyber Crime Unit raided Torrentvalley’s premises and <a href="http://www.ifpi.org/content/section_news/20081112.html" target="_blank">shut down</a> its servers.</p>
<p><span id="more-8250"></span></p>
<p>The charge laid against Torrentvalley was copyright infringement. To quote Ina Kileva, the executive director of BAMP: &#8220;Torrentvalley was a major international source of copyright infringing material. This site was a gate towards more than 5 000 torrent-trackers from all over the world. The decisive action by the authorities shows that Bulgaria is no haven for copyright abuse in Internet and makes efforts to protect the rights of those involved in the creative industries.&#8221;</p>
<p>Torrentvalley certainly wasn’t the largest BitTorrent network out there. They had about 150,000 registered users but a fair number of people probably used the indexing service without registering. This does reinforce the fact that the authorities are always on the lookout for those that share copyrighted content.</p>
<p>Have you ever used Torrentvalley.com? What do you think about the site being shut down? Who do you think the next target will be? Let me know in the comments.</p>

	Tags: <a href="http://www.ghacks.net/tag/bittorrent/" title="bittorrent" rel="tag">bittorrent</a>, <a href="http://www.ghacks.net/tag/copyright/" title="copyright" rel="tag">copyright</a>, <a href="http://www.ghacks.net/tag/file-sharing/" title="file-sharing" rel="tag">file-sharing</a>, <a href="http://www.ghacks.net/tag/torrentvalley/" title="Torrentvalley" rel="tag">Torrentvalley</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/07/27/eztv-allows-bittorrent-streaming/" title="EZTV Allows BitTorrent Streaming (July 27, 2008)">EZTV Allows BitTorrent Streaming</a> (8)</li>
	<li><a href="http://www.ghacks.net/2008/08/17/a-new-vulnerability-discovered-in-%ce%bctorrent/" title="A New Vulnerability Discovered in μTorrent (August 17, 2008)">A New Vulnerability Discovered in μTorrent</a> (10)</li>
	<li><a href="http://www.ghacks.net/2008/04/14/youtorrent-alternatives/" title="Youtorrent Alternatives (April 14, 2008)">Youtorrent Alternatives</a> (9)</li>
	<li><a href="http://www.ghacks.net/2008/04/27/youtorrent-3-takes-over-where-youtorrent-left/" title="Youtorrent 3 takes over where Youtorrent left (April 27, 2008)">Youtorrent 3 takes over where Youtorrent left</a> (5)</li>
	<li><a href="http://www.ghacks.net/2008/05/21/youtomb-tracks-taken-down-videos-from-youtube/" title="Youtomb tracks taken down videos from Youtube (May 21, 2008)">Youtomb tracks taken down videos from Youtube</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/11/13/torrentvalley-is-no-more/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>FrostWire, free and fast Gnutella</title>
		<link>http://www.ghacks.net/2008/11/10/frostwire-free-and-fast-gnutella/</link>
		<comments>http://www.ghacks.net/2008/11/10/frostwire-free-and-fast-gnutella/#comments</comments>
		<pubDate>Mon, 10 Nov 2008 21:52:53 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[P2p]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[file-sharing]]></category>
		<category><![CDATA[frostwire]]></category>
		<category><![CDATA[gnutella]]></category>
		<category><![CDATA[limewire]]></category>
		<category><![CDATA[limewire pro]]></category>
		<category><![CDATA[piracy]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=8202</guid>
		<description><![CDATA[LimeWire is a popular P2P client which uses the Gnutella network. Unfortunately, it limits the amount of ultrapeers to whom connections can be made, in effect reducing the amount of search results and the number of people from whom downloads can be made. LimeWire only removes these limitations if its Pro version is bought at [...]]]></description>
			<content:encoded><![CDATA[<p>LimeWire is a popular P2P client which uses the Gnutella network. Unfortunately, it limits the amount of ultrapeers to whom connections can be made, in effect reducing the amount of search results and the number of people from whom downloads can be made. LimeWire only removes these limitations if its Pro version is bought at the cost of $35.</p>
<p>As LimeWire is open-source, several forks of it exist. One of these forks is called <a href="http://www.frostwire.com/">FrostWire</a>, a client which appears and works in a similar fashion but removes many limitations of the free version of LimeWire. FrostWire also has some features which LimeWire Pro lacks, such as BitTorrent support.</p>
<p>Unlike LimeWire Pro, FrostWire is completely free to use and download. FrostWire is based on LimeWire&#8217;s Java engine and as such, it works on OS X, Linux and Windows, providing Java 1.5 or above is installed.</p>
<p><span id="more-8202"></span>FrostWire can identify files tagged as Creative Commons in searches, much like LimeWire does, it can filter out junk results like LimeWire, supports proxies, works well with iTunes and there&#8217;s no viruses or spyware with it. <a href="http://joeanderson.co.uk/blog/2006/02/10/using-open-source-to-get-limewire-pro/">A more in-depth review is on my weblog, Webby&#8217;s World.<br />
</a><br />
FrostWire is an easy way to save $35 if you really wanted to buy LimeWire Pro. It is also a way to ensure people do not profit from tools which mainly facilitate piracy!</p>

	Tags: <a href="http://www.ghacks.net/tag/file-sharing/" title="file-sharing" rel="tag">file-sharing</a>, <a href="http://www.ghacks.net/tag/frostwire/" title="frostwire" rel="tag">frostwire</a>, <a href="http://www.ghacks.net/tag/gnutella/" title="gnutella" rel="tag">gnutella</a>, <a href="http://www.ghacks.net/tag/limewire/" title="limewire" rel="tag">limewire</a>, <a href="http://www.ghacks.net/tag/limewire-pro/" title="limewire pro" rel="tag">limewire pro</a>, <a href="http://www.ghacks.net/tag/p2p/" title="P2p" rel="tag">P2p</a>, <a href="http://www.ghacks.net/tag/piracy/" title="piracy" rel="tag">piracy</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/11/08/the-big-guys-get-it-wrong-once-again-prosecute-innocent-people/" title="The Big Guys get it Wrong Once Again, Prosecute Innocent People (November 8, 2008)">The Big Guys get it Wrong Once Again, Prosecute Innocent People</a> (7)</li>
	<li><a href="http://www.ghacks.net/2008/02/18/stop-piracy-by-kicking-p2p-users-off-the-internet/" title="Stop Piracy by Kicking P2P Users off the Internet (February 18, 2008)">Stop Piracy by Kicking P2P Users off the Internet</a> (7)</li>
	<li><a href="http://www.ghacks.net/2008/03/03/private-encrypted-file-sharing/" title="Private Encrypted File Sharing (March 3, 2008)">Private Encrypted File Sharing</a> (6)</li>
	<li><a href="http://www.ghacks.net/2009/04/10/p2p-the-owner-free-file-system/" title="P2P: The Owner Free File System (April 10, 2009)">P2P: The Owner Free File System</a> (5)</li>
	<li><a href="http://www.ghacks.net/2008/11/17/joe-biden-piracy%e2%80%99s-new-enemy/" title="Joe Biden: Piracy&#8217;s New Enemy (November 17, 2008)">Joe Biden: Piracy&#8217;s New Enemy</a> (18)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/11/10/frostwire-free-and-fast-gnutella/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>The Big Guys get it Wrong Once Again, Prosecute Innocent People</title>
		<link>http://www.ghacks.net/2008/11/08/the-big-guys-get-it-wrong-once-again-prosecute-innocent-people/</link>
		<comments>http://www.ghacks.net/2008/11/08/the-big-guys-get-it-wrong-once-again-prosecute-innocent-people/#comments</comments>
		<pubDate>Sat, 08 Nov 2008 07:32:54 +0000</pubDate>
		<dc:creator>Cheryl</dc:creator>
				<category><![CDATA[P2p]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Atari]]></category>
		<category><![CDATA[file-sharing]]></category>
		<category><![CDATA[illegal downloading]]></category>
		<category><![CDATA[lawsuit]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=8149</guid>
		<description><![CDATA[Ever since the RIAA and other big guns decided to pull up people for illegal file-sharing of copyrighted material, the news has been full of cases involving these crimes. From individuals to site owners providing links to copyrighted content, it seems no one is safe.
I don’t intend to start a debate on whether or not [...]]]></description>
			<content:encoded><![CDATA[<p>Ever since the RIAA and other big guns decided to pull up people for illegal file-sharing of copyrighted material, the news has been full of cases involving these crimes. From individuals to site owners providing links to copyrighted content, it seems no one is safe.</p>
<p>I don’t intend to start a debate on whether or not it’s the right course of action but it does bug me when innocent people get pulled up for something they did not do. And that’s exactly what happened to an elderly couple in the UK recently.</p>
<p><span id="more-8149"></span>The couple, in their 50s were stunned to receive a letter from a UK-based law firm called Davenport Lyons, accusing them of uploading an Atari game. The letter demanded a compensation fee of 500 pounds as well as additional 25 pounds for copyright infringement. Of course, the crime was identified by tracing the IP address involved back to these people.</p>
<p>The victims vehemently denied the charges and yes, they were able to back it up. They did not own the game in question nor was any trace of P2P or other file-sharing software found on their computer. Neither did they have WiFi access so it’s unlikely that someone else hacked into an unsecured connection.</p>
<p>Thanks to the intervention of consumer group Which? Computing, the charges against these people were dropped. However, no one’s answering the most important question: how did they get hold of the victim’s IP address?</p>
<p>One theory is that it’s simply a goof-up. The other is that Atari decided to set an example and didn’t care who they targeted. What do you think of this situation? Is it justified? Let me know in the comments.</p>

	Tags: <a href="http://www.ghacks.net/tag/atari/" title="Atari" rel="tag">Atari</a>, <a href="http://www.ghacks.net/tag/file-sharing/" title="file-sharing" rel="tag">file-sharing</a>, <a href="http://www.ghacks.net/tag/illegal-downloading/" title="illegal downloading" rel="tag">illegal downloading</a>, <a href="http://www.ghacks.net/tag/lawsuit/" title="lawsuit" rel="tag">lawsuit</a>, <a href="http://www.ghacks.net/tag/p2p/" title="P2p" rel="tag">P2p</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/03/03/private-encrypted-file-sharing/" title="Private Encrypted File Sharing (March 3, 2008)">Private Encrypted File Sharing</a> (6)</li>
	<li><a href="http://www.ghacks.net/2009/04/10/p2p-the-owner-free-file-system/" title="P2P: The Owner Free File System (April 10, 2009)">P2P: The Owner Free File System</a> (5)</li>
	<li><a href="http://www.ghacks.net/2008/11/17/joe-biden-piracy%e2%80%99s-new-enemy/" title="Joe Biden: Piracy&#8217;s New Enemy (November 17, 2008)">Joe Biden: Piracy&#8217;s New Enemy</a> (18)</li>
	<li><a href="http://www.ghacks.net/2008/11/10/frostwire-free-and-fast-gnutella/" title="FrostWire, free and fast Gnutella (November 10, 2008)">FrostWire, free and fast Gnutella</a> (5)</li>
	<li><a href="http://www.ghacks.net/2008/07/27/eztv-allows-bittorrent-streaming/" title="EZTV Allows BitTorrent Streaming (July 27, 2008)">EZTV Allows BitTorrent Streaming</a> (8)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/11/08/the-big-guys-get-it-wrong-once-again-prosecute-innocent-people/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>HTTP File Server</title>
		<link>http://www.ghacks.net/2008/11/01/http-file-server/</link>
		<comments>http://www.ghacks.net/2008/11/01/http-file-server/#comments</comments>
		<pubDate>Sat, 01 Nov 2008 19:09:52 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[file-server]]></category>
		<category><![CDATA[file-sharing]]></category>
		<category><![CDATA[hfs]]></category>
		<category><![CDATA[http-file-server]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[share-files]]></category>
		<category><![CDATA[web server]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=7995</guid>
		<description><![CDATA[Making files accessible online can be done in several ways. One possibility that is quick and easy to achieve is with the help of HTTP File Server. The free portable software can be used to pick folders or files on the computer&#8217;s hard drive and make them available online. If it is only about the [...]]]></description>
			<content:encoded><![CDATA[<p>Making files accessible online can be done in several ways. One possibility that is quick and easy to achieve is with the help of <a href="http://www.rejetto.com/hfs/?f=intro">HTTP File Server</a>. The free portable software can be used to pick folders or files on the computer&#8217;s hard drive and make them available online. If it is only about the files then that&#8217;s all there is to do: Pick the files, open a web browser and load the IP. That is it.</p>
<p>That&#8217;s not all however but it should give an example how easy it is to make files available online with <a href="http://www.ghacks.net/2006/12/30/share-files-with-http-file-server/">HTTP File Server</a> which was already reviewed about two years ago for the first time here at Ghacks. A lot has changed in the last two years. </p>
<p>The folders and files that get picked by the user are available immediately online. It&#8217;s probably a good idea to test the server locally and remotely before giving the remote IP to someone else. It might on the other hand not be necessary to hand out the remote IP if files should only be accessible by yourself.</p>
<p><span id="more-7995"></span>The file server comes with a basic music player that can stream and play music directly without downloading the music first. Everything else is downloaded before it can be accessed.</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2008/11/http_file_server-500x378.png" alt="http file server" title="http file server" width="500" height="378" class="alignnone size-medium wp-image-7996" /></p>
<p>Many possibilities to secure and restrict access can be configured in HTTP File Server. The system administrator can create user accounts and define files or folders that are restricted to those users. Additional possibilities include speed limits or restrictions by IP.</p>
<p>The file server supports real and virtual folders and can be configured to allow file uploads as well. </p>
<p>The main advantage of HTTP File Server is the ease of use and the portability of the application. The main site contains the latest release version of the server software, the forums provide access to the latest beta releases which provide additional functionality and bugfixes.</p>

	Tags: <a href="http://www.ghacks.net/tag/file-server/" title="file-server" rel="tag">file-server</a>, <a href="http://www.ghacks.net/tag/file-sharing/" title="file-sharing" rel="tag">file-sharing</a>, <a href="http://www.ghacks.net/tag/hfs/" title="hfs" rel="tag">hfs</a>, <a href="http://www.ghacks.net/tag/http-file-server/" title="http-file-server" rel="tag">http-file-server</a>, <a href="http://www.ghacks.net/tag/server/" title="server" rel="tag">server</a>, <a href="http://www.ghacks.net/tag/share-files/" title="share-files" rel="tag">share-files</a>, <a href="http://www.ghacks.net/tag/web-server/" title="web server" rel="tag">web server</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/10/25/windows-file-server/" title="Windows File Server (October 25, 2009)">Windows File Server</a> (7)</li>
	<li><a href="http://www.ghacks.net/2009/07/23/web-server-migration-today/" title="Web Server Migration Today (July 23, 2009)">Web Server Migration Today</a> (5)</li>
	<li><a href="http://www.ghacks.net/2006/12/30/share-files-with-http-file-server/" title="Share Files with HTTP File Server (December 30, 2006)">Share Files with HTTP File Server</a> (11)</li>
	<li><a href="http://www.ghacks.net/2009/03/28/home-web-server/" title="Run Your Own Home Web Server (March 28, 2009)">Run Your Own Home Web Server</a> (7)</li>
	<li><a href="http://www.ghacks.net/2009/06/16/opera-unite/" title="Opera Unite (June 16, 2009)">Opera Unite</a> (30)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/11/01/http-file-server/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>A New Vulnerability Discovered in μTorrent</title>
		<link>http://www.ghacks.net/2008/08/17/a-new-vulnerability-discovered-in-%ce%bctorrent/</link>
		<comments>http://www.ghacks.net/2008/08/17/a-new-vulnerability-discovered-in-%ce%bctorrent/#comments</comments>
		<pubDate>Sun, 17 Aug 2008 07:00:08 +0000</pubDate>
		<dc:creator>Cheryl</dc:creator>
				<category><![CDATA[Music and Video]]></category>
		<category><![CDATA[P2p]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[bittorrent]]></category>
		<category><![CDATA[file-sharing]]></category>
		<category><![CDATA[movie industry]]></category>
		<category><![CDATA[utorrent]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=6219</guid>
		<description><![CDATA[ 
As far as file-sharing protocols go, BitTorrent has emerged as one of the leading P2P technologies being used. μTorrent is one of the most popular BitTorrent apps around, largely because of its small size and ease of use. While μTorrent used to be an independent client, it has since been taken over by BitTorrent [...]]]></description>
			<content:encoded><![CDATA[<p><!--[if gte mso 9]&gt; Normal   0                         MicrosoftInternetExplorer4 &lt;![endif]--><!--  --><!--[if gte mso 10]&gt; &lt;!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-parent:""; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-para-margin:0in; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:10.0pt; 	font-family:"Times New Roman";} --> <!--[endif]--></p>
<p>As far as file-sharing protocols go, BitTorrent has emerged as one of the leading P2P technologies being used. <a href="http://www.utorrent.com/">μTorrent</a> is one of the most popular BitTorrent apps around, largely because of its small size and ease of use. While μTorrent used to be an independent client, it has since been taken over by BitTorrent Inc. which has partnerships with almost all the major movie networks.</p>
<p>μTorrent has recently been found to contain a very serious security vulnerability. Apparently, there is a boundary error in the processing of <strong>‘.torrent&#8217;</strong> files, which can be exploited to cause a stack-based buffer overflow.</p>
<p>What this means is that someone can create a malicious torrent file and place his or her own code in the ‘created by&#8217; section of the torrent. This code may be harmless or something serious like allowing the hacker access to the machine that runs the <strong>.torrent </strong>file.</p>
<p><span id="more-6219"></span></p>
<p>Older versions of μTorrent do not limit the amount of data that can be present in the ‘created by&#8217; section of a torrent file so this problem exists in all μTorrent version prior to 1.8. All users are requested to download μTorrent 1.8 Release Candidate 7, which has been patched to fix this problem.</p>
<p>While the security vulnerability sounds serious enough, I&#8217;m a little skeptical of how dangerous it actually is. A user would have to intentionally download a corrupt torrent file and run it. Plus, indexing sites list torrent contents including the creator of the torrent so you can easily avoid files that look suspicious.</p>
<p>Personally, I think this is another way for BitTorrent Inc. to convince users of old versions of μTorrent to upgrade to the newer one. Considering their links with the movie industry, it doesn&#8217;t sound so far-fetched.</p>
<p>Would you upgrade to the newest version of μTorrent? I&#8217;m using version 1.6 myself, which is the last version released before BitTorrent Inc. took over. Should I upgrade or stay with my old version? Let me know in the comments.</p>

	Tags: <a href="http://www.ghacks.net/tag/bittorrent/" title="bittorrent" rel="tag">bittorrent</a>, <a href="http://www.ghacks.net/tag/file-sharing/" title="file-sharing" rel="tag">file-sharing</a>, <a href="http://www.ghacks.net/tag/movie-industry/" title="movie industry" rel="tag">movie industry</a>, <a href="http://www.ghacks.net/tag/p2p/" title="P2p" rel="tag">P2p</a>, <a href="http://www.ghacks.net/tag/utorrent/" title="utorrent" rel="tag">utorrent</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/08/11/utorrent-2-0-beta-released/" title="uTorrent 2.0 Beta Released (August 11, 2009)">uTorrent 2.0 Beta Released</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/05/07/utorrent-182-final/" title="uTorrent 1.8.2 Final (May 7, 2009)">uTorrent 1.8.2 Final</a> (1)</li>
	<li><a href="http://www.ghacks.net/2007/09/16/media-defender-email-leak/" title="Media Defender email leak (September 16, 2007)">Media Defender email leak</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/08/11/how-to-make-utorrent-portable/" title="How To Make uTorrent Portable (August 11, 2009)">How To Make uTorrent Portable</a> (7)</li>
	<li><a href="http://www.ghacks.net/2008/07/27/eztv-allows-bittorrent-streaming/" title="EZTV Allows BitTorrent Streaming (July 27, 2008)">EZTV Allows BitTorrent Streaming</a> (8)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/08/17/a-new-vulnerability-discovered-in-%ce%bctorrent/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>You Are Sharing Files</title>
		<link>http://www.ghacks.net/2008/07/28/you-are-sharing-files/</link>
		<comments>http://www.ghacks.net/2008/07/28/you-are-sharing-files/#comments</comments>
		<pubDate>Mon, 28 Jul 2008 08:30:33 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Music Industry]]></category>
		<category><![CDATA[The Web]]></category>
		<category><![CDATA[bpi]]></category>
		<category><![CDATA[file-sharing]]></category>
		<category><![CDATA[riaa]]></category>
		<category><![CDATA[takedown notice]]></category>
		<category><![CDATA[united kingdom]]></category>
		<category><![CDATA[warning letters]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=5656</guid>
		<description><![CDATA[I just send a letter to your ISP telling them that you are sharing files. I did not have to prove my claims because I&#8217;m in high standing. Your Internet Service Provider is now sending a DCMA takedown notice / a warning letter / a three-strikes-and-you-are-out letter to the owner of the IP that has [...]]]></description>
			<content:encoded><![CDATA[<p>I just send a letter to your ISP telling them that you are sharing files. I did not have to prove my claims because I&#8217;m in high standing. Your Internet Service Provider is now sending a DCMA takedown notice / a warning letter / a three-strikes-and-you-are-out letter to the owner of the IP that has been found to sharing files illegally on the Internet.</p>
<p>No, I won&#8217;t reveal my methods to you or anyone else. The evidence is solid and you have to take my word for it, and remember, I&#8217;m in high standing and trusted. My commercial interests do not play a role, I work thoroughly..</p>
<p>While this could look like a joke it is unfortunately reality in several parts of the world. Last to join the party are users from the United Kingdom who will receive warning letters send from their Internet Service Providers who received the information from the British Phonographic Industry who do not disclose the process of gathering the data in first place.</p>
<p><span id="more-5656"></span><img src="http://www.ghacks.net/wp-content/uploads/2008/07/printer_takedown_notice.jpg" alt="printer takedown notice" title="printer takedown notice" width="236" height="341" class="alignnone size-medium wp-image-5657" /></p>
<p>Scientific studies <a href="http://dmca.cs.washington.edu/index.html#papers">have</a> shown that the data gathering process of most organizations that send out DMCA notices is flawed and provided access to several methods that explained why. One of the methods was to actively frame other users and they managed to get DCMA takedown notices for one of their network printers to prove the point.</p>
<p>There is definitely a problem with the system if the British Phonographic Industry has the unchallenged might and right to notify the Internet Service Providers of copyright infringements and make them send out warning letters to their customers.</p>

	Tags: <a href="http://www.ghacks.net/tag/bpi/" title="bpi" rel="tag">bpi</a>, <a href="http://www.ghacks.net/tag/file-sharing/" title="file-sharing" rel="tag">file-sharing</a>, <a href="http://www.ghacks.net/tag/music-industry/" title="Music Industry" rel="tag">Music Industry</a>, <a href="http://www.ghacks.net/tag/riaa/" title="riaa" rel="tag">riaa</a>, <a href="http://www.ghacks.net/tag/takedown-notice/" title="takedown notice" rel="tag">takedown notice</a>, <a href="http://www.ghacks.net/tag/united-kingdom/" title="united kingdom" rel="tag">united kingdom</a>, <a href="http://www.ghacks.net/tag/warning-letters/" title="warning letters" rel="tag">warning letters</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/06/09/why-some-isps-turn-against-their-own-customers/" title="Why some ISPs turn against their own customers (June 9, 2008)">Why some ISPs turn against their own customers</a> (5)</li>
	<li><a href="http://www.ghacks.net/2006/10/05/the-industry-fights-some-uneccessary-battles/" title="The industry fights some unnecessary battles (October 5, 2006)">The industry fights some unnecessary battles</a> (2)</li>
	<li><a href="http://www.ghacks.net/2007/10/17/riaa-sues-all-internet-providers/" title="RIAA sues all Internet Providers (October 17, 2007)">RIAA sues all Internet Providers</a> (5)</li>
	<li><a href="http://www.ghacks.net/2006/12/23/riaa-is-sueing-allofmp3/" title="Riaa is sueing Allofmp3 (December 23, 2006)">Riaa is sueing Allofmp3</a> (0)</li>
	<li><a href="http://www.ghacks.net/2008/02/08/riaa-is-becoming-desperate/" title="RIAA is becoming desperate (February 8, 2008)">RIAA is becoming desperate</a> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/07/28/you-are-sharing-files/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>EZTV Allows BitTorrent Streaming</title>
		<link>http://www.ghacks.net/2008/07/27/eztv-allows-bittorrent-streaming/</link>
		<comments>http://www.ghacks.net/2008/07/27/eztv-allows-bittorrent-streaming/#comments</comments>
		<pubDate>Sun, 27 Jul 2008 06:21:20 +0000</pubDate>
		<dc:creator>Cheryl</dc:creator>
				<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Music and Video]]></category>
		<category><![CDATA[P2p]]></category>
		<category><![CDATA[bittorrent]]></category>
		<category><![CDATA[EZTV]]></category>
		<category><![CDATA[file-sharing]]></category>
		<category><![CDATA[torrent streaming]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=5623</guid>
		<description><![CDATA[ 
Ever since BitTorrent first appeared on the scene, it has become one of the most popular file-sharing methods around. BitTorrent is fast because each file is split into very small chunks and can be downloaded from complete and partially downloaded files. This protocol is especially popular for new releases.
The service has its pros and [...]]]></description>
			<content:encoded><![CDATA[<p><!--[if gte mso 9]&gt; Normal   0                         MicrosoftInternetExplorer4 &lt;![endif]--><!--  --><!--[if gte mso 10]&gt; &lt;!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-parent:""; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-para-margin:0in; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:10.0pt; 	font-family:"Times New Roman";} --> <!--[endif]--></p>
<p>Ever since BitTorrent first appeared on the scene, it has become one of the most popular file-sharing methods around. BitTorrent is fast because each file is split into very small chunks and can be downloaded from complete and partially downloaded files. This protocol is especially popular for new releases.</p>
<p>The service has its pros and cons. While piracy is rampant, let&#8217;s not forget that there are a lot of free, legally available torrent files as well. I won&#8217;t go into that whole argument since this isn&#8217;t the point of my post. Instead I&#8217;m going to focus on what seems to be the next stage in the evolution of torrent technology.</p>
<p><a href="http://eztv.it/frontpage.php" target="_blank">EZTV</a>, a BitTorrent indexer for TV shows, has recently announced that it plans to use BitTorrent Video Streaming. They are using file-sharing technology from Tribler for this purpose. What this means is that you will be able to watch your video file while it is still downloading. That means no more waiting for those precious first and last chunks of files to download before you can preview the file.</p>
<p><span id="more-5623"></span></p>
<p>To make video streaming possible, you will need a client called <a href="http://trial.p2p-next.org/">SwarmPlayer</a>. This is nothing but a combination of a modified torrent client and VLC as the video player. Streaming torrent files will be provided in a special <strong>.tstream </strong>format but the player will also recognize and play standard <strong>.torrent </strong>files. SwarmPlayer is currently in beta mode.</p>
<p>If EZTV can actually pull this off, they could just start a new trend for the BitTorrent technology. The streaming obviously will not work if you have a slower connection but for people with super-fast connections, it will be a breeze. I expect other torrent indexers to start offering files in streaming format soon. In addition, the format will also have to be recognized by video players.</p>
<p>I&#8217;m not sure how well this will work. For one, streaming video takes up a lot of bandwidth although SwarmPlayer does claim to be bandwidth-efficient. Another concern is the possible legal issues that are going to show up. Would you be interested in torrent streaming? What are your thoughts on this technology? Let me know in the comments.</p>

	Tags: <a href="http://www.ghacks.net/tag/bittorrent/" title="bittorrent" rel="tag">bittorrent</a>, <a href="http://www.ghacks.net/tag/eztv/" title="EZTV" rel="tag">EZTV</a>, <a href="http://www.ghacks.net/tag/file-sharing/" title="file-sharing" rel="tag">file-sharing</a>, <a href="http://www.ghacks.net/tag/p2p/" title="P2p" rel="tag">P2p</a>, <a href="http://www.ghacks.net/tag/torrent-streaming/" title="torrent streaming" rel="tag">torrent streaming</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/08/17/a-new-vulnerability-discovered-in-%ce%bctorrent/" title="A New Vulnerability Discovered in μTorrent (August 17, 2008)">A New Vulnerability Discovered in μTorrent</a> (10)</li>
	<li><a href="http://www.ghacks.net/2007/08/28/what-can-i-do-if-bittorrent-gets-throttled-or-blocked/" title="What can I do if Bittorrent gets throttled or blocked (August 28, 2007)">What can I do if Bittorrent gets throttled or blocked</a> (5)</li>
	<li><a href="http://www.ghacks.net/2009/08/11/utorrent-2-0-beta-released/" title="uTorrent 2.0 Beta Released (August 11, 2009)">uTorrent 2.0 Beta Released</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/05/07/utorrent-182-final/" title="uTorrent 1.8.2 Final (May 7, 2009)">uTorrent 1.8.2 Final</a> (1)</li>
	<li><a href="http://www.ghacks.net/2008/11/13/torrentvalley-is-no-more/" title="Torrentvalley is No More (November 13, 2008)">Torrentvalley is No More</a> (10)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/07/27/eztv-allows-bittorrent-streaming/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Private Encrypted File Sharing</title>
		<link>http://www.ghacks.net/2008/03/03/private-encrypted-file-sharing/</link>
		<comments>http://www.ghacks.net/2008/03/03/private-encrypted-file-sharing/#comments</comments>
		<pubDate>Mon, 03 Mar 2008 10:03:29 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[P2p]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[file-sharing]]></category>
		<category><![CDATA[instant messenger]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2008/03/03/private-encrypted-file-sharing/</guid>
		<description><![CDATA[I have been testing an application called Transporter P2P for the last few days which  can be described as a elegant way to share files and chat with contacts using P2P connections. A main difference between Transporter P2P and Skype for instance is that the former is server independent which means more privacy and security. The setup on the other hand is a little bit complicated because of the serverless design.]]></description>
			<content:encoded><![CDATA[<p>I have been testing an application called Transporter P2P for the last few days which  can be described as a elegant way to share files and chat with contacts using P2P connections. A main difference between Transporter P2P and Skype for instance is that the former is server independent which means more privacy and security. The setup on the other hand is a little bit complicated because of the serverless design.</p>
<p>When you first start <a href="http://brooksyounce.byethost13.com/soft/transporter.htm" target="_blank">Transporter P2P</a> you see an interface that resembles those of many Instant Messengers. You see a contact list, a chat window and lots of options. Now, the first thing that you need to do is to add contacts so that you can start chatting with them and transferring files. That&#8217;s the complicated part because you need to know the IP address of the contact.</p>
<p>That&#8217;s a little bit problematic if you and your contacts use dialup connections with changing IPs. One way to overcome this problem would be to use a Dynamic DNS service. Once a contact has been added you see his status next to his name in the main window.</p>
<p><span id="more-3410"></span> <img src="http://www.ghacks.net/wp-content/uploads/2008/03/transporter_p2p.jpg" alt="transporter p2p" /></p>
<p>Users can share folders easily using Transporter P2P. Once a folder is shared all contacts have access to that folder and can download files from it. Talking about file transfers: The software supports large file transfers, resume, auto get and  transfer of complete folders.</p>
<p>Users can browse the shared files and folders and even use a sophisticated search to find files they want to transfer. Another window details which users are currently connected to your computer with the option to kick a user.</p>
<p>The main benefit of Transporter P2P is its independence of a server that is administrating the transfers and contacts which also turns out to be its greatest weakness due to the problematic setup and maintenance.</p>

	Tags: <a href="http://www.ghacks.net/tag/file-sharing/" title="file-sharing" rel="tag">file-sharing</a>, <a href="http://www.ghacks.net/tag/instant-messenger/" title="instant messenger" rel="tag">instant messenger</a>, <a href="http://www.ghacks.net/tag/p2p/" title="P2p" rel="tag">P2p</a>, <a href="http://www.ghacks.net/tag/software/" title="software" rel="tag">software</a>, <a href="http://www.ghacks.net/tag/windows/" title="Windows" rel="tag">Windows</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/05/14/torrent2exe-makes-bittorrent-a-tad-easier/" title="Torrent2exe makes Bittorrent a tad easier (May 14, 2008)">Torrent2exe makes Bittorrent a tad easier</a> (4)</li>
	<li><a href="http://www.ghacks.net/2008/03/22/move-files-automatically-from-the-internet-cache/" title="Move files automatically from the Internet Cache (March 22, 2008)">Move files automatically from the Internet Cache</a> (2)</li>
	<li><a href="http://www.ghacks.net/2008/06/08/zip-repair/" title="Zip Repair (June 8, 2008)">Zip Repair</a> (3)</li>
	<li><a href="http://www.ghacks.net/2008/07/15/zen-key-an-all-purpose-application-manager/" title="Zen Key An All Purpose Application Manager (July 15, 2008)">Zen Key An All Purpose Application Manager</a> (3)</li>
	<li><a href="http://www.ghacks.net/2008/05/13/youtube-batch-downloader/" title="Youtube Batch Downloader (May 13, 2008)">Youtube Batch Downloader</a> (13)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/03/03/private-encrypted-file-sharing/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>EventID 4226: TCP/IP has reached the security limit</title>
		<link>http://www.ghacks.net/2007/10/24/eventid-4226-tcpip-has-reached-the-security-limit/</link>
		<comments>http://www.ghacks.net/2007/10/24/eventid-4226-tcpip-has-reached-the-security-limit/#comments</comments>
		<pubDate>Wed, 24 Oct 2007 08:14:42 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[P2p]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[connection limit]]></category>
		<category><![CDATA[file-sharing]]></category>
		<category><![CDATA[half-open]]></category>
		<category><![CDATA[tcp/ip]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2007/10/24/eventid-4226-tcpip-has-reached-the-security-limit/</guid>
		<description><![CDATA[Windows XP with Service Pack 2 and Windows Vista have both a TCP/IP connection limit that limits the half-open connections of the system. If that limit is reached a new entry in the Event Viewer is created stating "EventID 4226: TCP/IP has reached the security limit imposed on the number of concurrent TCP connect attempts.".]]></description>
			<content:encoded><![CDATA[<p>Windows XP with Service Pack 2 and Windows Vista have both a TCP/IP connection limit that limits the half-open connections of the system. If that limit is reached a new entry in the Event Viewer is created stating &#8220;EventID 4226: TCP/IP has reached the security limit imposed on the number of concurrent TCP connect attempts.&#8221;.</p>
<p>It is not absolutely clear to me why Microsoft did set the limitation, some possible reasons could be to prevent worms and other malicious scripts from spreading to fast or to limit filesharing. Users will most likely notice that something is wrong when running P2P clients, slow downloads and timeouts are indicators that the limit is set.</p>
<p>Thankfully a solution exists that can patch the file tcpip.sys and remove the security limit. To do that you need to download the file Vista TCP Patch, open an elevated command prompt with administrator rights and enter the following command. <code>VistaTcpPatch /n X</code> with X being the maximum amount of half-open connections allowed on that system.</p>
<p><span id="more-2167"></span>The computer needs to be restarted afterwards. Some users reported that they needed to execute Vista TCP Patch from the \Windows\System32\ folder to make it work. </p>
<p>Windows XP users can download and run the software EventID 4226 Patcher Version 2.23d instead which basically does the same thing but sets the limit to 50 half-open connections.</p>
<p><a href="http://depositfiles.com/files/1647821">Vista TCP Patch</a> (for Windows Vista)<br />
<a href="http://www.lvllord.de/?lang=en&#038;url=downloads">EventID 4226 Patcher Version 2.23d</a> (for Windows XP)</p>

	Tags: <a href="http://www.ghacks.net/tag/connection-limit/" title="connection limit" rel="tag">connection limit</a>, <a href="http://www.ghacks.net/tag/file-sharing/" title="file-sharing" rel="tag">file-sharing</a>, <a href="http://www.ghacks.net/tag/half-open/" title="half-open" rel="tag">half-open</a>, <a href="http://www.ghacks.net/tag/p2p/" title="P2p" rel="tag">P2p</a>, <a href="http://www.ghacks.net/tag/tcpip/" title="tcp/ip" rel="tag">tcp/ip</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/11/08/the-big-guys-get-it-wrong-once-again-prosecute-innocent-people/" title="The Big Guys get it Wrong Once Again, Prosecute Innocent People (November 8, 2008)">The Big Guys get it Wrong Once Again, Prosecute Innocent People</a> (7)</li>
	<li><a href="http://www.ghacks.net/2008/03/03/private-encrypted-file-sharing/" title="Private Encrypted File Sharing (March 3, 2008)">Private Encrypted File Sharing</a> (6)</li>
	<li><a href="http://www.ghacks.net/2009/04/10/p2p-the-owner-free-file-system/" title="P2P: The Owner Free File System (April 10, 2009)">P2P: The Owner Free File System</a> (5)</li>
	<li><a href="http://www.ghacks.net/2008/11/17/joe-biden-piracy%e2%80%99s-new-enemy/" title="Joe Biden: Piracy&#8217;s New Enemy (November 17, 2008)">Joe Biden: Piracy&#8217;s New Enemy</a> (18)</li>
	<li><a href="http://www.ghacks.net/2008/11/10/frostwire-free-and-fast-gnutella/" title="FrostWire, free and fast Gnutella (November 10, 2008)">FrostWire, free and fast Gnutella</a> (5)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2007/10/24/eventid-4226-tcpip-has-reached-the-security-limit/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>20000 Euro per song ?</title>
		<link>http://www.ghacks.net/2007/09/20/20000-euro-per-song/</link>
		<comments>http://www.ghacks.net/2007/09/20/20000-euro-per-song/#comments</comments>
		<pubDate>Thu, 20 Sep 2007 07:08:00 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Music Industry]]></category>
		<category><![CDATA[P2p]]></category>
		<category><![CDATA[artists]]></category>
		<category><![CDATA[file-sharing]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[songs]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2007/09/20/20000-euro-per-song/</guid>
		<description><![CDATA[Server operators who happen to have songs on their servers that are distributed illegally will have to pay the fine of 20000 Euro ($28000) per song: at least in Germany according to the district court in Hamburg. Private downloaders get it much cheaper though. They only have to pay 6000 Euro for the first song, 3000 for the second, 1500 for the third and 600 for all remaining ones. A cheap bargain don't you think ?]]></description>
			<content:encoded><![CDATA[<p>Server operators who happen to have songs on their servers that are distributed illegally will have to pay the fine of 20000 Euro ($28000) per song: at least in Germany according to the district court in Hamburg. Private downloaders get it much cheaper though. They only have to pay 6000 Euro for the first song, 3000 for the second, 1500 for the third and 600 for all remaining ones. A cheap bargain don&#8217;t you think ?</p>
<p>This is however not the only fee that has to be paid. The opposing council has to be paid as well which adds roughly 850 Euros ($1193) if one song has been offered on the server up to 5850 Euros ($8200) for 50 songs. All of these fees without a single second in court until now of course.</p>
<p>If you happen to go to court you have to add fees for your own attorney and for the court which all depend on the amount in dispute. Last but not least there is the compensation for the Music Industry which the server operator or file sharer has to pay as well.</p>
<p><span id="more-2023"></span>Am I the only one who thinks that this is out of line ? Even if no one did download a song from a user he has to pay up to 20000 Euro plus all those fees ?</p>
<p>Especially if you take into consideration that recent studies do show that downloaders spend considerably more on digital music purchases.</p>
<p><strong>Read More:</strong></p>
<p><a href="http://arstechnica.com/news.ars/post/20050727-5139.html">Arstechnica</a><br />
<a href="http://www.sueddeutsche.de/,tt5m2/computer/artikel/648/133399/">20000 Euro pro Lied (German)</a></p>

	Tags: <a href="http://www.ghacks.net/tag/artists/" title="artists" rel="tag">artists</a>, <a href="http://www.ghacks.net/tag/file-sharing/" title="file-sharing" rel="tag">file-sharing</a>, <a href="http://www.ghacks.net/tag/mp3/" title="mp3" rel="tag">mp3</a>, <a href="http://www.ghacks.net/tag/music/" title="music" rel="tag">music</a>, <a href="http://www.ghacks.net/tag/music-industry/" title="Music Industry" rel="tag">Music Industry</a>, <a href="http://www.ghacks.net/tag/p2p/" title="P2p" rel="tag">P2p</a>, <a href="http://www.ghacks.net/tag/songs/" title="songs" rel="tag">songs</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2006/12/23/riaa-is-sueing-allofmp3/" title="Riaa is sueing Allofmp3 (December 23, 2006)">Riaa is sueing Allofmp3</a> (0)</li>
	<li><a href="http://www.ghacks.net/2008/01/29/why-i-wont-be-using-qtrax/" title="Why I wont be using Qtrax (January 29, 2008)">Why I wont be using Qtrax</a> (7)</li>
	<li><a href="http://www.ghacks.net/2008/01/26/seeqpod-gets-sued-for-yeah-for-what-actually/" title="Seeqpod gets sued for.. yeah for what actually ? (January 26, 2008)">Seeqpod gets sued for.. yeah for what actually ?</a> (5)</li>
	<li><a href="http://www.ghacks.net/2008/01/26/russian-mp3-search-engine-mp3shki/" title="Russian MP3 Search Engine MP3shki (January 26, 2008)">Russian MP3 Search Engine MP3shki</a> (4)</li>
	<li><a href="http://www.ghacks.net/2008/01/05/music-industry-thoughts/" title="Music Industry Thoughts (January 5, 2008)">Music Industry Thoughts</a> (3)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2007/09/20/20000-euro-per-song/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Giganews has now 100 days of retention</title>
		<link>http://www.ghacks.net/2007/02/02/giganews-has-now-100-days-of-retention/</link>
		<comments>http://www.ghacks.net/2007/02/02/giganews-has-now-100-days-of-retention/#comments</comments>
		<pubDate>Fri, 02 Feb 2007 12:25:32 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[The Web]]></category>
		<category><![CDATA[alt.binaries]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[file-sharing]]></category>
		<category><![CDATA[giganews]]></category>
		<category><![CDATA[newsgroups]]></category>
		<category><![CDATA[provider]]></category>
		<category><![CDATA[retention]]></category>
		<category><![CDATA[secure]]></category>
		<category><![CDATA[usenet]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2007/02/02/giganews-has-now-100-days-of-retention/</guid>
		<description><![CDATA[The usenet provider Giganews announced today that they would increase the retention of all binary newsgroups to 100 days over the next two weeks. If you never have heard about the usenet before let me explain the concept with just a few words. The usenet can be divided into binary and discussion groups. Thousands of binary groups for every purpose, from mp3 to movie to games exist and every user who has usenet access is able to download all the files that get posted to the usenet daily.]]></description>
			<content:encoded><![CDATA[<p>The Usenet provider <a href="http://www.giganews.com/?a=ghacks" rel="nofollow">Giganews</a> announced today that they would increase the retention of all binary newsgroups to 100 days over the next two weeks. If you never have heard about the Usenet before let me explain the concept with just a few words. The Usenet can be divided into binary and discussion groups. Thousands of binary groups for every purpose, from mp3 to movie to games exist and every user who has Usenet access is able to download all the files that get posted to the Usenet daily.</p>
<p>Talking about files, take a look at <a href="http://www.newzbin.com/" title="newzbin" target="_blank">newzbin</a> and binsearch to get a understanding what people post on the Usenet and decided for yourself if you want to give it a try. One of the best features of <a href="http://www.giganews.com/?a=ghacks" rel="nofollow" target="_blank">giganews</a> is that they encrypt the traffic which means that your provider, and everyone else tapping the line, has no chance of finding out what you upload and download from their servers.</p>
<p><span id="more-1163"></span> I always get max download speed when downloading from their fast servers, my cap is at 1.8 megabytes per second. Last but not least you should consider the following, more than 2 terabytes &#8211; that is 2000 gigabytes &#8211; of data are uploaded every day to the Usenet. This is huge if you consider the retention of 100 days which would mean that giganews currently hosts about 200 terabyte of data on their servers..</p>

	Tags: <a href="http://www.ghacks.net/tag/altbinaries/" title="alt.binaries" rel="tag">alt.binaries</a>, <a href="http://www.ghacks.net/tag/encryption/" title="encryption" rel="tag">encryption</a>, <a href="http://www.ghacks.net/tag/file-sharing/" title="file-sharing" rel="tag">file-sharing</a>, <a href="http://www.ghacks.net/tag/giganews/" title="giganews" rel="tag">giganews</a>, <a href="http://www.ghacks.net/tag/newsgroups/" title="newsgroups" rel="tag">newsgroups</a>, <a href="http://www.ghacks.net/tag/provider/" title="provider" rel="tag">provider</a>, <a href="http://www.ghacks.net/tag/retention/" title="retention" rel="tag">retention</a>, <a href="http://www.ghacks.net/tag/secure/" title="secure" rel="tag">secure</a>, <a href="http://www.ghacks.net/tag/usenet/" title="usenet" rel="tag">usenet</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/01/10/usenet-providers-dramatically-increase-retention/" title="Usenet providers dramatically increase retention (January 10, 2009)">Usenet providers dramatically increase retention</a> (5)</li>
	<li><a href="http://www.ghacks.net/2008/03/08/the-best-usenet-search-engines/" title="The best Usenet Search Engines (March 8, 2008)">The best Usenet Search Engines</a> (22)</li>
	<li><a href="http://www.ghacks.net/2006/07/17/newsgroups-the-ultimate-p2p-alternative/" title="Newsgroups, the ultimate P2P alternative. (July 17, 2006)">Newsgroups, the ultimate P2P alternative.</a> (22)</li>
	<li><a href="http://www.ghacks.net/2009/03/07/giganews-usenet-trials/" title="Giganews Usenet Trials (March 7, 2009)">Giganews Usenet Trials</a> (0)</li>
	<li><a href="http://www.ghacks.net/2009/03/21/giganews-upgrades-retention-to-365-days/" title="Giganews Upgrades Retention To 365 Days (March 21, 2009)">Giganews Upgrades Retention To 365 Days</a> (6)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2007/02/02/giganews-has-now-100-days-of-retention/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
