{"id":596,"date":"2020-02-20T13:25:22","date_gmt":"2020-02-20T12:25:22","guid":{"rendered":"https:\/\/codedoneright.eu\/?page_id=596"},"modified":"2021-02-01T07:08:49","modified_gmt":"2021-02-01T06:08:49","slug":"samba","status":"publish","type":"page","link":"https:\/\/codedoneright.eu\/?page_id=596","title":{"rendered":"Samba server (NAS)"},"content":{"rendered":"\n<div style=\"height:56px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https:\/\/upload.wikimedia.org\/wikipedia\/commons\/d\/db\/Samba_logo_2010.svg\" alt=\"\"\/><figcaption><a href=\"https:\/\/www.samba.org\/\">www.samba.org<\/a><\/figcaption><\/figure>\n\n\n\n<p>Samba server allows you to set up a NAS \u2013 Network Attached Storage. This is basically a hard drive (or drives) on your local network that can be accessed by any device connected to your router. You can use it as any other drive or folder on your PC. You can even set up your torrent client to download files there directly! Maybe you swapped HDD in your laptop for an SSD and had no idea what to do with the drive? Set up a samba share on it and give it a second life. Why throw it away if it can be reused?<\/p>\n\n\n\n<p>Unless specified directly, all commands should be executed on your Raspberry server.<\/p>\n\n\n\n<div style=\"height:56px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h4 class=\"wp-block-heading\">Installing Samba<\/h4>\n\n\n\n<p>Installing Samba server is a pretty easy task, just run the following command<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install samba<\/code><\/pre>\n\n\n\n<p>As usual, a lot of dependancies will be installed as well, not only the <em>samba <\/em>package.<\/p>\n\n\n\n<p>When asked <em>Modify smb.conf to use WINS settings from DHCP?<\/em> just say <em>No<\/em>.<\/p>\n\n\n\n<div style=\"height:56px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h4 class=\"wp-block-heading\">Opening ports<\/h4>\n\n\n\n<p>If you have UFW installed, which you should if your Raspberry is open to the internet, you need to open the following ports on your Pi in order to access your resources<\/p>\n\n\n\n<ul><li>139<\/li><li>445<\/li><\/ul>\n\n\n\n<p>Check back <a href=\"https:\/\/codedoneright.eu\/?page_id=187\">here<\/a> for a refresher on blocking and opening ports on your server.<\/p>\n\n\n\n<div style=\"height:56px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h4 class=\"wp-block-heading\">Preparing Samba share folder<\/h4>\n\n\n\n<p>In order to share anything, you need to have a folder for files. You can create your share folder anywhere in your system. Root forder <em>\/<\/em> or <em>\/var\/<\/em> are a good place to make a directory for sharing. I have chosen the root folder for my shares. Run the following commands<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo mkdir \/samba\nsudo chmod 777 -R \/samba<\/code><\/pre>\n\n\n\n<p>You can reuse an existing folder as well, but bear in mind that you will need to <em>chmod<\/em> it to 777 in order to be able to read and write using other devices.<\/p>\n\n\n\n<div style=\"height:56px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h4 class=\"wp-block-heading\">Mounting an external disk<\/h4>\n\n\n\n<p>If you want to utilize an external drive you can do so as well. This actually should be the main reason for setting up a Samba share. Remember that some disks require external power supply. The easiest way is to use a 2.5&#8243; disk in a case. With a proper one you should not need any additional power, be it for an SSD or HDD. Unfortunately you have to test it yourself.<\/p>\n\n\n\n<p>Check out <strong><a href=\"https:\/\/codedoneright.eu\/?page_id=620\">Mounting external drives tutorial<\/a><\/strong> to learn how to mount a drive. Substitute the default folder in tutorial with <em>\/sabma<\/em> folder used above, or any other that you have chosen<\/p>\n\n\n\n<div style=\"height:56px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h4 class=\"wp-block-heading\">Modify Samba config file<\/h4>\n\n\n\n<p>You will find the config in the following location<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/etc\/samba\/smb.conf<\/code><\/pre>\n\n\n\n<p>At the very bottom add the following code<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&#91;RaspberryPiSamba]\nComment = Your Samba share\nPath = \/samba\nBrowseable = yes\nWriteable = Yes\nonly guest = no\ncreate mask = 0777\ndirectory mask = 0777\nPublic = yes\nGuest ok = yes<\/code><\/pre>\n\n\n\n<p>The above code will add a share named <em>RaspberryPiSamba<\/em>, modify <em>Path <\/em>variable in accordance with the place where you mounted your external disk in the above step.<\/p>\n\n\n\n<p>If you want to add another share just add another block like the above, modifying the name in square brackets (it has to be a unique entry) and the path to your share.<\/p>\n\n\n\n<p><strong>CAUTION!<\/strong> The name in brackets will be used as part of the path to your files. It is best to use lowercase letters, numbers and underscores only. <\/p>\n\n\n\n<p><strong>CAUTION!<\/strong> The name in brackets is the share_name variable used later in the tutorial.<\/p>\n\n\n\n<div style=\"height:56px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h4 class=\"wp-block-heading\">Rebooting Samba server<\/h4>\n\n\n\n<p>After making any changes you need to reboot Samba, use the following code<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo service smbd restart<\/code><\/pre>\n\n\n\n<p>Your share should be ready and possible to access via local network.<\/p>\n\n\n\n<div style=\"height:56px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h4 class=\"wp-block-heading\">Enabling shared file discovery on Windows<\/h4>\n\n\n\n<p>In order to find your Samba share on your Windows 10 you need to enable SMB\/CIFS protocol.<\/p>\n\n\n\n<p>Navigate to <em>Windows Settings<\/em>, click on <em>Applications and functions<\/em>, now find <em>Programs and features<\/em> in the upper right corner. A new window will be opened, you might know it as <em>Add and remove software<\/em> from older Windows versions. Left hand side contains the following entry <em>Turn Windows Features On or Off<\/em>, click on it and another window will open.<\/p>\n\n\n\n<p>Look for <em>SMB 1.0\/CIFS File Sharing Support<\/em>, if you have a sumbenu with different components then it is enough to enable client only. Tick the box, click on <em>OK<\/em> and reboot your PC.<\/p>\n\n\n\n<div style=\"height:56px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h4 class=\"wp-block-heading\">Finding your shared folder<\/h4>\n\n\n\n<p>The last step is finding your share. Open <em>This PC<\/em>, and navigate to <em>Network<\/em>. Or just open <em>Network <\/em>if present on your desktop. After a brief moment you should be able to find your Raspberry server there. It might require a folder refresh or two. <\/p>\n\n\n\n<p>If you are unsure about the name of your device run the following commands on your Raspberry<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>hostname\nhostname -s<\/code><\/pre>\n\n\n\n<p>It will most likely be visible under one of the names produced by the above command.<\/p>\n\n\n\n<div style=\"height:56px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h4 class=\"wp-block-heading\">Mounting your share permanently in Windows<\/h4>\n\n\n\n<p>It is also possible to mount the share, so it is accessible just like any other disk or partition on your system. In order to do so<\/p>\n\n\n\n<ul><li>Right-click on <em>This PC<\/em> icon<\/li><li>Select <em>Map network drive&#8230;<\/em><\/li><li>Select drive letter you wish to use for your share<\/li><li>Click on <em>Browse <\/em>button to navigate to your share on your local network<\/li><li>Tick <em>Reconnect at sign-in<\/em> box<\/li><li>Click on <em>Finish<\/em><\/li><\/ul>\n\n\n\n<p><strong>Caution!<\/strong> Windows 10 will most likely prompt you for credentials, even if your server allows connecting as guest. In such a case put <em>guest<\/em> as username and leave password box empty. It should connect without an issue and you will not be prompted for credentials anymore.<\/p>\n\n\n\n<p>Now you should be able to see your share mounted every time you open Windows! Bear in mind that every PC user will have to mount the share if they wish to use it. This is, however, a one-time only procedure.<\/p>\n\n\n\n<h6 class=\"wp-block-heading\">Windows is not showing network devices?<\/h6>\n\n\n\n<p>Sometimes it happens that even properly configured Windows does not show devices on local network. In case you have nothing in your local network, or just your PC, you can add the share by providing a direct path. <\/p>\n\n\n\n<p>Instead of clicking on <em>Browse <\/em>just supply Windows with the path following this example<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\\\\local.ip.of.device\\share_name<\/code><\/pre>\n\n\n\n<p>You can test the path in Windows Explorer to make sure it is correct or even use an internet browser. In browser it will show up as download only page, but if you see your files there then you know that the path is correct. If you have a website running on the server it may happen that your browser will change your local IP address to your domain and you will not be able to check the path in such a way.<\/p>\n\n\n\n<div style=\"height:56px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h4 class=\"wp-block-heading\">Accessing share with other devices or software<\/h4>\n\n\n\n<p>Your share can be accessed not only by your Windows PC. Your phone or tablet can use it as well but it will require some additional software. Browse <em>Play Store<\/em> to find something you like, search for <em>samba client<\/em>. <\/p>\n\n\n\n<p><a href=\"https:\/\/www.videolan.org\/\">VLC<\/a> on the other hand can utilize network shares without the need for any additional software. You can store movies or music on your network drive and open it in VLC directly. Just browse <em>Local network<\/em> instead of folders!<\/p>\n\n\n\n<p>Using Samba share with Mac is possible as well, but since I do not own, nor do I plan to, a Mac there will be no guide for it.<\/p>\n\n\n\n<div style=\"height:56px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h4 class=\"wp-block-heading\">Mounting samba on Linux<\/h4>\n\n\n\n<p>On distros like Ubuntu, your share should be discovered by file manager automatically. Just click on it and either log in as guest or submit credentials if your NAS is password protected. <\/p>\n\n\n\n<p>If you want to mount your NAS, so that it is accessible from <em>~\/<\/em> or some other place in the system, here&#8217;s what you need to do<\/p>\n\n\n\n<p>First of all make sure that you have <em>cifs-utils<\/em> installed by running<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>apt list --installed | grep cifs-utils<\/code><\/pre>\n\n\n\n<p>If you do not have it installed run the following<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install cifs-utils<\/code><\/pre>\n\n\n\n<p>Now create a directory where you will mount your share. It can be anywhere in the system, but it is a good idea to create said folder in <em>~\/<\/em> for easy access. Run<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>mkdir \/home\/$USER\/nas<\/code><\/pre>\n\n\n\n<p>The above will create a directory in your <em>Home<\/em> folder named <em>nas<\/em>, pretty self-explanatory, but we will need a mount point for the NAS. Remember the path file as you will need to add it to <em>fstab<\/em> file<\/p>\n\n\n\n<p>Now add the following entry in your <em>fstab<\/em> file, this configuration assumes that you set up your NAS to be accessed by everyone in your local network with read and write permissions, like in the example above. Substitute <em>\/mount_point<\/em> with filepath to your <em>nas<\/em> folder, and <em>$UID<\/em> with your <em>UID<\/em><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/\/local.ip.of.device\/share_name \/mount_point cifs uid=$UID,guest,rw,users,nofail 0 0<\/code><\/pre>\n\n\n\n<p>Now test your config with the following command<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo mount -a<\/code><\/pre>\n\n\n\n<p>This will mount everything that is in <em>fstab<\/em> file.<\/p>\n\n\n\n<p>If you are asked for password and your NAS is not password protected make sure you put the correct $UID, which is your user ID. <\/p>\n\n\n\n<p>First user usually has UID=1000, but you can check that with the command <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>echo $UID<\/code><\/pre>\n\n\n\n<p><strong>CAUTION!<\/strong> Remember to add the share name at the end of the first part of the line you are adding in <em>fstab<\/em>! In the example config it is the text inside of square brackets &#8220;<em>RaspberryPiSamba<\/em>&#8220;<\/p>\n\n\n\n<div style=\"height:56px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Adding password to a samba share<\/h2>\n\n\n\n<p>If for some reason you want to add a password for samba shares use the following command<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo smbpasswd -a $USER<\/code><\/pre>\n\n\n\n<p>Substitute $USER with a desired username for your shares. Afterwards you will be prompted to set up a password.<\/p>\n\n\n\n<p>Now restart your samba service.<\/p>\n\n\n\n<p>Samba user is different from your system user. Set up whatever you like. You can even reuse your system password and username if security is of no concern due to your server being open to local network only.<\/p>\n\n\n\n<div style=\"height:56px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Conclusion<\/h3>\n\n\n\n<p>Creating a Samba share is quite easy and useful if you want to set up a backup for your files, or just want a remote place to store media. Remember that you can set up as many shares as you want. Mounting ten 1TB disks is quite possible, provided you have a USB hub and some additional power flowing to those disks.<\/p>\n\n\n\n<p>Sharing users&#8217; home folders and printers is also possible. Look around for a tutorial on that if you are interested. As I am not, there will be no guide for that here.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Samba server allows you to set up a NAS \u2013 Network Attached Storage. This is basically a hard drive (or drives) on your local network that can be accessed by any device connected to your router. You can use it&hellip; <\/p>\n","protected":false},"author":1,"featured_media":0,"parent":483,"menu_order":30,"comment_status":"open","ping_status":"closed","template":"","meta":{"footnotes":""},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Samba server (NAS) share your files on local network &#8212; Code Done Right!<\/title>\n<meta name=\"description\" content=\"Set up a NAS (Network Attached Storage) with Samba on your local network, share files among multiple devices and expand storage with this simple tutorial!\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/codedoneright.eu\/?page_id=596\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"Samba server (NAS) share your files on local network &#8212; Code Done Right!\" \/>\n<meta name=\"twitter:description\" content=\"Set up a NAS (Network Attached Storage) with Samba on your local network, share files among multiple devices and expand storage with this simple tutorial!\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/upload.wikimedia.org\/wikipedia\/commons\/d\/db\/Samba_logo_2010.svg\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codedoneright.eu\/?page_id=596\",\"url\":\"https:\/\/codedoneright.eu\/?page_id=596\",\"name\":\"Samba server (NAS) share your files on local network &#8212; Code Done Right!\",\"isPartOf\":{\"@id\":\"https:\/\/codedoneright.eu\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codedoneright.eu\/?page_id=596#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codedoneright.eu\/?page_id=596#primaryimage\"},\"thumbnailUrl\":\"https:\/\/upload.wikimedia.org\/wikipedia\/commons\/d\/db\/Samba_logo_2010.svg\",\"datePublished\":\"2020-02-20T12:25:22+00:00\",\"dateModified\":\"2021-02-01T06:08:49+00:00\",\"description\":\"Set up a NAS (Network Attached Storage) with Samba on your local network, share files among multiple devices and expand storage with this simple tutorial!\",\"breadcrumb\":{\"@id\":\"https:\/\/codedoneright.eu\/?page_id=596#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codedoneright.eu\/?page_id=596\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codedoneright.eu\/?page_id=596#primaryimage\",\"url\":\"https:\/\/upload.wikimedia.org\/wikipedia\/commons\/d\/db\/Samba_logo_2010.svg\",\"contentUrl\":\"https:\/\/upload.wikimedia.org\/wikipedia\/commons\/d\/db\/Samba_logo_2010.svg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codedoneright.eu\/?page_id=596#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/codedoneright.eu\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Server features\",\"item\":\"https:\/\/codedoneright.eu\/?page_id=483\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Samba server (NAS)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/codedoneright.eu\/#website\",\"url\":\"https:\/\/codedoneright.eu\/\",\"name\":\"Code Done Right!\",\"description\":\"Raspberry Pi server guides\",\"publisher\":{\"@id\":\"https:\/\/codedoneright.eu\/#\/schema\/person\/50378701e349dbd5d40888bc5b532568\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/codedoneright.eu\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/codedoneright.eu\/#\/schema\/person\/50378701e349dbd5d40888bc5b532568\",\"name\":\"CodeDoneRight\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codedoneright.eu\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/codedoneright.eu\/wp-content\/uploads\/www_icon.png\",\"contentUrl\":\"https:\/\/codedoneright.eu\/wp-content\/uploads\/www_icon.png\",\"width\":120,\"height\":120,\"caption\":\"CodeDoneRight\"},\"logo\":{\"@id\":\"https:\/\/codedoneright.eu\/#\/schema\/person\/image\/\"},\"sameAs\":[\"https:\/\/codedoneright.eu\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Samba server (NAS) share your files on local network &#8212; Code Done Right!","description":"Set up a NAS (Network Attached Storage) with Samba on your local network, share files among multiple devices and expand storage with this simple tutorial!","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:\/\/codedoneright.eu\/?page_id=596","twitter_card":"summary_large_image","twitter_title":"Samba server (NAS) share your files on local network &#8212; Code Done Right!","twitter_description":"Set up a NAS (Network Attached Storage) with Samba on your local network, share files among multiple devices and expand storage with this simple tutorial!","twitter_image":"https:\/\/upload.wikimedia.org\/wikipedia\/commons\/d\/db\/Samba_logo_2010.svg","twitter_misc":{"Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/codedoneright.eu\/?page_id=596","url":"https:\/\/codedoneright.eu\/?page_id=596","name":"Samba server (NAS) share your files on local network &#8212; Code Done Right!","isPartOf":{"@id":"https:\/\/codedoneright.eu\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codedoneright.eu\/?page_id=596#primaryimage"},"image":{"@id":"https:\/\/codedoneright.eu\/?page_id=596#primaryimage"},"thumbnailUrl":"https:\/\/upload.wikimedia.org\/wikipedia\/commons\/d\/db\/Samba_logo_2010.svg","datePublished":"2020-02-20T12:25:22+00:00","dateModified":"2021-02-01T06:08:49+00:00","description":"Set up a NAS (Network Attached Storage) with Samba on your local network, share files among multiple devices and expand storage with this simple tutorial!","breadcrumb":{"@id":"https:\/\/codedoneright.eu\/?page_id=596#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codedoneright.eu\/?page_id=596"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codedoneright.eu\/?page_id=596#primaryimage","url":"https:\/\/upload.wikimedia.org\/wikipedia\/commons\/d\/db\/Samba_logo_2010.svg","contentUrl":"https:\/\/upload.wikimedia.org\/wikipedia\/commons\/d\/db\/Samba_logo_2010.svg"},{"@type":"BreadcrumbList","@id":"https:\/\/codedoneright.eu\/?page_id=596#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codedoneright.eu\/"},{"@type":"ListItem","position":2,"name":"Server features","item":"https:\/\/codedoneright.eu\/?page_id=483"},{"@type":"ListItem","position":3,"name":"Samba server (NAS)"}]},{"@type":"WebSite","@id":"https:\/\/codedoneright.eu\/#website","url":"https:\/\/codedoneright.eu\/","name":"Code Done Right!","description":"Raspberry Pi server guides","publisher":{"@id":"https:\/\/codedoneright.eu\/#\/schema\/person\/50378701e349dbd5d40888bc5b532568"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/codedoneright.eu\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/codedoneright.eu\/#\/schema\/person\/50378701e349dbd5d40888bc5b532568","name":"CodeDoneRight","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codedoneright.eu\/#\/schema\/person\/image\/","url":"https:\/\/codedoneright.eu\/wp-content\/uploads\/www_icon.png","contentUrl":"https:\/\/codedoneright.eu\/wp-content\/uploads\/www_icon.png","width":120,"height":120,"caption":"CodeDoneRight"},"logo":{"@id":"https:\/\/codedoneright.eu\/#\/schema\/person\/image\/"},"sameAs":["https:\/\/codedoneright.eu"]}]}},"_links":{"self":[{"href":"https:\/\/codedoneright.eu\/index.php?rest_route=\/wp\/v2\/pages\/596"}],"collection":[{"href":"https:\/\/codedoneright.eu\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/codedoneright.eu\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/codedoneright.eu\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/codedoneright.eu\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=596"}],"version-history":[{"count":37,"href":"https:\/\/codedoneright.eu\/index.php?rest_route=\/wp\/v2\/pages\/596\/revisions"}],"predecessor-version":[{"id":1699,"href":"https:\/\/codedoneright.eu\/index.php?rest_route=\/wp\/v2\/pages\/596\/revisions\/1699"}],"up":[{"embeddable":true,"href":"https:\/\/codedoneright.eu\/index.php?rest_route=\/wp\/v2\/pages\/483"}],"wp:attachment":[{"href":"https:\/\/codedoneright.eu\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=596"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}