/usr/share/bug
NameSizeModeActions
apt/-0755rm
bash-completion/-0755rm
console-setup/-0755rm
console-setup-linux/-0755rm
cron/-0755rm
dbus/-0755rm
file/-0755rm
grub-common/-0755rm
grub-efi-amd64-bin/-0755rm
grub-pc/-0755rm
grub-pc-bin/-0755rm
grub2-common/-0755rm
init-system-helpers/-0755rm
initramfs-tools/-0755rm
keyboard-configuration/-0755rm
libmagic1t64/-0755rm
logrotate/-0755rm
man-db/-0755rm
mdadm/-0755rm
media-types/-0755rm
needrestart/-0755rm
php7.4/-0755rm
php7.4-bcmath/-0755rm
php7.4-cli/-0755rm
php7.4-common/-0755rm
php7.4-curl/-0755rm
php7.4-fpm/-0755rm
php7.4-gd/-0755rm
php7.4-intl/-0755rm
php7.4-json/-0755rm
php7.4-mbstring/-0755rm
php7.4-mysql/-0755rm
php7.4-opcache/-0755rm
php7.4-readline/-0755rm
php7.4-soap/-0755rm
php7.4-xml/-0755rm
php7.4-zip/-0755rm
polkitd/-0755rm
procps/-0755rm
systemd/-0755rm
udev/-0755rm
usb-modeswitch-data/-0755rm
usbutils/-0755rm
vim/-0755rm
vim-tiny/-0755rm
cryptsetup7630755editdlrm
cryptsetup-bin7630755editdlrm
cryptsetup-initramfs7630755editdlrm
dpkg12090755editdlrm
libcryptsetup127630755editdlrm
multipath-tools2400755editdlrm
screen6840755editdlrm
Edit: /usr/share/bug/dpkg (1209B)
#!/bin/sh get_vendor() { local origin="$DPKG_ROOT/etc/dpkg/origins/default" local vendor if [ -n "$DEB_VENDOR" ]; then vendor="$DEB_VENDOR" elif [ -e "$origin" ]; then vendor=$(sed -ne 's/^Vendor: *\([^ ]\+\) */\1/p' "$origin" | tr A-Z a-z) fi echo "${vendor:-default}" } check_merged_usr_via_aliased_dirs() { local vendor vendor=$(get_vendor) case "$vendor" in debian) # In Debian some people have gotten so offended by the following _warning_ # that they have resorted to bullying and abuse. Life's too short, sorry. return ;; ubuntu) # Ubuntu does not seem interested in it. return ;; esac for d in /bin /sbin /lib /lib32 /libo32 /libx32 /lib64; do linkname="$(readlink $d)" if [ "$linkname" = "usr$d" ] || [ "$linkname" = "/usr$d" ]; then echo "This system uses merged-usr-via-aliased-dirs, going behind dpkg's" >&3 echo "back, breaking its core assumptions. This can cause silent file" >&3 echo "overwrites and disappearances, and its general tools misbehavior." >&3 echo "See ." >&3 break fi done } check_merged_usr_via_aliased_dirs