{"id":2220,"date":"2024-09-30T12:30:00","date_gmt":"2024-09-30T17:30:00","guid":{"rendered":"https:\/\/www.linuxcloudvps.com\/blog\/?p=2220"},"modified":"2024-08-27T09:35:56","modified_gmt":"2024-08-27T14:35:56","slug":"ubuntu-samba","status":"publish","type":"post","link":"https:\/\/www.linuxcloudvps.com\/blog\/ubuntu-samba\/","title":{"rendered":"Ubuntu Samba: How to install and configure it?"},"content":{"rendered":"\n<p>Samba is an open-source suite that offers fast file sharing using the SMF\/CIFS protocol between different Operating Systems, such as Linux, Windows, and others. The Samba name comes from SMB (Server Message Block), a proprietary protocol used by the Microsoft Windows network file system. In this tutorial, we will show you how to install and configure Ubuntu Samba so you can share files over the network. Let&#8217;s begin.<\/p>\n\n\n\n<!--more-->\n\n\n\n<h2 class=\"wp-block-heading\">Step 1: Update Ubuntu Packages<\/h2>\n\n\n\n<p>Before you start the installation on your <a href=\"https:\/\/www.linuxcloudvps.com\/cloud-vps.html\" target=\"_blank\" rel=\"noreferrer noopener\">Samba VPS server<\/a>, update the packages first. You can do this with the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># apt update &amp;&amp; sudo apt upgrade<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2: Install Samba<\/h2>\n\n\n\n<p>You can install Samba using the apt package manager with the command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># apt install samba<\/code><\/pre>\n\n\n\n<p>To check if Samba was successfully installed and the Samba version you can use run:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># apt install samba<\/code><\/pre>\n\n\n\n<p>This will show the Samba version, which at the time of writing is 4.19.5<\/p>\n\n\n\n<p>You can also check if Samba is running with the systemctl command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># systemctl status smbd<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3. The Samba config file<\/h2>\n\n\n\n<p>You will need to create a shared directory, which will be used for file sharing.<\/p>\n\n\n\n<p>This can be done simply using the command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># mkdir -p \/home\/shared<\/code><\/pre>\n\n\n\n<p>The shared directory will be created in the \/home directory now.<\/p>\n\n\n\n<p>To configure the Sharing service, you should modify the settings in <strong>\/etc\/samba\/smb.configure<\/strong><\/p>\n\n\n\n<p>In this file, you will need to set the following parameters:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>workgroup = WORKGROUP\n\nserver string = samba-sharing<\/code><\/pre>\n\n\n\n<p>You can leave the work = WORKGROUP default option, and the server string will be the description field for the Samba server.<\/p>\n\n\n\n<p>Once you have configured these parameters, you must configure the networking parameters.<\/p>\n\n\n\n<p>First, you will need to check the interfaces on your server:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># ip link<\/code><\/pre>\n\n\n\n<p>This will show all the network interfaces available on your server. Our system&#8217;s interfaces are <strong>lo<\/strong> (loopback interface) and <strong>enp0s3 <\/strong>network interface.<\/p>\n\n\n\n<p>You can now set them with:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>interfaces = lo enp0s3<\/code><\/pre>\n\n\n\n<p>Also, don&#8217;t forget to enable the bind interfaces and usershare allowing the guests option.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>bind interfaces only = yes\nusershare allow guests = yes<\/code><\/pre>\n\n\n\n<p>Then you can save the file and test the samba configuration file for syntax errors with the:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># testparm\n\nLoad smb config files from \/etc\/samba\/smb.conf\nLoaded services file OK.\n\u2026<\/code><\/pre>\n\n\n\n<p>If you receive the output<strong> Load services file OK<\/strong> from the <strong>testparm <\/strong>utility, then no syntax errors were detected in the Samba configuration file.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 4. Samba user and sharing directory<\/h2>\n\n\n\n<p>To create a <strong>Samba <\/strong>user, a system user should have the same username. You can go ahead and create the Linux system user first with:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># adduser john<\/code><\/pre>\n\n\n\n<p>You will be prompted to enter this user&#8217;s password and other fields. Once the user is created you now you can create the Samba user John with:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># smbpasswd -a john<\/code><\/pre>\n\n\n\n<p>You can create as many users as you need with the same command smbpasswd -a john<\/p>\n\n\n\n<p>Now, you can create the Samba share directory or use an existing directory if you already have one. For this example, we will use the Samba directory in \/home<\/p>\n\n\n\n<p>First, let&#8217;s create the directory:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># mkdir -p \/home\/samba<\/code><\/pre>\n\n\n\n<p>Then, you will need to change the permissions to this directory. You can do this with the command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># chown -R nobody:sambashare \/home\/samba<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 5. Configuring the Ubuntu Samba server<\/h2>\n\n\n\n<p>Now that you have the samba share directory and the samba users created, you will add your configuration block in the \/etc\/samba\/smb.conf<\/p>\n\n\n\n<p>You can navigate to the end of the file and add the following settings.<\/p>\n\n\n\n<p><br>We have added the valid user = @john so only the user john will be able to connect to the samba sharing directory, if you remove this line and enable the guest ok option, than any user on this network will be able to access the Samba Network Sharing directory.<br>Now save the file and once again perform the testparm action to test for syntax errors.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&#91;sharing]\ncomment = Samba share directory\npath = \/home\/samba\nread only = no\nwritable = yes\nbrowseable = yes\nguest ok = no\nvalid user = @john<\/code><\/pre>\n\n\n\n<p>If there are no syntax errors in the configuration, go ahead and restart the Samba service.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># systemctl restart smbd<\/code><\/pre>\n\n\n\n<p>Now, to test the Samba share configuration, you can try to connect from a Linux or Windows Machine.<\/p>\n\n\n\n<p>If you are using Windows as your client machine you can open \u201cThis PC\u201d then click on the Link bar on the top and enter the,<strong> IP address <\/strong>of your Samba Sharing Server in this format <strong>\\\\192.168.x.x<\/strong><br>If you followed the instructions and the Samba server is configured properly you should be able to see the \u201c<strong>sharing<\/strong>\u201d directory that you previously configured.<\/p>\n\n\n\n<p>Now, if you left the option valid users = @john, you will be asked to log in as a user, and only the user john will be allowed to access the network sharing directory. Once you are prompted to log in, enter the Samba username and password that you previously added. In this case, it was the user john, and you will access the shared directory on your Linux server from a Windows machine.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Congratulations: You&#8217;ve installed Ubuntu Samba<\/h2>\n\n\n\n<p>That\u2019s it. You successfully installed and configured the Ubuntu Samba server on your Linux machine.<\/p>\n\n\n\n<p>PS. If you liked this post, please share it with your friends or leave a comment below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Samba is an open-source suite that offers fast file sharing using the SMF\/CIFS protocol between different Operating Systems, such as Linux, Windows, and others. The Samba name comes from SMB (Server Message Block), a proprietary protocol used by the Microsoft Windows network file system. In this tutorial, we will show you how to install and &#8230; <a title=\"Ubuntu Samba: How to install and configure it?\" class=\"read-more\" href=\"https:\/\/www.linuxcloudvps.com\/blog\/ubuntu-samba\/\" aria-label=\"More on Ubuntu Samba: How to install and configure it?\">Read more<\/a><\/p>\n","protected":false},"author":2,"featured_media":2227,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[208],"tags":[320,168,318,47,319,236],"class_list":["post-2220","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ubuntu","tag-how-to-configure","tag-how-to-install","tag-samba","tag-ubuntu","tag-ubuntu-samba","tag-what-is"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Ubuntu Samba: How to install and configure it? | LinuxCloudVPS Blog<\/title>\n<meta name=\"description\" content=\"What is Ubuntu Samba? Learn everything you need to know including how to install and configure it, using our latest step-by-step guide.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.linuxcloudvps.com\/blog\/ubuntu-samba\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Ubuntu Samba: How to install and configure it? | LinuxCloudVPS Blog\" \/>\n<meta property=\"og:description\" content=\"What is Ubuntu Samba? Learn everything you need to know including how to install and configure it, using our latest step-by-step guide.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/ubuntu-samba\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxCloudVPS Blog\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/www.facebook.com\/LinuxCloudVPS\" \/>\n<meta property=\"article:published_time\" content=\"2024-09-30T17:30:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2024\/09\/how-to-install-and-configure-ubuntu-samba.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"742\" \/>\n\t<meta property=\"og:image:height\" content=\"410\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@LinuxCloudVPS\" \/>\n<meta name=\"twitter:site\" content=\"@LinuxCloudVPS\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/ubuntu-samba\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/ubuntu-samba\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\"},\"headline\":\"Ubuntu Samba: How to install and configure it?\",\"datePublished\":\"2024-09-30T17:30:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/ubuntu-samba\\\/\"},\"wordCount\":801,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/ubuntu-samba\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/how-to-install-and-configure-ubuntu-samba.webp\",\"keywords\":[\"how to configure\",\"how to install\",\"samba\",\"ubuntu\",\"ubuntu samba\",\"what is\"],\"articleSection\":[\"Ubuntu\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/ubuntu-samba\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/ubuntu-samba\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/ubuntu-samba\\\/\",\"name\":\"Ubuntu Samba: How to install and configure it? | LinuxCloudVPS Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/ubuntu-samba\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/ubuntu-samba\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/how-to-install-and-configure-ubuntu-samba.webp\",\"datePublished\":\"2024-09-30T17:30:00+00:00\",\"description\":\"What is Ubuntu Samba? Learn everything you need to know including how to install and configure it, using our latest step-by-step guide.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/ubuntu-samba\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/ubuntu-samba\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/ubuntu-samba\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/how-to-install-and-configure-ubuntu-samba.webp\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/how-to-install-and-configure-ubuntu-samba.webp\",\"width\":742,\"height\":410,\"caption\":\"How to Install and Configure Ubuntu Samba?\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/ubuntu-samba\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Ubuntu Samba: How to install and configure it?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\",\"name\":\"LinuxCloudVPS\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\",\"name\":\"LinuxCloudVPS\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/logo.png\",\"width\":217,\"height\":25,\"caption\":\"LinuxCloudVPS\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"http:\\\/\\\/www.facebook.com\\\/LinuxCloudVPS\",\"https:\\\/\\\/x.com\\\/LinuxCloudVPS\",\"http:\\\/\\\/www.linkedin.com\\\/company\\\/linuxcloudvps-com\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\\\/\\\/www.linuxcloudvps.com\\\/\"],\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/author\\\/r0s3admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Ubuntu Samba: How to install and configure it? | LinuxCloudVPS Blog","description":"What is Ubuntu Samba? Learn everything you need to know including how to install and configure it, using our latest step-by-step guide.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.linuxcloudvps.com\/blog\/ubuntu-samba\/","og_locale":"en_US","og_type":"article","og_title":"Ubuntu Samba: How to install and configure it? | LinuxCloudVPS Blog","og_description":"What is Ubuntu Samba? Learn everything you need to know including how to install and configure it, using our latest step-by-step guide.","og_url":"https:\/\/www.linuxcloudvps.com\/blog\/ubuntu-samba\/","og_site_name":"LinuxCloudVPS Blog","article_publisher":"http:\/\/www.facebook.com\/LinuxCloudVPS","article_published_time":"2024-09-30T17:30:00+00:00","og_image":[{"width":742,"height":410,"url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2024\/09\/how-to-install-and-configure-ubuntu-samba.webp","type":"image\/webp"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@LinuxCloudVPS","twitter_site":"@LinuxCloudVPS","twitter_misc":{"Written by":"admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.linuxcloudvps.com\/blog\/ubuntu-samba\/#article","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/ubuntu-samba\/"},"author":{"name":"admin","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a"},"headline":"Ubuntu Samba: How to install and configure it?","datePublished":"2024-09-30T17:30:00+00:00","mainEntityOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/ubuntu-samba\/"},"wordCount":801,"commentCount":0,"publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/ubuntu-samba\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2024\/09\/how-to-install-and-configure-ubuntu-samba.webp","keywords":["how to configure","how to install","samba","ubuntu","ubuntu samba","what is"],"articleSection":["Ubuntu"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.linuxcloudvps.com\/blog\/ubuntu-samba\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.linuxcloudvps.com\/blog\/ubuntu-samba\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/ubuntu-samba\/","name":"Ubuntu Samba: How to install and configure it? | LinuxCloudVPS Blog","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/ubuntu-samba\/#primaryimage"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/ubuntu-samba\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2024\/09\/how-to-install-and-configure-ubuntu-samba.webp","datePublished":"2024-09-30T17:30:00+00:00","description":"What is Ubuntu Samba? Learn everything you need to know including how to install and configure it, using our latest step-by-step guide.","breadcrumb":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/ubuntu-samba\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.linuxcloudvps.com\/blog\/ubuntu-samba\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/ubuntu-samba\/#primaryimage","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2024\/09\/how-to-install-and-configure-ubuntu-samba.webp","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2024\/09\/how-to-install-and-configure-ubuntu-samba.webp","width":742,"height":410,"caption":"How to Install and Configure Ubuntu Samba?"},{"@type":"BreadcrumbList","@id":"https:\/\/www.linuxcloudvps.com\/blog\/ubuntu-samba\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.linuxcloudvps.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Ubuntu Samba: How to install and configure it?"}]},{"@type":"WebSite","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website","url":"https:\/\/www.linuxcloudvps.com\/blog\/","name":"LinuxCloudVPS","description":"","publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.linuxcloudvps.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization","name":"LinuxCloudVPS","url":"https:\/\/www.linuxcloudvps.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","width":217,"height":25,"caption":"LinuxCloudVPS"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["http:\/\/www.facebook.com\/LinuxCloudVPS","https:\/\/x.com\/LinuxCloudVPS","http:\/\/www.linkedin.com\/company\/linuxcloudvps-com"]},{"@type":"Person","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","caption":"admin"},"sameAs":["http:\/\/www.linuxcloudvps.com\/"],"url":"https:\/\/www.linuxcloudvps.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/2220","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/comments?post=2220"}],"version-history":[{"count":2,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/2220\/revisions"}],"predecessor-version":[{"id":2222,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/2220\/revisions\/2222"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media\/2227"}],"wp:attachment":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media?parent=2220"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/categories?post=2220"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/tags?post=2220"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}