Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- install
- JavaScript
- Python
- ubuntu
- 문자열자르기
- mariadb
- jQuery
- Oracle
- php
- MySQL
- SVN
- TPL
- Postfix
- yum
- Eclipse
- random
- replace
- i18n
- 일괄변경
- TextBox
- 확장자
- docker
- smarty
- Selectbox
- centos
- 한글 깨짐
- 천단위
- RabbitMQ
- 부모창
Archives
- Today
- Total
wilson's story
Ubuntu20.04 자동 업데이트 끄기 본문
반응형
vi /etc/apt/apt.conf.d/20auto-upgrades
# 자동업데이트
APT::Periodic::Update-Package-Lists "1";
APT::Periodic::Unattended-Upgrade "1";
# 자동업데이트 막기
APT::Periodic::Update-Package-Lists "0";
APT::Periodic::Unattended-Upgrade "0";
vi /etc/apt/apt.conf.d/10periodic
# 자동업데이트
APT::Periodic::Update-Package-Lists "1";
APT::Periodic::Download-Upgradeable-Packages "0";
APT::Periodic::AutocleanInterval "0";
# 자동업데이트 막기
APT::Periodic::Update-Package-Lists "0";
APT::Periodic::Download-Upgradeable-Packages "0";
APT::Periodic::AutocleanInterval "0";
반응형