{"id":436,"date":"2025-10-25T23:51:38","date_gmt":"2025-10-25T21:51:38","guid":{"rendered":"https:\/\/blog.viking-studios.net\/en\/?p=436"},"modified":"2025-10-25T23:51:42","modified_gmt":"2025-10-25T21:51:42","slug":"rustdesk-free-remote-desktop-solution-on-synology-diskstation-a-teamviewer-alternative","status":"publish","type":"post","link":"https:\/\/blog.viking-studios.net\/en\/rustdesk-free-remote-desktop-solution-on-synology-diskstation-a-teamviewer-alternative\/","title":{"rendered":"RustDesk: Free Remote Desktop Solution on Synology DiskStation \u2013 A TeamViewer Alternative"},"content":{"rendered":"\n<p><strong>TeamViewer is a handy application for remotely accessing another computer, and it can be quite useful even for personal use: whether you&#8217;re accessing your office PC from your laptop elsewhere in the house\u2014or even outside\u2014or helping relatives with their computer issues. However, frequent use of TeamViewer may lead to being flagged as a commercial user, which disables free usage. While there are various alternatives, not all are as performant as TeamViewer, and some have adopted the same practice of flagging regular private users as commercial.<br>RustDesk offers a solution. This self-hosted remote desktop tool is open-source and free (Pro licenses are available for advanced features).<\/strong><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Server Installation<\/h2>\n\n\n\n<p>RustDesk provides its server as a Docker image. On compatible DiskStations, Docker is available as the &#8220;Container Manager&#8221; package (called &#8220;Docker&#8221; on DSM versions below 7.2). RustDesk conveniently offers a ready-to-use <code>docker-compose.yml<\/code>, so you don\u2019t need to manually download and configure an image or build your own compose file.<\/p>\n\n\n\n<p>Before starting, install the Container Manager on your DiskStation if you haven\u2019t already.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large is-resized\"><a href=\"https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/container_manager_EN.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"490\" src=\"https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/container_manager_EN-1024x490.png\" alt=\"The Container Manager is Synology's GUI for Docker.\" class=\"wp-image-439\" style=\"width:auto;height:512px\" srcset=\"https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/container_manager_EN-1024x490.png 1024w, https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/container_manager_EN-300x144.png 300w, https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/container_manager_EN-150x72.png 150w, https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/container_manager_EN-768x367.png 768w, https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/container_manager_EN-1536x735.png 1536w, https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/container_manager_EN-2048x980.png 2048w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/a><figcaption class=\"wp-element-caption\">The Container Manager is Synology&#8217;s GUI for Docker.<\/figcaption><\/figure><\/div>\n\n\n<p>The Container Manager creates a shared folder <code>\/docker<\/code>. Inside it, create a folder named <code>rustdesk<\/code>, and within that, a folder named <code>data<\/code>.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large is-resized\"><a href=\"https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/ordner_struktur_EN.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"527\" src=\"https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/ordner_struktur_EN-1024x527.png\" alt=\"The folders aer used to store the container data.\" class=\"wp-image-441\" style=\"width:auto;height:529px\" srcset=\"https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/ordner_struktur_EN-1024x527.png 1024w, https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/ordner_struktur_EN-300x154.png 300w, https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/ordner_struktur_EN-150x77.png 150w, https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/ordner_struktur_EN-768x395.png 768w, https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/ordner_struktur_EN-1536x790.png 1536w, https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/ordner_struktur_EN-2048x1054.png 2048w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/a><figcaption class=\"wp-element-caption\">The folders aer used to store the container data.<\/figcaption><\/figure><\/div>\n\n\n<p>Open the Container Manager, click on <em>Project<\/em> &gt; <em>Create<\/em>. Assign a name to the container and select <code>\/docker\/rustdesk<\/code> as the path. Choose \u201cCreate docker-compose.yml\u201d as the source and paste the following lines into the editor:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"dockerfile\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">services:\n  hbbs:\n    container_name: hbbs\n    image: rustdesk\/rustdesk-server:latest # Please change this to rustdesk\/rustdesk-server-pro:latest if you want to install Pro.\n    command: hbbs\n    volumes:\n      - .\/data:\/root\n    network_mode: host\n    depends_on:\n      - hbbr\n    restart: always\n\n  hbbr:\n    container_name: hbbr\n    image: rustdesk\/rustdesk-server:latest # Please change this to rustdesk\/rustdesk-server-pro:latest if you want to install Pro.\n    command: hbbr\n    volumes:\n      - .\/data:\/root\n    network_mode: host\n    restart: always<\/pre>\n\n\n\n<p>Click <em>Next<\/em>, skip the web portal settings, and finish the dialog. The containers <code>hbbr<\/code> and <code>hbbs<\/code> will be created and started. If successful, you\u2019ll find several files under <code>\/docker\/rustdesk\/data<\/code>. The server is now ready.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large is-resized\"><a href=\"https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/container_projekt_EN.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"810\" src=\"https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/container_projekt_EN-1024x810.png\" alt=\"The Container Manager supports Docker Compose.\" class=\"wp-image-440\" style=\"width:auto;height:590px\" srcset=\"https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/container_projekt_EN-1024x810.png 1024w, https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/container_projekt_EN-300x237.png 300w, https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/container_projekt_EN-150x119.png 150w, https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/container_projekt_EN-768x607.png 768w, https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/container_projekt_EN.png 1492w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/a><figcaption class=\"wp-element-caption\">The Container Manager supports Docker Compose.<\/figcaption><\/figure><\/div>\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large is-resized\"><a href=\"https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/container_dateien_EN.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"373\" src=\"https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/container_dateien_EN-1024x373.png\" alt=\"If the container get greated and started successfully, you can find these files in the data directory..\" class=\"wp-image-438\" style=\"width:auto;height:283px\" srcset=\"https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/container_dateien_EN-1024x373.png 1024w, https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/container_dateien_EN-300x109.png 300w, https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/container_dateien_EN-150x55.png 150w, https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/container_dateien_EN-768x280.png 768w, https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/container_dateien_EN-1536x560.png 1536w, https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/container_dateien_EN.png 1552w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/a><figcaption class=\"wp-element-caption\">If the container get greated and started successfully, you can find these files in the data directory..<\/figcaption><\/figure><\/div>\n\n<style>.wp-block-kadence-column.kb-section-dir-horizontal > .kt-inside-inner-col > .kt-info-box436_d03065-1c .kt-blocks-info-box-link-wrap{max-width:unset;}.kt-info-box436_d03065-1c .kt-blocks-info-box-link-wrap{border-top:2px solid #afcde3;border-right:2px solid #afcde3;border-bottom:2px solid #afcde3;border-left:2px solid #afcde3;border-top-left-radius:20px;border-top-right-radius:20px;border-bottom-right-radius:20px;border-bottom-left-radius:20px;background:#d8ecf7;padding-top:15px;padding-right:15px;padding-bottom:15px;padding-left:15px;margin-right:20px;margin-bottom:25px;margin-left:20px;}.kt-info-box436_d03065-1c .kt-blocks-info-box-link-wrap:hover{background:#d8ecf7;}.kt-info-box436_d03065-1c .kadence-info-box-icon-container .kt-info-svg-icon, .kt-info-box436_d03065-1c .kt-info-svg-icon-flip, .kt-info-box436_d03065-1c .kt-blocks-info-box-number{font-size:50px;}.kt-info-box436_d03065-1c .kt-blocks-info-box-media{color:#444444;background:#d8ecf7;border-color:#eeeeee;border-radius:200px;overflow:hidden;border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:10px;padding-right:10px;padding-bottom:10px;padding-left:10px;margin-top:0px;margin-right:20px;margin-bottom:0px;margin-left:0px;}.kt-info-box436_d03065-1c .kt-blocks-info-box-media .kadence-info-box-image-intrisic img{border-radius:200px;}.kt-info-box436_d03065-1c .kt-blocks-info-box-link-wrap:hover .kt-blocks-info-box-media{color:#444444;background:#d8ecf7;border-color:#eeeeee;}.kt-info-box436_d03065-1c .kt-infobox-textcontent h4.kt-blocks-info-box-title{padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;margin-top:0px;margin-right:0px;margin-bottom:5px;margin-left:0px;}.kt-info-box436_d03065-1c .kt-infobox-textcontent .kt-blocks-info-box-text{color:#555555;}.kt-info-box436_d03065-1c .kt-blocks-info-box-learnmore{background:transparent;border-color:#555555;border-width:0px 0px 0px 0px;padding-top:4px;padding-right:8px;padding-bottom:4px;padding-left:8px;margin-top:10px;margin-right:0px;margin-bottom:10px;margin-left:0px;}.kt-info-box436_d03065-1c .kt-blocks-info-box-link-wrap:hover .kt-blocks-info-box-learnmore,.kt-info-box436_d03065-1c .kt-blocks-info-box-link-wrap .kt-blocks-info-box-learnmore:focus{color:#ffffff;background:#444444;border-color:#444444;}@media all and (max-width: 1024px){.kt-info-box436_d03065-1c .kt-blocks-info-box-link-wrap{border-top:2px solid #afcde3;border-right:2px solid #afcde3;border-bottom:2px solid #afcde3;border-left:2px solid #afcde3;}}@media all and (max-width: 767px){.kt-info-box436_d03065-1c .kt-blocks-info-box-link-wrap{border-top:2px solid #afcde3;border-right:2px solid #afcde3;border-bottom:2px solid #afcde3;border-left:2px solid #afcde3;}}<\/style>\n<div class=\"wp-block-kadence-infobox kt-info-box436_d03065-1c\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span class=\"kb-svg-icon-wrap kb-svg-icon-fas_info-circle kt-info-svg-icon\"><svg viewBox=\"0 0 512 512\"  fill=\"currentColor\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"  aria-hidden=\"true\"><path d=\"M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 110c23.196 0 42 18.804 42 42s-18.804 42-42 42-42-18.804-42-42 18.804-42 42-42zm56 254c0 6.627-5.373 12-12 12h-88c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h12v-64h-12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h64c6.627 0 12 5.373 12 12v100h12c6.627 0 12 5.373 12 12v24z\"\/><\/svg><\/span><\/div><\/div><\/div><\/div><div class=\"kt-infobox-textcontent\"><h4 class=\"kt-blocks-info-box-title\"><strong>DSM 6<\/strong><\/h4><p class=\"kt-blocks-info-box-text\">If you&#8217;re still using DSM 6, you won\u2019t have the Container Manager but the older Docker package, which doesn\u2019t support Docker Compose. You\u2019ll need to set up the containers manually via the GUI. RustDesk\u2019s homepage provides a guide for this.<\/p><\/div><\/div><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Firewall Configuration<\/h3>\n\n\n\n<p>If your DiskStation\u2019s firewall is enabled (or if you use another firewall), you\u2019ll need to allow the following ports:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>21115 TCP<\/li>\n\n\n\n<li>21116 TCP and UDP<\/li>\n\n\n\n<li>21117 TCP<\/li>\n<\/ul>\n\n\n\n<p>You can either allow access to these ports for the entire local network or restrict it to specific devices using RustDesk (both controlling and controlled devices).<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Client Installation<\/h2>\n\n\n\n<p>Now install the RustDesk clients\u2014on both the device you want to control and the one you\u2019ll use to control it. The RustDesk client works bidirectionally.<\/p>\n\n\n\n<p>Download the appropriate client <a href=\"https:\/\/github.com\/rustdesk\/rustdesk\/releases\/tag\/1.4.3\" data-type=\"link\" data-id=\"https:\/\/github.com\/rustdesk\/rustdesk\/releases\/tag\/1.4.3\" target=\"_blank\" rel=\"noreferrer noopener\">here <\/a>and install it.<\/p>\n\n\n\n<p>Communication between server and client is encrypted. The client needs the server\u2019s public key, which you\u2019ll find in the file <code>id_ed25519.pub<\/code> under <code>\/docker\/rustdesk\/data<\/code>. Download or open it with your DiskStation\u2019s text editor.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full is-resized\"><a href=\"https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/rustdesk_pubkey.png\"><img loading=\"lazy\" decoding=\"async\" width=\"810\" height=\"370\" src=\"https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/rustdesk_pubkey.png\" alt=\"The public key from RustDesk server has to be added to the client.\" class=\"wp-image-445\" style=\"width:auto;height:185px\" srcset=\"https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/rustdesk_pubkey.png 810w, https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/rustdesk_pubkey-300x137.png 300w, https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/rustdesk_pubkey-150x69.png 150w, https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/rustdesk_pubkey-768x351.png 768w\" sizes=\"auto, (max-width: 810px) 100vw, 810px\" \/><\/a><figcaption class=\"wp-element-caption\">The public key from RustDesk server has to be added to the client.<\/figcaption><\/figure><\/div>\n\n\n<p>Start the client and open the settings (three lines in the menu bar). Go to <em>Network <\/em>&gt; <em>Unlock Network Settings<\/em> &gt; <em>ID\/Relay Server<\/em>. Under \u201cID Server\u201d, enter your DiskStation\u2019s local IP address or domain. Under \u201cKey\u201d, paste the public key from the file. Confirm with <em>OK<\/em>.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large is-resized\"><a href=\"https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/rustdesk_client_server_settings_EN.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"776\" src=\"https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/rustdesk_client_server_settings_EN-1024x776.png\" alt=\"All you need is the IP\/Domain of your DiskStation and the public key.\" class=\"wp-image-446\" style=\"width:auto;height:608px\" srcset=\"https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/rustdesk_client_server_settings_EN-1024x776.png 1024w, https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/rustdesk_client_server_settings_EN-300x227.png 300w, https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/rustdesk_client_server_settings_EN-150x114.png 150w, https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/rustdesk_client_server_settings_EN-768x582.png 768w, https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/rustdesk_client_server_settings_EN-1536x1164.png 1536w, https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/rustdesk_client_server_settings_EN.png 1604w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/a><figcaption class=\"wp-element-caption\">All you need is the IP\/Domain of your DiskStation and the public key.<\/figcaption><\/figure><\/div>\n\n\n<p>On the client\u2019s home screen, you should now see \u201cReady\u201d at the bottom\u2014indicating successful server connection. If not, double-check your firewall settings.<br>Repeat the setup on the second device or any other devices you want to control or use for control.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large is-resized\"><a href=\"https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/rustdesk_client_ready_EN.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"777\" src=\"https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/rustdesk_client_ready_EN-1024x777.png\" alt=\"The client is able to connect to the server.\" class=\"wp-image-443\" style=\"width:auto;height:607px\" srcset=\"https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/rustdesk_client_ready_EN-1024x777.png 1024w, https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/rustdesk_client_ready_EN-300x228.png 300w, https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/rustdesk_client_ready_EN-150x114.png 150w, https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/rustdesk_client_ready_EN-768x583.png 768w, https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/rustdesk_client_ready_EN-1536x1165.png 1536w, https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/rustdesk_client_ready_EN.png 1600w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/a><figcaption class=\"wp-element-caption\">The client is able to connect to the server.<\/figcaption><\/figure><\/div>\n\n\n<p>Once both clients are configured, you can initiate a connection. Enter the ID shown on the controlled device into the controlling device\u2019s client. The required password is also shown in the client.<\/p>\n\n\n\n<p>The password expires after the session ends. To avoid entering it each time, you can set a permanent password. On the controlled device, go to <em>Settings <\/em>&gt; <em>Security <\/em>&gt; <em>Unlock Security Settings<\/em>. Under \u201cPassword\u201d, click \u201cSet Permanent Password\u201d and choose a secure password or passphrase. By default, both the generated and permanent passwords are active. To use only the permanent one, enable the corresponding option.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large is-resized\"><a href=\"https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/rustdesk_client_password_settings_EN.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"775\" src=\"https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/rustdesk_client_password_settings_EN-1024x775.png\" alt=\"Only with a permanent password, you can connect to a device, without seeing its screen.\" class=\"wp-image-442\" style=\"width:auto;height:603px\" srcset=\"https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/rustdesk_client_password_settings_EN-1024x775.png 1024w, https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/rustdesk_client_password_settings_EN-300x227.png 300w, https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/rustdesk_client_password_settings_EN-150x113.png 150w, https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/rustdesk_client_password_settings_EN-768x581.png 768w, https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/rustdesk_client_password_settings_EN-1536x1162.png 1536w, https:\/\/blog.viking-studios.net\/en\/wp-content\/uploads\/rustdesk_client_password_settings_EN.png 1594w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/a><figcaption class=\"wp-element-caption\">Only with a permanent password, you can connect to a device, without seeing its screen.<\/figcaption><\/figure><\/div>\n\n\n<p>You can save the connection as a favorite. The client also displays all clients in the LAN.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Internet Access<\/h2>\n\n\n\n<p>To use RustDesk over the internet, you\u2019ll need to open the required ports in your router. Additionally, allow access to those ports in your firewall\u2014at least from your country.<br>Keep in mind: the RustDesk server runs in host mode, meaning it shares the same network layer as your DiskStation and its services\/packages. This poses a security risk. If you plan to use RustDesk over the internet, it\u2019s safer to use a VPN.<\/p>\n\n\n<div class=\"crp-list-container\"><h3 class=\"crp-list-title\">Related Posts<\/h3><p>None found<\/p><\/div><div class=\"shariff shariff-align-flex-start shariff-widget-align-flex-start\" style=\"display:none\" data-services=\"facebook%7Creddit%7Ctumblr%7Cpinterest%7Cvk\" data-url=\"https%3A%2F%2Fblog.viking-studios.net%2Fen%2Frustdesk-free-remote-desktop-solution-on-synology-diskstation-a-teamviewer-alternative%2F\" data-timestamp=\"1761436302\" data-hidezero=\"1\" data-backendurl=\"https:\/\/blog.viking-studios.net\/en\/wp-json\/shariff\/v1\/share_counts?\"><div class=\"ShariffHeadline\"><h3 class=\"shariff_headline\">Share the knowledge!<\/h3><\/div><ul class=\"shariff-buttons theme-round orientation-horizontal buttonsize-medium\"><li class=\"shariff-button facebook shariff-nocustomcolor\" style=\"background-color:#4273c8\"><a href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https%3A%2F%2Fblog.viking-studios.net%2Fen%2Frustdesk-free-remote-desktop-solution-on-synology-diskstation-a-teamviewer-alternative%2F\" title=\"Share on Facebook\" aria-label=\"Share on Facebook\" role=\"button\" rel=\"nofollow\" class=\"shariff-link\" style=\"; background-color:#3b5998; color:#fff\" target=\"_blank\"><span class=\"shariff-icon\" style=\"\"><svg width=\"32px\" height=\"20px\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 18 32\"><path fill=\"#3b5998\" d=\"M17.1 0.2v4.7h-2.8q-1.5 0-2.1 0.6t-0.5 1.9v3.4h5.2l-0.7 5.3h-4.5v13.6h-5.5v-13.6h-4.5v-5.3h4.5v-3.9q0-3.3 1.9-5.2t5-1.8q2.6 0 4.1 0.2z\"\/><\/svg><\/span><span data-service=\"facebook\" style=\"color:#3b5998\" class=\"shariff-count shariff-hidezero\"><\/span>&nbsp;<\/a><\/li><li class=\"shariff-button twitter shariff-nocustomcolor\" style=\"background-color:#595959\"><a href=\"https:\/\/twitter.com\/share?url=https%3A%2F%2Fblog.viking-studios.net%2Fen%2Frustdesk-free-remote-desktop-solution-on-synology-diskstation-a-teamviewer-alternative%2F&text=RustDesk%3A%20Free%20Remote%20Desktop%20Solution%20on%20Synology%20DiskStation%20%E2%80%93%20A%20TeamViewer%20Alternative\" title=\"Share on X\" aria-label=\"Share on X\" role=\"button\" rel=\"noopener nofollow\" class=\"shariff-link\" style=\"; background-color:#000; color:#fff\" target=\"_blank\"><span class=\"shariff-icon\" style=\"\"><svg width=\"32px\" height=\"20px\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 24 24\"><path fill=\"#000\" d=\"M14.258 10.152L23.176 0h-2.113l-7.747 8.813L7.133 0H0l9.352 13.328L0 23.973h2.113l8.176-9.309 6.531 9.309h7.133zm-2.895 3.293l-.949-1.328L2.875 1.56h3.246l6.086 8.523.945 1.328 7.91 11.078h-3.246zm0 0\"\/><\/svg><\/span><\/a><\/li><li class=\"shariff-button reddit shariff-nocustomcolor\" style=\"background-color:#ff5700\"><a href=\"https:\/\/www.reddit.com\/submit?url=https%3A%2F%2Fblog.viking-studios.net%2Fen%2Frustdesk-free-remote-desktop-solution-on-synology-diskstation-a-teamviewer-alternative%2F\" title=\"Share on Reddit\" aria-label=\"Share on Reddit\" role=\"button\" rel=\"noopener nofollow\" class=\"shariff-link\" style=\"; background-color:#ff4500; color:#fff\" target=\"_blank\"><span class=\"shariff-icon\" style=\"\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\"><path fill=\"#ff4500\" d=\"M440.3 203.5c-15 0-28.2 6.2-37.9 15.9-35.7-24.7-83.8-40.6-137.1-42.3L293 52.3l88.2 19.8c0 21.6 17.6 39.2 39.2 39.2 22 0 39.7-18.1 39.7-39.7s-17.6-39.7-39.7-39.7c-15.4 0-28.7 9.3-35.3 22l-97.4-21.6c-4.9-1.3-9.7 2.2-11 7.1L246.3 177c-52.9 2.2-100.5 18.1-136.3 42.8-9.7-10.1-23.4-16.3-38.4-16.3-55.6 0-73.8 74.6-22.9 100.1-1.8 7.9-2.6 16.3-2.6 24.7 0 83.8 94.4 151.7 210.3 151.7 116.4 0 210.8-67.9 210.8-151.7 0-8.4-.9-17.2-3.1-25.1 49.9-25.6 31.5-99.7-23.8-99.7zM129.4 308.9c0-22 17.6-39.7 39.7-39.7 21.6 0 39.2 17.6 39.2 39.7 0 21.6-17.6 39.2-39.2 39.2-22 .1-39.7-17.6-39.7-39.2zm214.3 93.5c-36.4 36.4-139.1 36.4-175.5 0-4-3.5-4-9.7 0-13.7 3.5-3.5 9.7-3.5 13.2 0 27.8 28.5 120 29 149 0 3.5-3.5 9.7-3.5 13.2 0 4.1 4 4.1 10.2.1 13.7zm-.8-54.2c-21.6 0-39.2-17.6-39.2-39.2 0-22 17.6-39.7 39.2-39.7 22 0 39.7 17.6 39.7 39.7-.1 21.5-17.7 39.2-39.7 39.2z\"\/><\/svg><\/span><span data-service=\"reddit\" style=\"color:#ff4500\" class=\"shariff-count shariff-hidezero\"><\/span>&nbsp;<\/a><\/li><li class=\"shariff-button telegram shariff-nocustomcolor\" style=\"background-color:#4084A6\"><a href=\"https:\/\/telegram.me\/share\/url?url=https%3A%2F%2Fblog.viking-studios.net%2Fen%2Frustdesk-free-remote-desktop-solution-on-synology-diskstation-a-teamviewer-alternative%2F&text=RustDesk%3A%20Free%20Remote%20Desktop%20Solution%20on%20Synology%20DiskStation%20%E2%80%93%20A%20TeamViewer%20Alternative\" title=\"Share on Telegram\" aria-label=\"Share on Telegram\" role=\"button\" rel=\"noopener nofollow\" class=\"shariff-link\" style=\"; background-color:#0088cc; color:#fff\" target=\"_blank\"><span class=\"shariff-icon\" style=\"\"><svg width=\"32px\" height=\"20px\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 32 32\"><path fill=\"#0088cc\" d=\"M30.8 6.5l-4.5 21.4c-.3 1.5-1.2 1.9-2.5 1.2L16.9 24l-3.3 3.2c-.4.4-.7.7-1.4.7l.5-7L25.5 9.2c.6-.5-.1-.8-.9-.3l-15.8 10L2 16.7c-1.5-.5-1.5-1.5.3-2.2L28.9 4.3c1.3-.5 2.3.3 1.9 2.2z\"\/><\/svg><\/span><\/a><\/li><li class=\"shariff-button whatsapp shariff-nocustomcolor\" style=\"background-color:#5cbe4a\"><a href=\"https:\/\/api.whatsapp.com\/send?text=https%3A%2F%2Fblog.viking-studios.net%2Fen%2Frustdesk-free-remote-desktop-solution-on-synology-diskstation-a-teamviewer-alternative%2F%20RustDesk%3A%20Free%20Remote%20Desktop%20Solution%20on%20Synology%20DiskStation%20%E2%80%93%20A%20TeamViewer%20Alternative\" title=\"Share on Whatsapp\" aria-label=\"Share on Whatsapp\" role=\"button\" rel=\"noopener nofollow\" class=\"shariff-link\" style=\"; background-color:#34af23; color:#fff\" target=\"_blank\"><span class=\"shariff-icon\" style=\"\"><svg width=\"32px\" height=\"20px\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 32 32\"><path fill=\"#34af23\" d=\"M17.6 17.4q0.2 0 1.7 0.8t1.6 0.9q0 0.1 0 0.3 0 0.6-0.3 1.4-0.3 0.7-1.3 1.2t-1.8 0.5q-1 0-3.4-1.1-1.7-0.8-3-2.1t-2.6-3.3q-1.3-1.9-1.3-3.5v-0.1q0.1-1.6 1.3-2.8 0.4-0.4 0.9-0.4 0.1 0 0.3 0t0.3 0q0.3 0 0.5 0.1t0.3 0.5q0.1 0.4 0.6 1.6t0.4 1.3q0 0.4-0.6 1t-0.6 0.8q0 0.1 0.1 0.3 0.6 1.3 1.8 2.4 1 0.9 2.7 1.8 0.2 0.1 0.4 0.1 0.3 0 1-0.9t0.9-0.9zM14 26.9q2.3 0 4.3-0.9t3.6-2.4 2.4-3.6 0.9-4.3-0.9-4.3-2.4-3.6-3.6-2.4-4.3-0.9-4.3 0.9-3.6 2.4-2.4 3.6-0.9 4.3q0 3.6 2.1 6.6l-1.4 4.2 4.3-1.4q2.8 1.9 6.2 1.9zM14 2.2q2.7 0 5.2 1.1t4.3 2.9 2.9 4.3 1.1 5.2-1.1 5.2-2.9 4.3-4.3 2.9-5.2 1.1q-3.5 0-6.5-1.7l-7.4 2.4 2.4-7.2q-1.9-3.2-1.9-6.9 0-2.7 1.1-5.2t2.9-4.3 4.3-2.9 5.2-1.1z\"\/><\/svg><\/span><\/a><\/li><li class=\"shariff-button mailto shariff-nocustomcolor\" style=\"background-color:#a8a8a8\"><a href=\"mailto:?body=https%3A%2F%2Fblog.viking-studios.net%2Fen%2Frustdesk-free-remote-desktop-solution-on-synology-diskstation-a-teamviewer-alternative%2F&subject=RustDesk%3A%20Free%20Remote%20Desktop%20Solution%20on%20Synology%20DiskStation%20%E2%80%93%20A%20TeamViewer%20Alternative\" title=\"Send by email\" aria-label=\"Send by email\" role=\"button\" rel=\"noopener nofollow\" class=\"shariff-link\" style=\"; background-color:#999; color:#fff\"><span class=\"shariff-icon\" style=\"\"><svg width=\"32px\" height=\"20px\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 32 32\"><path fill=\"#999\" d=\"M32 12.7v14.2q0 1.2-0.8 2t-2 0.9h-26.3q-1.2 0-2-0.9t-0.8-2v-14.2q0.8 0.9 1.8 1.6 6.5 4.4 8.9 6.1 1 0.8 1.6 1.2t1.7 0.9 2 0.4h0.1q0.9 0 2-0.4t1.7-0.9 1.6-1.2q3-2.2 8.9-6.1 1-0.7 1.8-1.6zM32 7.4q0 1.4-0.9 2.7t-2.2 2.2q-6.7 4.7-8.4 5.8-0.2 0.1-0.7 0.5t-1 0.7-0.9 0.6-1.1 0.5-0.9 0.2h-0.1q-0.4 0-0.9-0.2t-1.1-0.5-0.9-0.6-1-0.7-0.7-0.5q-1.6-1.1-4.7-3.2t-3.6-2.6q-1.1-0.7-2.1-2t-1-2.5q0-1.4 0.7-2.3t2.1-0.9h26.3q1.2 0 2 0.8t0.9 2z\"\/><\/svg><\/span><\/a><\/li><li class=\"shariff-button tumblr shariff-nocustomcolor\" style=\"background-color:#529ecc\"><a href=\"https:\/\/www.tumblr.com\/widgets\/share\/tool?posttype=link&canonicalUrl=https%3A%2F%2Fblog.viking-studios.net%2Fen%2Frustdesk-free-remote-desktop-solution-on-synology-diskstation-a-teamviewer-alternative%2F&tags=blog.viking-studios.net\" title=\"Share on tumblr\" aria-label=\"Share on tumblr\" role=\"button\" rel=\"noopener nofollow\" class=\"shariff-link\" style=\"; background-color:#36465d; color:#fff\" target=\"_blank\"><span class=\"shariff-icon\" style=\"\"><svg width=\"32px\" height=\"20px\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 32 32\"><path fill=\"#36465d\" d=\"M18 14l0 7.3c0 1.9 0 2.9 0.2 3.5 0.2 0.5 0.7 1.1 1.2 1.4 0.7 0.4 1.5 0.6 2.4 0.6 1.6 0 2.6-0.2 4.2-1.3v4.8c-1.4 0.6-2.6 1-3.7 1.3-1.1 0.3-2.3 0.4-3.6 0.4-1.5 0-2.3-0.2-3.4-0.6-1.1-0.4-2.1-0.9-2.9-1.6-0.8-0.7-1.3-1.4-1.7-2.2s-0.5-1.9-0.5-3.4v-11.2h-4.3v-4.5c1.3-0.4 2.7-1 3.6-1.8 0.9-0.8 1.6-1.7 2.2-2.7 0.5-1.1 0.9-2.4 1.1-4.1h5.2l0 8h8v6h-8z\"\/><\/svg><\/span><span data-service=\"tumblr\" style=\"color:#36465d\" class=\"shariff-count shariff-hidezero\"><\/span>&nbsp;<\/a><\/li><li class=\"shariff-button pinterest shariff-nocustomcolor\" style=\"background-color:#e70f18\"><a href=\"https:\/\/www.pinterest.com\/pin\/create\/link\/?url=https%3A%2F%2Fblog.viking-studios.net%2Fen%2Frustdesk-free-remote-desktop-solution-on-synology-diskstation-a-teamviewer-alternative%2F&media=https%3A%2F%2Fblog.viking-studios.net%2Fen%2Fwp-content%2Fuploads%2FTitel_ExpertSyno.jpg&description=RustDesk%3A%20Free%20Remote%20Desktop%20Solution%20on%20Synology%20DiskStation%20%E2%80%93%20A%20TeamViewer%20Alternative\" title=\"Pin it on Pinterest\" aria-label=\"Pin it on Pinterest\" role=\"button\" rel=\"noopener nofollow\" class=\"shariff-link\" style=\"; background-color:#cb2027; color:#fff\" target=\"_blank\"><span class=\"shariff-icon\" style=\"\"><svg width=\"32px\" height=\"20px\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 27 32\"><path fill=\"#cb2027\" d=\"M27.4 16q0 3.7-1.8 6.9t-5 5-6.9 1.9q-2 0-3.9-0.6 1.1-1.7 1.4-2.9 0.2-0.6 1-3.8 0.4 0.7 1.3 1.2t2 0.5q2.1 0 3.8-1.2t2.7-3.4 0.9-4.8q0-2-1.1-3.8t-3.1-2.9-4.5-1.2q-1.9 0-3.5 0.5t-2.8 1.4-2 2-1.2 2.3-0.4 2.4q0 1.9 0.7 3.3t2.1 2q0.5 0.2 0.7-0.4 0-0.1 0.1-0.5t0.2-0.5q0.1-0.4-0.2-0.8-0.9-1.1-0.9-2.7 0-2.7 1.9-4.6t4.9-2q2.7 0 4.2 1.5t1.5 3.8q0 3-1.2 5.2t-3.1 2.1q-1.1 0-1.7-0.8t-0.4-1.9q0.1-0.6 0.5-1.7t0.5-1.8 0.2-1.4q0-0.9-0.5-1.5t-1.4-0.6q-1.1 0-1.9 1t-0.8 2.6q0 1.3 0.4 2.2l-1.8 7.5q-0.3 1.2-0.2 3.2-3.7-1.6-6-5t-2.3-7.6q0-3.7 1.9-6.9t5-5 6.9-1.9 6.9 1.9 5 5 1.8 6.9z\"\/><\/svg><\/span><span data-service=\"pinterest\" style=\"color:#cb2027\" class=\"shariff-count shariff-hidezero\"><\/span>&nbsp;<\/a><\/li><li class=\"shariff-button rss shariff-nocustomcolor\" style=\"background-color:#ff8c00\"><a href=\"https:\/\/blog.viking-studios.net\/en\/feed\/rss\/\" title=\"RSS feed\" aria-label=\"RSS feed\" role=\"button\" class=\"shariff-link\" style=\"; background-color:#fe9312; color:#fff\" target=\"_blank\"><span class=\"shariff-icon\" style=\"\"><svg width=\"32px\" height=\"20px\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 32 32\"><path fill=\"#fe9312\" d=\"M4.3 23.5c-2.3 0-4.3 1.9-4.3 4.3 0 2.3 1.9 4.2 4.3 4.2 2.4 0 4.3-1.9 4.3-4.2 0-2.3-1.9-4.3-4.3-4.3zM0 10.9v6.1c4 0 7.7 1.6 10.6 4.4 2.8 2.8 4.4 6.6 4.4 10.6h6.2c0-11.7-9.5-21.1-21.1-21.1zM0 0v6.1c14.2 0 25.8 11.6 25.8 25.9h6.2c0-17.6-14.4-32-32-32z\"\/><\/svg><\/span><\/a><\/li><li class=\"shariff-button linkedin shariff-nocustomcolor\" style=\"background-color:#1488bf\"><a href=\"https:\/\/www.linkedin.com\/sharing\/share-offsite\/?url=https%3A%2F%2Fblog.viking-studios.net%2Fen%2Frustdesk-free-remote-desktop-solution-on-synology-diskstation-a-teamviewer-alternative%2F\" title=\"Share on LinkedIn\" aria-label=\"Share on LinkedIn\" role=\"button\" rel=\"noopener nofollow\" class=\"shariff-link\" style=\"; background-color:#0077b5; color:#fff\" target=\"_blank\"><span class=\"shariff-icon\" style=\"\"><svg width=\"32px\" height=\"20px\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 27 32\"><path fill=\"#0077b5\" d=\"M6.2 11.2v17.7h-5.9v-17.7h5.9zM6.6 5.7q0 1.3-0.9 2.2t-2.4 0.9h0q-1.5 0-2.4-0.9t-0.9-2.2 0.9-2.2 2.4-0.9 2.4 0.9 0.9 2.2zM27.4 18.7v10.1h-5.9v-9.5q0-1.9-0.7-2.9t-2.3-1.1q-1.1 0-1.9 0.6t-1.2 1.5q-0.2 0.5-0.2 1.4v9.9h-5.9q0-7.1 0-11.6t0-5.3l0-0.9h5.9v2.6h0q0.4-0.6 0.7-1t1-0.9 1.6-0.8 2-0.3q3 0 4.9 2t1.9 6z\"\/><\/svg><\/span><\/a><\/li><li class=\"shariff-button xing shariff-nocustomcolor\" style=\"background-color:#29888a\"><a href=\"https:\/\/www.xing.com\/spi\/shares\/new?url=https%3A%2F%2Fblog.viking-studios.net%2Fen%2Frustdesk-free-remote-desktop-solution-on-synology-diskstation-a-teamviewer-alternative%2F\" title=\"Share on XING\" aria-label=\"Share on XING\" role=\"button\" rel=\"noopener nofollow\" class=\"shariff-link\" style=\"; background-color:#126567; color:#fff\" target=\"_blank\"><span class=\"shariff-icon\" style=\"\"><svg width=\"32px\" height=\"20px\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 25 32\"><path fill=\"#126567\" d=\"M10.7 11.9q-0.2 0.3-4.6 8.2-0.5 0.8-1.2 0.8h-4.3q-0.4 0-0.5-0.3t0-0.6l4.5-8q0 0 0 0l-2.9-5q-0.2-0.4 0-0.7 0.2-0.3 0.5-0.3h4.3q0.7 0 1.2 0.8zM25.1 0.4q0.2 0.3 0 0.7l-9.4 16.7 6 11q0.2 0.4 0 0.6-0.2 0.3-0.6 0.3h-4.3q-0.7 0-1.2-0.8l-6-11.1q0.3-0.6 9.5-16.8 0.4-0.8 1.2-0.8h4.3q0.4 0 0.5 0.3z\"\/><\/svg><\/span><\/a><\/li><li class=\"shariff-button printer shariff-nocustomcolor\" style=\"background-color:#a8a8a8\"><a href=\"javascript:window.print()\" title=\"print\" aria-label=\"print\" role=\"button\" rel=\"noopener nofollow\" class=\"shariff-link\" style=\"; background-color:#999; color:#fff\"><span class=\"shariff-icon\" style=\"\"><svg width=\"32px\" height=\"20px\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 30 32\"><path fill=\"#999\" d=\"M6.8 27.4h16v-4.6h-16v4.6zM6.8 16h16v-6.8h-2.8q-0.7 0-1.2-0.5t-0.5-1.2v-2.8h-11.4v11.4zM27.4 17.2q0-0.5-0.3-0.8t-0.8-0.4-0.8 0.4-0.3 0.8 0.3 0.8 0.8 0.3 0.8-0.3 0.3-0.8zM29.7 17.2v7.4q0 0.2-0.2 0.4t-0.4 0.2h-4v2.8q0 0.7-0.5 1.2t-1.2 0.5h-17.2q-0.7 0-1.2-0.5t-0.5-1.2v-2.8h-4q-0.2 0-0.4-0.2t-0.2-0.4v-7.4q0-1.4 1-2.4t2.4-1h1.2v-9.7q0-0.7 0.5-1.2t1.2-0.5h12q0.7 0 1.6 0.4t1.3 0.8l2.7 2.7q0.5 0.5 0.9 1.4t0.4 1.6v4.6h1.1q1.4 0 2.4 1t1 2.4z\"\/><\/svg><\/span><\/a><\/li><li class=\"shariff-button diaspora shariff-nocustomcolor\" style=\"background-color:#b3b3b3\"><a href=\"https:\/\/share.diasporafoundation.org\/?url=https%3A%2F%2Fblog.viking-studios.net%2Fen%2Frustdesk-free-remote-desktop-solution-on-synology-diskstation-a-teamviewer-alternative%2F&title=RustDesk%3A%20Free%20Remote%20Desktop%20Solution%20on%20Synology%20DiskStation%20%E2%80%93%20A%20TeamViewer%20Alternative\" title=\"Share on diaspora*\" aria-label=\"Share on diaspora*\" role=\"button\" rel=\"noopener nofollow\" class=\"shariff-link\" style=\"; background-color:#999; color:#fff\" target=\"_blank\"><span class=\"shariff-icon\" style=\"\"><svg width=\"32px\" height=\"20px\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 33 32\"><path fill=\"#999\" d=\"M20.6 28.2c-0.8-1.2-2.1-2.9-2.9-4-0.8-1.1-1.4-1.9-1.4-1.9s-1.2 1.6-2.8 3.8c-1.5 2.1-2.8 3.8-2.8 3.8 0 0-5.5-3.9-5.5-3.9 0 0 1.2-1.8 2.8-4s2.8-4 2.8-4.1c0-0.1-0.5-0.2-4.4-1.5-2.4-0.8-4.4-1.5-4.4-1.5 0 0 0.2-0.8 1-3.2 0.6-1.8 1-3.2 1.1-3.3s2.1 0.6 4.6 1.5c2.5 0.8 4.6 1.5 4.6 1.5s0.1 0 0.1-0.1c0 0 0-2.2 0-4.8s0-4.7 0.1-4.7c0 0 0.7 0 3.3 0 1.8 0 3.3 0 3.4 0 0 0 0.1 1.4 0.2 4.6 0.1 5.2 0.1 5.3 0.2 5.3 0 0 2-0.7 4.5-1.5s4.4-1.5 4.4-1.5c0 0.1 2 6.5 2 6.5 0 0-2 0.7-4.5 1.5-3.4 1.1-4.5 1.5-4.5 1.6 0 0 1.2 1.8 2.6 3.9 1.5 2.1 2.6 3.9 2.6 3.9 0 0-5.4 4-5.5 4 0 0-0.7-0.9-1.5-2.1z\"\/><\/svg><\/span><\/a><\/li><li class=\"shariff-button flipboard shariff-nocustomcolor\" style=\"background-color:#373737\"><a href=\"https:\/\/share.flipboard.com\/bookmarklet\/popout?v=2&title=RustDesk%3A%20Free%20Remote%20Desktop%20Solution%20on%20Synology%20DiskStation%20%E2%80%93%20A%20TeamViewer%20Alternative&url=https%3A%2F%2Fblog.viking-studios.net%2Fen%2Frustdesk-free-remote-desktop-solution-on-synology-diskstation-a-teamviewer-alternative%2F\" title=\"Share on Flipboard\" aria-label=\"Share on Flipboard\" role=\"button\" rel=\"noopener nofollow\" class=\"shariff-link\" style=\"; background-color:#f52828; color:#fff\" target=\"_blank\"><span class=\"shariff-icon\" style=\"\"><svg width=\"24px\" height=\"24px\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 24 24\"><path fill=\"#f52828\" d=\"M0 0h8v24H0V0zm9 9h7v7H9V9zm0-9h15v8H9V0z\"\/><\/svg><\/span><\/a><\/li><li class=\"shariff-button mastodon shariff-nocustomcolor\" style=\"background-color:#563ACC\"><a href=\"https:\/\/s2f.kytta.dev\/?text=RustDesk%3A%20Free%20Remote%20Desktop%20Solution%20on%20Synology%20DiskStation%20%E2%80%93%20A%20TeamViewer%20Alternative https%3A%2F%2Fblog.viking-studios.net%2Fen%2Frustdesk-free-remote-desktop-solution-on-synology-diskstation-a-teamviewer-alternative%2F\" title=\"Share on Mastodon\" aria-label=\"Share on Mastodon\" role=\"button\" rel=\"noopener nofollow\" class=\"shariff-link\" style=\"; background-color:#6364FF; color:#fff\" target=\"_blank\"><span class=\"shariff-icon\" style=\"\"><svg width=\"75\" height=\"79\" viewBox=\"0 0 75 79\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M37.813-.025C32.462-.058 27.114.13 21.79.598c-8.544.621-17.214 5.58-20.203 13.931C-1.12 23.318.408 32.622.465 41.65c.375 7.316.943 14.78 3.392 21.73 4.365 9.465 14.781 14.537 24.782 15.385 7.64.698 15.761-.213 22.517-4.026a54.1 54.1 0 0 0 .01-6.232c-6.855 1.316-14.101 2.609-21.049 1.074-3.883-.88-6.876-4.237-7.25-8.215-1.53-3.988 3.78-.43 5.584-.883 9.048 1.224 18.282.776 27.303-.462 7.044-.837 14.26-4.788 16.65-11.833 2.263-6.135 1.215-12.79 1.698-19.177.06-3.84.09-7.692-.262-11.52C72.596 7.844 63.223.981 53.834.684a219.453 219.453 0 0 0-16.022-.71zm11.294 12.882c5.5-.067 10.801 4.143 11.67 9.653.338 1.48.471 3 .471 4.515v21.088h-8.357c-.07-7.588.153-15.182-.131-22.765-.587-4.368-7.04-5.747-9.672-2.397-2.422 3.04-1.47 7.155-1.67 10.735v6.392h-8.307c-.146-4.996.359-10.045-.404-15.002-1.108-4.218-7.809-5.565-10.094-1.666-1.685 3.046-.712 6.634-.976 9.936v14.767h-8.354c.109-8.165-.238-16.344.215-24.5.674-5.346 5.095-10.389 10.676-10.627 4.902-.739 10.103 2.038 12.053 6.631.375 1.435 1.76 1.932 1.994.084 1.844-3.704 5.501-6.739 9.785-6.771.367-.044.735-.068 1.101-.073z\"\/><defs><linearGradient id=\"paint0_linear_549_34\" x1=\"37.0692\" y1=\"0\" x2=\"37.0692\" y2=\"79\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#6364FF\"\/><stop offset=\"1\" stop-color=\"#563ACC\"\/><\/linearGradient><\/defs><\/svg><\/span><\/a><\/li><li class=\"shariff-button pocket shariff-nocustomcolor\" style=\"background-color:#444\"><a href=\"https:\/\/getpocket.com\/save?url=https%3A%2F%2Fblog.viking-studios.net%2Fen%2Frustdesk-free-remote-desktop-solution-on-synology-diskstation-a-teamviewer-alternative%2F&title=RustDesk%3A%20Free%20Remote%20Desktop%20Solution%20on%20Synology%20DiskStation%20%E2%80%93%20A%20TeamViewer%20Alternative\" title=\"Save to Pocket\" aria-label=\"Save to Pocket\" role=\"button\" rel=\"noopener nofollow\" class=\"shariff-link\" style=\"; background-color:#ff0000; color:#fff\" target=\"_blank\"><span class=\"shariff-icon\" style=\"\"><svg width=\"32px\" height=\"20px\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 27 28\"><path fill=\"#ff0000\" d=\"M24.5 2q1 0 1.7 0.7t0.7 1.7v8.1q0 2.8-1.1 5.3t-2.9 4.3-4.3 2.9-5.2 1.1q-2.7 0-5.2-1.1t-4.3-2.9-2.9-4.3-1.1-5.2v-8.1q0-1 0.7-1.7t1.7-0.7h22zM13.5 18.6q0.7 0 1.3-0.5l6.3-6.1q0.6-0.5 0.6-1.3 0-0.8-0.5-1.3t-1.3-0.5q-0.7 0-1.3 0.5l-5 4.8-5-4.8q-0.5-0.5-1.3-0.5-0.8 0-1.3 0.5t-0.5 1.3q0 0.8 0.6 1.3l6.3 6.1q0.5 0.5 1.3 0.5z\"\/><\/svg><\/span><\/a><\/li><li class=\"shariff-button threema shariff-nocustomcolor shariff-mobile\" style=\"background-color:#4fbc24\"><a href=\"threema:\/\/compose?text=RustDesk%3A%20Free%20Remote%20Desktop%20Solution%20on%20Synology%20DiskStation%20%E2%80%93%20A%20TeamViewer%20Alternative%20https%3A%2F%2Fblog.viking-studios.net%2Fen%2Frustdesk-free-remote-desktop-solution-on-synology-diskstation-a-teamviewer-alternative%2F\" title=\"Share on Threema\" aria-label=\"Share on Threema\" role=\"button\" rel=\"noopener nofollow\" class=\"shariff-link\" style=\"; background-color:#1f1f1f; color:#fff\" target=\"_blank\"><span class=\"shariff-icon\" style=\"\"><svg width=\"32px\" height=\"20px\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 32 32\"><path fill=\"#1f1f1f\" d=\"M30.8 10.9c-0.3-1.4-0.9-2.6-1.8-3.8-2-2.6-5.5-4.5-9.4-5.2-1.3-0.2-1.9-0.3-3.5-0.3s-2.2 0-3.5 0.3c-4 0.7-7.4 2.6-9.4 5.2-0.9 1.2-1.5 2.4-1.8 3.8-0.1 0.5-0.2 1.2-0.2 1.6 0 0.4 0.1 1.1 0.2 1.6 0.4 1.9 1.3 3.4 2.9 5 0.8 0.8 0.8 0.8 0.7 1.3 0 0.6-0.5 1.6-1.7 3.6-0.3 0.5-0.5 0.9-0.5 0.9 0 0.1 0.1 0.1 0.5 0 0.8-0.2 2.3-0.6 5.6-1.6 1.1-0.3 1.3-0.4 2.3-0.4 0.8 0 1.1 0 2.3 0.2 1.5 0.2 3.5 0.2 4.9 0 5.1-0.6 9.3-2.9 11.4-6.3 0.5-0.9 0.9-1.8 1.1-2.8 0.1-0.5 0.2-1.1 0.2-1.6 0-0.7-0.1-1.1-0.2-1.6-0.3-1.4 0.1 0.5 0 0zM20.6 17.3c0 0.4-0.4 0.8-0.8 0.8h-7.7c-0.4 0-0.8-0.4-0.8-0.8v-4.6c0-0.4 0.4-0.8 0.8-0.8h0.2l0-1.6c0-0.9 0-1.8 0.1-2 0.1-0.6 0.6-1.2 1.1-1.7s1.1-0.7 1.9-0.8c1.8-0.3 3.7 0.7 4.2 2.2 0.1 0.3 0.1 0.7 0.1 2.1v0 1.7h0.1c0.4 0 0.8 0.4 0.8 0.8v4.6zM15.6 7.3c-0.5 0.1-0.8 0.3-1.2 0.6s-0.6 0.8-0.7 1.3c0 0.2 0 0.8 0 1.5l0 1.2h4.6v-1.3c0-1 0-1.4-0.1-1.6-0.3-1.1-1.5-1.9-2.6-1.7zM25.8 28.2c0 1.2-1 2.2-2.1 2.2s-2.1-1-2.1-2.1c0-1.2 1-2.1 2.2-2.1s2.2 1 2.2 2.2zM18.1 28.2c0 1.2-1 2.2-2.1 2.2s-2.1-1-2.1-2.1c0-1.2 1-2.1 2.2-2.1s2.2 1 2.2 2.2zM10.4 28.2c0 1.2-1 2.2-2.1 2.2s-2.1-1-2.1-2.1c0-1.2 1-2.1 2.2-2.1s2.2 1 2.2 2.2z\"\/><\/svg><\/span><\/a><\/li><li class=\"shariff-button vk shariff-nocustomcolor\" style=\"background-color:#4273c8\"><a href=\"https:\/\/vk.com\/share.php?url=https%3A%2F%2Fblog.viking-studios.net%2Fen%2Frustdesk-free-remote-desktop-solution-on-synology-diskstation-a-teamviewer-alternative%2F\" title=\"Share on VK\" aria-label=\"Share on VK\" role=\"button\" rel=\"noopener nofollow\" class=\"shariff-link\" style=\"; background-color:#527498; color:#fff\" target=\"_blank\"><span class=\"shariff-icon\" style=\"\"><svg width=\"32px\" height=\"20px\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 34 32\"><path fill=\"#527498\" d=\"M34.2 9.3q0.4 1.1-2.7 5.3-0.4 0.6-1.2 1.5-1.4 1.8-1.6 2.3-0.3 0.7 0.3 1.4 0.3 0.4 1.4 1.5h0l0.1 0.1q2.5 2.3 3.4 3.9 0.1 0.1 0.1 0.2t0.1 0.5 0 0.6-0.4 0.5-1.1 0.2l-4.6 0.1q-0.4 0.1-1-0.1t-0.9-0.4l-0.4-0.2q-0.5-0.4-1.2-1.1t-1.2-1.4-1.1-1-1-0.3q-0.1 0-0.1 0.1t-0.3 0.3-0.4 0.5-0.3 0.9-0.1 1.4q0 0.3-0.1 0.5t-0.1 0.3l-0.1 0.1q-0.3 0.3-0.9 0.4h-2.1q-1.3 0.1-2.6-0.3t-2.3-0.9-1.8-1.2-1.3-1l-0.4-0.4q-0.2-0.2-0.5-0.5t-1.3-1.6-1.9-2.7-2.2-3.8-2.3-4.9q-0.1-0.3-0.1-0.5t0.1-0.3l0.1-0.1q0.3-0.3 1-0.3l4.9 0q0.2 0 0.4 0.1t0.3 0.2l0.1 0.1q0.3 0.2 0.4 0.6 0.4 0.9 0.8 1.8t0.7 1.5l0.3 0.5q0.5 1.1 1 1.9t0.9 1.2 0.7 0.7 0.6 0.3 0.5-0.1q0 0 0.1-0.1t0.2-0.4 0.2-0.8 0.2-1.4 0-2.2q0-0.7-0.2-1.3t-0.2-0.8l-0.1-0.2q-0.4-0.6-1.5-0.8-0.2 0 0.1-0.4 0.3-0.3 0.7-0.5 0.9-0.5 4.3-0.4 1.5 0 2.4 0.2 0.4 0.1 0.6 0.2t0.4 0.4 0.2 0.6 0.1 0.8 0 1 0 1.3 0 1.5q0 0.2 0 0.8t0 0.9 0.1 0.7 0.2 0.7 0.4 0.4q0.1 0 0.3 0.1t0.5-0.2 0.7-0.6 0.9-1.2 1.2-1.9q1.1-1.9 1.9-4 0.1-0.2 0.2-0.3t0.2-0.2l0.1-0.1 0.1 0t0.2-0.1 0.4 0l5.1 0q0.7-0.1 1.1 0t0.6 0.3z\"\/><\/svg><\/span><span data-service=\"vk\" style=\"color:#527498\" class=\"shariff-count shariff-hidezero\"><\/span>&nbsp;<\/a><\/li><li class=\"shariff-button wallabag shariff-nocustomcolor\" style=\"background-color:#2bbbad\"><a href=\"https:\/\/app.wallabag.it\/bookmarklet?url=https%3A%2F%2Fblog.viking-studios.net%2Fen%2Frustdesk-free-remote-desktop-solution-on-synology-diskstation-a-teamviewer-alternative%2F\" title=\"Save to wallabag\" aria-label=\"Save to wallabag\" role=\"button\" rel=\"noopener nofollow\" class=\"shariff-link\" style=\"; background-color:#26a69a; color:#fff\" target=\"_blank\"><span class=\"shariff-icon\" style=\"\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 600 500\"><path fill=\"#26a69a\" d=\"M381 474l-5 7c-15 19-29 20-45 2-14-15-30-28-47-38a75 75 0 0 1-15-12c-8-8-10-19-8-30 2-8-2-12-8-16l-3 12c-8 33-31 51-64 57-36 6-73 7-109 5l-57-4c-9-1-9-1-7-9h46c28 0 55-1 82-9 45-14 67-49 62-96l-4-25 43 13q101 24 197-11c6-2 10-2 14 5l-49 53-15 15c-8 8-8 15 1 23l24 18 50 34c-8 20-26 26-43 14l-43-34c-14-10-23-25-31-39-3-4-6-6-10-5h-36c-5-1-8 1-9 6zM409 4l-6 49c-2 19-9 35-28 45l40 50c-13 9-26 11-40 12-19 0-36-6-54-11-16-4-34-9-51-11-10-2-20 0-31 1l30-38c-16-9-25-23-28-41l-1-15-3-41c21 5 38 16 51 33l11 16 22 29c10-9 19-18 24-29 12-26 32-42 60-48l4-1zm-19 187c12 9 17 20 16 35l-2 47c-3 31-26 48-57 40a114 114 0 0 1-11-3 44 44 0 0 0-28-1 110 110 0 0 1-28 5c-16 0-28-8-33-24-6-16-6-33-6-50v-14c-2-15 2-28 17-35 10 6 19 13 17 27v32c-1 14 5 25 16 33 15-12 16-28 15-45v-30c0-11 4-15 12-16 8-2 11 0 15 10 6 13 10 27 8 41-2 17 4 30 16 40 11-10 16-23 14-38v-16c0-21 1-24 19-38z\"\/><\/svg><\/span><\/a><\/li><li class=\"shariff-button info shariff-nocustomcolor\" style=\"background-color:#eee\"><a href=\"http:\/\/ct.de\/-2467514\" title=\"More information\" aria-label=\"More information\" role=\"button\" rel=\"noopener \" class=\"shariff-link\" style=\"; background-color:#fff; color:#fff\" target=\"_blank\"><span class=\"shariff-icon\" style=\"\"><svg width=\"32px\" height=\"20px\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 11 32\"><path fill=\"#999\" d=\"M11.4 24v2.3q0 0.5-0.3 0.8t-0.8 0.4h-9.1q-0.5 0-0.8-0.4t-0.4-0.8v-2.3q0-0.5 0.4-0.8t0.8-0.4h1.1v-6.8h-1.1q-0.5 0-0.8-0.4t-0.4-0.8v-2.3q0-0.5 0.4-0.8t0.8-0.4h6.8q0.5 0 0.8 0.4t0.4 0.8v10.3h1.1q0.5 0 0.8 0.4t0.3 0.8zM9.2 3.4v3.4q0 0.5-0.4 0.8t-0.8 0.4h-4.6q-0.4 0-0.8-0.4t-0.4-0.8v-3.4q0-0.4 0.4-0.8t0.8-0.4h4.6q0.5 0 0.8 0.4t0.4 0.8z\"\/><\/svg><\/span><\/a><\/li><\/ul><\/div>","protected":false},"excerpt":{"rendered":"<p>TeamViewer is a handy application for remotely accessing another computer, and it can be quite useful even for personal use: whether you&#8217;re accessing your office PC from your laptop elsewhere in the house\u2014or even outside\u2014or helping relatives with their computer issues. However, frequent use of TeamViewer may lead to being flagged as a commercial user, [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":410,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[126,50,19,93,7,125],"tags":[128,21,129,132,133,25,134,135],"class_list":["post-436","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-docker","category-howto","category-network","category-synology-diskstation","category-technology","category-virtualization","tag-container-manager","tag-diskstation","tag-docker","tag-remote-access","tag-rustdesk","tag-synology","tag-teamviewer","tag-teamviewer-alternative"],"_links":{"self":[{"href":"https:\/\/blog.viking-studios.net\/en\/wp-json\/wp\/v2\/posts\/436","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blog.viking-studios.net\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blog.viking-studios.net\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blog.viking-studios.net\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/blog.viking-studios.net\/en\/wp-json\/wp\/v2\/comments?post=436"}],"version-history":[{"count":2,"href":"https:\/\/blog.viking-studios.net\/en\/wp-json\/wp\/v2\/posts\/436\/revisions"}],"predecessor-version":[{"id":447,"href":"https:\/\/blog.viking-studios.net\/en\/wp-json\/wp\/v2\/posts\/436\/revisions\/447"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/blog.viking-studios.net\/en\/wp-json\/wp\/v2\/media\/410"}],"wp:attachment":[{"href":"https:\/\/blog.viking-studios.net\/en\/wp-json\/wp\/v2\/media?parent=436"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.viking-studios.net\/en\/wp-json\/wp\/v2\/categories?post=436"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.viking-studios.net\/en\/wp-json\/wp\/v2\/tags?post=436"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}