{"id":8243,"date":"2024-05-11T13:39:26","date_gmt":"2024-05-11T13:39:26","guid":{"rendered":"https:\/\/3dcoat.com\/documentation\/?post_type=manual_documentation&#038;p=8243"},"modified":"2025-03-23T10:05:15","modified_gmt":"2025-03-23T10:05:15","slug":"linux-initial-setup-for-system","status":"publish","type":"manual_documentation","link":"https:\/\/3dcoat.com\/documentation\/manual\/getting-started\/linux-setup\/linux-initial-setup-for-system\/","title":{"rendered":"Linux initial setup for system"},"content":{"rendered":"\n<p><a href=\"https:\/\/3dcoat.com\/forum\/index.php?\/topic\/27475-3dcoat-for-linux-initial-setup-for-reference\">by Sorn:<\/a><\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Download<\/strong>&nbsp;the latest Linux build (obviously).\n<ol class=\"wp-block-list\">\n<li>As of today, we can do this by going to <a href=\"https:\/\/pilgway.com\/~sergyi\/links-Linux.html\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/pilgway.com\/~sergyi\/links-Linux.html<\/a><\/li>\n\n\n\n<li>Alternatively, we can download the last stable build in our ACCOUNT profile page at <a href=\"https:\/\/pilgway.com\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/pilgway.com<\/a><\/li>\n<\/ol>\n<\/li>\n\n\n\n<li><strong>Create the folders in the system<\/strong> where we will unpack the 3DCoat file just downloaded in the prior step.\n<ol class=\"wp-block-list\">\n<li>sudo mkdir \/opt\/3DCoat &amp;&amp; sudo mkdir \/opt\/3DCoat\/3DCoat-2025 This command will create a folder in \/opt for 3DCoat and another called 3DCoat-2025&nbsp;inside the first one.<br \/>We will use the former to store the script that runs 3DCoat and the latter to store the program and its files and folders that comes with the file we downloaded before.<\/li>\n<\/ol>\n<\/li>\n\n\n\n<li><strong>Unpack<\/strong> the file downloaded in the folder created for it in the system.\n<ol class=\"wp-block-list\">\n<li>In a terminal, we move where we downloaded the file. In my case, that would be \/home\/USERNAME\/Downloads cd Downloads This command will put us in the folder Downloads where we assume we downloaded the file from pilgway.com<\/li>\n\n\n\n<li>sudo tar -xvf 3DCoat-2025.01.tar.bz2 -C \/opt\/3DCoat\/3DCoat-2025 &#8211;strip-components=1 This command will unpack (decompress) the file downloaded (3DCoat-2025.01.tar.bz2 in this instance) in the directory (folder) we made for that purpose.<br \/><br \/>Now, inside the file 3DCoat-2025.01.tar.bz2 there&#8217;s a directory (folder) aptly named 3DCoat-2025.01 with everything inside.<br \/>We could, yes, extract that directory into \/opt\/3DCoat and we would get \/opt\/3DCoat\/3DCoat-2025.01<br \/>The problem I see&nbsp;is that with every new version, we&#8217;d get a new folder added with the corresponding name version.&nbsp;In time, we&#8217;ll have quite a lot of directories from all the versions installed.<br \/><br \/>I suggest to have just the one&nbsp;3DCoat version we are working with, the latest installed.<br \/><br \/>For that purpose we made the 3DCoat-2025&nbsp;folder&nbsp;inside \/opt\/3DCoat<br \/>Now, we want to extract the contents of the 3DCoat-2025.01&nbsp;directory that&#8217;s inside 3DCoat-2025.01.tar.bz2 file WITHOUT creating the directory named with the version. We just want to extract all that&#8217;s inside the file without&nbsp;the folder name.<br \/>This is&nbsp;why I added <em>&#8211;strip-components=1<\/em> in the terminal command above:&nbsp;it does just that. It skips the first folder of the compressed file and extracts from there where we told it to do so.<br \/>As a result, we get all the file contents in \/opt\/3DCoat\/3DCoat-2025<\/li>\n<\/ol>\n<\/li>\n\n\n\n<li><strong>Create<\/strong><strong>3DCoat.sh and 3DCoat.desktop&nbsp;<\/strong>text files (like&nbsp;we did for&nbsp;the single user workstation).<br \/>This time, though, there will be some differences.\n<ol class=\"wp-block-list\">\n<li>3DCoat.sh contents:\n<ol class=\"wp-block-list\">\n<li>cd \/opt\/3DCoat\/3DCoat-2025 .\/3dcoat it now points to a different folder since our 3DCoat program is in a different place, obviously.<br \/>This file script is the one that actually finds and starts 3DCoat.<br \/><br \/><s>(Since 2023 came about, 3DCoat has two versions for Linux: 3dcoat-Ubuntu22.04 and 3dcoat-Ubuntu20.04. In the example above I used the more recent one, but it can be changed by typing 3dcoat-Ubuntu20.04 instead in the text file if there are issues running 3DCoat in your machine to see if that helps.)<\/s><\/li>\n\n\n\n<li>Since&nbsp;this text file is meant to run as a script, a command, we must tell the system we authorise&nbsp;the text file to run as a program instead of treating it as an ordinary text file.<br \/>We do it by right clicking the text file with our file browser and in Properties tick &#8220;Allow executing file as program&#8221; in Permissions tab.<br \/>Alternatively, with a terminal open in the directory (folder) where the file is, we type:<br \/>&nbsp; sudo chmod +x 3DCoat.sh &nbsp;<\/li>\n<\/ol>\n<\/li>\n\n\n\n<li>3DCoat.desktop\n<ol class=\"wp-block-list\">\n<li>[Desktop Entry] Encoding=UTF-8 Version=1.0 Type=Application Terminal=true Exec=\/opt\/3DCoat\/3DCoat.sh Name=3DCoat Icon=\/opt\/3DCoat\/3DCoat-2025\/data\/Icon\/3DCoat.png Categories=Graphics;3DGraphics; StartupWMClass=3dcoat Here we also changed the paths to match the&nbsp;3DCoat&#8217;s installation path in our system.<br \/>This file is for the Gnome Desktop Environment, it creates a system launcher for 3DCoat, with an icon.<\/li>\n<\/ol>\n<\/li>\n<\/ol>\n<\/li>\n\n\n\n<li><strong>Move or copy the&nbsp;two files<\/strong> where&nbsp;they belong:<br \/>3DCoat.sh file must be in \/opt\/3DCoat<br \/>3DCoat.desktop must be in \/usr\/share\/applications<br \/><br \/>Assuming we&nbsp;created the two files in our home folder,&nbsp;we should type, in a terminal:\n<ol class=\"wp-block-list\">\n<li>cd ~ sudo cp 3DCoat.sh \/opt\/3DCoat &amp;&amp; sudo cp 3DCoat.desktop \/usr\/share\/applications The first command makes sure we are in our home directory where we created the two text files. [We can <em>cd<\/em> (Change Directroy) to wherever we created them, if not in the home directroy].<br \/>The second command has two parts: it first copies 3DCoat.sh where it belongs and then puts 3DCoat.desktop where the&nbsp; system stores all system-wide launchers. [We can change <em>cp<\/em> for&nbsp;<em>mv<\/em>&nbsp;in the command if we want to move the text files instead of copying them].<br \/>In this way, we won&#8217;t have to create either file again for&nbsp;every other&nbsp;user in the system.<\/li>\n<\/ol>\n<\/li>\n\n\n\n<li><strong>Correct benign error messages appearing in the Terminal:<\/strong>&nbsp;As of today (version 2025.01 of 3DCoat for Linux) there are some png files&#8217; icc profiles in the 3DCoat folders that prompt a warning in an otherwise&nbsp;useful terminal output.<br \/>They look like a lot, or many, &#8220;libpng warning: iCCP: known incorrect sRGB profile&#8221; messages.<br \/>We can fix it by doing this:\n<ol class=\"wp-block-list\">\n<li>cd \/opt\/3DCoat\/3DCoat-2025 sudo find . -type f -name &#8216;*.png&#8217; -exec mogrify \\{\\} \\; The first command puts us where we installed (decompressed) 3DCoat. The second finds and fixes all png&#8217;s in there.<br \/>&nbsp;<\/li>\n\n\n\n<li>Next time we run 3DCoat&nbsp;it shouldn&#8217;t complain about those&nbsp;sRGB profiles. Making the Terminal more useful and clean.<\/li>\n<\/ol>\n<\/li>\n\n\n\n<li><strong>Restart the Desktop<\/strong>\n<ol class=\"wp-block-list\">\n<li>Most times, after creating a desktop application launcher, we must &#8220;refresh&#8221; the desktop environment to make it available. Not sure we have to do it in this case, since we created a system launcher, but if&nbsp;we can&#8217;t find 3DCoat launcher (icon), do this:\n<ol class=\"wp-block-list\">\n<li>Reboot the system (a tad drastic but it will work for sure).<\/li>\n\n\n\n<li>Log out and log back in again. That restarts the Desktop Environment for the user.<\/li>\n\n\n\n<li>Press ALT+F2 shortcut and type <em>r<\/em> (just the letter R) and Return if a prompt appears. This sends the command &#8220;restart&#8221; to our desktop environment in most Linux distributions using Gnome.<\/li>\n<\/ol>\n<\/li>\n<\/ol>\n<\/li>\n\n\n\n<li><strong>Run 3DCoat<\/strong> as we launch&nbsp;any other program in our system. And pin it to a dock if we use one.<\/li>\n\n\n\n<li><strong>Licensing our&nbsp;3DCoat<\/strong>&nbsp;build: I omitted the licensing prompt that appears the first time we run 3DCoat. It will only be asked the fist time we run 3DCoat with our user or until we actually load the license.\n<ol class=\"wp-block-list\">\n<li>I just load the license downloaded from my account when prompted and that&#8217;s it. We will not have to do it again after the first time, nor when a new version is installed like we did here, until it expires and we need to load a new one. Each user&nbsp;of the system will have to install its own licence, of course.<\/li>\n\n\n\n<li>3DCoat creates some folders for us, with our user&#8217;s preferences and settings in our user&#8217;s Documents folder. The configuration folders are left untouched when we update 3DCoat in our system, and are, as stated, per user. Each user will have its own distinct 3DCoat configuration.<\/li>\n<\/ol>\n<\/li>\n\n\n\n<li><strong>Updating 3DCoat<\/strong>\n<ol class=\"wp-block-list\">\n<li>Once the new file is downloaded, we only&nbsp;repeat <strong>steps 3 and 6<\/strong>, that is: unpack and correct png&#8217;s wrong profiles.<\/li>\n\n\n\n<li>We can, if we want, remove the contents of the previous installation before updating to the brand new build.\n<ol class=\"wp-block-list\">\n<li>This is a potentially dangerous command, so be <strong>careful&nbsp;and diligent&nbsp;when typing<\/strong>. Any potential loss from the misuse of this command will be on you. It erases all contents in a folder and everything that&#8217;s under it. If you do that in a system folder you can seriously damage your installed system rendering it useless. If you point to some of your data directories you could lose your precious data. <strong>You have been warned!<\/strong><br \/>In a terminal, then, we can type, nervously: sudo rm -r \/opt\/3DCoat\/3DCoat-2025\/*<br \/>Afterwards we can update 3DCoat as stated before: decompress and extract like in step 3 and remove the png&#8217;s ICC errors like in step 6.<\/li>\n<\/ol>\n<\/li>\n<\/ol>\n<\/li>\n<\/ol>\n\n\n\n<p><strong>Happy 3DCoatting!&nbsp;<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/3dcoat.com\/forum\/uploads\/emoticons\/default_smile.png\" alt=\":)\" title=\":)\"\/><\/figure>\n\n\n\n<p><\/p>\n","protected":false},"author":3,"featured_media":0,"parent":9137,"menu_order":2,"template":"","manualdocumentationcategory":[9],"manual_doc_tag":[],"class_list":["post-8243","manual_documentation","type-manual_documentation","status-publish","hentry","manualdocumentationcategory-manual"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Linux initial setup for system - 3DCoat Documentation<\/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:\/\/3dcoat.com\/documentation\/manual\/getting-started\/linux-setup\/linux-initial-setup-for-system\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Linux initial setup for system - 3DCoat Documentation\" \/>\n<meta property=\"og:description\" content=\"by Sorn:  ...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/3dcoat.com\/documentation\/manual\/getting-started\/linux-setup\/linux-initial-setup-for-system\/\" \/>\n<meta property=\"og:site_name\" content=\"3DCoat Documentation\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/3DCoat\" \/>\n<meta property=\"article:modified_time\" content=\"2025-03-23T10:05:15+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/3dcoat.com\/forum\/uploads\/emoticons\/default_smile.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@3DCoatOfficial\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/3dcoat.com\/documentation\/manual\/getting-started\/linux-setup\/linux-initial-setup-for-system\/\",\"url\":\"https:\/\/3dcoat.com\/documentation\/manual\/getting-started\/linux-setup\/linux-initial-setup-for-system\/\",\"name\":\"Linux initial setup for system - 3DCoat Documentation\",\"isPartOf\":{\"@id\":\"https:\/\/3dcoat.com\/documentation\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/3dcoat.com\/documentation\/manual\/getting-started\/linux-setup\/linux-initial-setup-for-system\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/3dcoat.com\/documentation\/manual\/getting-started\/linux-setup\/linux-initial-setup-for-system\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/3dcoat.com\/forum\/uploads\/emoticons\/default_smile.png\",\"datePublished\":\"2024-05-11T13:39:26+00:00\",\"dateModified\":\"2025-03-23T10:05:15+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/3dcoat.com\/documentation\/manual\/getting-started\/linux-setup\/linux-initial-setup-for-system\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/3dcoat.com\/documentation\/manual\/getting-started\/linux-setup\/linux-initial-setup-for-system\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/3dcoat.com\/documentation\/manual\/getting-started\/linux-setup\/linux-initial-setup-for-system\/#primaryimage\",\"url\":\"https:\/\/3dcoat.com\/forum\/uploads\/emoticons\/default_smile.png\",\"contentUrl\":\"https:\/\/3dcoat.com\/forum\/uploads\/emoticons\/default_smile.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/3dcoat.com\/documentation\/manual\/getting-started\/linux-setup\/linux-initial-setup-for-system\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/3dcoat.com\/documentation\/nl_NL\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Getting started\",\"item\":\"https:\/\/3dcoat.com\/documentation\/manual\/getting-started\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Linux Setup\",\"item\":\"https:\/\/3dcoat.com\/documentation\/manual\/getting-started\/linux-setup\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Linux initial setup for system\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/3dcoat.com\/documentation\/#website\",\"url\":\"https:\/\/3dcoat.com\/documentation\/\",\"name\":\"3DCoat Documentation\",\"description\":\"Information about starting to use and learning how to use all the features of the 3DCoat.\",\"publisher\":{\"@id\":\"https:\/\/3dcoat.com\/documentation\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/3dcoat.com\/documentation\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/3dcoat.com\/documentation\/#organization\",\"name\":\"Pilgway\",\"url\":\"https:\/\/3dcoat.com\/documentation\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/3dcoat.com\/documentation\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/3dcoat.com\/documentation\/wp-content\/uploads\/2022\/09\/logo3DCoatWhite-1.png\",\"contentUrl\":\"https:\/\/3dcoat.com\/documentation\/wp-content\/uploads\/2022\/09\/logo3DCoatWhite-1.png\",\"width\":876,\"height\":190,\"caption\":\"Pilgway\"},\"image\":{\"@id\":\"https:\/\/3dcoat.com\/documentation\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/3DCoat\",\"https:\/\/x.com\/3DCoatOfficial\",\"https:\/\/www.youtube.com\/c\/PILGWAY3DCoat\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Linux initial setup for system - 3DCoat Documentation","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:\/\/3dcoat.com\/documentation\/manual\/getting-started\/linux-setup\/linux-initial-setup-for-system\/","og_locale":"en_US","og_type":"article","og_title":"Linux initial setup for system - 3DCoat Documentation","og_description":"by Sorn:  ...","og_url":"https:\/\/3dcoat.com\/documentation\/manual\/getting-started\/linux-setup\/linux-initial-setup-for-system\/","og_site_name":"3DCoat Documentation","article_publisher":"https:\/\/www.facebook.com\/3DCoat","article_modified_time":"2025-03-23T10:05:15+00:00","og_image":[{"url":"https:\/\/3dcoat.com\/forum\/uploads\/emoticons\/default_smile.png","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_site":"@3DCoatOfficial","twitter_misc":{"Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/3dcoat.com\/documentation\/manual\/getting-started\/linux-setup\/linux-initial-setup-for-system\/","url":"https:\/\/3dcoat.com\/documentation\/manual\/getting-started\/linux-setup\/linux-initial-setup-for-system\/","name":"Linux initial setup for system - 3DCoat Documentation","isPartOf":{"@id":"https:\/\/3dcoat.com\/documentation\/#website"},"primaryImageOfPage":{"@id":"https:\/\/3dcoat.com\/documentation\/manual\/getting-started\/linux-setup\/linux-initial-setup-for-system\/#primaryimage"},"image":{"@id":"https:\/\/3dcoat.com\/documentation\/manual\/getting-started\/linux-setup\/linux-initial-setup-for-system\/#primaryimage"},"thumbnailUrl":"https:\/\/3dcoat.com\/forum\/uploads\/emoticons\/default_smile.png","datePublished":"2024-05-11T13:39:26+00:00","dateModified":"2025-03-23T10:05:15+00:00","breadcrumb":{"@id":"https:\/\/3dcoat.com\/documentation\/manual\/getting-started\/linux-setup\/linux-initial-setup-for-system\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/3dcoat.com\/documentation\/manual\/getting-started\/linux-setup\/linux-initial-setup-for-system\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/3dcoat.com\/documentation\/manual\/getting-started\/linux-setup\/linux-initial-setup-for-system\/#primaryimage","url":"https:\/\/3dcoat.com\/forum\/uploads\/emoticons\/default_smile.png","contentUrl":"https:\/\/3dcoat.com\/forum\/uploads\/emoticons\/default_smile.png"},{"@type":"BreadcrumbList","@id":"https:\/\/3dcoat.com\/documentation\/manual\/getting-started\/linux-setup\/linux-initial-setup-for-system\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/3dcoat.com\/documentation\/nl_NL\/"},{"@type":"ListItem","position":2,"name":"Getting started","item":"https:\/\/3dcoat.com\/documentation\/manual\/getting-started\/"},{"@type":"ListItem","position":3,"name":"Linux Setup","item":"https:\/\/3dcoat.com\/documentation\/manual\/getting-started\/linux-setup\/"},{"@type":"ListItem","position":4,"name":"Linux initial setup for system"}]},{"@type":"WebSite","@id":"https:\/\/3dcoat.com\/documentation\/#website","url":"https:\/\/3dcoat.com\/documentation\/","name":"3DCoat Documentation","description":"Information about starting to use and learning how to use all the features of the 3DCoat.","publisher":{"@id":"https:\/\/3dcoat.com\/documentation\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/3dcoat.com\/documentation\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/3dcoat.com\/documentation\/#organization","name":"Pilgway","url":"https:\/\/3dcoat.com\/documentation\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/3dcoat.com\/documentation\/#\/schema\/logo\/image\/","url":"https:\/\/3dcoat.com\/documentation\/wp-content\/uploads\/2022\/09\/logo3DCoatWhite-1.png","contentUrl":"https:\/\/3dcoat.com\/documentation\/wp-content\/uploads\/2022\/09\/logo3DCoatWhite-1.png","width":876,"height":190,"caption":"Pilgway"},"image":{"@id":"https:\/\/3dcoat.com\/documentation\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/3DCoat","https:\/\/x.com\/3DCoatOfficial","https:\/\/www.youtube.com\/c\/PILGWAY3DCoat"]}]}},"_links":{"self":[{"href":"https:\/\/3dcoat.com\/documentation\/wp-json\/wp\/v2\/manual_documentation\/8243","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/3dcoat.com\/documentation\/wp-json\/wp\/v2\/manual_documentation"}],"about":[{"href":"https:\/\/3dcoat.com\/documentation\/wp-json\/wp\/v2\/types\/manual_documentation"}],"author":[{"embeddable":true,"href":"https:\/\/3dcoat.com\/documentation\/wp-json\/wp\/v2\/users\/3"}],"version-history":[{"count":5,"href":"https:\/\/3dcoat.com\/documentation\/wp-json\/wp\/v2\/manual_documentation\/8243\/revisions"}],"predecessor-version":[{"id":11709,"href":"https:\/\/3dcoat.com\/documentation\/wp-json\/wp\/v2\/manual_documentation\/8243\/revisions\/11709"}],"up":[{"embeddable":true,"href":"https:\/\/3dcoat.com\/documentation\/wp-json\/wp\/v2\/manual_documentation\/9137"}],"wp:attachment":[{"href":"https:\/\/3dcoat.com\/documentation\/wp-json\/wp\/v2\/media?parent=8243"}],"wp:term":[{"taxonomy":"manualdocumentationcategory","embeddable":true,"href":"https:\/\/3dcoat.com\/documentation\/wp-json\/wp\/v2\/manualdocumentationcategory?post=8243"},{"taxonomy":"manual_doc_tag","embeddable":true,"href":"https:\/\/3dcoat.com\/documentation\/wp-json\/wp\/v2\/manual_doc_tag?post=8243"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}