====== 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
dpkg-reconfigure -plow unattended-upgrades
**''/etc/apt/apt.conf.d/20auto-upgrades''**
APT::Periodic::Update-Package-Lists "1";
APT::Periodic::Unattended-Upgrade "1";
**''/etc/apt/apt.conf.d/50unattended-upgrades''**
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";