{"id":6674,"date":"2010-03-31T09:00:30","date_gmt":"2010-03-31T07:00:30","guid":{"rendered":"https:\/\/www.credativ.de\/blog\/credativ-inside\/howto-debian-preseed-mit-netboot\/"},"modified":"2022-03-25T13:50:02","modified_gmt":"2022-03-25T12:50:02","slug":"howto-debian-preseed-mit-netboot","status":"publish","type":"post","link":"https:\/\/www.credativ.de\/en\/blog\/howtos\/howto-debian-preseed-mit-netboot\/","title":{"rendered":"[Howto] Debian Preseed mit Netboot"},"content":{"rendered":"<p>The vast majority of Debian installations are simplified with the use of Preseeding and Netboot. Friedrich Weber, a school student on a work experience placement with us at our German office has observed the process and captured it in a Howto here:<\/p>\n<p>Imagine the following situation: you find yourself with ten to twenty brand new Notebooks and the opportunity to install them with Debian and customise to your own taste. In any case it would be great fun to manually perform the Debian installation and configuration on each Notebook.<\/p>\n<p>This is where <a href=\"http:\/\/d-i.alioth.debian.org\/manual\/de.i386\/apb.html\" target=\"_blank\" rel=\"noopener noreferrer\">Debian Preseed<\/a> comes into play. The concept is simple and self-explanatory; usually, whoever is doing the installation will be faced with a number of issues during the process (e.g. language, partitioning, packages, Bootloader, etc.) In terms of Preseed, all of these issues can now be resolved. Only those which are not already accounted for in Preseed remain for the Debian installer. In the ideal situation these would become apparent at the outset of the installation, where the solution would differ depending on the target system and which the administrator must deal with manually \u2013 only when these have been dealt with can the installation be left to run unattended.<\/p>\n<p>Preseed functions on some simple inbuilt configuration data: <code>preseed.cfg<\/code>. It includes, as detailed above, the questions which must be answered during installation, and in <a href=\"http:\/\/en.wikipedia.org\/wiki\/Debconf_(software_package)\" target=\"_blank\" rel=\"noopener noreferrer\">debconf<\/a>-format. Data such as this consists of several rows, each row of which defines a debconf configuration option \u2013 a response to a question \u2013 for example:<\/p>\n<pre>d-i debian-installer\/locale string de_DE.UTF-8<\/pre>\n<p>The first element of these lines is the name of the package, which is configured (d-i is here an abbreviation of debian installer), the second element is the name of the option, which is set, as the third element of the type of option (a string) and the rest is the value of the option.<\/p>\n<p>In this example, we set the language to German using UTF-8-coding. You can put lines like this together yourself, even simpler with the tool <code>debconf-get-selections<\/code>: these commands provide straight forward and simple options, which can be set locally.<\/p>\n<p>From the selection you can choose your desired settings, adjusted if necessary and copied into <code>preseed.cfg<\/code>. Here is an example of <code>preseed.cfg<\/code>:<\/p>\n<pre>d-i debian-installer\/locale string de_DE.UTF-8\r\nd-i debian-installer\/keymap select de-latin1\r\nd-i console-keymaps-at\/keymap select de\r\nd-i languagechooser\/language-name-fb select German\r\nd-i countrychooser\/country-name select Germany\r\nd-i console-setup\/layoutcode string de_DE\r\nd-i clock-setup\/utc boolean true\r\nd-i time\/zone string Europe\/Berlin\r\nd-i clock-setup\/ntp boolean true\r\nd-i clock-setup\/ntp-server string ntp1\r\n \r\ntasksel tasksel\/first multiselect standard, desktop, gnome-desktop, laptop\r\n\r\nd-i pkgsel\/include string openssh-client vim less rsync<\/pre>\n<p>In addition to language and timezone settings, selected tasks and packages are also set with these options. If left competely unattended, the installation will not complete, but will make a good start.<\/p>\n<p>Now onto the question of where Preseed pulls its data from. It is in fact possible to use Preseed with CD and DVD images or USB sticks, but generally more comfortable to use a Debian Netboot Image, essentially an installer, which is started across the network and which can cover its Preseed configuration.<\/p>\n<p>This boot across the network is implemented with <a href=\"http:\/\/de.wikipedia.org\/wiki\/Preboot_Execution_Environment\" target=\"_blank\" rel=\"noopener noreferrer\">PXE<\/a> and requires a system that can boot from a network card. Next, the system depends on booting from the network card. It travels from a DHCO server to an IP address per broadcast.<\/p>\n<p>This DHCP server transmits not only a suitable IP, but also to the IP of a so-called Bootserver. A Bootserver is a <a href=\"http:\/\/de.wikipedia.org\/wiki\/Trivial_File_Transfer_Protocol\" target=\"_blank\" rel=\"noopener noreferrer\">TFTP-Server<\/a>, which provides a Bootloader to assist the Administrator with the desired Debian Installer. At the same time the Debian Installer can be shared with the Boot options that Preseed should use and where he can find the Preseed configuration. Here is a snippet of the PXELINUX configuration data <code>pxelinux.cfg\/default<\/code>:<\/p>\n<pre>label i386\r\nkernel debian-installer\/i386\/linux\r\nappend vga=normal initrd=debian-installer\/i386\/initrd.gz netcfg\/choose_interface=eth0 domain=example.com locale=de_DE debian-installer\/country=DE debian-installer\/language=de debian-installer\/keymap=de-latin1-nodeadkeys console-keymaps-at\/keymap=de-latin1-nodeadkeys auto-install\/enable=false preseed\/url=http:\/\/$server\/preseed.cfg DEBCONF_DEBUG=5 -- quiet<\/pre>\n<p>When the user types <code>i386<\/code>, the <code>debian-installer\/i386\/linux<\/code> kernel (found on the TFTP server) is downloaded and run. This is in addition to a whole load of bootoptions given along the way. The debian installer allows the provision of debconf options as boot parameters. It is good practice for the installer to somehow communicate where to find the Preseed communication on the network (<code>preseed\/url<\/code>).<\/p>\n<p>In order to download this Preseed configuration, it must also be somehow built into the network. The options for that will be handed over (the options for the hostnames would be deliberately omitted here, as every target system has its own Hostname). <code>auto-install\/enable<\/code> would delay the language set up so that it is only enabled after the network configuration, in order that these installations are read through <code>preseed.cfg<\/code>.<\/p>\n<p>It is not necessary as the language set up will also be handed over to the kernel options to ensure that the network configuration is German. The examples and configuration excerpts mentioned here are obviously summarised and shortened. Even so, this blog post should have given you a glimpse into the concept of Preseed in connection with netboot. Finally, here is a complete version of <code>preseed.cfg<\/code>:<\/p>\n<pre>d-i debian-installer\/locale string de_DE.UTF-8\r\nd-i debian-installer\/keymap select de-latin1\r\nd-i console-keymaps-at\/keymap select de\r\nd-i languagechooser\/language-name-fb select German\r\nd-i countrychooser\/country-name select Germany\r\nd-i console-setup\/layoutcode string de_DE\r\n\r\n# Network\r\nd-i netcfg\/choose_interface select auto\r\nd-i netcfg\/get_hostname string debian\r\nd-i netcfg\/get_domain string example.com\r\n \r\n# Package mirror\r\nd-i mirror\/protocol string http\r\nd-i mirror\/country string manual\r\nd-i mirror\/http\/hostname string debian.example.com\r\nd-i mirror\/http\/directory string \/debian\r\nd-i mirror\/http\/proxy string\r\nd-i mirror\/suite string lenny\r\n \r\n# Timezone\r\nd-i clock-setup\/utc boolean true\r\nd-i time\/zone string Europe\/Berlin\r\nd-i clock-setup\/ntp boolean true\r\nd-i clock-setup\/ntp-server string ntp.example.com\r\n \r\n# Root-Account\r\nd-i passwd\/make-user boolean false\r\nd-i passwd\/root-password password secretpassword\r\nd-i passwd\/root-password-again password secretpassword\r\n \r\n# Further APT-Options\r\nd-i apt-setup\/non-free boolean false\r\nd-i apt-setup\/contrib boolean false\r\nd-i apt-setup\/security-updates boolean true\r\n \r\nd-i apt-setup\/local0\/source boolean false\r\nd-i apt-setup\/local1\/source boolean false\r\nd-i apt-setup\/local2\/source boolean false\r\n \r\n# Tasks\r\ntasksel tasksel\/first multiselect standard, desktop\r\nd-i pkgsel\/include string openssh-client vim less rsync\r\nd-i pkgsel\/upgrade select safe-upgrade\r\n \r\n# Popularity-Contest\r\npopularity-contest popularity-contest\/participate boolean true\r\n\r\n# Command to be followed after the installation. `in-target` means that the following\r\n# Command is followed in the installed environment, rather than in the installation environment.\r\n# Here http:\/\/$server\/skript.sh nach \/tmp is downloaded, enabled and implemented.\r\nd-i preseed\/late_command string in-target wget -P \/tmp\/ http:\/\/$server\/skript.sh; in-target chmod +x \/tmp\/skript.sh; in-target \/tmp\/skript.sh><\/pre>\n<p>All Howtos of this blog are grouped together in the <a href=\"https:\/\/www.credativ.de\/en\/blog\/categories\/howto\">Howto category<\/a> \u2013 and if you happen to be looking for <a href=\"https:\/\/www.credativ.de\/en\/software\/debian\/\">Support and Services for Debian<\/a> you\u2019ve come to the right place at credativ.<\/p>\n<p style=\"text-align: center;\"><em>This post was originally written by Irenie White.<\/em><\/p>\n","protected":false},"excerpt":{"rendered":"<p>The vast majority of Debian installations are simplified with the use of Preseeding and Netboot. Friedrich Weber, a school student on a work experience placement with us at our German office has observed the process and captured it in a Howto here: Imagine the following situation: you find yourself with ten to twenty brand new [&hellip;]<\/p>\n","protected":false},"author":90,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_improvement_type_select":"improve_an_existing","_thumb_yes_seoaic":false,"_frame_yes_seoaic":false,"seoaic_generate_description":"","seoaic_improve_instructions_prompt":"","seoaic_rollback_content_improvement":"","seoaic_idea_thumbnail_generator":"","thumbnail_generated":false,"thumbnail_generate_prompt":"","seoaic_article_description":"","seoaic_article_subtitles":[],"footnotes":""},"categories":[1885],"tags":[1775],"class_list":["post-6674","post","type-post","status-publish","format-standard","hentry","category-howtos-en","tag-debian-en"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.4 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>[Howto] Debian Preseed mit Netboot - credativ\u00ae<\/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:\/\/www.credativ.de\/en\/blog\/howtos\/howto-debian-preseed-mit-netboot\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Howto] Debian Preseed mit Netboot\" \/>\n<meta property=\"og:description\" content=\"The vast majority of Debian installations are simplified with the use of Preseeding and Netboot. Friedrich Weber, a school student on a work experience placement with us at our German office has observed the process and captured it in a Howto here: Imagine the following situation: you find yourself with ten to twenty brand new [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.credativ.de\/en\/blog\/howtos\/howto-debian-preseed-mit-netboot\/\" \/>\n<meta property=\"og:site_name\" content=\"credativ\u00ae\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/credativDE\/\" \/>\n<meta property=\"article:published_time\" content=\"2010-03-31T07:00:30+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-03-25T12:50:02+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.credativ.de\/wp-content\/uploads\/2019\/07\/Portfolio-Loesungen.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"800\" \/>\n\t<meta property=\"og:image:height\" content=\"550\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"credativ Redaktion\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@credativde\" \/>\n<meta name=\"twitter:site\" content=\"@credativde\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"credativ Editorial Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/howtos\\\/howto-debian-preseed-mit-netboot\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/howtos\\\/howto-debian-preseed-mit-netboot\\\/\"},\"author\":{\"name\":\"credativ Redaktion\",\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/#\\\/schema\\\/person\\\/63430ac9e022ccceba0f8d53ffe6db12\"},\"headline\":\"[Howto] Debian Preseed mit Netboot\",\"datePublished\":\"2010-03-31T07:00:30+00:00\",\"dateModified\":\"2022-03-25T12:50:02+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/howtos\\\/howto-debian-preseed-mit-netboot\\\/\"},\"wordCount\":798,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/#organization\"},\"keywords\":[\"Debian\"],\"articleSection\":[\"HowTos\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/howtos\\\/howto-debian-preseed-mit-netboot\\\/#respond\"]}],\"copyrightYear\":\"2010\",\"copyrightHolder\":{\"@id\":\"https:\\\/\\\/www.credativ.de\\\/#organization\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/howtos\\\/howto-debian-preseed-mit-netboot\\\/\",\"url\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/howtos\\\/howto-debian-preseed-mit-netboot\\\/\",\"name\":\"[Howto] Debian Preseed mit Netboot - credativ\u00ae\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/#website\"},\"datePublished\":\"2010-03-31T07:00:30+00:00\",\"dateModified\":\"2022-03-25T12:50:02+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/howtos\\\/howto-debian-preseed-mit-netboot\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/howtos\\\/howto-debian-preseed-mit-netboot\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/howtos\\\/howto-debian-preseed-mit-netboot\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Howto] Debian Preseed mit Netboot\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/\",\"name\":\"credativ GmbH\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Organization\",\"Place\"],\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/#organization\",\"name\":\"credativ\u00ae\",\"url\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/\",\"logo\":{\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/howtos\\\/howto-debian-preseed-mit-netboot\\\/#local-main-organization-logo\"},\"image\":{\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/howtos\\\/howto-debian-preseed-mit-netboot\\\/#local-main-organization-logo\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/credativDE\\\/\",\"https:\\\/\\\/x.com\\\/credativde\",\"https:\\\/\\\/mastodon.social\\\/@credativde\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/credativ-gmbh\",\"https:\\\/\\\/www.instagram.com\\\/credativ\\\/\"],\"description\":\"Die credativ GmbH ist ein f\u00fchrendes, auf Open Source Software spezialisiertes IT-Dienstleistungs- und Beratungsunternehmen. Wir bieten umfassende und professionelle Services, von Beratung und Infrastruktur-Betrieb \u00fcber 24\\\/7 Support bis hin zu individuellen L\u00f6sungen und Schulungen. Unser Fokus liegt auf dem ganzheitlichen Management von gesch\u00e4ftskritischen Open-Source-Systemen, darunter Betriebssysteme (z.B. Linux), Datenbanken (z.B. PostgreSQL), Konfigurationsmanagement (z.B. Ansible, Puppet) und Virtualisierung. Als engagierter Teil der Open-Source-Community unterst\u00fctzen wir unsere Kunden dabei, die Vorteile freier Software sicher, stabil und effizient in ihrer IT-Umgebung zu nutzen.\",\"legalName\":\"credativ GmbH\",\"foundingDate\":\"2025-03-01\",\"duns\":\"316387060\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"11\",\"maxValue\":\"50\"},\"address\":{\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/howtos\\\/howto-debian-preseed-mit-netboot\\\/#local-main-place-address\"},\"geo\":{\"@type\":\"GeoCoordinates\",\"latitude\":\"51.1732374\",\"longitude\":\"6.392010099999999\"},\"telephone\":[\"+4921619174200\",\"08002733284\"],\"contactPoint\":{\"@type\":\"ContactPoint\",\"telephone\":\"08002733284\",\"email\":\"vertrieb@credativ.de\"},\"openingHoursSpecification\":[{\"@type\":\"OpeningHoursSpecification\",\"dayOfWeek\":[\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\"],\"opens\":\"09:00\",\"closes\":\"17:00\"},{\"@type\":\"OpeningHoursSpecification\",\"dayOfWeek\":[\"Saturday\",\"Sunday\"],\"opens\":\"00:00\",\"closes\":\"00:00\"}],\"email\":\"info@credativ.de\",\"areaServed\":\"D-A-CH\",\"vatID\":\"DE452151696\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/#\\\/schema\\\/person\\\/63430ac9e022ccceba0f8d53ffe6db12\",\"name\":\"credativ Redaktion\",\"description\":\"Dieser Account dient als Sammelpunkt f\u00fcr die wertvollen Beitr\u00e4ge ehemaliger Mitarbeiter von credativ. Wir bedanken uns f\u00fcr ihre gro\u00dfartigen Inhalte, die das technische Wissen in unserem Blog \u00fcber die Jahre hinweg bereichert haben. Ihre Artikel bleiben hier weiterhin f\u00fcr unsere Leser zug\u00e4nglich.\"},{\"@type\":\"PostalAddress\",\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/howtos\\\/howto-debian-preseed-mit-netboot\\\/#local-main-place-address\",\"streetAddress\":\"Hennes-Weisweiler-Allee 23\",\"addressLocality\":\"M\u00f6nchengladbach\",\"postalCode\":\"41179\",\"addressRegion\":\"Deutschland\",\"addressCountry\":\"DE\"},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/howtos\\\/howto-debian-preseed-mit-netboot\\\/#local-main-organization-logo\",\"url\":\"https:\\\/\\\/www.credativ.de\\\/wp-content\\\/uploads\\\/2025\\\/04\\\/credativ-logo-right.svg\",\"contentUrl\":\"https:\\\/\\\/www.credativ.de\\\/wp-content\\\/uploads\\\/2025\\\/04\\\/credativ-logo-right.svg\",\"caption\":\"credativ\u00ae\"}]}<\/script>\n<meta name=\"geo.placename\" content=\"M\u00f6nchengladbach\" \/>\n<meta name=\"geo.position\" content=\"51.1732374;6.392010099999999\" \/>\n<meta name=\"geo.region\" content=\"Germany\" \/>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"[Howto] Debian Preseed mit Netboot - credativ\u00ae","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:\/\/www.credativ.de\/en\/blog\/howtos\/howto-debian-preseed-mit-netboot\/","og_locale":"en_US","og_type":"article","og_title":"[Howto] Debian Preseed mit Netboot","og_description":"The vast majority of Debian installations are simplified with the use of Preseeding and Netboot. Friedrich Weber, a school student on a work experience placement with us at our German office has observed the process and captured it in a Howto here: Imagine the following situation: you find yourself with ten to twenty brand new [&hellip;]","og_url":"https:\/\/www.credativ.de\/en\/blog\/howtos\/howto-debian-preseed-mit-netboot\/","og_site_name":"credativ\u00ae","article_publisher":"https:\/\/www.facebook.com\/credativDE\/","article_published_time":"2010-03-31T07:00:30+00:00","article_modified_time":"2022-03-25T12:50:02+00:00","og_image":[{"width":800,"height":550,"url":"https:\/\/www.credativ.de\/wp-content\/uploads\/2019\/07\/Portfolio-Loesungen.jpg","type":"image\/jpeg"}],"author":"credativ Redaktion","twitter_card":"summary_large_image","twitter_creator":"@credativde","twitter_site":"@credativde","twitter_misc":{"Written by":"credativ Editorial Team","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.credativ.de\/en\/blog\/howtos\/howto-debian-preseed-mit-netboot\/#article","isPartOf":{"@id":"https:\/\/www.credativ.de\/en\/blog\/howtos\/howto-debian-preseed-mit-netboot\/"},"author":{"name":"credativ Redaktion","@id":"https:\/\/www.credativ.de\/en\/#\/schema\/person\/63430ac9e022ccceba0f8d53ffe6db12"},"headline":"[Howto] Debian Preseed mit Netboot","datePublished":"2010-03-31T07:00:30+00:00","dateModified":"2022-03-25T12:50:02+00:00","mainEntityOfPage":{"@id":"https:\/\/www.credativ.de\/en\/blog\/howtos\/howto-debian-preseed-mit-netboot\/"},"wordCount":798,"commentCount":0,"publisher":{"@id":"https:\/\/www.credativ.de\/en\/#organization"},"keywords":["Debian"],"articleSection":["HowTos"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.credativ.de\/en\/blog\/howtos\/howto-debian-preseed-mit-netboot\/#respond"]}],"copyrightYear":"2010","copyrightHolder":{"@id":"https:\/\/www.credativ.de\/#organization"}},{"@type":"WebPage","@id":"https:\/\/www.credativ.de\/en\/blog\/howtos\/howto-debian-preseed-mit-netboot\/","url":"https:\/\/www.credativ.de\/en\/blog\/howtos\/howto-debian-preseed-mit-netboot\/","name":"[Howto] Debian Preseed mit Netboot - credativ\u00ae","isPartOf":{"@id":"https:\/\/www.credativ.de\/en\/#website"},"datePublished":"2010-03-31T07:00:30+00:00","dateModified":"2022-03-25T12:50:02+00:00","breadcrumb":{"@id":"https:\/\/www.credativ.de\/en\/blog\/howtos\/howto-debian-preseed-mit-netboot\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.credativ.de\/en\/blog\/howtos\/howto-debian-preseed-mit-netboot\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.credativ.de\/en\/blog\/howtos\/howto-debian-preseed-mit-netboot\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.credativ.de\/en\/"},{"@type":"ListItem","position":2,"name":"[Howto] Debian Preseed mit Netboot"}]},{"@type":"WebSite","@id":"https:\/\/www.credativ.de\/en\/#website","url":"https:\/\/www.credativ.de\/en\/","name":"credativ GmbH","description":"","publisher":{"@id":"https:\/\/www.credativ.de\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.credativ.de\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Organization","Place"],"@id":"https:\/\/www.credativ.de\/en\/#organization","name":"credativ\u00ae","url":"https:\/\/www.credativ.de\/en\/","logo":{"@id":"https:\/\/www.credativ.de\/en\/blog\/howtos\/howto-debian-preseed-mit-netboot\/#local-main-organization-logo"},"image":{"@id":"https:\/\/www.credativ.de\/en\/blog\/howtos\/howto-debian-preseed-mit-netboot\/#local-main-organization-logo"},"sameAs":["https:\/\/www.facebook.com\/credativDE\/","https:\/\/x.com\/credativde","https:\/\/mastodon.social\/@credativde","https:\/\/www.linkedin.com\/company\/credativ-gmbh","https:\/\/www.instagram.com\/credativ\/"],"description":"Die credativ GmbH ist ein f\u00fchrendes, auf Open Source Software spezialisiertes IT-Dienstleistungs- und Beratungsunternehmen. Wir bieten umfassende und professionelle Services, von Beratung und Infrastruktur-Betrieb \u00fcber 24\/7 Support bis hin zu individuellen L\u00f6sungen und Schulungen. Unser Fokus liegt auf dem ganzheitlichen Management von gesch\u00e4ftskritischen Open-Source-Systemen, darunter Betriebssysteme (z.B. Linux), Datenbanken (z.B. PostgreSQL), Konfigurationsmanagement (z.B. Ansible, Puppet) und Virtualisierung. Als engagierter Teil der Open-Source-Community unterst\u00fctzen wir unsere Kunden dabei, die Vorteile freier Software sicher, stabil und effizient in ihrer IT-Umgebung zu nutzen.","legalName":"credativ GmbH","foundingDate":"2025-03-01","duns":"316387060","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"11","maxValue":"50"},"address":{"@id":"https:\/\/www.credativ.de\/en\/blog\/howtos\/howto-debian-preseed-mit-netboot\/#local-main-place-address"},"geo":{"@type":"GeoCoordinates","latitude":"51.1732374","longitude":"6.392010099999999"},"telephone":["+4921619174200","08002733284"],"contactPoint":{"@type":"ContactPoint","telephone":"08002733284","email":"vertrieb@credativ.de"},"openingHoursSpecification":[{"@type":"OpeningHoursSpecification","dayOfWeek":["Monday","Tuesday","Wednesday","Thursday","Friday"],"opens":"09:00","closes":"17:00"},{"@type":"OpeningHoursSpecification","dayOfWeek":["Saturday","Sunday"],"opens":"00:00","closes":"00:00"}],"email":"info@credativ.de","areaServed":"D-A-CH","vatID":"DE452151696"},{"@type":"Person","@id":"https:\/\/www.credativ.de\/en\/#\/schema\/person\/63430ac9e022ccceba0f8d53ffe6db12","name":"credativ Redaktion","description":"Dieser Account dient als Sammelpunkt f\u00fcr die wertvollen Beitr\u00e4ge ehemaliger Mitarbeiter von credativ. Wir bedanken uns f\u00fcr ihre gro\u00dfartigen Inhalte, die das technische Wissen in unserem Blog \u00fcber die Jahre hinweg bereichert haben. Ihre Artikel bleiben hier weiterhin f\u00fcr unsere Leser zug\u00e4nglich."},{"@type":"PostalAddress","@id":"https:\/\/www.credativ.de\/en\/blog\/howtos\/howto-debian-preseed-mit-netboot\/#local-main-place-address","streetAddress":"Hennes-Weisweiler-Allee 23","addressLocality":"M\u00f6nchengladbach","postalCode":"41179","addressRegion":"Deutschland","addressCountry":"DE"},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.credativ.de\/en\/blog\/howtos\/howto-debian-preseed-mit-netboot\/#local-main-organization-logo","url":"https:\/\/www.credativ.de\/wp-content\/uploads\/2025\/04\/credativ-logo-right.svg","contentUrl":"https:\/\/www.credativ.de\/wp-content\/uploads\/2025\/04\/credativ-logo-right.svg","caption":"credativ\u00ae"}]},"geo.placename":"M\u00f6nchengladbach","geo.position":{"lat":"51.1732374","long":"6.392010099999999"},"geo.region":"Germany"},"_links":{"self":[{"href":"https:\/\/www.credativ.de\/en\/wp-json\/wp\/v2\/posts\/6674","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.credativ.de\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.credativ.de\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.credativ.de\/en\/wp-json\/wp\/v2\/users\/90"}],"replies":[{"embeddable":true,"href":"https:\/\/www.credativ.de\/en\/wp-json\/wp\/v2\/comments?post=6674"}],"version-history":[{"count":0,"href":"https:\/\/www.credativ.de\/en\/wp-json\/wp\/v2\/posts\/6674\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.credativ.de\/en\/wp-json\/wp\/v2\/media?parent=6674"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.credativ.de\/en\/wp-json\/wp\/v2\/categories?post=6674"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.credativ.de\/en\/wp-json\/wp\/v2\/tags?post=6674"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}