{"id":5711,"date":"2021-08-25T12:08:19","date_gmt":"2021-08-25T16:08:19","guid":{"rendered":"https:\/\/www.lpi.org\/lpic-3-mixed-environments-30-introduction-01-301-samba-basics\/"},"modified":"2023-05-10T04:26:55","modified_gmt":"2023-05-10T08:26:55","slug":"lpic-3-mixed-environments-30-introduction-01-301-samba-basics","status":"publish","type":"post","link":"https:\/\/www.lpi.org\/ko\/blog\/2021\/08\/25\/lpic-3-mixed-environments-30-introduction-01-301-samba-basics\/","title":{"rendered":"LPIC-3 Mixed Environments 3.0 Introduction #01: 301 Samba Basics"},"content":{"rendered":"<p>This blog posting is the first in a series that will help you to prepare for the new version 3.0 of the LPIC-3 Mixed Environments exam. The new objectives are a complete rewrite of the former version. A lot of topics were added or extended, and some outdated topics were removed.\u00a0<\/p>\n<h2>How to Study for the LPIC-3 Mixed Environments Exam<\/h2>\n<p>In this blog series we will go through the exam objectives and refer to resources on the internet that might be helpful for your studies. The selection of links is of course subjective. LPI does not recommend any specific way of studying. If you find other helpful resources, please leave a recommendation in the comments to this post.<\/p>\n<p>Whenever you are studying for an LPI exam, make sure you have the most recent version of the <a href=\"https:\/\/wiki.lpi.org\/wiki\/LPIC-300_Objectives_V3.0\" target=\"_blank\" rel=\"noopener\">exam objectives<\/a>\u00a0ready. These objectives tell you explicitly what you absolutely must know for the exam. Keep the objectives open all the time, and consider even printing them so you can tick off what you\u2019ve already covered.<\/p>\n<p>Also make sure you take notes right from the beginning of your studies. You will build up more and more knowledge as your studies continue. Ask yourself, what information would you like to review the day before the exam? Write such information down immediately whenever you encounter it.<\/p>\n<h2>Preparations<\/h2>\n<p>This posting is all about getting you started and discussing exam topic 301, Samba Basics. You probably know what Samba is and which protocols are involved. If you\u2019d like to refresh your memory, the Wikipedia pages on <a href=\"https:\/\/en.wikipedia.org\/wiki\/Samba_(software)\u201d\" target=\"_blank\" rel=\"noopener\">Samba<\/a>\u00a0and the <a href=\"https:\/\/en.wikipedia.org\/wiki\/Server_Message_Block\" target=\"_blank\" rel=\"noopener\">SMB protocol<\/a>\u00a0are a good starting point.<\/p>\n<p>While preparing for your exam, you will need a lab environment to experiment with various configurations. Such lab environments are commonly set up using virtual machines. Now would be a good time to install four virtual machines: three the current version of your favorite Linux distribution, and another one running a recent version of Microsoft Windows. Consider naming your VMs according to the purpose: The Linux VMs will serve as domain controllers and file servers and could be named <span style=\"font-family:courier new,courier,monospace;\">dc1<\/span>, <span style=\"font-family:courier new,courier,monospace;\">dc2<\/span> and <span style=\"font-family:courier new,courier,monospace;\">fs<\/span>. The Windows machine will mostly consume the Linux VM\u2019s services and could be named <span style=\"font-family:courier new,courier,monospace;\">winclient<\/span>. Now is also a good time to <a href=\"http:\/\/wiki.samba.org\/index.php\/Installing_RSAT\" target=\"_blank\" rel=\"noopener\">install the Remote Server Administration Tools<\/a>\u00a0on the Windows VM as well as the <span style=\"font-family:courier new,courier,monospace;\">samba<\/span> package from the distribution repositories in all Linux VMs.<\/p>\n<h2>Samba Configuration<\/h2>\n<p>The most important pieces of the original Samba documentation are <a href=\"https:\/\/www.samba.org\/samba\/docs\/current\/man-html\/\" target=\"_blank\" rel=\"noopener\">manual pages<\/a>\u00a0and the\u00a0<a href=\"https:\/\/wiki.samba.org\/\" target=\"_blank\" rel=\"noopener\">Samba wiki<\/a>. The manual page <a href=\"https:\/\/www.samba.org\/samba\/docs\/current\/man-html\/smb.conf.5.html\" target=\"_blank\" rel=\"noopener\"><span style=\"font-family:courier new,courier,monospace;\">smb.conf(5)<\/span><\/a> is special, because it explains all the configuration options for Samba. You will use this man page a lot. Now is a good time to start reading it. Get started at the top and work all the way down until the start of the section <span style=\"font-family:courier new,courier,monospace;\">EXPLANATION OF EACH PARAMETER<\/span>. You don\u2019t have to fully understand every detail because we will come back to some advanced topics such as ID mapping later in the exam objectives. For now just make sure you get an understanding of how the configuration works.<\/p>\n<p>With this information in mind, log into your file server and open the <span style=\"font-family:courier new,courier,monospace;\">smb.conf<\/span> file that came with the Samba package. Review the options and look them up in the man page. Make sure the <span style=\"font-family:courier new,courier,monospace;\">[globals]<\/span> section contains the statement <span style=\"font-family:courier new,courier,monospace;\">security = user<\/span> and comment out any active <span style=\"font-family:courier new,courier,monospace;\">server role<\/span> statement.<\/p>\n<p>Now make sure that there is a <span style=\"font-family:courier new,courier,monospace;\">homes<\/span> share in your configuration file. If the share isn\u2019t present, add it as follows:<\/p>\n<pre>\n[homes]\nread only = no<\/pre>\n<p>Confirm the validity of the file with the <span style=\"font-family:courier new,courier,monospace;\">testparm<\/span> command. If everything is fine, start the <span style=\"font-family:courier new,courier,monospace;\">smbd<\/span> and <span style=\"font-family:courier new,courier,monospace;\">nmbd<\/span> services or, if they already run, use <span style=\"font-family:courier new,courier,monospace;\">smbcontrol all reload-config<\/span> to make the configuration effective. Finally, add a new user to the file server (don\u2019t forget to create a home directory, for example with <span style=\"font-family:courier new,courier,monospace;\">useradd -m<\/span>) and set a Samba password for that user using <span style=\"font-family:courier new,courier,monospace;\">smbpasswd -a<\/span>.<\/p>\n<h2>The First Connection<\/h2>\n<p>Now you\u2019re all set for the first connection to your new server. In your Windows machine, open the explorer and enter the IP address of your file server in the addresses field, preceded by two backslashes and followed by another backslash, as in <span style=\"font-family:courier new,courier,monospace;\">\\10.64.0.3<\/span>. When you are asked for a username and password, specify the credentials of the user you just created. You should now be able to access the user\u2019s home directory on the file server from the Windows client. Try to add a file from the Windows client and see that it appears in the server\u2019s file system.<\/p>\n<p>Now that you are connected to your server, it\u2019s time to experiment with some of the additional tools included in Samba. Review the man pages for the <span style=\"font-family:courier new,courier,monospace;\"><a href=\"https:\/\/www.samba.org\/samba\/docs\/current\/man-html\/smbstatus.1.html\" target=\"_blank\" rel=\"noopener\">smbstatus<\/a><\/span>\u00a0and <span style=\"font-family:courier new,courier,monospace;\"><a href=\"https:\/\/www.samba.org\/samba\/docs\/current\/man-html\/smbcontrol.1.html\" target=\"_blank\" rel=\"noopener\">smbcontrol<\/a><\/span>\u00a0commands. Get an overview of what they can do and use them, for example, to identify and terminate the client\u2019s connection to the server.<\/p>\n<h2>Registry-based Configuration<\/h2>\n<p>Finally, we should try to move this configuration from the <span style=\"font-family:courier new,courier,monospace;\">smb.conf<\/span> file to the server&#8217;s registry-based configuration. First, import your current <span style=\"font-family:courier new,courier,monospace;\">smb.conf<\/span> into the server\u2019s registry:<\/p>\n<pre>\nnet conf import \/etc\/samba\/smb.conf\n<\/pre>\n<p>Next, rename your current <span style=\"font-family:courier new,courier,monospace;\">smb.conf<\/span> to <span style=\"font-family:courier new,courier,monospace;\">smb.conf.org<\/span> and replace it with this file:<\/p>\n<pre>\n[global]\n        config backend = registry\n<\/pre>\n<p>Now restart the Samba services and check that your server still runs fine. Run <span style=\"font-family:courier new,courier,monospace;\">samba-regedit<\/span> on the server to get an idea how the registry is organized.<\/p>\n<h2>Next Steps<\/h2>\n<p>Before concluding this post, let&#8217;s take a final look at the exam objectives. We have already seen a lot of the content contained in topic 301. However, a few pieces are still missing. Take some time to go through the objectives for topic 301 line by line. You should look up each and every configuration parameter as well as all commands listed in the objectives. Get your hands dirty and try these commands on your file server. Remember it is still a rather empty virtual machine, so just start over if something breaks.<\/p>\n<p>The various management commands will be extremely useful not just for the exam, but also for troubleshooting your real-world Samba setups. You might notice that some of the tools mentioned in the objectives handle LDAP directory contents. Even though we haven\u2019t set up LDAP yet, now is a good time to brush up your LPIC-2 LDAP skills. You will need them next week, when we set up an Active Directory domain to manage the systems in our lab environment.<\/p>\n<p>\u00a0<\/p>\n<p class=\"rtecenter\"><a href=\"https:\/\/www.lpi.org\/blog\/2021\/08\/31\/lpic-3-mixed-environments-30-introduction-02-302-samba-and-active-directory-domains\">Read the next post of this series >><\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>This blog posting is the first in a series that will help you to prepare for the new version 3.0 of the LPIC-3 Mixed Environments exam. The new objectives are a complete rewrite of the former version. A lot of &#8230; <a href=\"https:\/\/www.lpi.org\/ko\/blog\/2021\/08\/25\/lpic-3-mixed-environments-30-introduction-01-301-samba-basics\/\" class=\"button-link\">Read more<\/a><\/p>\n","protected":false},"author":66,"featured_media":5712,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[],"country":[],"language":[428],"ppma_author":[540],"class_list":["post-5711","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","language-english-de"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>LPIC-3 Mixed Environments 3.0 Introduction #01: 301 Samba Basics - Linux Professional Institute (LPI)<\/title>\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.lpi.org\/ko\/blog\/2021\/08\/25\/lpic-3-mixed-environments-30-introduction-01-301-samba-basics\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"LPIC-3 Mixed Environments 3.0 Introduction #01: 301 Samba Basics\" \/>\n<meta property=\"og:description\" content=\"This blog posting is the first in a series that will help you to prepare for the new version 3.0 of the LPIC-3 Mixed Environments exam. The new objectives are a complete rewrite of the former version. A lot of ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.lpi.org\/ko\/blog\/2021\/08\/25\/lpic-3-mixed-environments-30-introduction-01-301-samba-basics\/\" \/>\n<meta property=\"og:site_name\" content=\"Linux Professional Institute (LPI)\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/LPIConnect\" \/>\n<meta property=\"article:published_time\" content=\"2021-08-25T16:08:19+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-05-10T08:26:55+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.lpi.org\/wp-content\/uploads\/2023\/05\/article-lpic-3-300-introduction-blog1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1440\" \/>\n\t<meta property=\"og:image:height\" content=\"994\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Fabian Thorns\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@lpiconnect\" \/>\n<meta name=\"twitter:site\" content=\"@lpiconnect\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"Fabian Thorns\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"5\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.lpi.org\\\/ko\\\/blog\\\/2021\\\/08\\\/25\\\/lpic-3-mixed-environments-30-introduction-01-301-samba-basics\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.lpi.org\\\/ko\\\/blog\\\/2021\\\/08\\\/25\\\/lpic-3-mixed-environments-30-introduction-01-301-samba-basics\\\/\"},\"author\":{\"name\":\"Fabian Thorns\",\"@id\":\"https:\\\/\\\/www.lpi.org\\\/ko\\\/#\\\/schema\\\/person\\\/87a340eca845e18d801667fd11e6937c\"},\"headline\":\"LPIC-3 Mixed Environments 3.0 Introduction #01: 301 Samba Basics\",\"datePublished\":\"2021-08-25T16:08:19+00:00\",\"dateModified\":\"2023-05-10T08:26:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.lpi.org\\\/ko\\\/blog\\\/2021\\\/08\\\/25\\\/lpic-3-mixed-environments-30-introduction-01-301-samba-basics\\\/\"},\"wordCount\":1076,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.lpi.org\\\/ko\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.lpi.org\\\/ko\\\/blog\\\/2021\\\/08\\\/25\\\/lpic-3-mixed-environments-30-introduction-01-301-samba-basics\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.lpi.org\\\/wp-content\\\/uploads\\\/2023\\\/05\\\/article-lpic-3-300-introduction-blog1.jpg\",\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.lpi.org\\\/ko\\\/blog\\\/2021\\\/08\\\/25\\\/lpic-3-mixed-environments-30-introduction-01-301-samba-basics\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.lpi.org\\\/ko\\\/blog\\\/2021\\\/08\\\/25\\\/lpic-3-mixed-environments-30-introduction-01-301-samba-basics\\\/\",\"url\":\"https:\\\/\\\/www.lpi.org\\\/ko\\\/blog\\\/2021\\\/08\\\/25\\\/lpic-3-mixed-environments-30-introduction-01-301-samba-basics\\\/\",\"name\":\"LPIC-3 Mixed Environments 3.0 Introduction #01: 301 Samba Basics - Linux Professional Institute (LPI)\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.lpi.org\\\/ko\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.lpi.org\\\/ko\\\/blog\\\/2021\\\/08\\\/25\\\/lpic-3-mixed-environments-30-introduction-01-301-samba-basics\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.lpi.org\\\/ko\\\/blog\\\/2021\\\/08\\\/25\\\/lpic-3-mixed-environments-30-introduction-01-301-samba-basics\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.lpi.org\\\/wp-content\\\/uploads\\\/2023\\\/05\\\/article-lpic-3-300-introduction-blog1.jpg\",\"datePublished\":\"2021-08-25T16:08:19+00:00\",\"dateModified\":\"2023-05-10T08:26:55+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.lpi.org\\\/ko\\\/blog\\\/2021\\\/08\\\/25\\\/lpic-3-mixed-environments-30-introduction-01-301-samba-basics\\\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.lpi.org\\\/ko\\\/blog\\\/2021\\\/08\\\/25\\\/lpic-3-mixed-environments-30-introduction-01-301-samba-basics\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\\\/\\\/www.lpi.org\\\/ko\\\/blog\\\/2021\\\/08\\\/25\\\/lpic-3-mixed-environments-30-introduction-01-301-samba-basics\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.lpi.org\\\/wp-content\\\/uploads\\\/2023\\\/05\\\/article-lpic-3-300-introduction-blog1.jpg\",\"contentUrl\":\"https:\\\/\\\/www.lpi.org\\\/wp-content\\\/uploads\\\/2023\\\/05\\\/article-lpic-3-300-introduction-blog1.jpg\",\"width\":1440,\"height\":994},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.lpi.org\\\/ko\\\/blog\\\/2021\\\/08\\\/25\\\/lpic-3-mixed-environments-30-introduction-01-301-samba-basics\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.lpi.org\\\/ko\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"LPIC-3 Mixed Environments 3.0 Introduction #01: 301 Samba Basics\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.lpi.org\\\/ko\\\/#website\",\"url\":\"https:\\\/\\\/www.lpi.org\\\/ko\\\/\",\"name\":\"Linux Professional Institute (LPI)\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.lpi.org\\\/ko\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.lpi.org\\\/ko\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.lpi.org\\\/ko\\\/#organization\",\"name\":\"Linux Professional Institute (LPI)\",\"url\":\"https:\\\/\\\/www.lpi.org\\\/ko\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\\\/\\\/www.lpi.org\\\/ko\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.lpi.org\\\/wp-content\\\/uploads\\\/2023\\\/04\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/www.lpi.org\\\/wp-content\\\/uploads\\\/2023\\\/04\\\/logo.png\",\"width\":496,\"height\":175,\"caption\":\"Linux Professional Institute (LPI)\"},\"image\":{\"@id\":\"https:\\\/\\\/www.lpi.org\\\/ko\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/LPIConnect\",\"https:\\\/\\\/x.com\\\/lpiconnect\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/35136\",\"https:\\\/\\\/www.instagram.com\\\/lpi_org\\\/\",\"https:\\\/\\\/fosstodon.org\\\/@LPI\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.lpi.org\\\/ko\\\/#\\\/schema\\\/person\\\/87a340eca845e18d801667fd11e6937c\",\"name\":\"Fabian Thorns\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\\\/\\\/www.lpi.org\\\/wp-content\\\/uploads\\\/2026\\\/01\\\/cropped-fabian-thorns-1920px-96x96.jpg583c90110e404d4e42f0be7307753074\",\"url\":\"https:\\\/\\\/www.lpi.org\\\/wp-content\\\/uploads\\\/2026\\\/01\\\/cropped-fabian-thorns-1920px-96x96.jpg\",\"contentUrl\":\"https:\\\/\\\/www.lpi.org\\\/wp-content\\\/uploads\\\/2026\\\/01\\\/cropped-fabian-thorns-1920px-96x96.jpg\",\"caption\":\"Fabian Thorns\"},\"description\":\"Fabian Thorns is the Director of Product Development at Linux Professional Institute, LPI. He is M.Sc. Business Information Systems, a regular speaker at open source events and the author of numerous articles and books. Fabian has been part of the exam development team since 2010. Connect with him on LinkedIn, XING\u00a0or via email (fthorns\u00a0at\u00a0www.lpi.org).\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"LPIC-3 Mixed Environments 3.0 Introduction #01: 301 Samba Basics - Linux Professional Institute (LPI)","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.lpi.org\/ko\/blog\/2021\/08\/25\/lpic-3-mixed-environments-30-introduction-01-301-samba-basics\/","og_locale":"ko_KR","og_type":"article","og_title":"LPIC-3 Mixed Environments 3.0 Introduction #01: 301 Samba Basics","og_description":"This blog posting is the first in a series that will help you to prepare for the new version 3.0 of the LPIC-3 Mixed Environments exam. The new objectives are a complete rewrite of the former version. A lot of ... Read more","og_url":"https:\/\/www.lpi.org\/ko\/blog\/2021\/08\/25\/lpic-3-mixed-environments-30-introduction-01-301-samba-basics\/","og_site_name":"Linux Professional Institute (LPI)","article_publisher":"https:\/\/www.facebook.com\/LPIConnect","article_published_time":"2021-08-25T16:08:19+00:00","article_modified_time":"2023-05-10T08:26:55+00:00","og_image":[{"width":1440,"height":994,"url":"https:\/\/www.lpi.org\/wp-content\/uploads\/2023\/05\/article-lpic-3-300-introduction-blog1.jpg","type":"image\/jpeg"}],"author":"Fabian Thorns","twitter_card":"summary_large_image","twitter_creator":"@lpiconnect","twitter_site":"@lpiconnect","twitter_misc":{"\uae00\uc4f4\uc774":"Fabian Thorns","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"5\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.lpi.org\/ko\/blog\/2021\/08\/25\/lpic-3-mixed-environments-30-introduction-01-301-samba-basics\/#article","isPartOf":{"@id":"https:\/\/www.lpi.org\/ko\/blog\/2021\/08\/25\/lpic-3-mixed-environments-30-introduction-01-301-samba-basics\/"},"author":{"name":"Fabian Thorns","@id":"https:\/\/www.lpi.org\/ko\/#\/schema\/person\/87a340eca845e18d801667fd11e6937c"},"headline":"LPIC-3 Mixed Environments 3.0 Introduction #01: 301 Samba Basics","datePublished":"2021-08-25T16:08:19+00:00","dateModified":"2023-05-10T08:26:55+00:00","mainEntityOfPage":{"@id":"https:\/\/www.lpi.org\/ko\/blog\/2021\/08\/25\/lpic-3-mixed-environments-30-introduction-01-301-samba-basics\/"},"wordCount":1076,"commentCount":0,"publisher":{"@id":"https:\/\/www.lpi.org\/ko\/#organization"},"image":{"@id":"https:\/\/www.lpi.org\/ko\/blog\/2021\/08\/25\/lpic-3-mixed-environments-30-introduction-01-301-samba-basics\/#primaryimage"},"thumbnailUrl":"https:\/\/www.lpi.org\/wp-content\/uploads\/2023\/05\/article-lpic-3-300-introduction-blog1.jpg","inLanguage":"ko-KR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.lpi.org\/ko\/blog\/2021\/08\/25\/lpic-3-mixed-environments-30-introduction-01-301-samba-basics\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.lpi.org\/ko\/blog\/2021\/08\/25\/lpic-3-mixed-environments-30-introduction-01-301-samba-basics\/","url":"https:\/\/www.lpi.org\/ko\/blog\/2021\/08\/25\/lpic-3-mixed-environments-30-introduction-01-301-samba-basics\/","name":"LPIC-3 Mixed Environments 3.0 Introduction #01: 301 Samba Basics - Linux Professional Institute (LPI)","isPartOf":{"@id":"https:\/\/www.lpi.org\/ko\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.lpi.org\/ko\/blog\/2021\/08\/25\/lpic-3-mixed-environments-30-introduction-01-301-samba-basics\/#primaryimage"},"image":{"@id":"https:\/\/www.lpi.org\/ko\/blog\/2021\/08\/25\/lpic-3-mixed-environments-30-introduction-01-301-samba-basics\/#primaryimage"},"thumbnailUrl":"https:\/\/www.lpi.org\/wp-content\/uploads\/2023\/05\/article-lpic-3-300-introduction-blog1.jpg","datePublished":"2021-08-25T16:08:19+00:00","dateModified":"2023-05-10T08:26:55+00:00","breadcrumb":{"@id":"https:\/\/www.lpi.org\/ko\/blog\/2021\/08\/25\/lpic-3-mixed-environments-30-introduction-01-301-samba-basics\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.lpi.org\/ko\/blog\/2021\/08\/25\/lpic-3-mixed-environments-30-introduction-01-301-samba-basics\/"]}]},{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/www.lpi.org\/ko\/blog\/2021\/08\/25\/lpic-3-mixed-environments-30-introduction-01-301-samba-basics\/#primaryimage","url":"https:\/\/www.lpi.org\/wp-content\/uploads\/2023\/05\/article-lpic-3-300-introduction-blog1.jpg","contentUrl":"https:\/\/www.lpi.org\/wp-content\/uploads\/2023\/05\/article-lpic-3-300-introduction-blog1.jpg","width":1440,"height":994},{"@type":"BreadcrumbList","@id":"https:\/\/www.lpi.org\/ko\/blog\/2021\/08\/25\/lpic-3-mixed-environments-30-introduction-01-301-samba-basics\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.lpi.org\/ko\/"},{"@type":"ListItem","position":2,"name":"LPIC-3 Mixed Environments 3.0 Introduction #01: 301 Samba Basics"}]},{"@type":"WebSite","@id":"https:\/\/www.lpi.org\/ko\/#website","url":"https:\/\/www.lpi.org\/ko\/","name":"Linux Professional Institute (LPI)","description":"","publisher":{"@id":"https:\/\/www.lpi.org\/ko\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.lpi.org\/ko\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Organization","@id":"https:\/\/www.lpi.org\/ko\/#organization","name":"Linux Professional Institute (LPI)","url":"https:\/\/www.lpi.org\/ko\/","logo":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/www.lpi.org\/ko\/#\/schema\/logo\/image\/","url":"https:\/\/www.lpi.org\/wp-content\/uploads\/2023\/04\/logo.png","contentUrl":"https:\/\/www.lpi.org\/wp-content\/uploads\/2023\/04\/logo.png","width":496,"height":175,"caption":"Linux Professional Institute (LPI)"},"image":{"@id":"https:\/\/www.lpi.org\/ko\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/LPIConnect","https:\/\/x.com\/lpiconnect","https:\/\/www.linkedin.com\/company\/35136","https:\/\/www.instagram.com\/lpi_org\/","https:\/\/fosstodon.org\/@LPI"]},{"@type":"Person","@id":"https:\/\/www.lpi.org\/ko\/#\/schema\/person\/87a340eca845e18d801667fd11e6937c","name":"Fabian Thorns","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/www.lpi.org\/wp-content\/uploads\/2026\/01\/cropped-fabian-thorns-1920px-96x96.jpg583c90110e404d4e42f0be7307753074","url":"https:\/\/www.lpi.org\/wp-content\/uploads\/2026\/01\/cropped-fabian-thorns-1920px-96x96.jpg","contentUrl":"https:\/\/www.lpi.org\/wp-content\/uploads\/2026\/01\/cropped-fabian-thorns-1920px-96x96.jpg","caption":"Fabian Thorns"},"description":"Fabian Thorns is the Director of Product Development at Linux Professional Institute, LPI. He is M.Sc. Business Information Systems, a regular speaker at open source events and the author of numerous articles and books. Fabian has been part of the exam development team since 2010. Connect with him on LinkedIn, XING\u00a0or via email (fthorns\u00a0at\u00a0www.lpi.org)."}]}},"views":1745,"authors":[{"term_id":540,"user_id":66,"is_guest":0,"slug":"fthornslpi-org","display_name":"Fabian Thorns","avatar_url":"https:\/\/www.lpi.org\/wp-content\/uploads\/2026\/01\/cropped-fabian-thorns-1920px-96x96.jpg","0":null,"1":"","2":"","3":"","4":"","5":"","6":"","7":"","8":""}],"_links":{"self":[{"href":"https:\/\/www.lpi.org\/ko\/wp-json\/wp\/v2\/posts\/5711","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.lpi.org\/ko\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.lpi.org\/ko\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.lpi.org\/ko\/wp-json\/wp\/v2\/users\/66"}],"replies":[{"embeddable":true,"href":"https:\/\/www.lpi.org\/ko\/wp-json\/wp\/v2\/comments?post=5711"}],"version-history":[{"count":2,"href":"https:\/\/www.lpi.org\/ko\/wp-json\/wp\/v2\/posts\/5711\/revisions"}],"predecessor-version":[{"id":11086,"href":"https:\/\/www.lpi.org\/ko\/wp-json\/wp\/v2\/posts\/5711\/revisions\/11086"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.lpi.org\/ko\/wp-json\/wp\/v2\/media\/5712"}],"wp:attachment":[{"href":"https:\/\/www.lpi.org\/ko\/wp-json\/wp\/v2\/media?parent=5711"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.lpi.org\/ko\/wp-json\/wp\/v2\/categories?post=5711"},{"taxonomy":"country","embeddable":true,"href":"https:\/\/www.lpi.org\/ko\/wp-json\/wp\/v2\/country?post=5711"},{"taxonomy":"language","embeddable":true,"href":"https:\/\/www.lpi.org\/ko\/wp-json\/wp\/v2\/language?post=5711"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/www.lpi.org\/ko\/wp-json\/wp\/v2\/ppma_author?post=5711"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}