{"id":10,"date":"2024-10-16T23:16:00","date_gmt":"2024-10-17T03:16:00","guid":{"rendered":"http:\/\/localhost:4000\/?p=10"},"modified":"2024-11-15T00:05:35","modified_gmt":"2024-11-15T05:05:35","slug":"ubuntu-server-samba","status":"publish","type":"post","link":"https:\/\/zenteno.org\/tech-talks\/ubuntu-server-samba\/","title":{"rendered":"How install Samba on Ubuntu Server"},"content":{"rendered":"\n<p>Using <strong>Samba<\/strong> on your <strong>Samsung NC110 running Ubuntu Server 24.04.1<\/strong> is a lightweight and manageable solution that should not have a significant impact on your server, especially if it\u2019s being used primarily for <strong>network storage and media sharing<\/strong>.<\/p>\n\n\n\n<p>Here\u2019s a detailed <strong>assessment of potential impact<\/strong> along with ways to optimize your server\u2019s performance when using Samba.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Performance and Resource Impact<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">1. <strong>CPU and Memory Usage<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Samba<\/strong> is generally lightweight and does not demand high CPU or memory resources for basic file-sharing tasks.<\/li>\n\n\n\n<li>Your <strong>Samsung NC110<\/strong> has a limited processor (likely an <strong>Intel Atom<\/strong>) and 2GB to 4GB of RAM, so you should:<\/li>\n\n\n\n<li><strong>Monitor memory usage<\/strong> if you are running <strong>other services<\/strong> like Jellyfin, WireGuard, or media transcoding.<\/li>\n\n\n\n<li>Samba\u2019s memory usage increases slightly with more concurrent connections or large file transfers, but it\u2019s typically manageable.<\/li>\n<\/ul>\n\n\n\n<p><strong>Optimization Tip:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Use <strong>RAM-efficient configurations<\/strong> by disabling unnecessary Samba features (like printers) in the config file.<\/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\">2. <strong>Network Bandwidth Usage<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Since Samba will transfer files over your network, expect some bandwidth usage spikes during <strong>large file uploads or downloads<\/strong>.<\/li>\n\n\n\n<li>However, as long as your server is connected to <strong>Ethernet<\/strong> (recommended for Samba), the impact on network speed should be minimal.<\/li>\n<\/ul>\n\n\n\n<p><strong>Optimization Tip:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Limit Samba transfer speeds by setting <strong>rate limits<\/strong> if needed, to avoid bandwidth hogging:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>  socket options = SO_RCVBUF=65536 SO_SNDBUF=65536<\/code><\/pre>\n\n\n\n<p>This can be added to <code>\/etc\/samba\/smb.conf<\/code>.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">3. <strong>Storage Impact<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The main impact of Samba will come from <strong>storage usage<\/strong>, as files shared and transferred to the shared directory will take up space on your <strong>NC110<\/strong>.<\/li>\n\n\n\n<li>If you have limited disk space, keep an eye on available storage with:<br><code>bash df -h<\/code><\/li>\n\n\n\n<li>You can also <strong>schedule cleanup tasks<\/strong> to ensure disk space remains available.<\/li>\n<\/ul>\n\n\n\n<p><strong>Optimization Tip:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Use <strong>log rotation<\/strong> to prevent Samba logs from taking up disk space:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>  sudo nano \/etc\/logrotate.d\/samba<\/code><\/pre>\n\n\n\n<p>Example config:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>  \/var\/log\/samba\/*.log {\n      daily\n      rotate 7\n      compress\n      delaycompress\n      missingok\n      notifempty\n  }<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">4. <strong>Running Multiple Services Simultaneously<\/strong><\/h3>\n\n\n\n<p>If your <strong>NC110<\/strong> is also running other services (like <strong>Jellyfin<\/strong> or <strong>WireGuard<\/strong>), there might be <strong>resource competition<\/strong> since the <strong>Atom CPU<\/strong> and memory are limited.<\/p>\n\n\n\n<p><strong>Optimization Tips:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Monitor the system load<\/strong> using:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>  top<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Reduce Samba\u2019s priority<\/strong> to ensure it doesn\u2019t hog system resources:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>  sudo nice -n 10 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\">5. <strong>Security Considerations<\/strong><\/h3>\n\n\n\n<p>Using Samba to share files makes your <strong>home network accessible<\/strong>, so it\u2019s important to <strong>secure the service<\/strong> to prevent unauthorized access.<\/p>\n\n\n\n<p><strong>Best Practices for Security:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Restrict access<\/strong> to Samba shares by IP address in <code>\/etc\/samba\/smb.conf<\/code>:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>  hosts allow = 192.168.1.0\/24<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Use strong passwords<\/strong> for Samba users and require authentication:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>  sudo smbpasswd -a &#91;your-username]<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Firewall Configuration<\/strong>: Allow Samba through the firewall but limit it to internal networks:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>  sudo ufw allow from 192.168.1.0\/24 to any port 137,138 proto udp\n  sudo ufw allow from 192.168.1.0\/24 to any port 139,445 proto tcp<\/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>Monitoring Samba&#8217;s Performance on NC110<\/strong><\/h3>\n\n\n\n<p>To ensure Samba is not causing performance bottlenecks:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Use <strong>system monitoring tools<\/strong>:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>  htop\n  iotop<\/code><\/pre>\n\n\n\n<p>These will show you <strong>CPU, memory, and disk I\/O usage<\/strong> to spot any issues caused by Samba.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Check Samba logs for errors or performance issues:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>  sudo tail -f \/var\/log\/samba\/log.smbd<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Conclusion: Will Samba Impact Your NC110 Server?<\/strong><\/h2>\n\n\n\n<p>Given your <strong>Samsung NC110\u2019s limited hardware<\/strong>, <strong>Samba<\/strong> should run fine for <strong>light file-sharing tasks<\/strong>. However:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>If you plan on <strong>serving large files<\/strong> or <strong>concurrent users<\/strong>, Samba might affect performance.<\/li>\n\n\n\n<li>If your NC110 is already running services like <strong>Jellyfin<\/strong> or <strong>WireGuard<\/strong>, keep an eye on system resources to avoid <strong>slowdowns<\/strong>.<\/li>\n\n\n\n<li>With <strong>proper optimizations<\/strong> (like reduced logging, memory limits, and firewall rules), Samba can operate efficiently without negatively impacting your server.<\/li>\n<\/ul>\n\n\n\n<p>In summary, <strong>Samba is a good fit<\/strong> for your NC110 server as long as:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Concurrent usage is kept low<\/strong>.<\/li>\n\n\n\n<li><strong>Ethernet<\/strong> is used for reliable transfers.<\/li>\n\n\n\n<li>You <strong>monitor the system resources<\/strong> periodically to ensure smooth operation.<\/li>\n<\/ol>\n\n\n\n<h1 class=\"wp-block-heading\">UFW<\/h1>\n\n\n\n<p>Since your <strong>Samsung NC110 server<\/strong> already has <strong>UFW (Uncomplicated Firewall)<\/strong> installed, let\u2019s walk through the <strong>proper firewall configuration<\/strong> for <strong>Samba<\/strong>. This will ensure your server is secure while allowing only <strong>internal devices<\/strong> on your network to access your shared files.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>How to Configure UFW for Samba on Your NC110<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">1. <strong>Understand Samba Ports<\/strong><\/h3>\n\n\n\n<p>For Samba to work, several <strong>network ports<\/strong> must be opened. Here\u2019s a quick overview of the required ports:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>137\/UDP<\/strong>: NetBIOS Name Service<\/li>\n\n\n\n<li><strong>138\/UDP<\/strong>: NetBIOS Datagram Service<\/li>\n\n\n\n<li><strong>139\/TCP<\/strong>: NetBIOS Session Service<\/li>\n\n\n\n<li><strong>445\/TCP<\/strong>: SMB over TCP (used for file sharing)<\/li>\n<\/ul>\n\n\n\n<p>You need to <strong>allow these ports<\/strong> in UFW, but <strong>only for trusted devices on your home network<\/strong> to ensure security.<\/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>Check Your Local Network IP Range<\/strong><\/h3>\n\n\n\n<p>Before configuring UFW, verify the <strong>IP address range<\/strong> of your home network. Typically, routers assign addresses in the range:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>192.168.1.0\/24<\/strong> (common)<\/li>\n\n\n\n<li><strong>192.168.0.0\/24<\/strong> (alternative)<\/li>\n<\/ul>\n\n\n\n<p>You can check your NC110\u2019s IP and network with:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ip a<\/code><\/pre>\n\n\n\n<p>Look for your Ethernet or Wi-Fi interface to confirm the <strong>IP range<\/strong> (e.g., <code>192.168.1.x<\/code>).<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">3. <strong>Allow Samba through UFW for Your Local Network<\/strong><\/h3>\n\n\n\n<p>Use the following UFW commands to allow <strong>Samba traffic only for devices on your local network<\/strong>. Replace <code>192.168.1.0\/24<\/code> with your actual network range if it differs.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># Allow Samba UDP traffic on ports 137 and 138\nsudo ufw allow from 192.168.1.0\/24 to any port 137,138 proto udp\n\n# Allow Samba TCP traffic on ports 139 and 445\nsudo ufw allow from 192.168.1.0\/24 to any port 139,445 proto tcp<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">4. <strong>Enable and Check UFW Status<\/strong><\/h3>\n\n\n\n<p>After adding the rules, <strong>reload and enable UFW<\/strong> to apply the changes:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo ufw reload\nsudo ufw enable<\/code><\/pre>\n\n\n\n<p>Then, verify that the <strong>Samba rules<\/strong> are active:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo ufw status verbose<\/code><\/pre>\n\n\n\n<p>You should see entries like this:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>To                         Action      From\n--                         ------      ----\n137,138\/udp                ALLOW       192.168.1.0\/24\n139,445\/tcp                ALLOW       192.168.1.0\/24<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">5. <strong>Optional: Block Samba from the Internet<\/strong><\/h3>\n\n\n\n<p>To <strong>block external access<\/strong>, ensure UFW <strong>denies all incoming traffic by default<\/strong>, which is good practice.<\/p>\n\n\n\n<p>Check your <strong>default policies<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo ufw status verbose<\/code><\/pre>\n\n\n\n<p>If the output shows:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Default: deny (incoming), allow (outgoing)<\/code><\/pre>\n\n\n\n<p>You&#8217;re all set. If not, update it with:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo ufw default deny incoming\nsudo ufw default allow outgoing<\/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>Testing Samba Access from Another Device<\/strong><\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Try accessing your Samba share from a <strong>Windows or macOS machine<\/strong> on the same network.<\/li>\n<\/ol>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Windows<\/strong>:<br>Open File Explorer and enter: <code>\\\\[NC110-server-IP]\\MyFiles<\/code><\/li>\n\n\n\n<li><strong>macOS<\/strong>:<br>In Finder, go to <strong>Go > Connect to Server<\/strong> and enter:<br><code>smb:\/\/[NC110-server-IP]\/MyFiles<\/code><\/li>\n<\/ul>\n\n\n\n<ol class=\"wp-block-list\">\n<li>If successful, the shared folder will open. If not, review the UFW rules and ensure Samba services are running:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>   sudo systemctl status smbd nmbd<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">7. <strong>Troubleshooting Tips<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>UFW not blocking external access properly?<\/strong> Double-check that no <strong>&#8220;Allow Anywhere&#8221;<\/strong> rules exist:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>  sudo ufw status | grep \"Anywhere\"<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Need to remove a specific rule?<\/strong><br>Use:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>  sudo ufw delete allow from 192.168.1.0\/24 to any port 137,138 proto udp<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Conclusion<\/strong><\/h2>\n\n\n\n<p>Using <strong>UFW<\/strong> to control <strong>Samba access<\/strong> ensures that only <strong>trusted devices on your local network<\/strong> can connect to your shared folders. The <strong>security provided by UFW<\/strong> is crucial when running any service on a home server, especially Samba, as it could otherwise expose your files to the internet. With this setup:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Your <strong>network shares are secure and accessible<\/strong> only to internal devices.<\/li>\n\n\n\n<li><strong>Unauthorized external access is blocked<\/strong>.<\/li>\n\n\n\n<li>You maintain <strong>control<\/strong> over your <strong>NC110\u2019s resources<\/strong>.<\/li>\n<\/ul>\n\n\n\n<p>Now you can safely enjoy Samba network storage on your <strong>$0 Home Server<\/strong>, knowing that your firewall is properly configured!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Using Samba on your Samsung NC110 running Ubuntu Server 24.04.1 is a lightweight and manageable solution that should not have a significant impact on your server, especially if it\u2019s being used primarily for network storage and media sharing. Here\u2019s a detailed assessment of potential impact along with ways to optimize your server\u2019s performance when using [&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":[5,7,8,6],"class_list":["post-10","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tech","tag-nc110","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>How install Samba on Ubuntu Server - My Tech Talks with ChatGPT<\/title>\n<meta name=\"description\" content=\"Using Samba on old tech running Ubuntu Server 24.04.1 is a lightweight and manageable solution that should not significantly impact your server.\" \/>\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\/ubuntu-server-samba\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How install Samba on Ubuntu Server - My Tech Talks with ChatGPT\" \/>\n<meta property=\"og:description\" content=\"Using Samba on old tech running Ubuntu Server 24.04.1 is a lightweight and manageable solution that should not significantly impact your server.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zenteno.org\/tech-talks\/ubuntu-server-samba\/\" \/>\n<meta property=\"og:site_name\" content=\"My Tech Talks with ChatGPT\" \/>\n<meta property=\"article:published_time\" content=\"2024-10-17T03:16:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-15T05:05:35+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=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/zenteno.org\/tech-talks\/ubuntu-server-samba\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/zenteno.org\/tech-talks\/ubuntu-server-samba\/\"},\"author\":{\"name\":\"adminwp\",\"@id\":\"https:\/\/zenteno.org\/tech-talks\/#\/schema\/person\/b6442e8a5e39de0647f2ecf534e18580\"},\"headline\":\"How install Samba on Ubuntu Server\",\"datePublished\":\"2024-10-17T03:16:00+00:00\",\"dateModified\":\"2024-11-15T05:05:35+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/zenteno.org\/tech-talks\/ubuntu-server-samba\/\"},\"wordCount\":996,\"publisher\":{\"@id\":\"https:\/\/zenteno.org\/tech-talks\/#\/schema\/person\/b6442e8a5e39de0647f2ecf534e18580\"},\"image\":{\"@id\":\"https:\/\/zenteno.org\/tech-talks\/ubuntu-server-samba\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/zenteno.org\/tech-talks\/wp-content\/uploads\/2024\/10\/lukas-MU8w72PzRow-unsplash-2-scaled.jpg\",\"keywords\":[\"nc110\",\"samba\",\"server\",\"ubuntu\"],\"articleSection\":[\"Technology\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/zenteno.org\/tech-talks\/ubuntu-server-samba\/\",\"url\":\"https:\/\/zenteno.org\/tech-talks\/ubuntu-server-samba\/\",\"name\":\"How install Samba on Ubuntu Server - My Tech Talks with ChatGPT\",\"isPartOf\":{\"@id\":\"https:\/\/zenteno.org\/tech-talks\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/zenteno.org\/tech-talks\/ubuntu-server-samba\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/zenteno.org\/tech-talks\/ubuntu-server-samba\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/zenteno.org\/tech-talks\/wp-content\/uploads\/2024\/10\/lukas-MU8w72PzRow-unsplash-2-scaled.jpg\",\"datePublished\":\"2024-10-17T03:16:00+00:00\",\"dateModified\":\"2024-11-15T05:05:35+00:00\",\"description\":\"Using Samba on old tech running Ubuntu Server 24.04.1 is a lightweight and manageable solution that should not significantly impact your server.\",\"breadcrumb\":{\"@id\":\"https:\/\/zenteno.org\/tech-talks\/ubuntu-server-samba\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/zenteno.org\/tech-talks\/ubuntu-server-samba\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/zenteno.org\/tech-talks\/ubuntu-server-samba\/#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\/ubuntu-server-samba\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/zenteno.org\/tech-talks\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How install 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":"How install Samba on Ubuntu Server - My Tech Talks with ChatGPT","description":"Using Samba on old tech running Ubuntu Server 24.04.1 is a lightweight and manageable solution that should not significantly impact your server.","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\/ubuntu-server-samba\/","og_locale":"en_US","og_type":"article","og_title":"How install Samba on Ubuntu Server - My Tech Talks with ChatGPT","og_description":"Using Samba on old tech running Ubuntu Server 24.04.1 is a lightweight and manageable solution that should not significantly impact your server.","og_url":"https:\/\/zenteno.org\/tech-talks\/ubuntu-server-samba\/","og_site_name":"My Tech Talks with ChatGPT","article_published_time":"2024-10-17T03:16:00+00:00","article_modified_time":"2024-11-15T05:05:35+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":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zenteno.org\/tech-talks\/ubuntu-server-samba\/#article","isPartOf":{"@id":"https:\/\/zenteno.org\/tech-talks\/ubuntu-server-samba\/"},"author":{"name":"adminwp","@id":"https:\/\/zenteno.org\/tech-talks\/#\/schema\/person\/b6442e8a5e39de0647f2ecf534e18580"},"headline":"How install Samba on Ubuntu Server","datePublished":"2024-10-17T03:16:00+00:00","dateModified":"2024-11-15T05:05:35+00:00","mainEntityOfPage":{"@id":"https:\/\/zenteno.org\/tech-talks\/ubuntu-server-samba\/"},"wordCount":996,"publisher":{"@id":"https:\/\/zenteno.org\/tech-talks\/#\/schema\/person\/b6442e8a5e39de0647f2ecf534e18580"},"image":{"@id":"https:\/\/zenteno.org\/tech-talks\/ubuntu-server-samba\/#primaryimage"},"thumbnailUrl":"https:\/\/zenteno.org\/tech-talks\/wp-content\/uploads\/2024\/10\/lukas-MU8w72PzRow-unsplash-2-scaled.jpg","keywords":["nc110","samba","server","ubuntu"],"articleSection":["Technology"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/zenteno.org\/tech-talks\/ubuntu-server-samba\/","url":"https:\/\/zenteno.org\/tech-talks\/ubuntu-server-samba\/","name":"How install Samba on Ubuntu Server - My Tech Talks with ChatGPT","isPartOf":{"@id":"https:\/\/zenteno.org\/tech-talks\/#website"},"primaryImageOfPage":{"@id":"https:\/\/zenteno.org\/tech-talks\/ubuntu-server-samba\/#primaryimage"},"image":{"@id":"https:\/\/zenteno.org\/tech-talks\/ubuntu-server-samba\/#primaryimage"},"thumbnailUrl":"https:\/\/zenteno.org\/tech-talks\/wp-content\/uploads\/2024\/10\/lukas-MU8w72PzRow-unsplash-2-scaled.jpg","datePublished":"2024-10-17T03:16:00+00:00","dateModified":"2024-11-15T05:05:35+00:00","description":"Using Samba on old tech running Ubuntu Server 24.04.1 is a lightweight and manageable solution that should not significantly impact your server.","breadcrumb":{"@id":"https:\/\/zenteno.org\/tech-talks\/ubuntu-server-samba\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zenteno.org\/tech-talks\/ubuntu-server-samba\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/zenteno.org\/tech-talks\/ubuntu-server-samba\/#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\/ubuntu-server-samba\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zenteno.org\/tech-talks\/"},{"@type":"ListItem","position":2,"name":"How install 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\/10","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=10"}],"version-history":[{"count":5,"href":"https:\/\/zenteno.org\/tech-talks\/wp-json\/wp\/v2\/posts\/10\/revisions"}],"predecessor-version":[{"id":18,"href":"https:\/\/zenteno.org\/tech-talks\/wp-json\/wp\/v2\/posts\/10\/revisions\/18"}],"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=10"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zenteno.org\/tech-talks\/wp-json\/wp\/v2\/categories?post=10"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zenteno.org\/tech-talks\/wp-json\/wp\/v2\/tags?post=10"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}