linux:automatische-installation

Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen angezeigt.

Link zu dieser Vergleichsansicht

Beide Seiten der vorigen Revision Vorhergehende Überarbeitung
Nächste Überarbeitung
Vorhergehende Überarbeitung
linux:automatische-installation [2010/10/18 21:57] stlinux:automatische-installation [2019/01/29 11:40] (aktuell) st
Zeile 1: Zeile 1:
 +====== automatische Installation und Desktop-Management ======
 +FIXME
  
 +
 +  * kickstart (Red Hat)
 +  * autoyast, alice (SuSE)
 +  * Jumpstart (Solaris)
 +  * [[wpde>Capistrano]] - für die Verteilung von Webanwendungen
 +  * [[http://www.cvsup.org/|The CVS-Optimized General-Purpose Network File Distribution System]]
 +  * [[http://code.google.com/p/subcon/|Subcon]] is a simple subversion-based configuration management tool written in [[programmiersprachen:Python]]. 
 +  * [[http://developer.berlios.de/projects/kiwi/|KIWI Image System (Beta)]]
 +
 +
 +===== Cloning =====
 +
 +  * [[http://udpcast.linux.lu/|UDPcast]]: ein Dateiübertragungstool basierend auf multicasts.
 +  * [[http://clonezilla.sourceforge.net/|Clonezilla]], hier ein [[http://www.tecchannel.de/pc_mobile/linux/469680/|Workshop zu clonezilla]]
 +
 +
 +===== Links =====
 +  * **[[http://www.computerwoche.de/produkte_technik/open_source/588875/index.html|System-Management mit Open Source]]**
 +  * [[http://www.heise.de/newsticker/meldung/91476|HP: Ein Installer für 100 Linux-Distributionen]] ([[http://linuxcoe.sourceforge.net/|LinuxCOE Homepage]]); auf [[http://www.instalinux.com/|Instalinux]] kann man einige freie Distributionen ausprobieren
 +  * [[http://www.heise.de/open/artikel/90346|Desktop-Management von Linux-Clients]]
 +  * [[http://www.infrastructures.org/|infrastructures.org]]
 +
 +===== Ansible  =====
 +(Konfigurationsmanagement)
 +
 +[[software:Ansible]]
 +
 +===== Landscape (Ubuntu) =====
 +[[http://www.canonical.com/landscape|Landscape]]:
 +  * Zentrale Software- und Update-Verteilung
 +  * inventarisiert die Hardware
 +  * pflegt eine zentrale LDAP-Benutzerdatenbank
 +  * grundlegende Funktionen zur Überwachung der Rechner
 +
 +siehe [[http://www.heise.de/newsticker/meldung/93181|System-Management für Ubuntu]].
 +
 +===== DebianInstaller/Preseed =====
 +  * [[http://wiki.debian.org/DebianInstaller/Preseed|DebianInstaller/Preseed]]
 +  * [[http://www.enterprisenetworkingplanet.com/netsysm/article.php/3606721|Automate Linux Installations with Debian Pre-Seeding]]
 +  * [[http://www.enterprisenetworkingplanet.com/netos/article.php/3608361|Automate Linux Installations with Debian Pre-Seeding (Part 2)]]
 +
 +===== DRBL =====
 +[[http://drbl.sourceforge.net/|DRBL]] - Diskless Remote Boot in Linux, mit DRBL-winRoll kann man auch [[windows:Windows]] verteilen.
 +
 +===== FAI =====
 +[[http://www.informatik.uni-koeln.de/fai/|FAI - Fully Automatic Installation]] (debian-basierte)
 +[[http://faiwiki.informatik.uni-koeln.de/index.php/Main_Page|FAI-Wiki]]
 +
 +
 +===== Puppet  =====
 +(Konfigurationsmanagement)
 +
 +[[http://www.howtoforge.com/installing_puppet_on_ubuntu|Configuration Automation & Centralized Management With Puppet on Ubuntu]]
 +[[http://reductivelabs.com/projects/puppet/|Puppet Homepage]]
 +
 +===== Systemimager =====
 +:!: Es ist auch möglich [[http://wiki.systemimager.org/index.php/Main_Page|SystemImager]] mit Transportmethoden wie [[http://wiki.systemimager.org/index.php/BitTorrent|BitTorrent]] zu verbinden oder mit [[http://code.google.com/p/subcon/|Subcon]] Änderungen ins einem Subversion-Repository zu verteilen.
 +
 +[[http://howto.krisbuytaert.be/AutomatingVirtualMachineDeployment/|Automating Xen Virtual Machine Deployment]]
 +
 +====== Update checker ======
 +
 +  * [[http://secunia.com/vulnerability_scanning/online/?task=load|Secunia Online Software Inspector (OSI)]]
 +  * [[http://www.filehippo.com/updatechecker/|FileHippo.com Update Checker]] - Sucht
 +
 +===== unattended upgrades =====
 +
 +Paket: unattended-upgrades
 +
 +<code bash>dpkg-reconfigure -plow unattended-upgrades</code>
 +
 +**''/etc/apt/apt.conf.d/20auto-upgrades''** 
 +<file>
 +APT::Periodic::Update-Package-Lists "1";
 +APT::Periodic::Unattended-Upgrade "1";
 +</file>
 +
 +
 +**''/etc/apt/apt.conf.d/50unattended-upgrades''**
 +<file>
 +Unattended-Upgrade::Origins-Pattern {
 +      "o=Debian,n=jessie";
 +      "o=Debian,n=jessie-updates";
 +     "o=Debian,n=jessie,l=Debian-Security";
 +};
 +
 +Unattended-Upgrade::Package-Blacklist {
 +};
 +Unattended-Upgrade::AutoFixInterruptedDpkg "true";
 +Unattended-Upgrade::Mail "root";
 +Unattended-Upgrade::Automatic-Reboot "true";
 +Unattended-Upgrade::Automatic-Reboot-Time "04:34";
 +</file>