Bug#953809: tasksel 3.59: it needs to delete task-print-server and task-print-service

2020-05-15 Thread Didier 'OdyX' Raboud
Le vendredi, 13 mars 2020, 23.39:53 h CEST Cyril Brulebois a écrit :
> Hi,
> 
> Сергей Фёдоров  (2020-03-13):
> > Package: tasksel
> > Version: 3.59
> > Severity: normal
> > 
> > When upgrading any of the packages from version 3.58 to 3.59:
> >task-cyrillic
> >task-desktop
> >task-russian
> >task-xfce-desktop
> >tasksel
> >tasksel-data
> > 
> > it needs to delete packages version 3.58
> > 
> >task-print-server
> >task-print-service
> > 
> > but their version 3.59 is not available.
> 
> Yes, that's been in removed in the latest version. See the latest
> changelog entry (sorry, one needs to scoll until “Changes:”):
>  
> https://tracker.debian.org/news/1107708/accepted-tasksel-359-source-into-un
> stable/
> 
> So I don't think there's anything to fix here. Looping in Didier to make
> extra sure.

Thanks for the followup, everything looks fine!

-- 
OdyX

signature.asc
Description: This is a digitally signed message part.


Emulate 'vga=none' by gfxpayload as kernel boot parameter

2020-05-15 Thread john doe

Debians-boot,

I'm trying to troubleshoot what I'm doing rong when trying to install
Debian through serial console.

If I start a Qemu VM like so:

qemu-system-x86_64 -cdrom debian-bullseye-DI-alpha2-amd64-netinst.iso
-nographic -vga none -m 1024

At the Debian install prompt pressing the escape key get me to the boot
prompt.

boot: install console=ttyS0,115200n8 DEBIAN_FRONTEND=text gfxpayload=text
Undefined video mode number: 314
Press  to see video modes available,  to continue, or wait
30 sec


If I use 'vga=none' the above is suppressed but Debian will not start
properly after installation by saying that 'vga=none' is deprecated and
that 'set gfxpayload=text' should be used instead.

How can I specify 'set gfxpayload=text' to the boot prompt above?

In other words, how can i emulate 'vga=none' when this argument is
deprecated.

This issue originated from a host on which I'm facing this issue and
reproduced here for testing purposes with Qemu.

--
John Doe



Handling the Turris MOX watchdog during install

2020-05-15 Thread Domenico Andreoli
Hi,

  I'm trying to clean the way for installing Debian on Turris MOX.

One thing that's needed is the watchdog kernel module. It's already
been enabled in the latest kernel 5.6.7-1, it's just missing from the
installer's initrd.gz. I see that there is already sunxi_wdt.ko but I
could not figure out how to add also the new one.

Because u-boot enables the watchdog, the installer needs to kick it
regularly during the install. Hot to do this?

Thanks,
Domenico

-- 
rsa4096: 3B10 0CA1 8674 ACBA B4FE  FCD2 CE5B CF17 9960 DE13
ed25519: FFB4 0CC3 7F2E 091D F7DA  356E CC79 2832 ED38 CB05



Bug#960626: tests with other distributions

2020-05-15 Thread cyrille
Hello,

 

I've tried 2 other distribution and the scheme is the same:

 

1) Ubuntu: Doesn't work. Parted shows the same strange results

2) Fedora: Work. Parted shows a regular msdos partition table with 512
bytes logical sectors

Re: Bug#478661: Should document how to install packages during preseeding

2020-05-15 Thread Holger Wansing


Ronald  wrote:
> And post-preseed.sh contains the following lines until it hangs:
> 
> # Adding extra sources
> echo ""  >> /etc/apt/sources.list
> echo "deb http://ftp.us.debian.org/debian sid main non-free contrib" >> 
> /etc/apt/sources.list
> echo ""  >> /etc/apt/sources.list
> echo "deb http://www.debian-multimedia.org testing main" >> 
> /etc/apt/sources.list
> echo ""  >> /etc/apt/sources.list
> echo "deb http://kernel-archive.buildserver.net/debian-kernel sid main" >> 
> /etc/apt/sources.list
> aptitude clean
> aptitude update
> # Install keys
> aptitude -y --allow-untrusted install debian-multimedia-keyring
> apt-key add /mnt/data/linux_data/key
> aptitude clean
> aptitude update
> # Update and install
> aptitude -y -t testing safe-upgrade  (THIS WORKS)
> #aptitude -y -t sid install amsn wine tor easytag (AND HERE IT HANGS)

