{"id":17554,"date":"2023-06-26T21:43:34","date_gmt":"2023-06-26T18:43:34","guid":{"rendered":"https:\/\/kifarunix.com\/?p=17554"},"modified":"2024-03-10T09:40:53","modified_gmt":"2024-03-10T06:40:53","slug":"install-nomachine-on-debian-12","status":"publish","type":"post","link":"https:\/\/kifarunix.com\/install-nomachine-on-debian-12\/","title":{"rendered":"Install NoMachine on Debian 12"},"content":{"rendered":"\n<p>Welcome to our tutorial on how to install NoMachine on Debian 12. NoMachine is a remote desktop tool just like VNC, TeamViewer. It is designed to work across several platforms such as Windows, Mac and Linux to give users access to the physical desktop of the remote computer. NoMachine provides the best, fastest and highest quality remote desktop experience.<\/p>\n\n\n\n<div class=\"wp-block-rank-math-toc-block\" id=\"rank-math-toc\"><h2>Table of Contents<\/h2><nav><ul><li><a href=\"#installing-no-machine-on-debian-12\">Installing NoMachine on Debian 12<\/a><ul><li><a href=\"#install-no-machine\">Install NoMachine<\/a><\/li><li><a href=\"#running-no-machine-on-debian-12\">Running NoMachine on Debian 12<\/a><\/li><li><a href=\"#configuring-no-machine-on-debian-12\">Configuring NoMachine on Debian 12<\/a><\/li><li><a href=\"#open-no-machine-server-port-on-firewall\">Open NoMachine Server Port on Firewall<\/a><\/li><li><a href=\"#connecting-to-remote-desktop-computer-using-no-machine\">Connecting to Remote Desktop Computer using NoMachine<\/a><\/li><li><a href=\"#similar-tutorials\">Similar Tutorials<\/a><\/li><\/ul><\/li><\/ul><\/nav><\/div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"installing-no-machine-on-debian-12\">Installing NoMachine on Debian 12<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"install-no-machine\">Install NoMachine<\/h3>\n\n\n\n<p><strong>Note that in order for NoMachine to work, you need to install both on the remote desktop system you need to access as well as on the desktop system you are connecting from<\/strong>.<\/p>\n\n\n\n<p>NoMachine is not available on Debian 12 default repositories. Therefore, you need to download the DEB binary package from&nbsp;<a rel=\"noreferrer noopener\" href=\"https:\/\/www.nomachine.com\/download\/linux&amp;id=1\" target=\"_blank\">NoMachine For Linux Downloads page<\/a>.<\/p>\n\n\n\n<p>On the Download page, select the version of NoMachine for your respective Debian 12 system architecture.<\/p>\n\n\n\n<p>To find your Ubuntu system architecture type, use&nbsp;<code>hostnamectl<\/code>&nbsp;or&nbsp;<code>uname -m<\/code>&nbsp;command;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>hostnamectl | grep Architecture:<\/code><\/pre>\n\n\n\n<p>Sample output<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>      Architecture: <strong>x86-64<\/strong><\/code><\/pre>\n\n\n\n<p>or<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">uname -m<\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>x86_64<\/code><\/pre>\n\n\n\n<p>In our case, we will download the DEB&nbsp;binary package for the 64-bit Debian 12 system.<\/p>\n\n\n\n<p>You can simply navigate to <a href=\"https:\/\/www.nomachine.com\/download\/download&amp;id=4\" target=\"_blank\" rel=\"noreferrer noopener\">NoMachine x86_64 Debian Binary packages page<\/a> and grab your package.<\/p>\n\n\n\n<p>Or simply execute the command below to download NoMachine debian binary. Replace the value of VER with the current stable release version of NoMachine.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>VER=8.5.3_1<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>wget https:\/\/download.nomachine.com\/download\/${VER%.*}\/Linux\/nomachine_${VER}_amd64.deb<\/code><\/pre>\n\n\n\n<p>Once the download is done, run either of the commands below to install the package;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo dpkg -i nomachine_${VER}_amd64.deb<\/pre>\n\n\n\n<p>Or simply run;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt install .\/nomachine_${VER}_amd64.deb<\/pre>\n\n\n\n<pre class=\"scroll-box\"><code>...\nReading package lists... Done\nBuilding dependency tree... Done\nReading state information... Done\nNote, selecting 'nomachine' instead of '.\/nomachine_8.5.3_1_amd64.deb'\nThe following NEW packages will be installed:\n  nomachine\n0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.\nNeed to get 0 B\/55.8 MB of archives.\nAfter this operation, 230 MB of additional disk space will be used.\nGet:1 \/home\/kifarunix\/nomachine_8.5.3_1_amd64.deb nomachine amd64 8.5.3-1 [55.8 MB]\nSelecting previously unselected package nomachine.\n(Reading database ... 180584 files and directories currently installed.)\nPreparing to unpack ...\/nomachine_8.5.3_1_amd64.deb ...\nUnpacking nomachine (8.5.3-1) ...\nSetting up nomachine (8.5.3-1) ...\nNX> 700 Starting installation at: Mon, 26 Jun 2023 20:51:12.\nNX> 700 Using installation profile: Debian.\nNX> 700 Installation log is: \/usr\/NX\/var\/log\/nxinstall.log.\nNX> 700 Installing nxrunner version: 8.5.3.\nNX> 700 Installing nxplayer version: 8.5.3.\nNX> 700 Installing nxnode version: 8.5.3.\nNX> 700 Installing nxserver version: 8.5.3.#######################.................................] \nNX> 700 Installation completed at: Mon, 26 Jun 2023 20:51:27.\nNX> 700 NoMachine was configured to run the following services:\nNX> 700 NX service on port: 4000\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"running-no-machine-on-debian-12\">Running NoMachine on Debian 12<\/h3>\n\n\n\n<p>Once the installation completes, the NoMachine package is now available in your system.<\/p>\n\n\n\n<p>You can launch it from the applications menu. Also, you should be able to see the&nbsp;<strong>!M icon<\/strong>&nbsp;on the system tray.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1122\" height=\"313\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/06\/launch-nomachine.png\" alt=\"Install NoMachine on Debian 12\" class=\"wp-image-17557\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/06\/launch-nomachine.png?v=1687803725 1122w, https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/06\/launch-nomachine-768x214.png?v=1687803725 768w\" sizes=\"(max-width: 1122px) 100vw, 1122px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"configuring-no-machine-on-debian-12\"><a href=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/02\/nomachine-ubuntu-20.04.png\"><\/a>Configuring NoMachine on Debian 12<\/h3>\n\n\n\n<p>NoMachine can be configured as a server or a client depending on how you are using it.<\/p>\n\n\n\n<p>To access the NoMachine settings:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>click on the&nbsp;<strong>!M<\/strong>&nbsp;icon in the system tray or&nbsp;<strong>NoMachine service<\/strong>&nbsp;from the system apps as shown in the screenshot above.<\/li>\n\n\n\n<li>click&nbsp;<strong>Show the Service status<\/strong>&nbsp;<\/li>\n\n\n\n<li>Click on&nbsp;<strong>Server<\/strong>&nbsp;<strong>preferences<\/strong>&nbsp;settings to access !M server settings.<\/li>\n<\/ul>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"884\" height=\"560\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/09\/nomachine-settings.png\" alt=\"Install NoMachine on Debian 12\" class=\"wp-image-10511\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/09\/nomachine-settings.png?v=1632331136 884w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/09\/nomachine-settings-768x487.png?v=1632331136 768w\" sizes=\"(max-width: 884px) 100vw, 884px\" \/><\/figure><\/div>\n\n\n<p>Under the&nbsp;<strong>Ports<\/strong>&nbsp;tab, you can uncheck the <strong>Advertise this computer on the local network<\/strong>.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"890\" height=\"556\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/09\/ports.png\" alt=\"Install NoMachine on Debian 12\" class=\"wp-image-10512\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/09\/ports.png?v=1632331206 890w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/09\/ports-768x480.png?v=1632331206 768w\" sizes=\"(max-width: 890px) 100vw, 890px\" \/><\/figure><\/div>\n\n\n<p>Under the <strong>Security<\/strong> tab, you need to <strong>uncheck<\/strong> the&nbsp;<code><strong>Require permission to let users connect<\/strong><\/code>&nbsp;option if you are running unattended remote desktop system.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"888\" height=\"570\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/09\/security.png\" alt=\"Install NoMachine on Debian 12\" class=\"wp-image-10513\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/09\/security.png?v=1632331257 888w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/09\/security-768x493.png?v=1632331257 768w\" sizes=\"(max-width: 888px) 100vw, 888px\" \/><\/figure><\/div>\n\n\n<p>Go through other tabs for more configuration options.<\/p>\n\n\n\n<p>When done setting up NoMachine on your Kali Linux 2021, restart NoMachine server.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"open-no-machine-server-port-on-firewall\">Open NoMachine Server Port on Firewall<\/h3>\n\n\n\n<p>You may need to open these ports, 4000\/tcp, 4011:4999\/udp on firewall to access NoMachine. See how to control NoMachine ports on Firewall;<\/p>\n\n\n\n<p><a href=\"https:\/\/kifarunix.com\/control-nomachine-ports-on-firewall\/\" target=\"_blank\" rel=\"noreferrer noopener\">Control NoMachine Ports on Firewall<\/a><\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"connecting-to-remote-desktop-computer-using-no-machine\">Connecting to Remote Desktop Computer using NoMachine<\/h3>\n\n\n\n<p>As stated above, for NoMachine remote connections to work,&nbsp;<strong>both<\/strong>&nbsp;desktop computers must have NoMachine software installed.<\/p>\n\n\n\n<p>Assuming your client desktop machine has NoMachine already installed launch it and click <strong>NoMachine client icon<\/strong>&nbsp;or simply click the&nbsp;<strong>!M icon<\/strong>&nbsp;on the system tray and click&nbsp;<strong>Show Main Window<\/strong>.<\/p>\n\n\n\n<p>NoMachine try to search for any local NoMachine connections.<\/p>\n\n\n\n<p>If it dont find any, click on the&nbsp;<strong>+add<\/strong>&nbsp;button to create new connection.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"888\" height=\"558\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/09\/new-conn-nomachine.png\" alt=\"\" class=\"wp-image-10516\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/09\/new-conn-nomachine.png?v=1632331397 888w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/09\/new-conn-nomachine-768x483.png?v=1632331397 768w\" sizes=\"(max-width: 888px) 100vw, 888px\" \/><\/figure><\/div>\n\n\n<p>Set the connection name, IP address, Port (4000) and Protocol (NX).<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"905\" height=\"586\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/06\/connect-to-debian-12-via-nomachine.png\" alt=\"\" class=\"wp-image-17560\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/06\/connect-to-debian-12-via-nomachine.png?v=1687804667 905w, https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/06\/connect-to-debian-12-via-nomachine-768x497.png?v=1687804667 768w\" sizes=\"(max-width: 905px) 100vw, 905px\" \/><\/figure><\/div>\n\n\n<p>Setup the Authentication and Multimedia<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Use Password for authentication<\/li>\n\n\n\n<li>Use UDP port for multimedia<\/li>\n<\/ul>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"902\" height=\"589\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/06\/nomachine-authenticatio-and-comms-port.png\" alt=\"\" class=\"wp-image-17559\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/06\/nomachine-authenticatio-and-comms-port.png?v=1687804650 902w, https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/06\/nomachine-authenticatio-and-comms-port-768x501.png?v=1687804650 768w\" sizes=\"(max-width: 902px) 100vw, 902px\" \/><\/figure><\/div>\n\n\n<p>To initiate a remote connection:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>click&nbsp;<strong>add<\/strong> to add the connection.<\/li>\n\n\n\n<li>A connection is created on the NoMachine. Click connect to initiate remote system connection.<\/li>\n\n\n\n<li>Next, verify the authenticity of the host by accepting the certificate fingerprint.<\/li>\n\n\n\n<li>Enter your remote access credentials.<\/li>\n<\/ul>\n\n\n\n<p>Be sure to allow remote connections if at all you <strong>enabled the need for permissions to connect on the remote desktop<\/strong>.<\/p>\n\n\n\n<p>Upon successful login, you should land on the desktop of the remote system.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1403\" height=\"769\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/06\/debian-12-nomachine.png\" alt=\"Install NoMachine on Debian 12\" class=\"wp-image-17558\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/06\/debian-12-nomachine.png?v=1687804602 1403w, https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/06\/debian-12-nomachine-768x421.png?v=1687804602 768w\" sizes=\"(max-width: 1403px) 100vw, 1403px\" \/><\/figure>\n\n\n\n<p><a href=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/02\/nomachine-remote-desktop.png\"><\/a>And there you go. You can now seamlessly use NoMachine for remote desktop connections to your Debian 12 desktop.<\/p>\n\n\n\n<p>That marks the end of our tutorial on installing NoMachine on Debian 12.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"similar-tutorials\">Similar Tutorials<\/h3>\n\n\n\n<p><a href=\"https:\/\/kifarunix.com\/install-nomachine-on-kali-linux-2021\/\" target=\"_blank\" rel=\"noreferrer noopener\">Install NoMachine on Kali Linux 2021<\/a><\/p>\n\n\n\n<p><a href=\"https:\/\/kifarunix.com\/install-nomachine-on-rocky-linux-8\/\" target=\"_blank\" rel=\"noreferrer noopener\">Install NoMachine on Rocky Linux 8<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Welcome to our tutorial on how to install NoMachine on Debian 12. NoMachine is a remote desktop tool just like VNC, TeamViewer. It is designed<\/p>\n","protected":false},"author":10,"featured_media":12124,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"rank_math_lock_modified_date":false,"footnotes":""},"categories":[121,214],"tags":[6959,6961,6960],"class_list":["post-17554","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-howtos","category-remote-desktop","tag-install-nomachine-on-debian-12","tag-nomachine-install-debian","tag-nomachine-remote-debian-12-desktop","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-50","resize-featured-image"],"_links":{"self":[{"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/posts\/17554"}],"collection":[{"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/users\/10"}],"replies":[{"embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/comments?post=17554"}],"version-history":[{"count":4,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/posts\/17554\/revisions"}],"predecessor-version":[{"id":20759,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/posts\/17554\/revisions\/20759"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/media\/12124"}],"wp:attachment":[{"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/media?parent=17554"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/categories?post=17554"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/tags?post=17554"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}