Disable auto clean in apt [duplicate]
Clash Royale CLAN TAG#URR8PPP
This question already has an answer here:
Make debian “apt” (new apt-get / aptitude frontend) cache .deb files in '/var/cache/apt/archives/'
1 answer
I don't want to clean /var/cache/apt/archives/
, I need to stay my deb files there. Which apt option can works for me?
debian apt
marked as duplicate by GAD3R, Christopher, telcoM, X Tian, Mr Shunz Feb 7 at 10:47
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
This question already has an answer here:
Make debian “apt” (new apt-get / aptitude frontend) cache .deb files in '/var/cache/apt/archives/'
1 answer
I don't want to clean /var/cache/apt/archives/
, I need to stay my deb files there. Which apt option can works for me?
debian apt
marked as duplicate by GAD3R, Christopher, telcoM, X Tian, Mr Shunz Feb 7 at 10:47
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
This question already has an answer here:
Make debian “apt” (new apt-get / aptitude frontend) cache .deb files in '/var/cache/apt/archives/'
1 answer
I don't want to clean /var/cache/apt/archives/
, I need to stay my deb files there. Which apt option can works for me?
debian apt
This question already has an answer here:
Make debian “apt” (new apt-get / aptitude frontend) cache .deb files in '/var/cache/apt/archives/'
1 answer
I don't want to clean /var/cache/apt/archives/
, I need to stay my deb files there. Which apt option can works for me?
This question already has an answer here:
Make debian “apt” (new apt-get / aptitude frontend) cache .deb files in '/var/cache/apt/archives/'
1 answer
debian apt
debian apt
asked Feb 6 at 12:42
PersianGulfPersianGulf
6,98243561
6,98243561
marked as duplicate by GAD3R, Christopher, telcoM, X Tian, Mr Shunz Feb 7 at 10:47
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
marked as duplicate by GAD3R, Christopher, telcoM, X Tian, Mr Shunz Feb 7 at 10:47
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You need to override the Keep-Downloaded-Packages
for apt
:
Binary::apt::APT::Keep-Downloaded-Packages "1";
in apt.conf
or an /etc/apt.conf.d/
snippet, e.g.
echo 'Binary::apt::APT::Keep-Downloaded-Packages "1";' | sudo tee /etc/apt/apt.conf.d/10apt-keep-downloads
(apt
doesn’t really “auto clean”, it doesn’t keep downloaded packages.)
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You need to override the Keep-Downloaded-Packages
for apt
:
Binary::apt::APT::Keep-Downloaded-Packages "1";
in apt.conf
or an /etc/apt.conf.d/
snippet, e.g.
echo 'Binary::apt::APT::Keep-Downloaded-Packages "1";' | sudo tee /etc/apt/apt.conf.d/10apt-keep-downloads
(apt
doesn’t really “auto clean”, it doesn’t keep downloaded packages.)
add a comment |
You need to override the Keep-Downloaded-Packages
for apt
:
Binary::apt::APT::Keep-Downloaded-Packages "1";
in apt.conf
or an /etc/apt.conf.d/
snippet, e.g.
echo 'Binary::apt::APT::Keep-Downloaded-Packages "1";' | sudo tee /etc/apt/apt.conf.d/10apt-keep-downloads
(apt
doesn’t really “auto clean”, it doesn’t keep downloaded packages.)
add a comment |
You need to override the Keep-Downloaded-Packages
for apt
:
Binary::apt::APT::Keep-Downloaded-Packages "1";
in apt.conf
or an /etc/apt.conf.d/
snippet, e.g.
echo 'Binary::apt::APT::Keep-Downloaded-Packages "1";' | sudo tee /etc/apt/apt.conf.d/10apt-keep-downloads
(apt
doesn’t really “auto clean”, it doesn’t keep downloaded packages.)
You need to override the Keep-Downloaded-Packages
for apt
:
Binary::apt::APT::Keep-Downloaded-Packages "1";
in apt.conf
or an /etc/apt.conf.d/
snippet, e.g.
echo 'Binary::apt::APT::Keep-Downloaded-Packages "1";' | sudo tee /etc/apt/apt.conf.d/10apt-keep-downloads
(apt
doesn’t really “auto clean”, it doesn’t keep downloaded packages.)
answered Feb 6 at 12:54
Stephen KittStephen Kitt
174k24398473
174k24398473
add a comment |
add a comment |