Debian: Difference between revisions

From DWIKI
(10 intermediate revisions by the same user not shown)
Line 13: Line 13:
=Links=
=Links=
*[[debconf]]
*[[debconf]]
=Netboot/PXE=
*https://wiki.debian.org/DebianInstaller/NetbootAssistant
*[https://wiki.debian.org/DebianInstaller/Preseed Preseed]




Line 40: Line 45:
*http://wiki.debian.org/AptPinning
*http://wiki.debian.org/AptPinning


=FAQ=


==change default editor==
= FAQ =
 
== the following packages have been kept back: ==
 
Time to apt-get dist-upgrade :)
 
== change default editor ==
 
  update-alternatives --config editor
  update-alternatives --config editor


==kernel==
== change timezone ==
*kernel-image
*kernel-source


==clamdscan: connect(): No such file or directory==
dpkg-reconfigure tzdata
clamd is ancient, may take 10 minutes to start up, or use clamav-daemon from volatile


== kernel packages ==


==W: GPG error:==
*kernel-image
http://ftp2.de.debian.org etch/volatile Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY EC61E0B0BBE55AB3
*kernel-source
 
volatile
 
 
 
== clean cache ==
 
apt-get clean
     
 
== E: Unable to correct problems, you have held broken packages. ==
 
First try
 
dpkg --get-selections | grep hold
 
==reportbug: The following newer release(s) are available in the Debian archive:==
Ignore than and just continue ( see https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=900254 )
 
=Show more package information=
apt-cache show packagename*
 
 
== W: GPG error: ==
 
[http://ftp2.de.debian.org http://ftp2.de.debian.org] etch/volatile Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY EC61E0B0BBE55AB3


  gpg --keyserver wwwkeys.eu.pgp.net --recv-keys EC61E0B0BBE55AB3
  gpg --keyserver wwwkeys.eu.pgp.net --recv-keys EC61E0B0BBE55AB3
Line 60: Line 95:


Or just:
Or just:
  apt-get --allow-unauthenticated install debian-archive-keyring
  apt-get --allow-unauthenticated install debian-archive-keyring
     
Or
apt-key adv  --keyserver pgp.mit.edu --recv-keys 8B48AD6246925553


==show dependency tree==
==show dependency tree==
  apt-cache dotty
  apt-cache dotty
  apt-rdepends
  apt-rdepends
==show dependencies==
apt-cache rdepends
aptitude why
==What package does a file belong to?==
dpkg -S /path/to/file

Revision as of 14:20, 15 May 2022

Sites

Security

Links

Netboot/PXE


Documentation

https

https on debian testing is a mess, ignore:

http://www.eclectica.ca/howto/ssl-cert-howto.php looks promising

Handling packages

Pinning


FAQ

the following packages have been kept back:

Time to apt-get dist-upgrade :)

change default editor

update-alternatives --config editor

change timezone

dpkg-reconfigure tzdata

kernel packages

  • kernel-image
  • kernel-source
volatile

 

clean cache

apt-get clean
      

E: Unable to correct problems, you have held broken packages.

First try

dpkg --get-selections | grep hold

reportbug: The following newer release(s) are available in the Debian archive:

Ignore than and just continue ( see https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=900254 )

Show more package information

apt-cache show packagename*


W: GPG error:

http://ftp2.de.debian.org etch/volatile Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY EC61E0B0BBE55AB3

gpg --keyserver wwwkeys.eu.pgp.net --recv-keys EC61E0B0BBE55AB3
#and that other thing

Or just:

apt-get --allow-unauthenticated install debian-archive-keyring
      

Or

apt-key adv  --keyserver pgp.mit.edu --recv-keys 8B48AD6246925553

show dependency tree

apt-cache dotty
apt-rdepends

show dependencies

apt-cache rdepends
aptitude why

What package does a file belong to?

dpkg -S /path/to/file