zoukankan      html  css  js  c++  java
  • ubuntu Server 14 自动更新

    https://help.ubuntu.com/stable/serverguide/automatic-updates.html
    http://spin.atomicobject.com/2014/08/04/debian-ubuntu-security-updates/ =》 介绍了自动安装是怎么来的,包括如何配置已经安装了“自动安装”的系统

    本文完成时间:2015-04-21
    当前UbuntuServer最新稳定版 14.10

    内容介绍如下:

    自动更新
    The unattended-upgrades package can be used to automatically install updated packages, and can be configured to update all packages or just install security updates. First, install the package by entering the following in a terminal:

    sudo apt-get install unattended-upgrades
    To configure unattended-upgrades, edit /etc/apt/apt.conf.d/50unattended-upgrades and adjust the following to fit your needs:

    Unattended-Upgrade::Allowed-Origins {
    "Ubuntu trusty-security";
    // "Ubuntu trusty-updates";
    };
    Certain packages can also be blacklisted and therefore will not be automatically updated. To blacklist a package, add it to the list:

    Unattended-Upgrade::Package-Blacklist {
    // "vim";
    // "libc6";
    // "libc6-dev";
    // "libc6-i686";
    };
    The double “//” serve as comments, so whatever follows "//" will not be evaluated.

    To enable automatic updates, edit /etc/apt/apt.conf.d/10periodic and set the appropriate apt configuration options:

    APT::Periodic::Update-Package-Lists "1";
    APT::Periodic::Download-Upgradeable-Packages "1";
    APT::Periodic::AutocleanInterval "7";
    APT::Periodic::Unattended-Upgrade "1";
    The above configuration updates the package list, downloads, and installs available upgrades every day. The local download archive is cleaned every week.

    You can read more about apt Periodic configuration options in the /etc/cron.daily/apt script header.

    The results of unattended-upgrades will be logged to /var/log/unattended-upgrades.

    通知
    通知
    Configuring Unattended-Upgrade::Mail in /etc/apt/apt.conf.d/50unattended-upgrades will enable unattended-upgrades to email an administrator detailing any packages that need upgrading or have problems.

    Another useful package is apticron. apticron will configure a cron job to email an administrator information about any packages on the system that have updates available, as well as a summary of changes in each package.

    要安装 apticron 软件包,在终端中输入:

    sudo apt-get install apticron
    软件包安装后,编辑 /etc/apticron/apticron.conf 来设置电子邮件地址和其他选项:

    EMAIL="root@example.com"

  • 相关阅读:
    51nod 1254 最大子段和 V2
    51nod 1115 最大M子段和 V3
    51nod 1053 最大M子段和 V2
    51nod 1052 最大M子段和
    51nod 1051 最大子矩阵和
    web.config或App.config中AttachDBFilenamex相对路径问题
    [转帖]unity3D OnTriggerEnter和OnCollisionEnter的一点个人心得(主要讲区别)
    unity3d 第一人称脚本解释MouseLook
    unity3d-游戏实战突出重围,整合游戏
    unity3d-游戏实战突出重围,第四天 添加角色
  • 原文地址:https://www.cnblogs.com/morya/p/4443421.html
Copyright © 2011-2022 走看看