It is documented in
https://d-i.debian.org/manual/en.amd64/apbs05.html#preseed-hooks
how to do custom package installs via preseeding.
(Using aptitude is not supported, by the way!)


So closing this long-standing bug

Holger


-- 
Holger Wansing 
PGP-Fingerprint: 496A C6E8 1442 4B34 8508  3529 59F1 87CA 156E B076



Bug#478661: marked as done (Should document how to install packages during preseeding)

2020-05-15 Thread Debian Bug Tracking System
Your message dated Sat, 16 May 2020 00:32:27 +0200
with message-id <20200516003227.ef39d7c4e97e4ad4f096a...@mailbox.org>
and subject line Re: Bug#478661: Should document how to install packages during 
preseeding
has caused the Debian Bug report #478661,
regarding Should document how to install packages during preseeding
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
478661: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=478661
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: debian-installer
Version: Lenny (snapshot of 25 april 2008)(netinst)
Severity: normal

Note that I have had the exact same error before and that was fixed a while 
after. But now it came back (Regression?). Here's the deal: I install debian 
from the (daily generated) netinst image using 
preseed. First I install packages using the "pkgsel pkgsel/include string" 
string. This works. Afterwards, It does this:

d-i preseed/late_command string echo hi; \
# Transfer linux_data and chroot into it.
mkdir /target/mnt/data/; \
cp -r /hd-media/linux_data/ /target/mnt/data/; \
chroot /target /mnt/data/linux_data/post-preseed.sh

And post-preseed.sh contains the following lines until it hangs:

# Adding extra sources
echo ""  >> /etc/apt/sources.list
echo "deb http://ftp.us.debian.org/debian sid main non-free contrib" >> 
/etc/apt/sources.list
echo ""  >> /etc/apt/sources.list
echo "deb http://www.debian-multimedia.org testing main" >> 
/etc/apt/sources.list
echo ""  >> /etc/apt/sources.list
echo "deb http://kernel-archive.buildserver.net/debian-kernel sid main" >> 
/etc/apt/sources.list
aptitude clean
aptitude update
# Install keys
aptitude -y --allow-untrusted install debian-multimedia-keyring
apt-key add /mnt/data/linux_data/key
aptitude clean
aptitude update
# Update and install
aptitude -y -t testing safe-upgrade  (THIS WORKS)
#aptitude -y -t sid install amsn wine tor easytag (AND HERE IT HANGS)

The error the terminal gives is:

/usr/share/debconf/confmodule: line 42: 3: Bad file descriptor

I heard this is because we have two instances of debconf running (one outside 
the chroot and one inside the chroot), that is all nice but it still hangs :(

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing')
Architecture: i386 (i686)

Kernel: Linux 2.6.25
Locale: LANG=nl_NL.UTF-8, LC_CTYPE=nl_NL.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash


--- End Message ---
--- Begin Message ---

Ronald  wrote:
> And post-preseed.sh contains the following lines until it hangs:
> 
> # Adding extra sources
> echo ""  >> /etc/apt/sources.list
> echo "deb http://ftp.us.debian.org/debian sid main non-free contrib" >> 
> /etc/apt/sources.list
> echo ""  >> /etc/apt/sources.list
> echo "deb http://www.debian-multimedia.org testing main" >> 
> /etc/apt/sources.list
> echo ""  >> /etc/apt/sources.list
> echo "deb http://kernel-archive.buildserver.net/debian-kernel sid main" >> 
> /etc/apt/sources.list
> aptitude clean
> aptitude update
> # Install keys
> aptitude -y --allow-untrusted install debian-multimedia-keyring
> apt-key add /mnt/data/linux_data/key
> aptitude clean
> aptitude update
> # Update and install
> aptitude -y -t testing safe-upgrade  (THIS WORKS)
> #aptitude -y -t sid install amsn wine tor easytag (AND HERE IT HANGS)

It is documented in
https://d-i.debian.org/manual/en.amd64/apbs05.html#preseed-hooks
how to do custom package installs via preseeding.
(Using aptitude is not supported, by the way!)


So closing this long-standing bug

Holger


-- 
Holger Wansing 
PGP-Fingerprint: 496A C6E8 1442 4B34 8508  3529 59F1 87CA 156E B076--- End Message ---