나는 Linux Mint 18의 미학을 좋아합니다 mintupdate
(1부)민트 유틸리티), 오늘과 같이 안정적인 최신 커널 보안 업데이트를 제공합니다(2016년 12월 1일):
단서는 다음 mintupdate
위치에 있는 Python 스크립트에 있을 수 있습니다.
/usr/lib/linuxmint/mintUpdate/mintUpdate.py
그러나 나는 지금까지 아무것도 발견하지 못했습니다. 어쩌면 내가 Python을 이해하지 못하기 때문일 수도 있습니다.
Bash 스크립트의 터미널에서 이 작업을 수행하고 싶다고 가정해 보겠습니다.
면책조항: 사용 가능한 최신 커널을 설치하고 싶지 않습니다.kernel.org. 제안대로 설치하고
싶습니다 .mintupdate
편집 1:
cat /etc/apt/sources.list
(empty)
cat /etc/apt/sources.list.d/*
파일로 구분된 출력:
deb http://repository.spotify.com stable non-free
deb http://archive.getdeb.net/ubuntu xenial-getdeb apps games
deb http://ppa.launchpad.net/graphics-drivers/ppa/ubuntu xenial main
deb-src http://ppa.launchpad.net/graphics-drivers/ppa/ubuntu xenial main
deb http://packages.linuxmint.com sarah main upstream import backport
deb http://cz.archive.ubuntu.com/ubuntu xenial main restricted universe multiverse
deb http://cz.archive.ubuntu.com/ubuntu xenial-updates main restricted universe multiverse
deb http://cz.archive.ubuntu.com/ubuntu xenial-backports main restricted universe multiverse
deb http://security.ubuntu.com/ubuntu/ xenial-security main restricted universe multiverse
deb http://archive.canonical.com/ubuntu/ xenial partner
deb-src http://packages.linuxmint.com sarah main upstream import backport
deb-src http://cz.archive.ubuntu.com/ubuntu xenial main restricted universe multiverse
deb-src http://cz.archive.ubuntu.com/ubuntu xenial-updates main restricted universe multiverse
deb-src http://cz.archive.ubuntu.com/ubuntu xenial-backports main restricted universe multiverse
deb-src http://security.ubuntu.com/ubuntu/ xenial-security main restricted universe multiverse
deb-src http://archive.canonical.com/ubuntu/ xenial partner
deb [arch=amd64,i386] http://repo.steampowered.com/steam/ precise steam
deb-src [arch=amd64,i386] http://repo.steampowered.com/steam/ precise steam
deb http://download.virtualbox.org/virtualbox/debian xenial contrib
답변1
적절한 파일을 보면 우분투 백포트를 사용하고 있음이 분명합니다. 더 흥미로운 점은 백포팅을 구성했다는 것입니다. 다음 줄을 참조하세요.
deb http://cz.archive.ubuntu.com/ubuntu xenial-backports main restricted universe multiverse
관심 있는 커널을 선택하려면 -t를 사용하여 xenial-backports를 선택하십시오. 하다:
apt-get update
apt-cache search -t xenial-backports linux-image (or a similar variation for the kernel packages)
apt-get install -t xenial-backports linux-image-xxx
linux-headers
어떤 이유로 커널 또는 커널 모듈을 구축하는 경우 및 의 새 버전도 설치해야 합니다.linux-kbuild
을 사용하는 경우 open-vm-tools
새 버전을 설치해야 할 수도 있습니다.
apt-get install -t xenial-backports open-vm-tools