{"id":4994,"date":"2010-06-30T23:12:00","date_gmt":"2010-06-30T23:12:00","guid":{"rendered":"https:\/\/www.ahotech.com\/?p=4994"},"modified":"2025-09-16T23:17:18","modified_gmt":"2025-09-16T23:17:18","slug":"tutoriaali-rtorrentin-kaytosta-linuxissa-kuin-ammattilainen","status":"publish","type":"post","link":"https:\/\/www.ahotech.com\/fi\/2010\/06\/30\/tutorial-using-rtorrent-on-linux-like-a-pro\/","title":{"rendered":"Opastus \u2013 rTorrentin k\u00e4ytt\u00f6 Linuxissa kuin ammattilainen"},"content":{"rendered":"\n<section>\n    <h2>What is rTorrent?<\/h2>\n    <p>\n      rTorrent is a lightweight, ncurses-based BitTorrent client for Linux and other Unix-like systems.\n      It runs entirely in the terminal, uses minimal resources, and is ideal for headless setups such as seedboxes or home servers.\n    <\/p>\n  <\/section>\n\n\n\n<section>\n    <h2>Prerequisites<\/h2>\n    <ul>\n      <li>A Linux machine (Debian\/Ubuntu\/Fedora\/Arch or similar)<\/li>\n      <li>Basic knowledge of the command line<\/li>\n      <li>SSH access if you\u2019re installing on a remote server<\/li>\n    <\/ul>\n  <\/section>\n\n\n\n<section>\n    <h2>1. Installation<\/h2>\n    <p>Install rTorrent using your distribution\u2019s package manager:<\/p>\n    <pre><code># Debian\/Ubuntu\nsudo apt update &amp;&amp; sudo apt install rtorrent\n\n# Fedora\nsudo dnf install rtorrent\n\n# Arch Linux\nsudo pacman -S rtorrent\n<\/code><\/pre>\n  <\/section>\n\n\n\n<section>\n    <h2>2. Basic Usage<\/h2>\n    <p>\n      Start rTorrent by running:\n      <\/p><pre><code>rtorrent<\/code><\/pre>\n    <p><\/p>\n    <p>\n      You\u2019ll see a curses-based interface with different panes. Key commands:\n    <\/p>\n    <ul>\n      <li><strong>Ctrl+q<\/strong>: Quit<\/li>\n      <li><strong>Backspace<\/strong>: Load a .torrent file<\/li>\n      <li><strong>Enter<\/strong>: Start\/stop a torrent<\/li>\n      <li><strong>Right arrow<\/strong>: View details of a selected torrent<\/li>\n    <\/ul>\n  <\/section>\n\n\n\n<section>\n    <h2>3. Configuration<\/h2>\n    <p>\n      rTorrent reads its settings from <code>~\/.rtorrent.rc<\/code>. Create or edit this file:\n    <\/p>\n    <pre><code>nano ~\/.rtorrent.rc<\/code><\/pre>\n    <p>Example configuration:<\/p>\n    <pre><code># Directory to save files\ndirectory = ~\/downloads\n\n# Session directory (stores torrent state)\nsession = ~\/.rtorrent\/session\n\n# Port range for incoming connections\nport_range = 50000-50010\n\n# Upload\/download rate limits (in KiB)\nupload_rate = 100\ndownload_rate = 0   # 0 = unlimited\n<\/code><\/pre>\n    <p>\n      After editing, restart rTorrent to apply changes.\n    <\/p>\n  <\/section>\n\n\n\n<section>\n    <h2>4. Automation &amp; Advanced Tips<\/h2>\n    <ul>\n      <li><strong>Watch Directory:<\/strong> Automatically load torrents placed in a specific folder.\n        <pre><code>schedule = watch_directory,5,5,load_start=~\/torrents\/*.torrent<\/code><\/pre>\n      <\/li>\n      <li><strong>Ratios &amp; Seeding:<\/strong> Control seeding ratios to automate stopping after a threshold.\n        <pre><code>ratio.enable=\nratio.min.set = 1.0\nratio.max.set = 2.0\nratio.upload.set = 50M\nschedule2 = ratio,60,60,\"stop_on_ratio=1.0\"\n<\/code><\/pre>\n      <\/li>\n      <li><strong>Automation Scripts:<\/strong> Pair rTorrent with tools like <code>cron<\/code> or <code>systemd<\/code> for unattended operation.<\/li>\n    <\/ul>\n  <\/section>\n\n\n\n<section>\n    <h2>5. Running as a System Service<\/h2>\n    <p>\n      For servers, it\u2019s convenient to run rTorrent under <code>systemd<\/code> so it starts automatically:\n    <\/p>\n    <pre><code>[Unit]\nDescription=rTorrent\nAfter=network.target\n\n[Service]\nType=simple\nExecStart=\/usr\/bin\/rtorrent\nExecStop=\/bin\/kill -s INT $MAINPID\nRestart=on-failure\nUser=yourusername\nWorkingDirectory=\/home\/yourusername\n\n[Install]\nWantedBy=multi-user.target\n<\/code><\/pre>\n    <p>Save this as <code>\/etc\/systemd\/system\/rtorrent.service<\/code>, then run:<\/p>\n    <pre><code>sudo systemctl daemon-reload\nsudo systemctl enable --now rtorrent\n<\/code><\/pre>\n  <\/section>\n\n\n\n<section>\n    <h2>6. Useful Keyboard Shortcuts<\/h2>\n    <ul>\n      <li><strong>^d<\/strong> (Ctrl+d): Remove torrent from list<\/li>\n      <li><strong>+ \/ &#8211;<\/strong>: Adjust download\/upload priority<\/li>\n      <li><strong>Space<\/strong>: Pause\/resume all torrents<\/li>\n    <\/ul>\n  <\/section>\n\n\n\n<section>\n    <h2>7. Security &amp; Best Practices<\/h2>\n    <ul>\n      <li>Keep your system and rTorrent updated to the latest stable release.<\/li>\n      <li>Use a VPN or seedbox for privacy if required by your use case.<\/li>\n      <li>Set appropriate permissions on download and session directories.<\/li>\n    <\/ul>\n  <\/section>\n\n\n\n<section>\n    <h2>Conclusion<\/h2>\n    <p>\n      rTorrent offers speed, flexibility, and full command-line control for serious Linux users.\n      With a tuned <code>.rtorrent.rc<\/code>, watch directories, and systemd integration, you can run an automated,\n      low-overhead torrenting setup that rivals any graphical client.\n    <\/p>\n  <\/section>\n","protected":false},"excerpt":{"rendered":"<p>What is rTorrent? rTorrent is a lightweight, ncurses-based BitTorrent client for Linux and other Unix-like systems. It runs entirely in the terminal, uses minimal resources, and is ideal for headless setups such as seedboxes or home servers. Prerequisites A Linux machine (Debian\/Ubuntu\/Fedora\/Arch or similar) Basic knowledge of the command line SSH access if you\u2019re installing [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"set","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[1],"tags":[],"class_list":["post-4994","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Tutorial \u2013 Using rTorrent on Linux Like a Pro - Ahotech.com<\/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.ahotech.com\/fi\/2010\/06\/30\/tutoriaali-rtorrentin-kaytosta-linuxissa-kuin-ammattilainen\/\" \/>\n<meta property=\"og:locale\" content=\"fi_FI\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Tutorial \u2013 Using rTorrent on Linux Like a Pro - Ahotech.com\" \/>\n<meta property=\"og:description\" content=\"What is rTorrent? rTorrent is a lightweight, ncurses-based BitTorrent client for Linux and other Unix-like systems. It runs entirely in the terminal, uses minimal resources, and is ideal for headless setups such as seedboxes or home servers. Prerequisites A Linux machine (Debian\/Ubuntu\/Fedora\/Arch or similar) Basic knowledge of the command line SSH access if you\u2019re installing [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.ahotech.com\/fi\/2010\/06\/30\/tutoriaali-rtorrentin-kaytosta-linuxissa-kuin-ammattilainen\/\" \/>\n<meta property=\"og:site_name\" content=\"Ahotech.com\" \/>\n<meta property=\"article:published_time\" content=\"2010-06-30T23:12:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-09-16T23:17:18+00:00\" \/>\n<meta name=\"author\" content=\"Louis Ellis\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Kirjoittanut\" \/>\n\t<meta name=\"twitter:data1\" content=\"Louis Ellis\" \/>\n\t<meta name=\"twitter:label2\" content=\"Arvioitu lukuaika\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minuuttia\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.ahotech.com\\\/da\\\/2010\\\/06\\\/30\\\/tutorial-til-at-bruge-rtorrent-pa-linux-som-en-professionel\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.ahotech.com\\\/da\\\/2010\\\/06\\\/30\\\/tutorial-til-at-bruge-rtorrent-pa-linux-som-en-professionel\\\/\"},\"author\":{\"name\":\"Louis Ellis\",\"@id\":\"https:\\\/\\\/www.ahotech.com\\\/es\\\/#\\\/schema\\\/person\\\/3958f5a43b93565fc68c6fecec0ab3dc\"},\"headline\":\"Tutorial \u2013 Using rTorrent on Linux Like a Pro\",\"datePublished\":\"2010-06-30T23:12:00+00:00\",\"dateModified\":\"2025-09-16T23:17:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.ahotech.com\\\/da\\\/2010\\\/06\\\/30\\\/tutorial-til-at-bruge-rtorrent-pa-linux-som-en-professionel\\\/\"},\"wordCount\":288,\"publisher\":{\"@id\":\"https:\\\/\\\/www.ahotech.com\\\/es\\\/#organization\"},\"articleSection\":[\"Uncategorized\"],\"inLanguage\":\"fi\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.ahotech.com\\\/da\\\/2010\\\/06\\\/30\\\/tutorial-til-at-bruge-rtorrent-pa-linux-som-en-professionel\\\/\",\"url\":\"https:\\\/\\\/www.ahotech.com\\\/da\\\/2010\\\/06\\\/30\\\/tutorial-til-at-bruge-rtorrent-pa-linux-som-en-professionel\\\/\",\"name\":\"Tutorial \u2013 Using rTorrent on Linux Like a Pro - Ahotech.com\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.ahotech.com\\\/es\\\/#website\"},\"datePublished\":\"2010-06-30T23:12:00+00:00\",\"dateModified\":\"2025-09-16T23:17:18+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.ahotech.com\\\/da\\\/2010\\\/06\\\/30\\\/tutorial-til-at-bruge-rtorrent-pa-linux-som-en-professionel\\\/#breadcrumb\"},\"inLanguage\":\"fi\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.ahotech.com\\\/da\\\/2010\\\/06\\\/30\\\/tutorial-til-at-bruge-rtorrent-pa-linux-som-en-professionel\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.ahotech.com\\\/da\\\/2010\\\/06\\\/30\\\/tutorial-til-at-bruge-rtorrent-pa-linux-som-en-professionel\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.ahotech.com\\\/es\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Tutorial \u2013 Using rTorrent on Linux Like a Pro\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.ahotech.com\\\/es\\\/#website\",\"url\":\"https:\\\/\\\/www.ahotech.com\\\/es\\\/\",\"name\":\"Ahotech.com\",\"description\":\"lithium battery manufacturers\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.ahotech.com\\\/es\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.ahotech.com\\\/es\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"fi\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.ahotech.com\\\/es\\\/#organization\",\"name\":\"Ahotech.com\",\"url\":\"https:\\\/\\\/www.ahotech.com\\\/es\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fi\",\"@id\":\"https:\\\/\\\/www.ahotech.com\\\/es\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.ahotech.com\\\/wp-content\\\/uploads\\\/2021\\\/10\\\/battery-site-logo.jpg\",\"contentUrl\":\"https:\\\/\\\/www.ahotech.com\\\/wp-content\\\/uploads\\\/2021\\\/10\\\/battery-site-logo.jpg\",\"width\":1297,\"height\":465,\"caption\":\"Ahotech.com\"},\"image\":{\"@id\":\"https:\\\/\\\/www.ahotech.com\\\/es\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.ahotech.com\\\/es\\\/#\\\/schema\\\/person\\\/3958f5a43b93565fc68c6fecec0ab3dc\",\"name\":\"Louis Ellis\",\"sameAs\":[\"https:\\\/\\\/www.ahotech.com\"],\"url\":\"https:\\\/\\\/www.ahotech.com\\\/fi\\\/author\\\/louis-ellis\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Opastus \u2013 rTorrentin k\u00e4ytt\u00f6 Linuxissa kuin ammattilainen - Ahotech.com","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.ahotech.com\/fi\/2010\/06\/30\/tutoriaali-rtorrentin-kaytosta-linuxissa-kuin-ammattilainen\/","og_locale":"fi_FI","og_type":"article","og_title":"Tutorial \u2013 Using rTorrent on Linux Like a Pro - Ahotech.com","og_description":"What is rTorrent? rTorrent is a lightweight, ncurses-based BitTorrent client for Linux and other Unix-like systems. It runs entirely in the terminal, uses minimal resources, and is ideal for headless setups such as seedboxes or home servers. Prerequisites A Linux machine (Debian\/Ubuntu\/Fedora\/Arch or similar) Basic knowledge of the command line SSH access if you\u2019re installing [&hellip;]","og_url":"https:\/\/www.ahotech.com\/fi\/2010\/06\/30\/tutoriaali-rtorrentin-kaytosta-linuxissa-kuin-ammattilainen\/","og_site_name":"Ahotech.com","article_published_time":"2010-06-30T23:12:00+00:00","article_modified_time":"2025-09-16T23:17:18+00:00","author":"Louis Ellis","twitter_card":"summary_large_image","twitter_misc":{"Kirjoittanut":"Louis Ellis","Arvioitu lukuaika":"2 minuuttia"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.ahotech.com\/da\/2010\/06\/30\/tutorial-til-at-bruge-rtorrent-pa-linux-som-en-professionel\/#article","isPartOf":{"@id":"https:\/\/www.ahotech.com\/da\/2010\/06\/30\/tutorial-til-at-bruge-rtorrent-pa-linux-som-en-professionel\/"},"author":{"name":"Louis Ellis","@id":"https:\/\/www.ahotech.com\/es\/#\/schema\/person\/3958f5a43b93565fc68c6fecec0ab3dc"},"headline":"Tutorial \u2013 Using rTorrent on Linux Like a Pro","datePublished":"2010-06-30T23:12:00+00:00","dateModified":"2025-09-16T23:17:18+00:00","mainEntityOfPage":{"@id":"https:\/\/www.ahotech.com\/da\/2010\/06\/30\/tutorial-til-at-bruge-rtorrent-pa-linux-som-en-professionel\/"},"wordCount":288,"publisher":{"@id":"https:\/\/www.ahotech.com\/es\/#organization"},"articleSection":["Uncategorized"],"inLanguage":"fi"},{"@type":"WebPage","@id":"https:\/\/www.ahotech.com\/da\/2010\/06\/30\/tutorial-til-at-bruge-rtorrent-pa-linux-som-en-professionel\/","url":"https:\/\/www.ahotech.com\/da\/2010\/06\/30\/tutorial-til-at-bruge-rtorrent-pa-linux-som-en-professionel\/","name":"Opastus \u2013 rTorrentin k\u00e4ytt\u00f6 Linuxissa kuin ammattilainen - Ahotech.com","isPartOf":{"@id":"https:\/\/www.ahotech.com\/es\/#website"},"datePublished":"2010-06-30T23:12:00+00:00","dateModified":"2025-09-16T23:17:18+00:00","breadcrumb":{"@id":"https:\/\/www.ahotech.com\/da\/2010\/06\/30\/tutorial-til-at-bruge-rtorrent-pa-linux-som-en-professionel\/#breadcrumb"},"inLanguage":"fi","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.ahotech.com\/da\/2010\/06\/30\/tutorial-til-at-bruge-rtorrent-pa-linux-som-en-professionel\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.ahotech.com\/da\/2010\/06\/30\/tutorial-til-at-bruge-rtorrent-pa-linux-som-en-professionel\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.ahotech.com\/es\/"},{"@type":"ListItem","position":2,"name":"Tutorial \u2013 Using rTorrent on Linux Like a Pro"}]},{"@type":"WebSite","@id":"https:\/\/www.ahotech.com\/es\/#website","url":"https:\/\/www.ahotech.com\/es\/","name":"Ahotech.com","description":"litium-akkujen valmistajat","publisher":{"@id":"https:\/\/www.ahotech.com\/es\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.ahotech.com\/es\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fi"},{"@type":"Organization","@id":"https:\/\/www.ahotech.com\/es\/#organization","name":"Ahotech.com","url":"https:\/\/www.ahotech.com\/es\/","logo":{"@type":"ImageObject","inLanguage":"fi","@id":"https:\/\/www.ahotech.com\/es\/#\/schema\/logo\/image\/","url":"https:\/\/www.ahotech.com\/wp-content\/uploads\/2021\/10\/battery-site-logo.jpg","contentUrl":"https:\/\/www.ahotech.com\/wp-content\/uploads\/2021\/10\/battery-site-logo.jpg","width":1297,"height":465,"caption":"Ahotech.com"},"image":{"@id":"https:\/\/www.ahotech.com\/es\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.ahotech.com\/es\/#\/schema\/person\/3958f5a43b93565fc68c6fecec0ab3dc","name":"Louis Ellis","sameAs":["https:\/\/www.ahotech.com"],"url":"https:\/\/www.ahotech.com\/fi\/author\/louis-ellis\/"}]}},"_links":{"self":[{"href":"https:\/\/www.ahotech.com\/fi\/wp-json\/wp\/v2\/posts\/4994","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.ahotech.com\/fi\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.ahotech.com\/fi\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.ahotech.com\/fi\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.ahotech.com\/fi\/wp-json\/wp\/v2\/comments?post=4994"}],"version-history":[{"count":1,"href":"https:\/\/www.ahotech.com\/fi\/wp-json\/wp\/v2\/posts\/4994\/revisions"}],"predecessor-version":[{"id":4995,"href":"https:\/\/www.ahotech.com\/fi\/wp-json\/wp\/v2\/posts\/4994\/revisions\/4995"}],"wp:attachment":[{"href":"https:\/\/www.ahotech.com\/fi\/wp-json\/wp\/v2\/media?parent=4994"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.ahotech.com\/fi\/wp-json\/wp\/v2\/categories?post=4994"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.ahotech.com\/fi\/wp-json\/wp\/v2\/tags?post=4994"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}