You are not logged in.
OK, today I continue the aventure, with the tool 'simple-cdd', and the command 'build-simple-cdd'.
My config file:
# simple-cdd.conf detailed configuration file
# Note: this is an example list of configuration options: it is *strongly*
# advised to merely create a new file using only the options you actually need.# Note: Variables in lowercase are only used by simple-cdd.
# Profile Selection
#
# The following four files get included on the CD if present:
# $profile.preseed
# Debconf selections.
# $profile.packages
# Packages to be installed with the profile. Dependencies also will
# be installed.
# $profile.downloads
# Additional packages to be included on the CD with this profile, but
# not installed by default.
# $profile.postinst
# Post-install script that is run after installing packages.
#
# During the install after base system setup, it will give you the
# options to determine which profiles you want to install.# Profiles to include on the CD
#profiles=""
#profiles="x-basic ltsp"# To automatically select profiles (must also be listed in profiles):
# auto_profiles="foo bar baz"# To include profiles which only effect the CD build
# build_profiles="foo bar baz"# Mirror tools
# mirror_tools="download reprepro"# Mirror variables
server="deb.devuan.org"
#debian_mirror="http://deb.devuan.org/merged/"
rsync_debian_mirror="deb.devuan.org::devuan"# which components to get from the mirror
mirror_components="main"
#mirror_components="main contrib"# Mirror for security updates
# Expects security updates to be in dists/DEBIAN_DIST/updates
#security_mirror="http://security.debian.org/"# Extra mirror
# Only works with "download reprepro" mirror tools.
#debian_mirror_extra="http://example.com/debian/"#mirror_components_extra="main non-free"
# Extra files to include onto the CD
# These will get copied to /simple-cdd dir on the CD
# Paths starting with '/' are interpreted as absolute, otherwise relative
# to the currect directory.
#all_extras=""# Generate a simple package repository on the CD with the debs cited
# Please insert full paths.
#local_packages="/path/to/dir/with/deb/packages"# Call mirror tools at each build- defaults to true.
#do_mirror="false"# Set your proxy (if any).
#export http_proxy=http://localhost:3128# Enable serial console settings: true/false
# useful when testing with qemu's -nographic mode
#use_serial_console="false"# Set to automatically boot after a timeout, in tenth's of a second.
# i.e. for a 5 second timeout:
# BOOT_TIMEOUT=50# Location of debian-cd files
debian_cd_dir=/usr/share/debian-cd
#debian_cd_dir=/path/to/debian-cd# Set target architecture for build
export ARCH=amd64
#export ARCHES="amd64 i386"# You can use a alternative splash image using a PNG image (640 x 480,
# 4-bit colormap, non-interlaced), other formats should work but weren't
# tested. Keep in mind that the alternative splash image will be displayed
# only at the installer boot prompt.
# export SPLASHPNG="/path/to/yourimage.png"# Don't include the manual or release notes, respectively, to save space.
#export OMIT_MANUAL=1
#export OMIT_RELEASE_NOTES=1# Don't generate JIGDO files
#export DOJIGDO=0# Define the CD label
#export DISKINFO="Simple-cdd Installer: Debian GNU/Linux 10 buster 20190529"# Where debian-cd expects to find itself
export BASEDIR=/usr/share/debian-cd
# Kernel parameters passed to the CD bootloader works with isolinux on i386.
#export KERNEL_PARAMS="preseed/file=/cdrom/simple-cdd/default.preseed"# download a specific installer release, such as 20041118 or rc2
di_release="20201212"# custom debian-installer images to use. must contain one sub-directory for
# each architecture.
custom_installer="/home/zou/Documents/Projets/debian-installer/"# files needed to build the CD, downloaded from the default mirror
#mirror_files="README doc/ tools/"## Values used by both the various mirror tools and debian-cd
#
# directory of debian mirror
#export MIRROR=/path/to/mirror/## debian-cd options
# Increase the size limit if debian-cd tries to make more CDs than you want,
# and the generated CDs are smaller than 650MB, or if you want to generate
# larger than "normal" CD images.
#export SIZELIMIT=838860800# Don't include contrib
export CONTRIB=0# Only generate one CD
export MAXCDS=1# Only put the installer onto the cd (set NORECOMMENDS,... as well).
# INSTALLER_CD=0: nothing special (default)
# INSTALLER_CD=1: just add debian-installer (use TASK=tasks/debian-installer)
# INSTALLER_CD=2: add d-i and base (use TASK=tasks/debian-installer+kernel)
#
# What I understand it does is saying "I do want the installer [and base], so
# make sure they're always in" (--Enrico)
export INSTALLER_CD=2## qemu options
#
# Location of the hard disk image (used with qemu's -hda option)
#hd_img="/path/to/qemu-test.hd.img"# size of qemu hard disk image to create (if not already present)
#hd_size="6G"# additional options that get passed to qemu
#qemu_opts="-vga std -m 1024"
But, the tool fails to download:
$ build-simple-cdd --conf profiles/simple-cdd-detailed.conf --dist ceres --logfile build.log --verbose
2020-12-12 19:05:37 INFO Reading configuration file profiles/simple-cdd-detailed.conf
2020-12-12 19:05:37 INFO profiles/simple-cdd-detailed.conf: new var rsync_debian_mirror=deb.devuan.org::devuan
2020-12-12 19:05:37 INFO profiles/simple-cdd-detailed.conf: new var custom_installer=/home/zou/Documents/Projets/debian-installer/
2020-12-12 19:05:37 INFO profiles/simple-cdd-detailed.conf: new var INSTALLER_CD=2
2020-12-12 19:05:37 INFO profiles/simple-cdd-detailed.conf: new var debian_cd_dir=/usr/share/debian-cd
2020-12-12 19:05:37 INFO profiles/simple-cdd-detailed.conf: new var di_release=20201212
2020-12-12 19:05:37 INFO profiles/simple-cdd-detailed.conf: new var mirror_components=main
2020-12-12 19:05:37 INFO profiles/simple-cdd-detailed.conf: new var server=deb.devuan.org
2020-12-12 19:05:37 INFO profiles/simple-cdd-detailed.conf: new var CONTRIB=0
2020-12-12 19:05:37 INFO profiles/simple-cdd-detailed.conf: new var BASEDIR=/usr/share/debian-cd
2020-12-12 19:05:37 INFO profiles/simple-cdd-detailed.conf: new var ARCH=amd64
2020-12-12 19:05:37 INFO profiles/simple-cdd-detailed.conf: new var MAXCDS=1
Traceback (most recent call last):
File "/usr/bin/build-simple-cdd", line 679, in <module>
scdd.build_mirror()
File "/usr/bin/build-simple-cdd", line 290, in build_mirror
self.run_tool("mirror", tool)
File "/usr/bin/build-simple-cdd", line 387, in run_tool
tool.run()
File "/usr/lib/python3/dist-packages/simple_cdd/tools/mirror_download.py", line 64, in run
_download(download_extrafiles_file, extrafiles_file_inlinesig)
File "/usr/lib/python3/dist-packages/simple_cdd/tools/mirror_download.py", line 55, in _download
request.urlretrieve(url, filename=output)
File "/usr/lib/python3.9/urllib/request.py", line 239, in urlretrieve
with contextlib.closing(urlopen(url, data)) as fp:
File "/usr/lib/python3.9/urllib/request.py", line 214, in urlopen
return opener.open(url, data, timeout)
File "/usr/lib/python3.9/urllib/request.py", line 523, in open
response = meth(req, response)
File "/usr/lib/python3.9/urllib/request.py", line 632, in http_response
response = self.parent.error(
File "/usr/lib/python3.9/urllib/request.py", line 561, in error
return self._call_chain(*args)
File "/usr/lib/python3.9/urllib/request.py", line 494, in _call_chain
result = func(*args)
File "/usr/lib/python3.9/urllib/request.py", line 641, in http_error_default
raise HTTPError(req.full_url, code, msg, hdrs, fp)
urllib.error.HTTPError: HTTP Error 404: Not Found
It's same error if I set debian_mirror and not rsync_debian_mirror variable.
I hope; any idea?!
OK, this seems to be a false good idea!
I abandon!
OK, I attempt to build with the DebianInstaller segun the wiki page
I use this custom build config common:
# Common configuration options for all images.
#
# Note that you might find it useful to create a config/local file and
# override settings from this file there instead of modifying this file for
# local setting such as EXTRAFILES. That way you won't accidentially commit
# your local changes.# set DEBUG to y if you want to get the source for and compile
# debug versions of the needed udebs
#DEBUG = y# Default kernel ABI version to use. Append a kernel flavour to
# produce KERNELVERSION.
LINUX_KERNEL_ABI ?= 5.9.0-4# Always "di" these days
KERNEL_FLAVOUR ?= di# List here any extra udebs that are not in the list file but that
# should still be included on the system.
EXTRAS ?=# This variable can be used to copy in additional files from the system
# that is doing the build. Useful if you need to include strace, or gdb,
# etc.
#EXTRAFILES = /usr/bin/strace# This variable can be used to add a preseed file to the initrd itself.
# It will be loaded by the initrd-preseed udeb.
PRESEED =# Normally the sources.list for building d-i will be derived from your
# "normal" sources.list. However, you can specify a mirror here to override
# this. You can use copy:/ to use a local mirror
MIRROR = http://deb.devuan.org/merged# Options to pass to dpkg when it is unpacking the udebs to create the
# image. None should be needed, but --force-overwrite might need to be
# enabled from time to time if udebs have conflicting files.
DPKG_UNPACK_OPTIONS = --force-overwrite# The codename of the Debian release that should be installed by default.
DEBIAN_RELEASE = ceres# The version (number and codename) of the Debian release targeted by the
# installation images. (Only the codename is used while the version number
# has not yet been determined.)
DEBIAN_VERSION = 11 (ceres)
DEBIAN_VERSION ?= ceres# Define here from what release (codename!) components (udebs) should be taken
# to build debian-installer. By default this is set to 'unstable' for building
# daily images. For official builds this is overruled in debian/rules.
USE_UDEBS_FROM ?= unstable# Archive components from which to fetch debian-installer modules.
UDEB_COMPONENTS ?= main/debian-installer# The date the installer source was last changed; we prefer that the
# caller defines a meaningful value, but below is a safe fallback.
SOURCE_DATE_EPOCH ?= $(shell date '+%s')# The date the installer was built. We use second-level resolution to ensure
# the generated image implicitly contains the SOURCE_DATE_EPOCH value required
# to reproduce the build.
BUILD_DATE ?= $(shell date -u '+%Y%m%d-%H:%M:%S' -d '@$(SOURCE_DATE_EPOCH)')# Set consistent file creation modes for a reproducible build, taking care
# not to modify existing executable bits on files.
DIR_MODE = 755
FILE_MODE = u+rw,g+r-w,o+r-w# Produce a beep at boot menu
BOOTMENU_BEEP ?= n# Filesystem type for the initrd, currently valid values are ext2, cramfs,
# and initramfs.
# NOTE: Your kernel must support this filesystem, not just a module.
INITRD_FS = initramfs# What device to write floppies on
FLOPPYDEV = /dev/fd0# What qemu to use, with any options.
QEMU = qemu# media where images may be written to (via dd).
WRITE_MEDIA = floppy# HACK Alert:
# pkg-lists is still sorted by type, so we have to provide
# some mapping MEDIUM -> TYPE
TYPE = $(MEDIUM)# Used to write a /etc/lsb-release file in the installer initrd.
LSB_DISTRIB_ID=Devuan
LSB_DISTRIB_DESCRIPTION="Devuan $(shell uname -o) installer"
# Inlude the build date of the installer in here.
LSB_DISTRIB_RELEASE="$(DEBIAN_VERSION) - installer build $(BUILD_DATE)"# This keyring is only used to verify udeb downloads using apt. Since the
# build process does not run as root, apt cannot read /etc/apt/trusted.gpg.
KEYRING=/usr/share/keyrings/devuan-archive-keyring.gpg# All images that include cdebconf should include symbols needed by these
# plugins.
EXTRAUDEBS=cdebconf-newt-entropy cdebconf-text-entropy# List of languages only supported with the graphical cdebconf frontend.
GI_LANGS = '(am|bn|dz|ka|gu|hi|km|ml|mr|ne|pa|ta)'
# They should be dropped by default, so this must be set only in targets
# that build graphical installer images.
KEEP_GI_LANGS =
I hope and see the result!
(after the command: fakeroot make build_cdrom_isolinux)
(…)
update-manifest dest/cdrom/debian-cd_info.tar.gz "isolinux config files for CD"
# Ensure build results have reproducible mtimes
I think, now, it's time to create iso, is not-it?!
---
Ok, I created my first mini.iso, with the command:
$ sudo fakeroot make build_netboot
(…)
install -m 644 -D ./tmp/netboot/mini.iso dest/netboot/mini.iso
update-manifest dest/netboot/mini.iso "tiny CD image that boots the netboot installer" ./tmp/netboot/udeb.list
# Ensure build results have reproducible mtimes
$ ls -al dest/netboot/
total 85868
drwxr-xr-x 3 root root 4096 10 déc. 02:20 .
drwxr-xr-x 3 root root 4096 10 déc. 02:20 ..
drwxr-xr-x 3 root root 4096 10 déc. 02:20 debian-installer
-rw-r--r-- 1 root root 50331648 10 déc. 02:20 mini.iso
-rw-r--r-- 1 root root 37558754 10 déc. 02:20 netboot.tar.gz
lrwxrwxrwx 1 root root 33 10 déc. 02:20 pxelinux.0 -> debian-installer/amd64/pxelinux.0
lrwxrwxrwx 1 root root 35 10 déc. 02:20 pxelinux.cfg -> debian-installer/amd64/pxelinux.cfg
The next step will be to create netinstall iso.
For the moment, I dont known how to use the debian-cd tool, with my resulted debian-installer for devuan ceres!
any idea?!
You can get libraw19 here https://packages.debian.org/buster/libraw19
OK, this solve the problem, even I dont known if it's better as solution.
thanks.
@golinux, at this time, the site is not accessible.
Hi, today I want to install the mega packages (about the mega.nz services).
I use the Debian 10 version, on the website, for Desktop app and the file manager integration for Thunar (or Nautilus).
But I cant install it, because needs the libraw19. (and on Ceres, we've libraw20)
# apt install /home/me/Téléchargements/megasync-Debian_10.0_amd64.deb
Lecture des listes de paquets... Fait
Construction de l'arbre des dépendances
Lecture des informations d'état... Fait
Note : sélection de « megasync » au lieu de « /home/me/Téléchargements/megasync-Debian_10.0_amd64.deb »
Certains paquets ne peuvent être installés. Ceci peut signifier
que vous avez demandé l'impossible, ou bien, si vous utilisez
la distribution unstable, que certains paquets n'ont pas encore
été créés ou ne sont pas sortis d'Incoming.
L'information suivante devrait vous aider à résoudre la situation :
Les paquets suivants contiennent des dépendances non satisfaites :
megasync : Dépend: libraw19 (>= 0.16.0) mais il n'est pas installable
E: Impossible de corriger les problèmes, des paquets défectueux sont en mode « garder en l'état ».
# apt install /home/me/Téléchargements/thunar-megasync-Debian_10.0_amd64.deb
Lecture des listes de paquets... Fait
Construction de l'arbre des dépendances
Lecture des informations d'état... Fait
Note : sélection de « thunar-megasync » au lieu de « /home/me/Téléchargements/thunar-megasync-Debian_10.0_amd64.deb »
Certains paquets ne peuvent être installés. Ceci peut signifier
que vous avez demandé l'impossible, ou bien, si vous utilisez
la distribution unstable, que certains paquets n'ont pas encore
été créés ou ne sont pas sortis d'Incoming.
L'information suivante devrait vous aider à résoudre la situation :
Les paquets suivants contiennent des dépendances non satisfaites :
megasync : Dépend: libraw19 (>= 0.16.0) mais il n'est pas installable
E: Impossible de corriger les problèmes, des paquets défectueux sont en mode « garder en l'état ».
The libraw20 is installed. Can I resolve this?
It was very simple. When I configure the smtpd file, for my needs, I chmoded my secret files on 0600. It was one error, because the group is opensmtpd. After chmoded at 0640, openstmpd can read it during the boot! ;-)
---
Another detail: I migrated to Devuan from Linux Mint. But, on LM, with have the account ciffred by ecrypts tools.
Before, when I was on Debian Sid, I had not my ciffred personal home. My secret files for opensmtpd is on my home.
Now, due to ciffred home, I put the secret file in other place, that can be read by system and service
(thanks to the boot log than help me)
OK. @all thanks.
@altor: thanks for your repository. Wait : 1.2Go your iso! more big.
But, I had more in mind to propose netinst or mini iso's…
I found one information on /var/log/boot. That's help me!
Which log? /var/log/daemon, /var/log/messages, /var/log/mail.log!
Actually, I set opensmtpd on the runlevel sysinit. Wait'n see.
If not run correctly, I will use interfaces(5). I prefere than Network Manager; interfaces are more simpliest or easy to configure.
y!
see that:
# rc-update
alsa-utils | sysinit
anacron | default
apparmor | sysinit
avahi-daemon | default
bootlogd | sysinit
bootlogs | default recovery
bootmisc.sh | sysinit
brightness | sysinit
cgroups | sysinit
checkfs.sh | sysinit
checkroot-bootclean.sh | sysinit
checkroot.sh | sysinit
console-setup.sh | default
cron | default
cups | default
cups-browsed | default
dbus | default
elogind | default
eudev | sysinit
hddtemp | default
hostname.sh | sysinit
hwclock.sh | sysinit
keyboard-setup.sh | sysinit
killprocs | recovery
kmod | sysinit
lm-sensors | sysinit
mount-configfs | sysinit
mountall-bootclean.sh | sysinit
mountall.sh | sysinit
mountdevsubfs.sh | sysinit
mountkernfs.sh | sysinit
mountnfs-bootclean.sh | sysinit
mountnfs.sh | sysinit
network-manager | default
networking | sysinit
opensmtpd | default
pppd-dns | sysinit
procps | sysinit
pulseaudio-enable-autospawn | default
rc.local | default
rmnologin | default
rsync | default
rsyslog | default
saned | default
savecache | off
sendsigs | off
single | recovery
slim | default
smartmontools | default
stop-bootlogd | default
stop-bootlogd-single | sysinit
sudo | default
umountfs | off
umountnfs.sh | off
umountroot | off
urandom | sysinit
uuidd | default
wicd | default
x11-common | sysinit
I found nothing on the logs.
rc-update | grep opensmtpd
opensmtpd | default
???
Hi, I use Ceres with OpenRC.
For mail on console, I installed OpenSMTPD package and use without any problem.
But during the boot, OpenSMTPD not starts. I need to start it on the console myself.
It's not a problem with my config; in fact, when I start myself, it runs correctly, and can send emails.
Any idea?
OK, Thanks.
Hi.
How can I produce a Debuan Ceres ISO?
I use currently Devuan Ceres.
But I dont known how to create an ISO system.
Any documentation? suggestion?
Hi,
Debian launch a call to propose them art for the look and feel about the future v11, codenamed BullEyes.
- https://wiki.debian.org/DebianDesktop/Artwork/Bullseye
You can vote on survey:
Thanks. I rollback on the previous 5.8.x
@Head_on_a_Stick: yes, I believe, too.
Thanks @ll
Hi.
Today, I updated my Ceres. I use Xfce4 as WM.
But after my reboot, I do not have xfc4-panel.
I test to use this command:
# xfce4-panel --replace
without success.
When I use:
# xfce4-panel --restart
A error message window appears, and inform that:
(message is in French)
Impossible de redémarrer le tableau de bord.
GDBus.Error:org.freedesktop.DBus.Error.ServiceUnkonwn:
The name org.xfce.Panel was not provided by any .service files
# xfwm4 --replace
not change anymore.
Just FYI:
uname: 5.9.0-1-amd64 #1 SMP Debian 5.9.1-1 (2020-10-17) x86_64 GNU/Linux
----
Oh, with the previous kernel 5.8.0-3-amd64 #1 SMP Debian 5.8.14-1 (2020-10-10) x86_64 GNU/Linux, Xfce4 runs correctly!
----
Any idea to resolve?
Personnaly, I use my EcoTank 3700, with the driver printer-driver-escpr, but I'm on Ceres ;-)
And, too, in FRance!
$ calendar
juin 16 Hammurabi the Great dies, Babylon, 1686 BC
juin 16 First publicized programming error at Census Bureau, 1951
juin 16 "The Blues Brothers" premieres in Chicago, 1980
juin 16 Bloomsday - Anniversary of Dublin events, 1904, in "Ulysses"
juin 16 Youth Day in South Africa
juin 16* Parshat Korach
juin 16 The Monterey Pop festival opens, 1967
juin 16 Muere Estanislao López, caudillo y gobernador de Santa Fe, 1838
juin 16 Bonne fête aux Jean-François !
juin 16 Si le jour de saint Fargeau
La lune se fait dans l'eau,
Le reste du mois est beau.
juin 16 Jusztin
juin 16 День морской пехоты
juin 16 Youth Day in South Africa
After lsb-release-11.1 installed:
$ neofetch
..,,;;;::;,.. xyz@pc-abc
`':ddd;:,. --------
`'dPPd:,. OS: Devuan GNU/Linux 4 (chimaera/ceres) x86_64
`:b$$b`. Kernel: 5.6.0-2-amd64
'P$$$d` Uptime: 13 hours, 42 mins
.$$$$$` Packages: 2255 (dpkg), 12 (flatpak)
;$$$$$P Shell: bash 4.4.12
.:P$$$$$$` Resolution: 1920x1080
.,:b$$$$$$$;' DE: Xfce
.,:dP$$$$$$$$b:' WM: Xfwm4
.,:;db$$$$$$$$$$Pd'` WM Theme: Clearlooks-Phenix-Cinnabar
,db$$$$$$$$$$$$$$b:'` Theme: Flat-Remix-GTK-Red-Darkest-Solid [GTK2], Adwaita [GTK3]
:$$$$$$$$$$$$b:'` Icons: Material-Black-Mango-Numix [GTK2], Adwaita [GTK3]
`$$$$$bd:''` Terminal: xfce4-terminal
`'''` Terminal Font: Monospace 12
CPU: Intel Celeron J1800 (2) @ 2.582GHz
GPU: Intel Atom Processor Z36xxx/Z37xxx Series Graphics & Display
Memory: 1384MiB / 3646MiB
$ lsb_release -a
No LSB modules are available.
Distributor ID: Devuan
Description: Devuan GNU/Linux 4 (chimaera/ceres)
Release: testing/unstable
Codename: n/a
After few weeks, a point to resume this:
If I use audacious, and pause sounds, to launch and view videos. Thoses are blocked until I quit audacious. When I've quitted audacious, videos run.
Otherwise, if I use zoom, I cant use audacious. I have an error message.
Error sndio : error on sio_open()
I need to quit zoom and browser web, if actived, and after I can to be use audacious.
@aus9: I've not change any settings on VLC, or others. It's all on default parameters.
cat /etc/apt/preferences.d/apt-listbugs
Explanation: Pinned by apt-listbugs at 2020-04-01 20:46:09 +0200
Explanation: #901952: xdelta: expected from file (/tmp/pristine-tar.SljdkfANnj/recreatetarball) of length 7557120 bytes
Package: tar
Pin: version 1.29b-1.1
Pin-Priority: 30000
Explanation: Pinned by apt-listbugs at 2020-04-01 20:46:09 +0200
Explanation: #924151: grub2-common: wrong grub.cfg for efi boot and fully encrypted disk
Explanation: #926689: cryptsetup-initramfs: config lines in grub.cfg for cryptodisk/luks and other modules missing
Package: grub2-common
Pin: version 2.02~beta3-5+deb9u2
Pin-Priority: 30000
Explanation: Pinned by apt-listbugs at 2020-04-01 20:46:09 +0200
Explanation: #925134: grub-efi-amd64-signed: doesn't mount cryptodisk
Explanation: #945001: grub-efi-amd64: GRUB-EFI messes up boot variables
Package: grub-efi-amd64
Pin: version 2.02~beta3-5+deb9u2
Pin-Priority: 30000
Explanation: Pinned by apt-listbugs at 2020-04-01 20:46:09 +0200
Explanation: #929685: ca-certificates-java,default-jre-headless,openjdk-11-jre-headless: get rid of the circular dependency
Package: openjdk-11-jre-headless
Pin: version *
Pin-Priority: -30000
Explanation: Pinned by apt-listbugs at 2020-04-01 20:46:09 +0200
Explanation: #932085: grub-common: Grub can't load initrd for Xen after upgrade to Buster
Package: grub-common
Pin: version 2.02~beta3-5+deb9u2
Pin-Priority: 30000
Explanation: Pinned by apt-listbugs at 2020-04-01 20:46:09 +0200
Explanation: #935115: bash: [regression] passing variable assignments to functions broken in POSIX mode, violating POSIX
Package: bash
Pin: version 4.4-5
Pin-Priority: 30000
Explanation: Pinned by apt-listbugs at 2020-04-01 20:46:09 +0200
Explanation: #939733: lsb-release: lsb_release does not show point release on Debian 10.1
Package: lsb-release
Pin: version 4.1+devuan2
Pin-Priority: 30000
Explanation: Pinned by apt-listbugs at 2020-04-01 20:46:09 +0200
Explanation: #939813: tasksel: selected packages marked for removal on apt full-upgrade
Package: tasksel
Pin: version 3.39+devuan1.9
Pin-Priority: 30000
Explanation: Pinned by apt-listbugs at 2020-04-01 20:46:09 +0200
Explanation: #950174: missing schema files makes udisks monitor crash
Package: gvfs-daemons
Pin: version 1.30.4-1
Pin-Priority: 30000
Explanation: Pinned by apt-listbugs at 2020-04-01 20:46:09 +0200
Explanation: #952399: OpenSSL linking without license exception
Package: kmod
Pin: version 23-2
Pin-Priority: 30000
Explanation: Pinned by apt-listbugs at 2020-04-01 20:46:09 +0200
Explanation: #953098: xscreensaver: Crashes with XIO: fatal IO error
Package: xscreensaver
Pin: version 5.36-1
Pin-Priority: 30000
Explanation: Pinned by apt-listbugs at 2020-04-01 21:49:38 +0200
Explanation: #919348: xfce4-screensaver: Accidental upload to unstable while fixing bug #919151
Package: xfce4-screensaver
Pin: version *
Pin-Priority: -30000
Explanation: Pinned by apt-listbugs at 2020-04-08 18:50:03 +0200
Explanation: #558422: grub-pc: upgrade hangs
Package: grub-pc
Pin: version *
Pin-Priority: -30000
Explanation: Pinned by apt-listbugs at 2020-04-10 01:16:02 +0200
Explanation: #948739: gparted should not mask .mount units
Explanation: #955858: gparted: does not start, 'unable to init server', tmp.mount does not exist
Package: gparted
Pin: version *
Pin-Priority: -30000
Explanation: Pinned by apt-listbugs at 2020-04-13 00:29:46 +0200
Explanation: #956427: python3-httplib2 >= 1.13.0 breaks python3-wsgi-intercept << 1.9.0
Package: python3-httplib2
Pin: version 0.9.2+dfsg-1
Pin-Priority: 30000
# apt install lsb-release=11.1.0
Lecture des listes de paquets... Fait
Construction de l'arbre des dépendances
Lecture des informations d'état... Fait
Les paquets supplémentaires suivants seront installés :
distro-info-data
Les NOUVEAUX paquets suivants seront installés :
distro-info-data
Les paquets suivants seront mis à jour :
lsb-release
1 mis à jour, 1 nouvellement installés, 0 à enlever et 3 non mis à jour.
Il est nécessaire de prendre 34,6 ko dans les archives.
Après cette opération, 17,4 ko d'espace disque seront libérés.
Souhaitez-vous continuer ? [O/n] o
Réception de :1 http://deb.devuan.org/merged ceres/main amd64 distro-info-data all 0.41+devuan1 [6712 B]
Réception de :2 http://deb.devuan.org/merged ceres/main amd64 lsb-release all 11.1.0 [27,9 kB]
34,6 ko réceptionnés en 2s (18,0 ko/s)
Récupération des rapports de bogue… Fait
Analyse des informations Trouvé/Corrigé… Fait
bogues de gravité serious sur lsb-release (4.1+devuan2 → 11.1.0) <En attente de traitement>
b1 - #939733 - lsb-release: lsb_release does not show point release on Debian 10.1
Résumé :
lsb-release(1 bogue)
Êtes-vous certain(e) de vouloir installer/mettre à niveau les paquets ci-dessus ? [Y/n/?/...]
ohohh
$ apt policy lsb-release
lsb-release:
Installé : 4.1+devuan2
Candidat : 4.1+devuan2
Table de version :
11.1.0 500
500 http://deb.devuan.org/merged ceres/main amd64 Packages
*** 4.1+devuan2 30000
100 /var/lib/dpkg/status
ahhh !?
$ apt policy base-files
base-files:
Installé : 11+devuan2
Candidat : 11+devuan2
Table de version :
*** 11+devuan2 500
500 http://deb.devuan.org/merged ceres/main amd64 Packages
100 /var/lib/dpkg/status
Excuse-me @Head_on_a_Stick; I've not seen your reply!
$ lsb_release -a
No LSB modules are available.
Distributor ID: Devuan
Description: Devuan GNU/Linux 1.0.0 (jessie)
Release: 1.0.0
Codename: jessie
Terrible!
I'm on really on Ceres:
$ grep -v '^#' /etc/apt/sources.list
deb http://deb.devuan.org/merged ceres main non-free contrib