{"id":395,"date":"2023-11-10T10:11:38","date_gmt":"2023-11-10T08:11:38","guid":{"rendered":"https:\/\/www.microfusion.org\/blog\/?p=395"},"modified":"2024-01-11T10:54:32","modified_gmt":"2024-01-11T08:54:32","slug":"howto-setup-remote-desktop-x11vnc-server-on-linux","status":"publish","type":"post","link":"https:\/\/www.microfusion.org\/blog\/howto-setup-remote-desktop-x11vnc-server-on-linux\/","title":{"rendered":"How to setup Remote Desktop (x11vnc server) on Linux Mint\/Ubuntu"},"content":{"rendered":"\n<p>In the fast-paced world of technology, having the ability to access your Linux Mint PC&#8217;s desktop remotely can be a game-changer. Whether you&#8217;re troubleshooting an issue, collaborating with a colleague, or simply managing your system from a distance, setting up a remote desktop server is a valuable skill. In this step-by-step guide, we&#8217;ll walk you through the process of configuring x11vnc Remote Desktop on your Linux Mint system for seamless remote desktop access.<\/p>\n\n\n\n<script async=\"\" src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-7505880210632883\" crossorigin=\"anonymous\"><\/script>\n<ins class=\"adsbygoogle\" style=\"display:block; text-align:center;\" data-ad-layout=\"in-article\" data-ad-format=\"fluid\" data-ad-client=\"ca-pub-7505880210632883\" data-ad-slot=\"6291301981\"><\/ins>\n<script>\n     (adsbygoogle = window.adsbygoogle || []).push({});\n<\/script>\n\n\n\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">The problem with Remote Desktop and Linux Systems<\/h2>\n\n\n\n<p>I recently ran into a situation where a client needed to be able to access a PC running Linux Mint remotely from a Windows PC but unlike Windows, this turned out to be quite challenging to achieve. <\/p>\n\n\n\n<p>Firstly, Linux Mint does not come pre-configured with a remote desktop capabilities and so we will need to manually setup reliable Remote Desktop (RDP) for this system.<\/p>\n\n\n\n<p>Secondly, most VNC applications on offer are either payed for or simply does not work very well with Linux Mint Cinnamon over Remote desktop connections.<\/p>\n\n\n\n<p>Thirdly, if you do not have a monitor attached this can become even more of a headache to get working. As Linux does not boot into a graphical user interface (by design) when no physical monitor is present and plugged in, unlike windows. <\/p>\n\n\n\n<p>Thus, to rectify all of this I will be covering and going over some steps to setup a Remote Desktop servers using x11vnc on Linux Mint.   <\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Bid Farewell to the Default Vino Server<\/h3>\n\n\n\n<p>Ubuntu 22.04 LTS has a bug that will prevent the Vino RDP service from working correctly, not loading the key-ring where its password is stores and thus resetting the RDP password and making it impossible to reconnect after a reboot. Vino also breaks when you lock the screen making it again impossible to reconnect unless someone physically goes and unlocks the session. There is a gnome extension available to help fix this but for simplicity we will be using <strong>x11vnc<\/strong> instead. <\/p>\n\n\n\n<p>Our journey begins with bidding farewell to the default Vino server (if installed, Ubuntu uses this for its RDP and VNC build in protocols but it is broken as of the writing of this article).<\/p>\n\n\n\n<p>Open Terminal and execute the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code has-ast-global-color-6-color has-ast-global-color-8-background-color has-text-color has-background has-link-color wp-elements-0bdb12c991ba18c1b2abdf1fe8727ef7\"><code>sudo apt-get -y remove vino<\/code><\/pre>\n\n\n\n<p>Removing Vino will make sure there is no conflicts when we install another Remote desktop application. <\/p>\n\n\n\n<p>This clears the way for the installation of x11vnc, a powerful alternative that offers enhanced functionality.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Embrace x11vnc for Superior Remote Access<\/h3>\n\n\n\n<p>Now, let&#8217;s install x11vnc using the following command in Terminal<\/p>\n\n\n\n<pre class=\"wp-block-code has-ast-global-color-8-background-color has-background\"><code><code class=\"!whitespace-pre hljs language-bash\">sudo apt-get -y install x11vnc<\/code><\/code><\/pre>\n\n\n\n<p>This step equips your system with the necessary tools for efficient remote desktop management software<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3: Establish a Secure Password Directory<\/h3>\n\n\n\n<p>Security is paramount when it comes to remote access. Create a dedicated directory for the password file with this command:<\/p>\n\n\n\n<pre class=\"wp-block-code has-ast-global-color-8-background-color has-background\"><code><code class=\"!whitespace-pre hljs language-bash\">sudo <span class=\"hljs-built_in\">mkdir<\/span> \/etc\/x11vnc<\/code><\/code><\/pre>\n\n\n\n<p>We will use this directory to host the configuration file for the password<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 4: Generate an Encrypted Password File<\/h3>\n\n\n\n<p>Enhance security further by creating an encrypted password file. Execute the following command and follow the prompts to set and confirm your password:<\/p>\n\n\n\n<pre class=\"wp-block-code has-ast-global-color-8-background-color has-background\"><code>sudo x11vnc --storepasswd \/etc\/x11vnc\/vncpwd<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Step 5: Configure the x11vnc Systemd Service<\/h3>\n\n\n\n<p>Create a systemd service file for x11vnc to ensure it starts at boot. Open the file with your preferred text editor: We will use<strong> xed<\/strong> here, the default Linux Mint text editor.<\/p>\n\n\n\n<p>For Ubuntu use nano or gedit so enter:<\/p>\n\n\n\n<pre class=\"wp-block-code has-ast-global-color-8-background-color has-background\"><code>sudo gedit \/lib\/systemd\/system\/x11vnc.service<\/code><\/pre>\n\n\n\n<p>For Linux Mint use nano or xed so enter:<\/p>\n\n\n\n<pre class=\"wp-block-code has-ast-global-color-8-background-color has-background\"><code>sudo xed \/lib\/systemd\/system\/x11vnc.service<\/code><\/pre>\n\n\n\n<p><strong><a href=\"https:\/\/opensource.com\/article\/20\/5\/systemd-startup\" rel=\"nofollow\" title=\"\">systemd<\/a> <\/strong>is used to start services automatically on most Linux systems today. We will now create a new systemd service for x11vnc<\/p>\n\n\n\n<p>Copy and paste the following code into the empty file:<\/p>\n\n\n\n<pre class=\"wp-block-code has-ast-global-color-6-color has-ast-global-color-8-background-color has-text-color has-background has-link-color wp-elements-1230f8661569fc0513f647cd881ae75d\"><code>&#91;Unit]\nDescription=Start x11vnc at startup.\nAfter=multi-user.target\n\n&#91;Service]\nType=simple\nExecStart=\/usr\/bin\/x11vnc -auth guess -forever -noxdamage -repeat -rfbauth \/etc\/x11vnc\/vncpwd -rfbport 5900 -shared\n\n&#91;Install]\nWantedBy=multi-user.target\n<\/code><\/pre>\n\n\n\n<p><strong>Tip:<\/strong> To Manually set the Resolution of the Remote session you can add the following argument to the execute line. For my case i set it to <mark style=\"background-color:rgba(0, 0, 0, 0);color:#00ff00\" class=\"has-inline-color\">1600&#215;900<\/mark><\/p>\n\n\n\n<pre class=\"wp-block-code has-white-color has-ast-global-color-8-background-color has-text-color has-background has-link-color wp-elements-592f636fc4c7ce07ee40a86e23e90604\"><code>ExecStart=\/usr\/bin\/x11vnc <mark style=\"background-color:rgba(0, 0, 0, 0);color:#00ff00\" class=\"has-inline-color\">-geometry 1600x900<\/mark> -auth guess -forever -noxdamage -repeat -rfbauth \/etc\/x11vnc\/vncpwd -rfbport 5900 -shared<\/code><\/pre>\n\n\n\n<p>Save and close the file when done.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 6: Reload the Services<\/h3>\n\n\n\n<p>Ensure the changes take effect by reloading the services:<\/p>\n\n\n\n<pre class=\"wp-block-code has-ast-global-color-8-background-color has-background\"><code>sudo systemctl daemon-reload<\/code><\/pre>\n\n\n\n<p>The above command will reload systemd, making sure all new entries are taken into consideration and can be used. <\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 7: Enable Autostart for Remote Desktop (x11VNC ) at System Boot<\/h2>\n\n\n\n<p>Make x11vnc an integral part of your system by enabling it to start at boot:<\/p>\n\n\n\n<pre class=\"wp-block-code has-ast-global-color-8-background-color has-background\"><code>sudo systemctl enable x11vnc.service<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 8: Initiate the Remote Desktop Service<\/h2>\n\n\n\n<p>Finally, start the x11vnc service either by rebooting your system or using the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code has-ast-global-color-8-background-color has-background\"><code>sudo systemctl start x11vnc.service\n<\/code><\/pre>\n\n\n\n<script async=\"\" src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-7505880210632883\" crossorigin=\"anonymous\"><\/script>\n<ins class=\"adsbygoogle\" style=\"display:block; text-align:center;\" data-ad-layout=\"in-article\" data-ad-format=\"fluid\" data-ad-client=\"ca-pub-7505880210632883\" data-ad-slot=\"6291301981\"><\/ins>\n<script>\n     (adsbygoogle = window.adsbygoogle || []).push({});\n<\/script>\n\n\n\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>At this point you should be able to connect to the Linux PC using a VNC viewer however. This is great and all if you have a physical monitor attached to the Linux PC. If you remove that monitor and try to run the PC headless then you will soon find that Linux in general doesnt play well here. So we have a few solutions to overcome this annoying limitation&#8230;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Addressing the headless (no monitor attached) issue, have Linux boot into a desktop<\/h2>\n\n\n\n<p>There are 3 known ways to go about forcing Linux to boot a GUI (<em>Graphical User Interface<\/em>) desktop environment. Normally if you boot a Linux PC and there is no monitor attached it will boot to a Command line interface (by design) and not a desktop environment, so to resolve this we will take a look at three methods.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Your first option (With Monitor):<\/h4>\n\n\n\n<p>Have a monitor connected to the PC. Simple as that. Most often computers will have a monitor connected and thus, Linux will start up with a graphics user interface if one is attached. In this case Linux Mint will start up Cinnamon or MATE. You will be able to remotely access your PC from another computers using a<strong> <a href=\"https:\/\/www.realvnc.com\/en\/connect\/download\/viewer\/\" rel=\"nofollow\" title=\"VNC viewer app.\">VNC viewer app.<\/a> <\/strong><\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Your second option (No Monitor Using Software):<\/h4>\n\n\n\n<h5 class=\"wp-block-heading\"><mark style=\"background-color:rgba(0, 0, 0, 0);color:#ff0000\" class=\"has-inline-color\">This method will not work for Linux Mint. It breaks Cinnamon from starting normally when a screen is attached.<\/mark><\/h5>\n\n\n\n<h5 class=\"wp-block-heading\"><mark style=\"background-color:rgba(0, 0, 0, 0);color:#ff0000\" class=\"has-inline-color\">Works for Ubuntu 22.04 LTS though, I have not found a Software only solution for Linux Mint yet.<\/mark><\/h5>\n\n\n\n<p>Using a Linux PC without a monitor connected is challenging, unlike Windows where RDP just works Linux does not boot a GUI by default when there is no monitor present making remote desktop connection nearly useless. Luckily all is not lost. We can use a dummy driver to trick Linux into thinking a monitor is attached and will therefore boot into a desktop environment without a physical monitor connected. <\/p>\n\n\n\n<h5 class=\"wp-block-heading\">We need to install a dummy vga driver for Ubuntu only<\/h5>\n\n\n\n<p>Open terminal and enter the following command: <\/p>\n\n\n\n<pre class=\"wp-block-code has-ast-global-color-8-background-color has-background\"><code>sudo apt-get install xserver-xorg-video-dummy<\/code><\/pre>\n\n\n\n<p>The command will install a dummy x11 driver that we will be using to create a fake monitor that will be used for remote desktop connections. <\/p>\n\n\n\n<p>Don&#8217;t panic, this will <strong>NOT<\/strong> effect your physical monitor or system and will only be used when there is no physical monitor attached to your PC to simulate a screen for the remote session. Although Linux Mint with Cinnamon Desktop will break. remote desktop connections will work BUT then if you connect a physical monitor again that will no longer work. so go with the hardware dummy plug idea instead. <\/p>\n\n\n\n<h5 class=\"wp-block-heading\">Setting up the dummy driver and creating a fake monitor<\/h5>\n\n\n\n<p>For Ubuntu only next, we need to do some configurations to get the fake monitor working. The easiest way I manage to find for this is to edit a x11 config file and add a new section for the dummy display. <\/p>\n\n\n\n<p>In terminal enter the following command to open up the x11 file:<\/p>\n\n\n\n<pre class=\"wp-block-code has-ast-global-color-8-background-color has-background\"><code>sudo gedit \/usr\/share\/X11\/xorg.conf.d\/10-quirks.conf<\/code><\/pre>\n\n\n\n<p>Once the <em><strong>10-quirks.conf<\/strong><\/em> file is open scroll to the bottom and insert the following configuration below the current configuration. Do not modify any of the existing fields above this custom code. Just insert the following below existing values.<\/p>\n\n\n\n<pre class=\"wp-block-code has-ast-global-color-8-background-color has-background\"><code># Dummy Adapter To allow RDP without Monitor\n\nSection \"Device\"\n    Identifier  \"Configured Video Device\"\n    Driver      \"dummy\"\n    # Default is 16MiB, this sets it to 64MiB\n    #VideoRam    16384\n    VideoRam 64000\nEndSection\n\nSection \"Monitor\"\n    Identifier  \"Configured Monitor\"\n    HorizSync 28.0-80.0\n    VertRefresh 48.0-75.0   \nEndSection\n\nSection \"Screen\"\n    Identifier  \"Default Screen\"\n    Monitor     \"Configured Monitor\"\n    Device      \"Configured Video Device\"\n    DefaultDepth 24\n    SubSection \"Display\"\n    Depth 24\n    Modes \"1920x1080_60.00\"\n    EndSubSection\nEndSection<\/code><\/pre>\n\n\n\n<p><strong>Some key Points,<\/strong> you can set a desired resolution by editing the &#8220;modes&#8221; argument. In this example mine is set to <strong>1920 x1080<\/strong> at <strong>60hz<\/strong> refresh rate.<\/p>\n\n\n\n<p>I recommend you set it to a lower resolution to start with. something like: <strong>1280x720_60.00 <\/strong>and increase the resolution form there until you reach the desired target<\/p>\n\n\n\n<p>What this configuration will do is create a dummy output that simulate a physical screen to fool Linux into always booting a desktop environment that can then be used in remote desktop connection sessions <\/p>\n\n\n\n<p>Save the file and reboot your PC. you should now be able to connect to it even when your monitor is not present. <\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Your third option (No Monitor using hardware solution)<\/h4>\n\n\n\n<p><strong>Works with Linux Mint as well. <\/strong><\/p>\n\n\n\n<p>If you do not wish to mess with or install dummy software packages and mess with the hassle of configuration files the this solution might just be for you. <\/p>\n\n\n\n<p>You will need to either Buy or DIY a dummy screen dongle. its a simple device that simply plugs into the screen card and will simulate a monitor that is connected even though you dont have one. you get VGA, DVI and even HDMI dummy dongles these days which cost is very low.<\/p>\n\n\n\n<script async=\"\" src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-7505880210632883\" crossorigin=\"anonymous\"><\/script>\n<ins class=\"adsbygoogle\" style=\"display:block; text-align:center;\" data-ad-layout=\"in-article\" data-ad-format=\"fluid\" data-ad-client=\"ca-pub-7505880210632883\" data-ad-slot=\"6291301981\"><\/ins>\n<script>\n     (adsbygoogle = window.adsbygoogle || []).push({});\n<\/script>\n\n\n\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h3 class=\"wp-block-heading has-text-align-center\"><mark style=\"background-color:rgba(0, 0, 0, 0);color:#ff0000\" class=\"has-inline-color\">CAUTION: This next part is at your own risk. It can, if done incorrectly damage your motherboard or graphics card. So do this at your own risk. You have been warned<\/mark><\/h3>\n\n\n\n<h5 class=\"wp-block-heading\">To DIY a VGA Dummy Dongle for Remote Desktop Access<\/h5>\n\n\n\n<p>You will need a  VGA Female To Female F\/F Gender Changer Adapter plug and 3 x 50 ~ 150omh resistors. For this example I will be using 75ohm resistors. But any resistor between 50 and 150 ohms should work fine.  <\/p>\n\n\n\n<p>What you want to do in bridge the pins on the VGA adapter like this <\/p>\n\n\n\n<figure class=\"wp-block-image size-full is-style-default\"><img fetchpriority=\"high\" decoding=\"async\" width=\"400\" height=\"311\" src=\"https:\/\/www.microfusion.org\/blog\/wp-content\/uploads\/2023\/11\/vga_dummy_electronic_01.jpg\" alt=\"VGA Dummy Adapter Remote Desktop\n\" class=\"wp-image-396\" srcset=\"https:\/\/www.microfusion.org\/blog\/wp-content\/uploads\/2023\/11\/vga_dummy_electronic_01.jpg 400w, https:\/\/www.microfusion.org\/blog\/wp-content\/uploads\/2023\/11\/vga_dummy_electronic_01-300x233.jpg 300w\" sizes=\"(max-width: 400px) 100vw, 400px\" \/><\/figure>\n\n\n\n<p>You need to bridge Pin 1 and 6, pin 2 and 7 and lastly pin 3 and 8 so that the setup looks like this once you are done. <\/p>\n\n\n\n<figure class=\"wp-block-image size-full is-style-default\"><img decoding=\"async\" width=\"398\" height=\"193\" src=\"https:\/\/www.microfusion.org\/blog\/wp-content\/uploads\/2023\/11\/vga_dummy_schema.jpg\" alt=\"VGA Dummy Dongle DIY Pinout\n\" class=\"wp-image-397\" srcset=\"https:\/\/www.microfusion.org\/blog\/wp-content\/uploads\/2023\/11\/vga_dummy_schema.jpg 398w, https:\/\/www.microfusion.org\/blog\/wp-content\/uploads\/2023\/11\/vga_dummy_schema-300x145.jpg 300w\" sizes=\"(max-width: 398px) 100vw, 398px\" \/><\/figure>\n\n\n\n<h5 class=\"wp-block-heading\">To DIY a DVI Dummy Dongle for Remote Desktop access<\/h5>\n\n\n\n<p>Same procedure as above just take note of the pins. In a DVI you need to bridge Pin C1 with C5, C2 with C5 and C3 with C5 like this<\/p>\n\n\n\n<figure class=\"wp-block-image size-full is-style-default\"><img decoding=\"async\" width=\"400\" height=\"285\" src=\"https:\/\/www.microfusion.org\/blog\/wp-content\/uploads\/2023\/11\/vga_dummy_dvi.jpg\" alt=\"DVI Dummy Dongle DIY\" class=\"wp-image-398\" srcset=\"https:\/\/www.microfusion.org\/blog\/wp-content\/uploads\/2023\/11\/vga_dummy_dvi.jpg 400w, https:\/\/www.microfusion.org\/blog\/wp-content\/uploads\/2023\/11\/vga_dummy_dvi-300x214.jpg 300w\" sizes=\"(max-width: 400px) 100vw, 400px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Mischief managed<\/h3>\n\n\n\n<p>Now all you do is replace your screens cable with this dummy dongle and you should get Linux to boot up into a desktop environment instead of a command line. <\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Connecting to your Linux Mint PC via VNC Remotely<\/h2>\n\n\n\n<p>For Microsoft Windows you will need to install a <a href=\"https:\/\/www.realvnc.com\/en\/connect\/download\/viewer\/\" title=\"\"><strong>VNC Viewer<\/strong><\/a> app and for Linux you can use something like Remmina.<\/p>\n\n\n\n<p>We used x11VNC which uses a the VNC protocol. <em><strong>You will not be able to use Microsoft remote desktop utility to connect to your Linux PC. <\/strong><\/em><\/p>\n\n\n\n<p>For Ubuntu 220.4 users you can use RDP but you will need to setup Vino on the Ubuntu system settings under share. The headless issue will still be applicable to solve the annoyance of not having a desktop to boot into.  <\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>We had a look at 3 ways to setup a remote desktop server for Linux and have it boot into a desktop environment. One of the most annoying things is that Linux even in 2023 doesn&#8217;t offer a simple option or method to achieve this and is different from distribution to distro. What works on Ubuntu might not work on Mint.<\/p>\n\n\n\n<p>In order for Remote Desktop connections to work you will need a functioning network first. you can have a look at out article <a href=\"https:\/\/www.microfusion.org\/blog\/how-to-setup-a-home-network\/\" title=\"How to Setup a home network\">How to Setup a home network<\/a><\/p>\n\n\n\n<p>Congratulations! You&#8217;ve successfully set up x11vnc on your Linux Mint\/Ubuntu system, unlocking the potential for effortless remote desktop access.<\/p>\n\n\n\n<p>In conclusion, mastering the art of remote desktop setup is a valuable skill for any Linux user. With x11vnc, you can take control of your system from anywhere with ease. Implement these steps, and you&#8217;ll be on your way to a seamless and secure remote desktop experience. Happy computing!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this step-by-step guide, we&#8217;ll walk you through the process of configuring x11vnc on your Linux Mint system for seamless remote desktop access.<\/p>\n","protected":false},"author":1,"featured_media":399,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_eb_attr":"","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":"disabled","footer-sml-layout":"","ast-disable-related-posts":"","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":"var(--ast-global-color-4)","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":[24,23],"tags":[17,10,27,12,20],"class_list":["post-395","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-linux","category-windows","tag-howto","tag-linux","tag-networking","tag-servers","tag-windows"],"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/www.microfusion.org\/blog\/wp-json\/wp\/v2\/posts\/395","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.microfusion.org\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.microfusion.org\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.microfusion.org\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.microfusion.org\/blog\/wp-json\/wp\/v2\/comments?post=395"}],"version-history":[{"count":15,"href":"https:\/\/www.microfusion.org\/blog\/wp-json\/wp\/v2\/posts\/395\/revisions"}],"predecessor-version":[{"id":471,"href":"https:\/\/www.microfusion.org\/blog\/wp-json\/wp\/v2\/posts\/395\/revisions\/471"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.microfusion.org\/blog\/wp-json\/wp\/v2\/media\/399"}],"wp:attachment":[{"href":"https:\/\/www.microfusion.org\/blog\/wp-json\/wp\/v2\/media?parent=395"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.microfusion.org\/blog\/wp-json\/wp\/v2\/categories?post=395"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.microfusion.org\/blog\/wp-json\/wp\/v2\/tags?post=395"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}