<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="http://dev1galaxy.org/extern.php?action=feed&amp;tid=4156&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Dev1 Galaxy Forum / Simple Generic Read-Only File Server Using SAMBA (suitable for Kodi)]]></title>
		<link>http://dev1galaxy.org/viewtopic.php?id=4156</link>
		<description><![CDATA[The most recent posts in Simple Generic Read-Only File Server Using SAMBA (suitable for Kodi).]]></description>
		<lastBuildDate>Sat, 27 Feb 2021 23:53:00 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: Simple Generic Read-Only File Server Using SAMBA (suitable for Kodi)]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=27809#p27809</link>
			<description><![CDATA[<div class="quotebox"><cite>GlennW wrote:</cite><blockquote><div><p>To be sure, use </p><div class="codebox"><pre><code> su - </code></pre></div><p> for Devuan Beowulf 3.0 and above.</p></div></blockquote></div><p>OK, thanks</p>]]></description>
			<author><![CDATA[dummy@example.com (nauved-rex)]]></author>
			<pubDate>Sat, 27 Feb 2021 23:53:00 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=27809#p27809</guid>
		</item>
		<item>
			<title><![CDATA[Re: Simple Generic Read-Only File Server Using SAMBA (suitable for Kodi)]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=27774#p27774</link>
			<description><![CDATA[<p>To be sure, use </p><div class="codebox"><pre><code> su - </code></pre></div><p> for Devuan Beowulf 3.0 and above.</p>]]></description>
			<author><![CDATA[dummy@example.com (GlennW)]]></author>
			<pubDate>Sat, 27 Feb 2021 06:08:11 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=27774#p27774</guid>
		</item>
		<item>
			<title><![CDATA[Re: Simple Generic Read-Only File Server Using SAMBA (suitable for Kodi)]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=27772#p27772</link>
			<description><![CDATA[<div class="quotebox"><cite>Dutch_Master wrote:</cite><blockquote><div><p>Sudo is a typical Ubuntu-base prefix, on Debian and Devuan by default* you don&#039;t need sudo, just su and you have root permissions. Achieve the same on Ubuntu with</p><div class="codebox"><pre><code>sudo su</code></pre></div><p>Now skip the sudo prefix from the above commands.</p><p>*this depends on whether or not you&#039;ve set a root password during installation. If you have, sudo is installed, but disabled for your user. (installed because other programs need it anyway). Technically, if you set a root pw, your regular user is not added to the /etc/sudoers file.</p></div></blockquote></div><p>I do both. I create a password for root as the first thing I do when booting the system immediately after the install. I realize that sudo is mostly an Ubuntu thing, but I prefer the way I do things, and see no reason to modify my original post. Thanks for the feedback.</p>]]></description>
			<author><![CDATA[dummy@example.com (nauved-rex)]]></author>
			<pubDate>Sat, 27 Feb 2021 03:17:49 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=27772#p27772</guid>
		</item>
		<item>
			<title><![CDATA[Re: Simple Generic Read-Only File Server Using SAMBA (suitable for Kodi)]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=27766#p27766</link>
			<description><![CDATA[<p>Sudo is a typical Ubuntu-base prefix, on Debian and Devuan by default* you don&#039;t need sudo, just su and you have root permissions. Achieve the same on Ubuntu with</p><div class="codebox"><pre><code>sudo su</code></pre></div><p>Now skip the sudo prefix from the above commands.</p><p>*this depends on whether or not you&#039;ve set a root password during installation. If you have, sudo is installed, but disabled for your user. (installed because other programs need it anyway). Technically, if you set a root pw, your regular user is not added to the /etc/sudoers file.</p>]]></description>
			<author><![CDATA[dummy@example.com (Dutch_Master)]]></author>
			<pubDate>Fri, 26 Feb 2021 23:40:50 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=27766#p27766</guid>
		</item>
		<item>
			<title><![CDATA[Simple Generic Read-Only File Server Using SAMBA (suitable for Kodi)]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=27763#p27763</link>
			<description><![CDATA[<p>1. Create a folder in your home directory. For this tutorial, call it Share.<br />2. Install samba: </p><div class="codebox"><pre><code>sudo apt-get install samba</code></pre></div><p>3. From the command line, navigate to /etc/samba<br />4. Move the config file out of the way: </p><div class="codebox"><pre><code>sudo mv smb.conf smb.conf.bkp</code></pre></div><p>5. Create a new, simple smb.conf, as follows:</p><div class="codebox"><pre><code>[global]
workgroup = WORKGROUP
server string = hostname
mangled names = no
path = /home/username/Share

[Share]
guest ok = yes
guest only = yes
writable = no
browsable = yes</code></pre></div><p>Note: replace username with your actual user name.<br />Note: replace hostname with your actual host name.<br />Note: [Share] appears in some clients. It is useful to name it the same as the share folder.<br />Note: The mangled names=no prevents SAMBA from rewriting filenames which contain Windows special characters, such as colons, commas, and ampersands. It is better not to use Windows special characters in filenames.</p><p>6. Enter the command </p><div class="codebox"><pre><code>testconf</code></pre></div><p> and read the results. Is everything OK?</p><p>7. Start/Restart the SAMBA server with </p><div class="codebox"><pre><code>sudo /etc/init.d/samba-ad-dc restart</code></pre></div><p>Now simply populate the Share folder with your content.</p><p>Use case: this is my setup for a Kodi media source, and it works great! Within Source, I have Movies and Albums with filenames and folders&#160; corresponding Kodi protocols.</p>]]></description>
			<author><![CDATA[dummy@example.com (nauved-rex)]]></author>
			<pubDate>Fri, 26 Feb 2021 23:15:14 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=27763#p27763</guid>
		</item>
	</channel>
</rss>
