{"id":10011,"date":"2019-05-21T08:02:34","date_gmt":"2019-05-21T06:02:34","guid":{"rendered":"https:\/\/nzbusenet.com\/install-radarr-on-ubuntu-with-nzbget-as-a-download-program\/"},"modified":"2023-07-22T13:50:34","modified_gmt":"2023-07-22T11:50:34","slug":"radarr-install-ubuntu-with-nzbget-as-download-program","status":"publish","type":"post","link":"https:\/\/nzbusenet.com\/en\/radarr-install-ubuntu-with-nzbget-as-download-program\/","title":{"rendered":"Install Radarr on Ubuntu. With NZBGet as a download program."},"content":{"rendered":"\n<p>In this tutorial we are going to install Radarr on Ubuntu with NZBGet. Then we will configure in Radarr. With NZBGet. So that you downloads, from the newsgroups. Are downloaded With NZBGet.<\/p>\n<div class='code-block code-block-8' style='margin: 8px 0; clear: both; width: 700px; height: 250px;'>\n<script async src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-4833496329174552\"\n     crossorigin=\"anonymous\"><\/script>\n<!-- nzbusenetinberichten2021 -->\n<ins class=\"adsbygoogle\"\n     style=\"display:inline-block;width:700px;height:250px\"\n     data-ad-client=\"ca-pub-4833496329174552\"\n     data-ad-slot=\"6745544931\"><\/ins>\n<script>\n     (adsbygoogle = window.adsbygoogle || []).push({});\n<\/script><\/div>\n\n\n<h2 class=\"wp-block-heading\">Install Radarr Ubuntu.<\/h2>\n\n<p>We&#8217;re going now. Update the software list.<\/p>\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>sudo apt-get update<\/p>\n<\/blockquote>\n\n<p>Now we are going to install the required software. For Radarr.<\/p>\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>sudo apt-get install libmono-cil-dev curl mediainfo<\/p>\n<\/blockquote>\n\n<p>Now we are going to download Radarr. Beware! This link may have changed. If a new version is out. Then see https:\/\/github.com\/Radarr\/Radarr\/releases\/. For the correct download link.<\/p>\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>sudo wget https:\/\/github.com\/Radarr\/Radarr\/releases\/download\/v0.2.0.870\/Radarr.develop.0.2.0.870.linux.tar.gz<\/p>\n<\/blockquote>\n\n<p>We&#8217;re going to unpack Radarr. To the Radarr hidden folder. By a dot &#8220;.&#8221; the folder is hidden.<\/p>\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>sudo tar -xf Radarr* -C \/.radarr\/<\/p>\n<\/blockquote>\n\n<p>Now we are going to set Map rights correctly. Otherwise it may be that, Radarr cannot be updated to a recent version.<\/p>\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>sudo chown -R username:username \/.radarr\/Radarr<\/p>\n<\/blockquote>\n\n<p>Now we have to, go to the Radarr installation directory.<\/p>\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>cd \/.radarr\/Radarr<\/p>\n<\/blockquote>\n\n<p>Now we are going to start Radarr.<\/p>\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>mono Radarr.exe<\/p>\n<\/blockquote>\n\n<p>You can now acces Radarr on <strong>http: \/\/server.ip.address: 7878.<\/strong><\/p>\n\n<h2 class=\"wp-block-heading\">Start Radarr while booting<\/h2>\n<div class='code-block code-block-8' style='margin: 8px 0; clear: both; width: 700px; height: 250px;'>\n<script async src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-4833496329174552\"\n     crossorigin=\"anonymous\"><\/script>\n<!-- nzbusenetinberichten2021 -->\n<ins class=\"adsbygoogle\"\n     style=\"display:inline-block;width:700px;height:250px\"\n     data-ad-client=\"ca-pub-4833496329174552\"\n     data-ad-slot=\"6745544931\"><\/ins>\n<script>\n     (adsbygoogle = window.adsbygoogle || []).push({});\n<\/script><\/div>\n\n\n<p>We are now going to add Radarr to the <strong>init.d<\/strong> startup script. So that Radarr is started. During the boot process.<\/p>\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>sudo nano \/etc\/systemd\/system\/radarr.service<\/p>\n<\/blockquote>\n\n<p>If you get a notification now. That Nano is not installed. Then execute the command below.<\/p>\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>sudo apt-get install nano<\/p>\n<\/blockquote>\n\n<p>You must copy the script below. And then paste. Beware! Customize the user name. To your own Ubuntu username.<\/p>\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>[Unit]<br \/>Description=Radarr Daemon<br \/>After=syslog.target network.target<\/p>\n\n\n\n<p>[Service]<br \/>User=yourusername<br \/>Group=user<br \/>Type=simple<br \/>ExecStart=\/usr\/bin\/mono \/.radarr\/Radarr\/Radarr.exe -nobrowser<br \/>TimeoutStopSec=20<br \/>KillMode=process<br \/>Restart=on-failure<\/p>\n\n\n\n<p>[Install]<br \/>WantedBy=multi-user.target<\/p>\n<\/blockquote>\n\n<p>Now press <strong>Ctrl + X<\/strong> key. And then we press on the <strong>Y <\/strong>button. And then the <strong>Enter<\/strong> key. To save the script.<\/p>\n\n<p>Now we still have to activate the script.<\/p>\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>sudo systemctl enable radarr<\/p>\n<\/blockquote>\n\n<p>Now we can. Start the Radarr service.<\/p>\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>sudo service radarr start<\/p>\n<\/blockquote>\n\n<p>Now wait a minute. Radarr is now starting. You have now completed the installation of Radarr on Ubuntu.<\/p>\n\n<p><strong>Tutorial Radarr Ubuntu<\/strong><\/p>\n\n<ol class=\"wp-block-list\">\n<li><a href=\"https:\/\/nzbusenet.com\/en\/radarr-tutorial\/\">Radarr tutorials<\/a>.<\/li>\n\n\n\n<li><a href=\"https:\/\/nzbusenet.com\/en\/radarr-install-ubuntu-with-nzbget-as-download-program\/\">Radarr install Ubuntu with NZBGet as a download program.<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/nzbusenet.com\/en\/ubuntu-radarr-configure-with-nzbget-to-download-movies\/\">Configure Radarr with NZBGet Ubuntu <\/a>.<\/li>\n\n\n\n<li><a href=\"https:\/\/nzbusenet.com\/en\/ubuntu-download-movies-with-radarr-automaticly\/\">Ubuntu automatically downloads movies with Radarr from the newsgroups.<\/a><\/li>\n<\/ol>\n","protected":false},"excerpt":{"rendered":"<div class=\"mh-excerpt\"><p>In this tutorial we are going to install Radarr on Ubuntu with NZBGet. Then we will configure in Radarr. With NZBGet. So that you downloads, from the newsgroups. Are downloaded With NZBGet. Install Radarr Ubuntu. <a class=\"mh-excerpt-more\" href=\"https:\/\/nzbusenet.com\/en\/radarr-install-ubuntu-with-nzbget-as-download-program\/\" title=\"Install Radarr on Ubuntu. With NZBGet as a download program.\">[&#8230;]<\/a><\/p>\n<\/div>","protected":false},"author":12223,"featured_media":49446,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[724],"tags":[],"class_list":{"0":"post-10011","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-radarr-tutorial"},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/nzbusenet.com\/wp-content\/uploads\/2018\/07\/Radarr-installeren-Ubuntu.gif","_links":{"self":[{"href":"https:\/\/nzbusenet.com\/en\/wp-json\/wp\/v2\/posts\/10011","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/nzbusenet.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/nzbusenet.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/nzbusenet.com\/en\/wp-json\/wp\/v2\/users\/12223"}],"replies":[{"embeddable":true,"href":"https:\/\/nzbusenet.com\/en\/wp-json\/wp\/v2\/comments?post=10011"}],"version-history":[{"count":0,"href":"https:\/\/nzbusenet.com\/en\/wp-json\/wp\/v2\/posts\/10011\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/nzbusenet.com\/en\/wp-json\/wp\/v2\/media\/49446"}],"wp:attachment":[{"href":"https:\/\/nzbusenet.com\/en\/wp-json\/wp\/v2\/media?parent=10011"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/nzbusenet.com\/en\/wp-json\/wp\/v2\/categories?post=10011"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/nzbusenet.com\/en\/wp-json\/wp\/v2\/tags?post=10011"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}