{"id":4386,"date":"2022-01-05T10:34:25","date_gmt":"2022-01-05T10:34:25","guid":{"rendered":"https:\/\/evoxt.com\/?p=4386"},"modified":"2022-01-05T10:34:25","modified_gmt":"2022-01-05T10:34:25","slug":"enable-automatic-updates-in-linux","status":"publish","type":"post","link":"https:\/\/evoxt.com\/zh\/2022\/01\/05\/enable-automatic-updates-in-linux\/","title":{"rendered":"Enable automatic updates in Linux"},"content":{"rendered":"It is almost impossible to log in to your server to check and update it every day. However, failing to keep servers up to date can be a potential threat.<br \/><br \/> There is a better solution to this, automatic updates. Here is how to enable automatic updates in Linux:<br \/><br \/>\n\n<h3>Ubuntu\/ Debian based servers<\/h3>\n\nInstall unattended-upgrades<br \/>\n<div class=\"code\">apt install unattended-upgrades<\/div><br \/>\n\nEdit the unattended upgrade configuration<br \/>\n<div class=\"code\">vi \/etc\/apt\/apt.conf.d\/50unattended-upgrades<\/div><br \/>\n\n<div class=\"cli\">\n\/\/ Automatically upgrade packages from these (origin:archive) pairs<br \/>\n\/\/<br \/>\n\/\/ Note that in Ubuntu security updates may pull in new dependencies<br \/>\n\/\/ from non-security sources (e.g. chromium). By allowing the release<br \/>\n\/\/ pocket these get automatically pulled in.<br \/>\nUnattended-Upgrade::Allowed-Origins {<br \/>\n        &quot;${distro_id}:${distro_codename}&quot;;<br \/>\n        \/\/&quot;${distro_id}:${distro_codename}-security&quot;;<br \/>\n        \/\/ Extended Security Maintenance; doesn&#039;t necessarily exist for<br \/>\n        \/\/ every release and this system may not have it installed, but if<br \/>\n        \/\/ available, the policy for updates is such that unattended-upgrades<br \/>\n        \/\/ should also install from here by default.<br \/>\n        &quot;${distro_id}ESMApps:${distro_codename}-apps-security&quot;;<br \/>\n        &quot;${distro_id}ESM:${distro_codename}-infra-security&quot;;<br \/>\n\/\/      &quot;${distro_id}:${distro_codename}-updates&quot;;<br \/>\n\/\/      &quot;${distro_id}:${distro_codename}-proposed&quot;;<br \/>\n\/\/      &quot;${distro_id}:${distro_codename}-backports&quot;;<br \/>\n};<br \/>\n<\/div><br \/>\n\nIn this case we will enable the security updates only to avoid potentially messing up the running programs.<br \/>\nTo enable security updates, remove the comment on this line \"${distro_id}:${distro_codename}-security\";<br \/><br \/>\n\n<div class=\"cli\">\n\/\/ Automatically upgrade packages from these (origin:archive) pairs<br \/>\n\/\/<br \/>\n\/\/ Note that in Ubuntu security updates may pull in new dependencies<br \/>\n\/\/ from non-security sources (e.g. chromium). By allowing the release<br \/>\n\/\/ pocket these get automatically pulled in.<br \/>\nUnattended-Upgrade::Allowed-Origins {<br \/>\n        <p style=\"color:orange;margin-bottom:0\">\/\/&quot;${distro_id}:${distro_codename}&quot;;<\/p>\n        <p style=\"color:orange;margin-bottom:0\">&quot;${distro_id}:${distro_codename}-security&quot;;<\/p>\n        \/\/ Extended Security Maintenance; doesn&#039;t necessarily exist for<br \/>\n        \/\/ every release and this system may not have it installed, but if<br \/>\n        \/\/ available, the policy for updates is such that unattended-upgrades<br \/>\n        \/\/ should also install from here by default.<br \/>\n        &quot;${distro_id}ESMApps:${distro_codename}-apps-security&quot;;<br \/>\n        &quot;${distro_id}ESM:${distro_codename}-infra-security&quot;;<br \/>\n\/\/      &quot;${distro_id}:${distro_codename}-updates&quot;;<br \/>\n\/\/      &quot;${distro_id}:${distro_codename}-proposed&quot;;<br \/>\n\/\/      &quot;${distro_id}:${distro_codename}-backports&quot;;<br \/>\n};<br \/>\n<\/div><br \/>\n\nAfter this, we will have to enable automatic upgrade. Use this command to enable automatic upgrade.<br \/>\n\n<div class=\"code\">\necho &#039;APT::Periodic::Update-Package-Lists &quot;1&quot;;<br \/>\nAPT::Periodic::Download-Upgradeable-Packages &quot;1&quot;;<br \/>\nAPT::Periodic::AutocleanInterval &quot;3&quot;;<br \/>\nAPT::Periodic::Unattended-Upgrade &quot;1&quot;;&#039; &gt; \/etc\/apt\/apt.conf.d\/20auto-upgrades<br \/>\n<\/div><br \/><br \/>\n\n<h3>CentOS\/ Fedora based servers<\/h3>\n\nInstall dnf-automatic<br \/>\n<div class=\"code\">dnf install dnf-automatic<\/div><br \/>\n\nWe will have to make changes to the configuration files before enabling automatic update. Go to the configuration file by using this command<br \/>\n<div class=\"code\">vi \/etc\/dnf\/automatic.conf<\/div><br \/>\n\n<div class=\"cli\">\n[commands]<br \/>\n#  What kind of upgrade to perform:<br \/>\n# default                            = all available upgrades<br \/>\n# security                           = only the security upgrades<br \/>\nupgrade_type = default<br \/>\nrandom_sleep = 0<br \/>\n<br \/>\n# Maximum time in seconds to wait until the system is on-line and able to<br \/>\n# connect to remote repositories.<br \/>\nnetwork_online_timeout = 60<br \/>\n<br \/>\n# To just receive updates use dnf-automatic-notifyonly.timer<br \/>\n<br \/>\n# Whether updates should be downloaded when they are available, by<br \/>\n# dnf-automatic.timer. notifyonly.timer, download.timer and<br \/>\n# install.timer override this setting.<br \/>\ndownload_updates = yes<br \/>\n<br \/>\n# Whether updates should be applied when they are available, by<br \/>\n# dnf-automatic.timer. notifyonly.timer, download.timer and<br \/>\n# install.timer override this setting.<br \/>\napply_updates = no<br \/>\n<\/div><br \/><br \/>\n\nIn this case we will enable the security updates only to avoid potentially messing up the running programs.<br \/>\n\t<li>Enabled security updates<\/li>\n<li>Set apply updates to yes to automatic applying the update once downloaded<\/li><br \/><br \/>\n\n<div class=\"cli\">\n[commands]<br \/>\n#  What kind of upgrade to perform:<br \/>\n# default                            = all available upgrades<br \/>\n<p style=\"color:orange;margin-bottom:0\">security                           = only the security upgrades<\/p><br \/>\nupgrade_type = default<br \/>\nrandom_sleep = 0<br \/>\n<br \/>\n# Maximum time in seconds to wait until the system is on-line and able to<br \/>\n# connect to remote repositories.<br \/>\nnetwork_online_timeout = 60<br \/>\n<br \/>\n# To just receive updates use dnf-automatic-notifyonly.timer<br \/>\n<br \/>\n# Whether updates should be downloaded when they are available, by<br \/>\n# dnf-automatic.timer. notifyonly.timer, download.timer and<br \/>\n# install.timer override this setting.<br \/>\ndownload_updates = yes<br \/>\n<br \/>\n# Whether updates should be applied when they are available, by<br \/>\n# dnf-automatic.timer. notifyonly.timer, download.timer and<br \/>\n# install.timer override this setting.<br \/>\n<p style=\"color:orange;margin-bottom:0\">apply_updates = yes<\/p><br \/>\n<\/div><br \/><br \/>\nOnce this is done, start dnf-automatic.timer service<br \/>\n\n<div class=\"code\">systemctl start dnf-automatic.timer<\/div><br \/>\n\nEnable dnf-automatic.timer service to automatic start on reboot<br \/>\n\n<div class=\"code\">systemctl enable dnf-automatic.timer<\/div><br \/>\n<div class=\"cli\">\n[root@evoxt ~]# systemctl enable dnf-automatic.timer<br \/>\nCreated symlink \/etc\/systemd\/system\/timers.target.wants\/dnf-automatic.timer \u2192 \/usr\/lib\/systemd\/system\/dnf-automatic.timer.<br \/>\n[root@evoxt ~]# <span class='green-box'> <\/span> <br \/>\n<\/div><br \/><br \/>\n\nBy following this guide, automatic security update is now enabled on your Linux system.<br \/><br \/>\n\nYour server will now automatically install the latest security updates, protecting your server.<br \/><br \/>\n\n<a href=\"https:\/\/evoxt.com\/deploy\/\" rel=\"noopener\" target=\"_blank\">Deploy a server with Evoxt now!<\/a><br \/>\n<a id='deploy-button-one-click' href='\/deploy'>Deploy<\/a>","protected":false},"excerpt":{"rendered":"It is almost impossible to log in to your server to check and update it every day. However, failing to keep servers up to date can be a potential threat. There is a better solution to this, automatic updates. Here is how to enable automatic updates in Linux: Ubuntu\/ Debian based servers Install unattended-upgrades apt &#8230; <a title=\"Enable automatic updates in Linux\" class=\"read-more\" href=\"https:\/\/evoxt.com\/zh\/2022\/01\/05\/enable-automatic-updates-in-linux\/\" aria-label=\"More on Enable automatic updates in Linux\">Read more<\/a>","protected":false},"author":1,"featured_media":4977,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[4,6],"tags":[],"class_list":["post-4386","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-guides","category-linux"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Enable automatic updates in Linux - \u76ca\u6c83\u65af<\/title>\n<meta name=\"description\" content=\"It is almost impossible to log in to your server to check and update it every day. Here is how to enable automatic updates in Linux ...\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/evoxt.com\/zh\/2022\/01\/05\/enable-automatic-updates-in-linux\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Enable automatic updates in Linux - \u76ca\u6c83\u65af\" \/>\n<meta property=\"og:description\" content=\"It is almost impossible to log in to your server to check and update it every day. Here is how to enable automatic updates in Linux ...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/evoxt.com\/zh\/2022\/01\/05\/enable-automatic-updates-in-linux\/\" \/>\n<meta property=\"og:site_name\" content=\"\u76ca\u6c83\u65af\" \/>\n<meta property=\"article:published_time\" content=\"2022-01-05T10:34:25+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/evoxt.com\/zh\/wp-content\/uploads\/sites\/2\/2022\/01\/automatic-update-150x150-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"337\" \/>\n\t<meta property=\"og:image:height\" content=\"180\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Evoxt\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Evoxt\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/evoxt.com\/zh\/2022\/01\/05\/enable-automatic-updates-in-linux\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/evoxt.com\/zh\/2022\/01\/05\/enable-automatic-updates-in-linux\/\"},\"author\":{\"name\":\"Evoxt\",\"@id\":\"https:\/\/evoxt.com\/zh\/#\/schema\/person\/33542421ee27f984d55fa9ed8f191432\"},\"headline\":\"Enable automatic updates in Linux\",\"datePublished\":\"2022-01-05T10:34:25+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/evoxt.com\/zh\/2022\/01\/05\/enable-automatic-updates-in-linux\/\"},\"wordCount\":748,\"publisher\":{\"@id\":\"https:\/\/evoxt.com\/zh\/#organization\"},\"image\":{\"@id\":\"https:\/\/evoxt.com\/zh\/2022\/01\/05\/enable-automatic-updates-in-linux\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/evoxt.com\/zh\/wp-content\/uploads\/sites\/2\/2022\/01\/automatic-update-150x150-1.png\",\"articleSection\":[\"Guides\",\"Linux\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/evoxt.com\/zh\/2022\/01\/05\/enable-automatic-updates-in-linux\/\",\"url\":\"https:\/\/evoxt.com\/zh\/2022\/01\/05\/enable-automatic-updates-in-linux\/\",\"name\":\"Enable automatic updates in Linux - \u76ca\u6c83\u65af\",\"isPartOf\":{\"@id\":\"https:\/\/evoxt.com\/zh\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/evoxt.com\/zh\/2022\/01\/05\/enable-automatic-updates-in-linux\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/evoxt.com\/zh\/2022\/01\/05\/enable-automatic-updates-in-linux\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/evoxt.com\/zh\/wp-content\/uploads\/sites\/2\/2022\/01\/automatic-update-150x150-1.png\",\"datePublished\":\"2022-01-05T10:34:25+00:00\",\"description\":\"It is almost impossible to log in to your server to check and update it every day. Here is how to enable automatic updates in Linux ...\",\"breadcrumb\":{\"@id\":\"https:\/\/evoxt.com\/zh\/2022\/01\/05\/enable-automatic-updates-in-linux\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/evoxt.com\/zh\/2022\/01\/05\/enable-automatic-updates-in-linux\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/evoxt.com\/zh\/2022\/01\/05\/enable-automatic-updates-in-linux\/#primaryimage\",\"url\":\"https:\/\/evoxt.com\/zh\/wp-content\/uploads\/sites\/2\/2022\/01\/automatic-update-150x150-1.png\",\"contentUrl\":\"https:\/\/evoxt.com\/zh\/wp-content\/uploads\/sites\/2\/2022\/01\/automatic-update-150x150-1.png\",\"width\":337,\"height\":180},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/evoxt.com\/zh\/2022\/01\/05\/enable-automatic-updates-in-linux\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/evoxt.com\/zh\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Enable automatic updates in Linux\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/evoxt.com\/zh\/#website\",\"url\":\"https:\/\/evoxt.com\/zh\/\",\"name\":\"\u76ca\u6c83\u65af\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/evoxt.com\/zh\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/evoxt.com\/zh\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/evoxt.com\/zh\/#organization\",\"name\":\"\u76ca\u6c83\u65af\",\"url\":\"https:\/\/evoxt.com\/zh\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/evoxt.com\/zh\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/evoxt.com\/zh\/wp-content\/uploads\/sites\/2\/2023\/04\/Evoxt-Logo-Final-Chinese-.svg\",\"contentUrl\":\"https:\/\/evoxt.com\/zh\/wp-content\/uploads\/sites\/2\/2023\/04\/Evoxt-Logo-Final-Chinese-.svg\",\"caption\":\"\u76ca\u6c83\u65af\"},\"image\":{\"@id\":\"https:\/\/evoxt.com\/zh\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/evoxt.com\/zh\/#\/schema\/person\/33542421ee27f984d55fa9ed8f191432\",\"name\":\"Evoxt\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/93544d95eb090f5bda9e766f878c2f608dc6f3fc56943c156e0841c62551fa90?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/93544d95eb090f5bda9e766f878c2f608dc6f3fc56943c156e0841c62551fa90?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/93544d95eb090f5bda9e766f878c2f608dc6f3fc56943c156e0841c62551fa90?s=96&d=mm&r=g\",\"caption\":\"Evoxt\"},\"sameAs\":[\"https:\/\/www.evoxt.com\/wordpress\"],\"url\":\"https:\/\/evoxt.com\/zh\/author\/admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Enable automatic updates in Linux - \u76ca\u6c83\u65af","description":"It is almost impossible to log in to your server to check and update it every day. Here is how to enable automatic updates in Linux ...","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:\/\/evoxt.com\/zh\/2022\/01\/05\/enable-automatic-updates-in-linux\/","og_locale":"en_US","og_type":"article","og_title":"Enable automatic updates in Linux - \u76ca\u6c83\u65af","og_description":"It is almost impossible to log in to your server to check and update it every day. Here is how to enable automatic updates in Linux ...","og_url":"https:\/\/evoxt.com\/zh\/2022\/01\/05\/enable-automatic-updates-in-linux\/","og_site_name":"\u76ca\u6c83\u65af","article_published_time":"2022-01-05T10:34:25+00:00","og_image":[{"width":337,"height":180,"url":"https:\/\/evoxt.com\/zh\/wp-content\/uploads\/sites\/2\/2022\/01\/automatic-update-150x150-1.png","type":"image\/png"}],"author":"Evoxt","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Evoxt","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/evoxt.com\/zh\/2022\/01\/05\/enable-automatic-updates-in-linux\/#article","isPartOf":{"@id":"https:\/\/evoxt.com\/zh\/2022\/01\/05\/enable-automatic-updates-in-linux\/"},"author":{"name":"Evoxt","@id":"https:\/\/evoxt.com\/zh\/#\/schema\/person\/33542421ee27f984d55fa9ed8f191432"},"headline":"Enable automatic updates in Linux","datePublished":"2022-01-05T10:34:25+00:00","mainEntityOfPage":{"@id":"https:\/\/evoxt.com\/zh\/2022\/01\/05\/enable-automatic-updates-in-linux\/"},"wordCount":748,"publisher":{"@id":"https:\/\/evoxt.com\/zh\/#organization"},"image":{"@id":"https:\/\/evoxt.com\/zh\/2022\/01\/05\/enable-automatic-updates-in-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/evoxt.com\/zh\/wp-content\/uploads\/sites\/2\/2022\/01\/automatic-update-150x150-1.png","articleSection":["Guides","Linux"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/evoxt.com\/zh\/2022\/01\/05\/enable-automatic-updates-in-linux\/","url":"https:\/\/evoxt.com\/zh\/2022\/01\/05\/enable-automatic-updates-in-linux\/","name":"Enable automatic updates in Linux - \u76ca\u6c83\u65af","isPartOf":{"@id":"https:\/\/evoxt.com\/zh\/#website"},"primaryImageOfPage":{"@id":"https:\/\/evoxt.com\/zh\/2022\/01\/05\/enable-automatic-updates-in-linux\/#primaryimage"},"image":{"@id":"https:\/\/evoxt.com\/zh\/2022\/01\/05\/enable-automatic-updates-in-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/evoxt.com\/zh\/wp-content\/uploads\/sites\/2\/2022\/01\/automatic-update-150x150-1.png","datePublished":"2022-01-05T10:34:25+00:00","description":"It is almost impossible to log in to your server to check and update it every day. Here is how to enable automatic updates in Linux ...","breadcrumb":{"@id":"https:\/\/evoxt.com\/zh\/2022\/01\/05\/enable-automatic-updates-in-linux\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/evoxt.com\/zh\/2022\/01\/05\/enable-automatic-updates-in-linux\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/evoxt.com\/zh\/2022\/01\/05\/enable-automatic-updates-in-linux\/#primaryimage","url":"https:\/\/evoxt.com\/zh\/wp-content\/uploads\/sites\/2\/2022\/01\/automatic-update-150x150-1.png","contentUrl":"https:\/\/evoxt.com\/zh\/wp-content\/uploads\/sites\/2\/2022\/01\/automatic-update-150x150-1.png","width":337,"height":180},{"@type":"BreadcrumbList","@id":"https:\/\/evoxt.com\/zh\/2022\/01\/05\/enable-automatic-updates-in-linux\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/evoxt.com\/zh\/"},{"@type":"ListItem","position":2,"name":"Enable automatic updates in Linux"}]},{"@type":"WebSite","@id":"https:\/\/evoxt.com\/zh\/#website","url":"https:\/\/evoxt.com\/zh\/","name":"\u76ca\u6c83\u65af","description":"","publisher":{"@id":"https:\/\/evoxt.com\/zh\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/evoxt.com\/zh\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/evoxt.com\/zh\/#organization","name":"\u76ca\u6c83\u65af","url":"https:\/\/evoxt.com\/zh\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/evoxt.com\/zh\/#\/schema\/logo\/image\/","url":"https:\/\/evoxt.com\/zh\/wp-content\/uploads\/sites\/2\/2023\/04\/Evoxt-Logo-Final-Chinese-.svg","contentUrl":"https:\/\/evoxt.com\/zh\/wp-content\/uploads\/sites\/2\/2023\/04\/Evoxt-Logo-Final-Chinese-.svg","caption":"\u76ca\u6c83\u65af"},"image":{"@id":"https:\/\/evoxt.com\/zh\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/evoxt.com\/zh\/#\/schema\/person\/33542421ee27f984d55fa9ed8f191432","name":"Evoxt","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/93544d95eb090f5bda9e766f878c2f608dc6f3fc56943c156e0841c62551fa90?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/93544d95eb090f5bda9e766f878c2f608dc6f3fc56943c156e0841c62551fa90?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/93544d95eb090f5bda9e766f878c2f608dc6f3fc56943c156e0841c62551fa90?s=96&d=mm&r=g","caption":"Evoxt"},"sameAs":["https:\/\/www.evoxt.com\/wordpress"],"url":"https:\/\/evoxt.com\/zh\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/evoxt.com\/zh\/wp-json\/wp\/v2\/posts\/4386","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/evoxt.com\/zh\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/evoxt.com\/zh\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/evoxt.com\/zh\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/evoxt.com\/zh\/wp-json\/wp\/v2\/comments?post=4386"}],"version-history":[{"count":0,"href":"https:\/\/evoxt.com\/zh\/wp-json\/wp\/v2\/posts\/4386\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/evoxt.com\/zh\/wp-json\/wp\/v2\/media\/4977"}],"wp:attachment":[{"href":"https:\/\/evoxt.com\/zh\/wp-json\/wp\/v2\/media?parent=4386"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/evoxt.com\/zh\/wp-json\/wp\/v2\/categories?post=4386"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/evoxt.com\/zh\/wp-json\/wp\/v2\/tags?post=4386"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}