{"id":9268,"date":"2025-08-19T18:38:11","date_gmt":"2025-08-19T13:08:11","guid":{"rendered":"https:\/\/pheonixsolutions.com\/blog\/?p=9268"},"modified":"2025-08-19T18:38:22","modified_gmt":"2025-08-19T13:08:22","slug":"how-to-install-ubuntu-server-and-zabbix-on-raspberry-pi","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-ubuntu-server-and-zabbix-on-raspberry-pi\/","title":{"rendered":"How to Install Ubuntu Server and Zabbix on Raspberry Pi"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Introduction:<\/h2>\n\n\n\n<p>The <strong>Raspberry Pi<\/strong> isn\u2019t just a hobbyist gadget \u2013 it\u2019s powerful enough to run servers, monitor networks, and support real IT operations. One of the best tools for monitoring infrastructure is <strong>Zabbix<\/strong>, an open-source monitoring solution used by enterprises worldwide. <\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites:<\/h2>\n\n\n\n<p>Before starting the installation, make sure you have the following:<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Hardware:<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Raspberry Pi 4 (2GB RAM minimum) or Raspberry Pi 5 (recommended)<\/li>\n\n\n\n<li>16GB or larger microSD card (Class 10 or better)<\/li>\n\n\n\n<li>MicroSD card reader for your PC\/laptop<\/li>\n\n\n\n<li>Power supply (official Raspberry Pi adapter recommended)<\/li>\n\n\n\n<li>HDMI cable + monitor (optional if using headless SSH setup)<\/li>\n\n\n\n<li>USB keyboard &amp; mouse (optional if using headless setup)<\/li>\n\n\n\n<li>Internet connection (Ethernet preferred, Wi-Fi also works)<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Software (on your PC\/laptop):<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a>Raspberry Pi Imager<\/a> to flash OS<\/li>\n\n\n\n<li>Ubuntu Server image (64-bit, preferably <strong>Ubuntu Server 24.04 LTS<\/strong>)<\/li>\n\n\n\n<li>SSH client (e.g., <strong>PuTTY<\/strong> on Windows or built-in <code>ssh<\/code> command on Linux\/macOS)<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Part 1: Install Ubuntu Server on Raspberry Pi:<\/h3>\n\n\n\n<h4 class=\"wp-block-heading\">Requirements:<\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Raspberry Pi 4 or Pi 5 (2GB+ RAM recommended)<\/li>\n\n\n\n<li>16GB+ microSD card<\/li>\n\n\n\n<li>Card reader for flashing the OS<\/li>\n\n\n\n<li>Power supply<\/li>\n\n\n\n<li>Ethernet cable or Wi-Fi<\/li>\n\n\n\n<li>A laptop\/PC (Windows, macOS, or Linux)<\/li>\n<\/ul>\n\n\n\n<h5 class=\"wp-block-heading\">Step 1: Download Ubuntu Server:<\/h5>\n\n\n\n<p>This is the lightweight OS that will power your Raspberry Pi as a server.<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Visit <a class=\"\" href=\"https:\/\/ubuntu.com\/download\/raspberry-pi\">Ubuntu Raspberry Pi Downloads<\/a>.<\/li>\n\n\n\n<li>Download <strong>Ubuntu Server 24.04 LTS (64-bit)<\/strong>.<\/li>\n<\/ol>\n\n\n\n<h5 class=\"wp-block-heading\">Step 2: Flash the OS to microSD Card:<\/h5>\n\n\n\n<p>This process installs Ubuntu Server onto your SD card so the Pi can boot from it.<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Install <a>Raspberry Pi Imager<\/a>.<\/li>\n\n\n\n<li>Open Imager \u2192 <strong>Choose OS<\/strong> \u2192 <code>Other general-purpose OS \u2192 Ubuntu \u2192 Ubuntu Server 24.04 LTS (64-bit)<\/code>.<\/li>\n\n\n\n<li>Select your microSD card under <strong>Choose Storage<\/strong>.<\/li>\n\n\n\n<li>Click <strong>Write<\/strong>.<\/li>\n<\/ol>\n\n\n\n<h5 class=\"wp-block-heading\">Step 3: Boot the Raspberry Pi:<\/h5>\n\n\n\n<p>The Raspberry Pi will automatically boot into Ubuntu Server for the first time.<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Insert the microSD card into the Pi.<\/li>\n\n\n\n<li>Connect monitor, keyboard, and network.<\/li>\n\n\n\n<li>Power on the Pi \u2013 it will boot into Ubuntu Server.<\/li>\n<\/ol>\n\n\n\n<h5 class=\"wp-block-heading\">Step 4: First Login:<\/h5>\n\n\n\n<p>On first login, Ubuntu forces you to set a new password for security.<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Default username: <strong>ubuntu<\/strong><\/li>\n\n\n\n<li>Default password: <strong>ubuntu<\/strong><\/li>\n\n\n\n<li>You\u2019ll be asked to change the password after first login.<\/li>\n<\/ol>\n\n\n\n<h5 class=\"wp-block-heading\">Step 5: Update System:<\/h5>\n\n\n\n<p>This ensures you have the latest security patches and updated software before installing Zabbix.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt update &amp;&amp; sudo apt upgrade -y<\/code><\/pre>\n\n\n\n<p>At this point, your Raspberry Pi is running <strong>Ubuntu Server<\/strong>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Part 2: Install Zabbix on Ubuntu Server (Raspberry Pi)<\/h3>\n\n\n\n<h5 class=\"wp-block-heading\">Step 1: Install Required Packages;<\/h5>\n\n\n\n<p>These are necessary tools to download and manage the Zabbix repository.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install -y wget gnupg2 software-properties-common\n<\/code><\/pre>\n\n\n\n<h5 class=\"wp-block-heading\">Step 2: Add Zabbix Repository:<\/h5>\n\n\n\n<p>This registers the official Zabbix repository so you can install the latest version.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>wget https:\/\/repo.zabbix.com\/zabbix\/7.0\/ubuntu\/pool\/main\/z\/zabbix-release\/zabbix-release_7.0-2+ubuntu24.04_all.deb\nsudo dpkg -i zabbix-release_7.0-2+ubuntu24.04_all.deb\nsudo apt update\n<\/code><\/pre>\n\n\n\n<h5 class=\"wp-block-heading\">Step 3: Install Zabbix Server, Frontend, and Agent:<\/h5>\n\n\n\n<p>This installs the Zabbix components along with MySQL, which is required for storing monitoring data.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install -y zabbix-server-mysql zabbix-frontend-php zabbix-apache-conf zabbix-sql-scripts zabbix-agent mysql-server\n<\/code><\/pre>\n\n\n\n<h5 class=\"wp-block-heading\">Step 4: Configure Database:<\/h5>\n\n\n\n<p>This creates a database and user account where Zabbix will store all monitoring data.<\/p>\n\n\n\n<p>1.Secure MySQL:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo mysql_secure_installation<\/code><\/pre>\n\n\n\n<p>2.Create Zabbix database:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo mysql -uroot -p\nCREATE DATABASE zabbix CHARACTER SET utf8mb4 COLLATE utf8mb4_bin;\nCREATE USER 'zabbix'@'localhost' IDENTIFIED BY 'StrongPassword';\nGRANT ALL PRIVILEGES ON zabbix.* TO 'zabbix'@'localhost';\nFLUSH PRIVILEGES;\nEXIT;<\/code><\/pre>\n\n\n\n<p>3.Import initial schema:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>zcat \/usr\/share\/zabbix-sql-scripts\/mysql\/server.sql.gz | mysql -uzabbix -p zabbix\n<\/code><\/pre>\n\n\n\n<h5 class=\"wp-block-heading\">Step 5: Configure Zabbix Server:<\/h5>\n\n\n\n<p>This tells Zabbix how to connect to the database you created.<\/p>\n\n\n\n<p>Edit the Zabbix server config:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo nano \/etc\/zabbix\/zabbix_server.conf\n<\/code><\/pre>\n\n\n\n<p>Set the database password:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>DBPassword=StrongPassword\n<\/code><\/pre>\n\n\n\n<h5 class=\"wp-block-heading\">Step 6: Start and Enable Services:<\/h5>\n\n\n\n<p>This starts Zabbix services and ensures they run automatically after reboot.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl restart zabbix-server zabbix-agent apache2 mysql\nsudo systemctl enable zabbix-server zabbix-agent apache2 mysql\n<\/code><\/pre>\n\n\n\n<h5 class=\"wp-block-heading\">Step 7: Access Zabbix Frontend:<\/h5>\n\n\n\n<p>Complete the web setup wizard using your database details.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Open your browser \u2192 <code>http:\/\/&lt;RaspberryPi-IP&gt;\/zabbix<\/code><\/li>\n\n\n\n<li>Follow the web installer wizard:\n<ul class=\"wp-block-list\">\n<li>Database \u2192 use <code>zabbix<\/code> \/ <code>StrongPassword<\/code><\/li>\n\n\n\n<li>Default login \u2192 <code>Admin<\/code> \/ <code>zabbix<\/code><\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<p><strong>Zabbix running on Raspberry Pi<\/strong> with Ubuntu Server!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion:<\/h2>\n\n\n\n<p>By installing <strong>Ubuntu Server<\/strong> and <strong>Zabbix<\/strong> on your Raspberry Pi, you\u2019ve turned a tiny device into a <strong>powerful monitoring solution<\/strong>. You can now monitor your websites, servers, IoT devices, and applications in real time \u2013 all from a Pi!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction: The Raspberry Pi isn\u2019t just a hobbyist gadget \u2013 it\u2019s powerful enough to run servers, monitor networks, and support real IT operations. One of the best tools for monitoring infrastructure is Zabbix, an open-source monitoring solution used by enterprises worldwide. Prerequisites: Before starting the installation, make sure you have&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/how-to-install-ubuntu-server-and-zabbix-on-raspberry-pi\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">How to Install Ubuntu Server and Zabbix on Raspberry Pi<\/span><i class=\"fa fa-arrow-right\"><\/i><\/a><\/p>\n","protected":false},"author":519,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[1],"tags":[],"class_list":{"0":"post-9268","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-uncategorized","7":"h-entry","9":"h-as-article"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pheonix Solutions - We Empower Your Business Growth<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/pheonixsolutions.com\/blog\/how-to-install-ubuntu-server-and-zabbix-on-raspberry-pi\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pheonix Solutions - We Empower Your Business Growth\" \/>\n<meta property=\"og:description\" content=\"Introduction: The Raspberry Pi isn\u2019t just a hobbyist gadget \u2013 it\u2019s powerful enough to run servers, monitor networks, and support real IT operations. One of the best tools for monitoring infrastructure is Zabbix, an open-source monitoring solution used by enterprises worldwide. Prerequisites: Before starting the installation, make sure you have&hellip; Continue Reading How to Install Ubuntu Server and Zabbix on Raspberry Pi\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/how-to-install-ubuntu-server-and-zabbix-on-raspberry-pi\/\" \/>\n<meta property=\"og:site_name\" content=\"PHEONIXSOLUTIONS\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/\" \/>\n<meta property=\"article:published_time\" content=\"2025-08-19T13:08:11+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-19T13:08:22+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png\" \/>\n\t<meta property=\"og:image:width\" content=\"3837\" \/>\n\t<meta property=\"og:image:height\" content=\"2540\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Janagan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:site\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Janagan\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-ubuntu-server-and-zabbix-on-raspberry-pi\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-ubuntu-server-and-zabbix-on-raspberry-pi\\\/\"},\"author\":{\"name\":\"Janagan\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/73bec370cf12156203d104ccf505b4b4\"},\"headline\":\"How to Install Ubuntu Server and Zabbix on Raspberry Pi\",\"datePublished\":\"2025-08-19T13:08:11+00:00\",\"dateModified\":\"2025-08-19T13:08:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-ubuntu-server-and-zabbix-on-raspberry-pi\\\/\"},\"wordCount\":557,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-ubuntu-server-and-zabbix-on-raspberry-pi\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-ubuntu-server-and-zabbix-on-raspberry-pi\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-ubuntu-server-and-zabbix-on-raspberry-pi\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"datePublished\":\"2025-08-19T13:08:11+00:00\",\"dateModified\":\"2025-08-19T13:08:22+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-ubuntu-server-and-zabbix-on-raspberry-pi\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-ubuntu-server-and-zabbix-on-raspberry-pi\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-ubuntu-server-and-zabbix-on-raspberry-pi\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Ubuntu Server and Zabbix on Raspberry Pi\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"name\":\"Pheonix Solutions\",\"description\":\"We Empower Your Business Growth\",\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\",\"name\":\"PheonixSolutions\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"width\":454,\"height\":300,\"caption\":\"PheonixSolutions\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/PheonixSolutions-209942982759387\\\/\",\"https:\\\/\\\/x.com\\\/pheonixsolution\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/73bec370cf12156203d104ccf505b4b4\",\"name\":\"Janagan\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/11b0c1bbd07592e0833ec1bcbbf2972d488f401cc0433d787ce55616e6076dff?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/11b0c1bbd07592e0833ec1bcbbf2972d488f401cc0433d787ce55616e6076dff?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/11b0c1bbd07592e0833ec1bcbbf2972d488f401cc0433d787ce55616e6076dff?s=96&r=g\",\"caption\":\"Janagan\"},\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/author\\\/janagan\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pheonix Solutions - We Empower Your Business Growth","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-ubuntu-server-and-zabbix-on-raspberry-pi\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"Introduction: The Raspberry Pi isn\u2019t just a hobbyist gadget \u2013 it\u2019s powerful enough to run servers, monitor networks, and support real IT operations. One of the best tools for monitoring infrastructure is Zabbix, an open-source monitoring solution used by enterprises worldwide. Prerequisites: Before starting the installation, make sure you have&hellip; Continue Reading How to Install Ubuntu Server and Zabbix on Raspberry Pi","og_url":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-ubuntu-server-and-zabbix-on-raspberry-pi\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2025-08-19T13:08:11+00:00","article_modified_time":"2025-08-19T13:08:22+00:00","og_image":[{"width":3837,"height":2540,"url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png","type":"image\/png"}],"author":"Janagan","twitter_card":"summary_large_image","twitter_creator":"@pheonixsolution","twitter_site":"@pheonixsolution","twitter_misc":{"Written by":"Janagan","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-ubuntu-server-and-zabbix-on-raspberry-pi\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-ubuntu-server-and-zabbix-on-raspberry-pi\/"},"author":{"name":"Janagan","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/73bec370cf12156203d104ccf505b4b4"},"headline":"How to Install Ubuntu Server and Zabbix on Raspberry Pi","datePublished":"2025-08-19T13:08:11+00:00","dateModified":"2025-08-19T13:08:22+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-ubuntu-server-and-zabbix-on-raspberry-pi\/"},"wordCount":557,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/how-to-install-ubuntu-server-and-zabbix-on-raspberry-pi\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-ubuntu-server-and-zabbix-on-raspberry-pi\/","url":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-ubuntu-server-and-zabbix-on-raspberry-pi\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"datePublished":"2025-08-19T13:08:11+00:00","dateModified":"2025-08-19T13:08:22+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-ubuntu-server-and-zabbix-on-raspberry-pi\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/how-to-install-ubuntu-server-and-zabbix-on-raspberry-pi\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-ubuntu-server-and-zabbix-on-raspberry-pi\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Ubuntu Server and Zabbix on Raspberry Pi"}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/blog\/#website","url":"https:\/\/pheonixsolutions.com\/blog\/","name":"Pheonix Solutions","description":"We Empower Your Business Growth","publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pheonixsolutions.com\/blog\/#organization","name":"PheonixSolutions","url":"https:\/\/pheonixsolutions.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","width":454,"height":300,"caption":"PheonixSolutions"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","https:\/\/x.com\/pheonixsolution"]},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/73bec370cf12156203d104ccf505b4b4","name":"Janagan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/11b0c1bbd07592e0833ec1bcbbf2972d488f401cc0433d787ce55616e6076dff?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/11b0c1bbd07592e0833ec1bcbbf2972d488f401cc0433d787ce55616e6076dff?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/11b0c1bbd07592e0833ec1bcbbf2972d488f401cc0433d787ce55616e6076dff?s=96&r=g","caption":"Janagan"},"url":"https:\/\/pheonixsolutions.com\/blog\/author\/janagan\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p7F4uM-2pu","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/9268","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/users\/519"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/comments?post=9268"}],"version-history":[{"count":0,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/9268\/revisions"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=9268"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=9268"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=9268"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}