{"id":40,"date":"2024-10-16T22:25:18","date_gmt":"2024-10-17T02:25:18","guid":{"rendered":"http:\/\/localhost:4000\/?p=40"},"modified":"2024-11-14T20:14:15","modified_gmt":"2024-11-15T01:14:15","slug":"network-storage-with-samba-on-ubuntu-server","status":"publish","type":"post","link":"https:\/\/zenteno.org\/tech-talks\/network-storage-with-samba-on-ubuntu-server\/","title":{"rendered":"Network Storage with Samba on Ubuntu Server"},"content":{"rendered":"\n<h3 class=\"wp-block-heading\"><strong>Network Storage with Samba on Your $0 Home Server<\/strong><\/h3>\n\n\n\n<p>With <strong>Samba<\/strong>, you can easily set up <strong>shared network storage<\/strong> that is accessible by all devices in your home, including <strong>Windows, macOS, and Linux systems<\/strong>. Samba is an <strong>open-source implementation of the SMB\/CIFS protocol<\/strong>, the same protocol used by <strong>Windows file sharing<\/strong>. This means your server can act as a <strong>file server<\/strong>, providing a shared drive for your home network.<\/p>\n\n\n\n<p>Here\u2019s a <strong>detailed guide<\/strong> on how to configure Samba for your home server.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Why Use Samba for Network Storage?<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Centralized file storage<\/strong>: Keep your files in one place, accessible from any device on your network.<\/li>\n\n\n\n<li><strong>Cross-platform compatibility<\/strong>: Works with Windows, macOS, Linux, and even mobile devices.<\/li>\n\n\n\n<li><strong>Automatic backups<\/strong>: Use it to store backups from multiple computers or devices.<\/li>\n\n\n\n<li><strong>Media hosting<\/strong>: Combine with Jellyfin to store and serve videos and music directly from your shared folders.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Step-by-Step Samba Setup on Your Home Server<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">1. <strong>Install Samba on Ubuntu Server<\/strong><\/h3>\n\n\n\n<p>Samba is included in the Ubuntu repositories, making installation simple.<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>SSH into your server<\/strong> and run:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>   sudo apt update\n   sudo apt install samba<\/code><\/pre>\n\n\n\n<ol start=\"2\" class=\"wp-block-list\">\n<li>After installation, <strong>check the Samba version<\/strong> to ensure it\u2019s installed correctly:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>   sudo smbstatus<\/code><\/pre>\n\n\n\n<p>If Samba is installed, this command will display the current status.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">2. <strong>Create a Shared Directory<\/strong><\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Choose a location for your shared files. For example:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>   sudo mkdir -p \/media\/myfiles<\/code><\/pre>\n\n\n\n<ol start=\"2\" class=\"wp-block-list\">\n<li>Change the <strong>ownership and permissions<\/strong> of the directory to make it accessible:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>   sudo chown $USER: \/media\/myfiles\n   sudo chmod 775 \/media\/myfiles<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>chown<\/code>: Makes the current user the owner of the directory.<\/li>\n\n\n\n<li><code>chmod 775<\/code>: Ensures the owner has <strong>read, write, and execute<\/strong> permissions.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">3. <strong>Configure Samba for Network Sharing<\/strong><\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Open the Samba configuration file<\/strong> with a text editor:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>   sudo nano \/etc\/samba\/smb.conf<\/code><\/pre>\n\n\n\n<ol start=\"2\" class=\"wp-block-list\">\n<li>Find the line:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>   map to guest = bad user<\/code><\/pre>\n\n\n\n<p>Change it to:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>   map to guest = never<\/code><\/pre>\n\n\n\n<p>This ensures users are required to authenticate with valid credentials.<\/p>\n\n\n\n<ol start=\"3\" class=\"wp-block-list\">\n<li><strong>Add a new shared folder configuration<\/strong> at the end of the file:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>   &#91;MyFiles]\n   path = \/media\/myfiles\n   browseable = yes\n   writable = yes\n   valid users = &#91;your-username]\n   read only = no\n   create mask = 0755<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>path<\/code>: The directory you created for shared storage.<\/li>\n\n\n\n<li><code>browseable<\/code>: Makes the share visible to network users.<\/li>\n\n\n\n<li><code>valid users<\/code>: List the usernames that can access the share.<\/li>\n\n\n\n<li><code>create mask<\/code>: Ensures files are created with the correct permissions.<\/li>\n<\/ul>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Save the file<\/strong> by pressing <code>Ctrl + X<\/code>, then <code>Y<\/code>, and <code>Enter<\/code>.<\/li>\n<\/ol>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">4. <strong>Create a Samba User<\/strong><\/h3>\n\n\n\n<p>To access the shared folder, you need a <strong>Samba user<\/strong> with a password.<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Create a <strong>Samba password<\/strong> for your existing user:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>   sudo smbpasswd -a $USER<\/code><\/pre>\n\n\n\n<p>You\u2019ll be prompted to enter and confirm the password.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">5. <strong>Restart the Samba Service<\/strong><\/h3>\n\n\n\n<p>To apply the changes, <strong>restart Samba<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl restart smbd<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">6. <strong>Access Your Shared Folder from Other Devices<\/strong><\/h3>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Windows<\/strong><\/h4>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Open File Explorer<\/strong> and click <strong>This PC<\/strong>.<\/li>\n\n\n\n<li>Select <strong>Map network drive<\/strong> from the toolbar.<\/li>\n\n\n\n<li>In the <strong>Folder field<\/strong>, enter the server\u2019s IP address:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>   \\\\&#91;server-ip]\\MyFiles<\/code><\/pre>\n\n\n\n<ol start=\"4\" class=\"wp-block-list\">\n<li>Check <strong>Reconnect at sign-in<\/strong> if you want it to reconnect on startup.<\/li>\n\n\n\n<li>Enter the <strong>Samba username and password<\/strong> you set earlier.<\/li>\n\n\n\n<li>The shared folder will now appear as a <strong>network drive<\/strong>.<\/li>\n<\/ol>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>macOS<\/strong><\/h4>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Open Finder<\/strong> and click <strong>Go > Connect to Server<\/strong> from the top menu.<\/li>\n\n\n\n<li>Enter:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>   smb:\/\/&#91;server-ip]\/MyFiles<\/code><\/pre>\n\n\n\n<ol start=\"3\" class=\"wp-block-list\">\n<li>Click <strong>Connect<\/strong> and enter the Samba credentials when prompted.<\/li>\n\n\n\n<li>The shared folder will mount like any other drive on your Mac.<\/li>\n<\/ol>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Linux<\/strong><\/h4>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Open a <strong>file manager<\/strong> (like Nautilus).<\/li>\n\n\n\n<li>Press <strong>Ctrl + L<\/strong> to open the location bar.<\/li>\n\n\n\n<li>Enter:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>   smb:\/\/&#91;server-ip]\/MyFiles<\/code><\/pre>\n\n\n\n<ol start=\"4\" class=\"wp-block-list\">\n<li>Click <strong>Connect<\/strong> and enter your Samba credentials.<\/li>\n<\/ol>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">7. <strong>Make the Shared Folder Auto-Mount on Reboot (Optional)<\/strong><\/h3>\n\n\n\n<p>To automatically mount the shared folder on <strong>Linux clients<\/strong>:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Open the terminal and <strong>edit the fstab file<\/strong>:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>   sudo nano \/etc\/fstab<\/code><\/pre>\n\n\n\n<ol start=\"2\" class=\"wp-block-list\">\n<li>Add the following line at the end:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>   \/\/server-ip\/MyFiles \/mnt\/myfiles cifs username=&#91;your-username],password=&#91;your-password],iocharset=utf8,vers=3.0 0 0<\/code><\/pre>\n\n\n\n<ol start=\"3\" class=\"wp-block-list\">\n<li>Create the mount point:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>   sudo mkdir -p \/mnt\/myfiles<\/code><\/pre>\n\n\n\n<ol start=\"4\" class=\"wp-block-list\">\n<li>Mount the shared folder:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>   sudo mount -a<\/code><\/pre>\n\n\n\n<p>This ensures the shared folder is mounted every time the computer reboots.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">8. <strong>Troubleshooting Tips<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Connection errors?<\/strong> Make sure the <strong>firewall<\/strong> on your server allows Samba traffic:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>  sudo ufw allow samba<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Check the Samba service status<\/strong>:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>  sudo systemctl status smbd<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Verify the shared folder<\/strong>:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>  testparm<\/code><\/pre>\n\n\n\n<p>This checks the Samba configuration for syntax errors.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Permissions issues?<\/strong> Ensure your shared folder permissions are correct:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>  sudo chmod -R 775 \/media\/myfiles<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">9. <strong>Using the Shared Folder for Backups and Media<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Backups<\/strong>: Use tools like <strong>Time Machine<\/strong> (on macOS) or <strong>Windows Backup<\/strong> to store backups in the shared folder.<\/li>\n\n\n\n<li><strong>Media Hosting<\/strong>: Store media files (movies, music, etc.) in the shared folder and use <strong>Jellyfin<\/strong> to serve them to other devices.<\/li>\n\n\n\n<li><strong>Collaborative Storage<\/strong>: Share the folder with family members, with each user having their own sub-directory.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Summary<\/strong><\/h2>\n\n\n\n<p>With Samba, your <strong>$0 Home Server<\/strong> becomes a <strong>centralized file server<\/strong> for your entire network. It works seamlessly across <strong>Windows, macOS, and Linux<\/strong> devices, allowing you to store, access, and back up files easily. This setup is perfect for <strong>network storage<\/strong>, <strong>media hosting<\/strong>, and <strong>collaborative file sharing<\/strong> without needing expensive NAS devices or cloud subscriptions.<\/p>\n\n\n\n<p>By following these steps, you now have a fully functional <strong>network drive<\/strong> that can be accessed by all devices in your home.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Network Storage with Samba on Your $0 Home Server With Samba, you can easily set up shared network storage that is accessible by all devices in your home, including Windows, macOS, and Linux systems. Samba is an open-source implementation of the SMB\/CIFS protocol, the same protocol used by Windows file sharing. This means your server [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":13,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4],"tags":[7,8,6],"class_list":["post-40","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tech","tag-samba","tag-server","tag-ubuntu"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Network Storage with Samba on Ubuntu Server - My Tech Talks with ChatGPT<\/title>\n<meta name=\"description\" content=\"With Samba, you can easily set up shared network storage that is accessible by all devices in your home.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/zenteno.org\/tech-talks\/network-storage-with-samba-on-ubuntu-server\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Network Storage with Samba on Ubuntu Server - My Tech Talks with ChatGPT\" \/>\n<meta property=\"og:description\" content=\"With Samba, you can easily set up shared network storage that is accessible by all devices in your home.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zenteno.org\/tech-talks\/network-storage-with-samba-on-ubuntu-server\/\" \/>\n<meta property=\"og:site_name\" content=\"My Tech Talks with ChatGPT\" \/>\n<meta property=\"article:published_time\" content=\"2024-10-17T02:25:18+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-15T01:14:15+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/zenteno.org\/tech-talks\/wp-content\/uploads\/2024\/10\/lukas-MU8w72PzRow-unsplash-2-scaled.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"1707\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"adminwp\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"adminwp\" \/>\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:\/\/zenteno.org\/tech-talks\/network-storage-with-samba-on-ubuntu-server\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/zenteno.org\/tech-talks\/network-storage-with-samba-on-ubuntu-server\/\"},\"author\":{\"name\":\"adminwp\",\"@id\":\"https:\/\/zenteno.org\/tech-talks\/#\/schema\/person\/b6442e8a5e39de0647f2ecf534e18580\"},\"headline\":\"Network Storage with Samba on Ubuntu Server\",\"datePublished\":\"2024-10-17T02:25:18+00:00\",\"dateModified\":\"2024-11-15T01:14:15+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/zenteno.org\/tech-talks\/network-storage-with-samba-on-ubuntu-server\/\"},\"wordCount\":722,\"publisher\":{\"@id\":\"https:\/\/zenteno.org\/tech-talks\/#\/schema\/person\/b6442e8a5e39de0647f2ecf534e18580\"},\"image\":{\"@id\":\"https:\/\/zenteno.org\/tech-talks\/network-storage-with-samba-on-ubuntu-server\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/zenteno.org\/tech-talks\/wp-content\/uploads\/2024\/10\/lukas-MU8w72PzRow-unsplash-2-scaled.jpg\",\"keywords\":[\"samba\",\"server\",\"ubuntu\"],\"articleSection\":[\"Technology\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/zenteno.org\/tech-talks\/network-storage-with-samba-on-ubuntu-server\/\",\"url\":\"https:\/\/zenteno.org\/tech-talks\/network-storage-with-samba-on-ubuntu-server\/\",\"name\":\"Network Storage with Samba on Ubuntu Server - My Tech Talks with ChatGPT\",\"isPartOf\":{\"@id\":\"https:\/\/zenteno.org\/tech-talks\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/zenteno.org\/tech-talks\/network-storage-with-samba-on-ubuntu-server\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/zenteno.org\/tech-talks\/network-storage-with-samba-on-ubuntu-server\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/zenteno.org\/tech-talks\/wp-content\/uploads\/2024\/10\/lukas-MU8w72PzRow-unsplash-2-scaled.jpg\",\"datePublished\":\"2024-10-17T02:25:18+00:00\",\"dateModified\":\"2024-11-15T01:14:15+00:00\",\"description\":\"With Samba, you can easily set up shared network storage that is accessible by all devices in your home.\",\"breadcrumb\":{\"@id\":\"https:\/\/zenteno.org\/tech-talks\/network-storage-with-samba-on-ubuntu-server\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/zenteno.org\/tech-talks\/network-storage-with-samba-on-ubuntu-server\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/zenteno.org\/tech-talks\/network-storage-with-samba-on-ubuntu-server\/#primaryimage\",\"url\":\"https:\/\/zenteno.org\/tech-talks\/wp-content\/uploads\/2024\/10\/lukas-MU8w72PzRow-unsplash-2-scaled.jpg\",\"contentUrl\":\"https:\/\/zenteno.org\/tech-talks\/wp-content\/uploads\/2024\/10\/lukas-MU8w72PzRow-unsplash-2-scaled.jpg\",\"width\":2560,\"height\":1707},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/zenteno.org\/tech-talks\/network-storage-with-samba-on-ubuntu-server\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/zenteno.org\/tech-talks\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Network Storage with Samba on Ubuntu Server\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/zenteno.org\/tech-talks\/#website\",\"url\":\"https:\/\/zenteno.org\/tech-talks\/\",\"name\":\"My Tech Talks with ChatGPT\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/zenteno.org\/tech-talks\/#\/schema\/person\/b6442e8a5e39de0647f2ecf534e18580\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/zenteno.org\/tech-talks\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/zenteno.org\/tech-talks\/#\/schema\/person\/b6442e8a5e39de0647f2ecf534e18580\",\"name\":\"adminwp\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/zenteno.org\/tech-talks\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/zenteno.org\/tech-talks\/wp-content\/uploads\/2024\/10\/IMG_1739.jpg\",\"contentUrl\":\"https:\/\/zenteno.org\/tech-talks\/wp-content\/uploads\/2024\/10\/IMG_1739.jpg\",\"width\":512,\"height\":512,\"caption\":\"adminwp\"},\"logo\":{\"@id\":\"https:\/\/zenteno.org\/tech-talks\/#\/schema\/person\/image\/\"},\"sameAs\":[\"http:\/\/localhost:4000\"],\"url\":\"https:\/\/zenteno.org\/tech-talks\/author\/adminwp\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Network Storage with Samba on Ubuntu Server - My Tech Talks with ChatGPT","description":"With Samba, you can easily set up shared network storage that is accessible by all devices in your home.","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:\/\/zenteno.org\/tech-talks\/network-storage-with-samba-on-ubuntu-server\/","og_locale":"en_US","og_type":"article","og_title":"Network Storage with Samba on Ubuntu Server - My Tech Talks with ChatGPT","og_description":"With Samba, you can easily set up shared network storage that is accessible by all devices in your home.","og_url":"https:\/\/zenteno.org\/tech-talks\/network-storage-with-samba-on-ubuntu-server\/","og_site_name":"My Tech Talks with ChatGPT","article_published_time":"2024-10-17T02:25:18+00:00","article_modified_time":"2024-11-15T01:14:15+00:00","og_image":[{"width":2560,"height":1707,"url":"https:\/\/zenteno.org\/tech-talks\/wp-content\/uploads\/2024\/10\/lukas-MU8w72PzRow-unsplash-2-scaled.jpg","type":"image\/jpeg"}],"author":"adminwp","twitter_card":"summary_large_image","twitter_misc":{"Written by":"adminwp","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zenteno.org\/tech-talks\/network-storage-with-samba-on-ubuntu-server\/#article","isPartOf":{"@id":"https:\/\/zenteno.org\/tech-talks\/network-storage-with-samba-on-ubuntu-server\/"},"author":{"name":"adminwp","@id":"https:\/\/zenteno.org\/tech-talks\/#\/schema\/person\/b6442e8a5e39de0647f2ecf534e18580"},"headline":"Network Storage with Samba on Ubuntu Server","datePublished":"2024-10-17T02:25:18+00:00","dateModified":"2024-11-15T01:14:15+00:00","mainEntityOfPage":{"@id":"https:\/\/zenteno.org\/tech-talks\/network-storage-with-samba-on-ubuntu-server\/"},"wordCount":722,"publisher":{"@id":"https:\/\/zenteno.org\/tech-talks\/#\/schema\/person\/b6442e8a5e39de0647f2ecf534e18580"},"image":{"@id":"https:\/\/zenteno.org\/tech-talks\/network-storage-with-samba-on-ubuntu-server\/#primaryimage"},"thumbnailUrl":"https:\/\/zenteno.org\/tech-talks\/wp-content\/uploads\/2024\/10\/lukas-MU8w72PzRow-unsplash-2-scaled.jpg","keywords":["samba","server","ubuntu"],"articleSection":["Technology"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/zenteno.org\/tech-talks\/network-storage-with-samba-on-ubuntu-server\/","url":"https:\/\/zenteno.org\/tech-talks\/network-storage-with-samba-on-ubuntu-server\/","name":"Network Storage with Samba on Ubuntu Server - My Tech Talks with ChatGPT","isPartOf":{"@id":"https:\/\/zenteno.org\/tech-talks\/#website"},"primaryImageOfPage":{"@id":"https:\/\/zenteno.org\/tech-talks\/network-storage-with-samba-on-ubuntu-server\/#primaryimage"},"image":{"@id":"https:\/\/zenteno.org\/tech-talks\/network-storage-with-samba-on-ubuntu-server\/#primaryimage"},"thumbnailUrl":"https:\/\/zenteno.org\/tech-talks\/wp-content\/uploads\/2024\/10\/lukas-MU8w72PzRow-unsplash-2-scaled.jpg","datePublished":"2024-10-17T02:25:18+00:00","dateModified":"2024-11-15T01:14:15+00:00","description":"With Samba, you can easily set up shared network storage that is accessible by all devices in your home.","breadcrumb":{"@id":"https:\/\/zenteno.org\/tech-talks\/network-storage-with-samba-on-ubuntu-server\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zenteno.org\/tech-talks\/network-storage-with-samba-on-ubuntu-server\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/zenteno.org\/tech-talks\/network-storage-with-samba-on-ubuntu-server\/#primaryimage","url":"https:\/\/zenteno.org\/tech-talks\/wp-content\/uploads\/2024\/10\/lukas-MU8w72PzRow-unsplash-2-scaled.jpg","contentUrl":"https:\/\/zenteno.org\/tech-talks\/wp-content\/uploads\/2024\/10\/lukas-MU8w72PzRow-unsplash-2-scaled.jpg","width":2560,"height":1707},{"@type":"BreadcrumbList","@id":"https:\/\/zenteno.org\/tech-talks\/network-storage-with-samba-on-ubuntu-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zenteno.org\/tech-talks\/"},{"@type":"ListItem","position":2,"name":"Network Storage with Samba on Ubuntu Server"}]},{"@type":"WebSite","@id":"https:\/\/zenteno.org\/tech-talks\/#website","url":"https:\/\/zenteno.org\/tech-talks\/","name":"My Tech Talks with ChatGPT","description":"","publisher":{"@id":"https:\/\/zenteno.org\/tech-talks\/#\/schema\/person\/b6442e8a5e39de0647f2ecf534e18580"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/zenteno.org\/tech-talks\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/zenteno.org\/tech-talks\/#\/schema\/person\/b6442e8a5e39de0647f2ecf534e18580","name":"adminwp","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/zenteno.org\/tech-talks\/#\/schema\/person\/image\/","url":"https:\/\/zenteno.org\/tech-talks\/wp-content\/uploads\/2024\/10\/IMG_1739.jpg","contentUrl":"https:\/\/zenteno.org\/tech-talks\/wp-content\/uploads\/2024\/10\/IMG_1739.jpg","width":512,"height":512,"caption":"adminwp"},"logo":{"@id":"https:\/\/zenteno.org\/tech-talks\/#\/schema\/person\/image\/"},"sameAs":["http:\/\/localhost:4000"],"url":"https:\/\/zenteno.org\/tech-talks\/author\/adminwp\/"}]}},"_links":{"self":[{"href":"https:\/\/zenteno.org\/tech-talks\/wp-json\/wp\/v2\/posts\/40","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/zenteno.org\/tech-talks\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/zenteno.org\/tech-talks\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/zenteno.org\/tech-talks\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/zenteno.org\/tech-talks\/wp-json\/wp\/v2\/comments?post=40"}],"version-history":[{"count":1,"href":"https:\/\/zenteno.org\/tech-talks\/wp-json\/wp\/v2\/posts\/40\/revisions"}],"predecessor-version":[{"id":41,"href":"https:\/\/zenteno.org\/tech-talks\/wp-json\/wp\/v2\/posts\/40\/revisions\/41"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/zenteno.org\/tech-talks\/wp-json\/wp\/v2\/media\/13"}],"wp:attachment":[{"href":"https:\/\/zenteno.org\/tech-talks\/wp-json\/wp\/v2\/media?parent=40"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zenteno.org\/tech-talks\/wp-json\/wp\/v2\/categories?post=40"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zenteno.org\/tech-talks\/wp-json\/wp\/v2\/tags?post=40"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}