Bug#1065546: d-i.debian.org: does not install "Recommends:" by default, at least uuid-runtime

2024-03-06 Thread Vincent Lefevre
I've eventuelly found

  https://www.debian.org/releases/stable/amd64/ch06s03.en.html#di-install-base

"For technical reasons packages installed during the installation of
the base system are installed without their “Recommends”. The rule
described above only takes effect after this point in the installation
process."

Then why are recommended packages not listed explicitly?

-- 
Vincent Lefèvre  - Web: 
100% accessible validated (X)HTML - Blog: 
Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon)



Bug#1065546: d-i.debian.org: does not install "Recommends:" by default, at least uuid-runtime

2024-03-06 Thread Vincent Lefevre
On 2024-03-06 13:53:48 +0100, Vincent Lefevre wrote:
> Note: I installed Debian with debian-12.1.0-amd64-netinst.iso.

Same issue on another machine where I installed Debian/testing using
debian-testing-amd64-netinst.iso on January 5.

-- 
Vincent Lefèvre  - Web: <https://www.vinc17.net/>
100% accessible validated (X)HTML - Blog: <https://www.vinc17.net/blog/>
Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon)



Bug#1065546: d-i.debian.org: does not install "Recommends:" by default, at least uuid-runtime

2024-03-06 Thread Vincent Lefevre
Package: d-i.debian.org
Severity: important

A few days ago, I noticed that the uuid-runtime package wasn't
installed, though libuuid1 was installed (when I installed Debian)
and had "Recommends: uuid-runtime".

FYI, uuid-runtime got pulled due to the rename of libuuid1 to
libuuid1t64.

Note: I installed Debian with debian-12.1.0-amd64-netinst.iso.

-- 
Vincent Lefèvre  - Web: 
100% accessible validated (X)HTML - Blog: 
Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon)



Bug#1019660: console-setup: grep: warning: stray \ before #

2022-09-19 Thread Vincent Lefevre
Control: tags -1 patch

On 2022-09-13 12:42:11 +0200, Jakub Wilk wrote:
> With grep (>= 3.8), I'm getting this warning:
> 
>   # setupcon
>   grep: warning: stray \ before #

I've attached a patch to fix this issue and other grep usage issues.

-- 
Vincent Lefèvre  - Web: <https://www.vinc17.net/>
100% accessible validated (X)HTML - Blog: <https://www.vinc17.net/blog/>
Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon)
Description: Fix setupcon grep usage (for grep 3.8+).
Bug-Debian: https://bugs.debian.org/1019660
Author: Vincent Lefevre 
Last-Update: 2022-09-20

--- setupcon~	2022-05-26 22:47:37.0 +0200
+++ setupcon	2022-09-20 02:48:26.914726411 +0200
@@ -489,7 +489,7 @@
 for tty in \
 $(cat /etc/inittab /etc/init/* /etc/ttys 2>/dev/null \
 	| grep getty \
-| egrep '([[:blank:]]|^)tty([1-9][0-9]*|v[0-9a-f])([[:blank:]]|$)' \
+| grep -E '([[:blank:]]|^)tty([1-9][0-9]*|v[0-9a-f])([[:blank:]]|$)' \
 | sed -e '/^ *#/d' \
   -e 's/.*[[:blank:]]\(tty[1-9][0-9]*\).*/\1/' \
   -e 's/.*[[:blank:]]\(ttyv[0-9a-f]\).*/\1/')
@@ -775,7 +775,7 @@
 esac
 case \
 "`(stty -a \
-  | egrep '(^| )erase *=' \
+  | grep -E '(^| )erase *=' \
   | sed -e 's/.* erase *= *//' -e 's/^erase *= *//' -e 's/[; ].*//') \
   2>/dev/null`"
 in
@@ -1094,8 +1094,8 @@
 # Copyright © 2001 Alcove http://www.alcove.fr/
 if [ "$do_kbd" = linux ]; then
 if [ -x /sbin/sysctl -a -r /etc/sysctl.conf ]; then
-	if grep -v '^\#' /etc/sysctl.conf | grep -q keycodes ; then
-	grep keycodes /etc/sysctl.conf | grep -v "^#" \
+	if grep -v '^#' /etc/sysctl.conf | grep -q keycodes ; then
+	grep keycodes /etc/sysctl.conf | grep -v '^#' \
 		| while read -r d ; do
 /sbin/sysctl -w $d 2> /dev/null || true
 done


Bug#1012757: keyboard-configuration: generated /etc/default/keyboard file is invalid (xkb_variant/xkb_options requires a string value)

2022-06-13 Thread Vincent Lefevre
On 2022-06-13 14:17:49 +0200, Vincent Lefevre wrote:
> I now get warnings in the /var/log/Xorg.0.log file:
> 
> [15.840] (**) Option "xkb_model" "pc105"
> [15.840] (**) Option "xkb_layout" "gb"
> [15.840] (WW) Option "xkb_variant" requires a string value
> [15.840] (WW) Option "xkb_options" requires a string value
> [...]
> [15.904] (**) Option "xkb_model" "pc105"
> [15.904] (**) Option "xkb_layout" "gb"
> [15.904] (WW) Option "xkb_variant" requires a string value
> [15.904] (WW) Option "xkb_options" requires a string value
> [...]
> [15.936] (**) Option "xkb_model" "pc105"
> [15.936] (**) Option "xkb_layout" "gb"
> [15.936] (WW) Option "xkb_variant" requires a string value
> [15.936] (WW) Option "xkb_options" requires a string value
> 
> The /etc/default/keyboard file contains in particular:
> 
> XKBMODEL="pc105"
> XKBLAYOUT="gb"
> XKBVARIANT=""
> XKBOPTIONS=""
> 
> So it appears that the empty strings are invalid.

I suppose that these warnings are due to

case OPTV_STRING:
if (*s == '\0') {
if (markUsed) {
xf86DrvMsg(scrnIndex, X_WARNING,
   "Option \"%s\" requires a string value\n",
   p->name);
}
p->found = FALSE;
}

in file hw/xfree86/common/xf86Option.c of xorg-server.

-- 
Vincent Lefèvre  - Web: <https://www.vinc17.net/>
100% accessible validated (X)HTML - Blog: <https://www.vinc17.net/blog/>
Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon)



Bug#1012757: keyboard-configuration: generated /etc/default/keyboard file is invalid (xkb_variant/xkb_options requires a string value)

2022-06-13 Thread Vincent Lefevre
Package: keyboard-configuration
Version: 1.208
Severity: normal

I now get warnings in the /var/log/Xorg.0.log file:

[15.840] (**) Option "xkb_model" "pc105"
[15.840] (**) Option "xkb_layout" "gb"
[15.840] (WW) Option "xkb_variant" requires a string value
[15.840] (WW) Option "xkb_options" requires a string value
[...]
[15.904] (**) Option "xkb_model" "pc105"
[15.904] (**) Option "xkb_layout" "gb"
[15.904] (WW) Option "xkb_variant" requires a string value
[15.904] (WW) Option "xkb_options" requires a string value
[...]
[15.936] (**) Option "xkb_model" "pc105"
[15.936] (**) Option "xkb_layout" "gb"
[15.936] (WW) Option "xkb_variant" requires a string value
[15.936] (WW) Option "xkb_options" requires a string value

The /etc/default/keyboard file contains in particular:

XKBMODEL="pc105"
XKBLAYOUT="gb"
XKBVARIANT=""
XKBOPTIONS=""

So it appears that the empty strings are invalid.

However, this has been like that in the past, so I'm wondering why
I didn't get these warnings before (the X server hasn't been upgraded
recently).

Related to this issue:

  https://bugzilla.redhat.com/show_bug.cgi?id=669912#c10

showing similar warnings, where in Comment 13, it is said that
an empty value is probably a problem.

-- System Information:
Debian Release: bookworm/sid
  APT prefers unstable-debug
  APT policy: (500, 'unstable-debug'), (500, 'stable-updates'), (500, 
'stable-security'), (500, 'unstable'), (500, 'testing'), (500, 'stable'), (1, 
'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 5.17.0-3-amd64 (SMP w/12 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE, 
TAINT_UNSIGNED_MODULE
Locale: LANG=POSIX, LC_CTYPE=C.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages keyboard-configuration depends on:
ii  debconf 1.5.79
ii  liblocale-gettext-perl  1.07-4+b2

keyboard-configuration recommends no packages.

keyboard-configuration suggests no packages.

Versions of packages console-setup depends on:
ii  console-setup-linux  1.208
ii  debconf  1.5.79
ii  xkb-data 2.35.1-1

Versions of packages console-setup suggests:
ii  locales   2.33-7
ii  lsb-base  11.2

Versions of packages console-setup-linux depends on:
ii  init-system-helpers  1.63
ii  initscripts  3.03-1
ii  kbd  2.3.0-3

Versions of packages console-setup-linux suggests:
ii  console-setup  1.208

Versions of packages keyboard-configuration is related to:
pn  console-common
pn  console-data  
pn  console-tools 
pn  gnome-control-center  
ii  kbd   2.3.0-3
ii  systemd   251.2-5

-- debconf information:
  debian-installer/console-setup-udeb/title:
* keyboard-configuration/layout:
* keyboard-configuration/switch: No temporary switch
  keyboard-configuration/unsupported_layout: true
* keyboard-configuration/store_defaults_in_debconf_db: true
* keyboard-configuration/optionscode:
* console-setup/charmap47: UTF-8
* keyboard-configuration/variantcode:
* console-setup/codeset47: # Latin1 and Latin5 - western Europe and Turkic 
languages
  console-setup/store_defaults_in_debconf_db: true
* keyboard-configuration/altgr: The default for the keyboard layout
  keyboard-configuration/unsupported_config_layout: true
  console-setup/framebuffer_only:
* keyboard-configuration/xkb-keymap: gb
* keyboard-configuration/model: Generic 105-key PC
  keyboard-configuration/unsupported_config_options: true
* console-setup/fontface47: Fixed
* keyboard-configuration/compose: No compose key
* console-setup/fontsize-fb47: 8x16
* keyboard-configuration/toggle: No toggling
* keyboard-configuration/variant: English (UK)
* keyboard-configuration/layoutcode: gb
  console-setup/fontsize-text47: 8x16
* keyboard-configuration/modelcode: pc105
* keyboard-configuration/ctrl_alt_bksp: false
  console-setup/use_system_font:
  console-setup/fontsize: 8x16
* keyboard-configuration/other:
  keyboard-configuration/unsupported_options: true
  console-setup/codesetcode: Lat15
  console-setup/guess_font:

-- 
Vincent Lefèvre  - Web: 
100% accessible validated (X)HTML - Blog: 
Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon)



Bug#990268: busybox: incorrect handling of output error for various BusyBox commands

2021-06-24 Thread Vincent Lefevre
Package: busybox
Version: 1:1.30.1-6+b2
Severity: normal

BusyBox does not always handle output error correctly, e.g. with
closed stdout. For instance:

$ busybox sh -c 'exec >&-; for i in echo env pwd; do echo "[$i]" >&2; $i; echo 
$? >&2; busybox $i; echo $? >&2; done'
[echo]
sh: write error: Bad file descriptor
1
echo: write error: Bad file descriptor
1
[env]
env: write error: Bad file descriptor
125
env: standard output: Bad file descriptor
0
[pwd]
1
255

There are 3 issues here:

1. For echo, in the error message, "sh" is written instead of "echo".
   But the message is OK for "busybox echo".

2. For "busybox env", the exit status is 0 instead of non-zero.
   But the exit status is correct for just "env".

3. For pwd and "busybox pwd", the error message is missing, though it
   is required by POSIX:
 https://pubs.opengroup.org/onlinepubs/9699919799/utilities/pwd.html

Other BusyBox commands might be affected too. To be checked...

-- System Information:
Debian Release: 11.0
  APT prefers unstable-debug
  APT policy: (500, 'unstable-debug'), (500, 'testing-security'), (500, 
'stable-updates'), (500, 'unstable'), (500, 'testing'), (500, 'stable'), (1, 
'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 5.10.0-7-amd64 (SMP w/8 CPU threads)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE, 
TAINT_UNSIGNED_MODULE
Locale: LANG=POSIX, LC_CTYPE=C.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages busybox depends on:
ii  libc6  2.31-12

busybox recommends no packages.

busybox suggests no packages.

-- no debconf information

-- 
Vincent Lefèvre  - Web: 
100% accessible validated (X)HTML - Blog: 
Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon)



Bug#838310: keyboard-configuration: user configuration lost + error message from setupcon

2016-09-22 Thread Vincent Lefevre
On 2016-09-22 18:42:21 +0300, Anton Zinoviev wrote:
> On Thu, Sep 22, 2016 at 02:17:54PM +0200, Sven Joachim wrote:
> > I'm pretty sure it is.  The list of keyboard models is generated by
> > running "./kbdnames-maker KeyboardNames.pl" from the Keyboard/
> > directory, and currently this command does not print anything.  I
> > tracked the problem down to the removal of the current directory from
> > @INC in perl, running "perl -I. kbdnames-maker KeyboardNames.pl" gives
> > the long list of keyboard models again.
> 
> I am adding to this bug a 'help' tag because the bug is grave and at the 
> moment I don't have updated Debian machine so I can not debug.  
> 
> Conceivably, the fix will be trivial.  I don't know if the following 
> will fix the bug and if this is the right thing to do, but it seems 
> simple to change the first line
> 
> #!/usr/bin/perl
> 
> of Keyboard/kbdcompiler and Keyboard/kbdnames-maker to
> 
> #!/usr/bin/perl -I.

This solves the issue for the keyboard-configuration.config file.

This also introduces the following change in
"/usr/share/console-setup/kbdnames-maker":

@@ -1,4 +1,4 @@
-#!/usr/bin/perl
+#!/usr/bin/perl -I.
 
 use warnings 'all';
 use strict;

I suppose that this is OK if /usr/share/console-setup/kbdnames-maker
is expected to be run with /usr/share/console-setup as the current
working directory. Otherwise, I'm wondering... What is the goal of
this script here?

-- 
Vincent Lefèvre  - Web: 
100% accessible validated (X)HTML - Blog: 
Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon)



Bug#838310: keyboard-configuration: user configuration lost + error message from setupcon

2016-09-22 Thread Vincent Lefevre
Control: found -1 1.150

On 2016-09-22 12:45:09 +0200, Vincent Lefevre wrote:
> In the keyboard-configuration 1.148 binary package, one has:
> 
> -rwxr-xr-x 1 1862421 2016-07-29 08:06:33 DEBIAN/config
> 
> But in the 1.149 version:
> 
> -rwxr-xr-x 1 48945 2016-09-18 17:53:38 DEBIAN/config

Version 1.150, which has just appeared in unstable, has the same
issue. And upgrading doesn't fix the problem.

-- 
Vincent Lefèvre  - Web: <https://www.vinc17.net/>
100% accessible validated (X)HTML - Blog: <https://www.vinc17.net/blog/>
Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon)



Bug#838310: keyboard-configuration: user configuration lost + error message from setupcon

2016-09-22 Thread Vincent Lefevre
In the keyboard-configuration 1.148 binary package, one has:

-rwxr-xr-x 1 1862421 2016-07-29 08:06:33 DEBIAN/config

But in the 1.149 version:

-rwxr-xr-x 1 48945 2016-09-18 17:53:38 DEBIAN/config

The diff:

--- keyboard-configuration_1.148_all/DEBIAN/config  2016-07-29 
08:06:33.0 +0200
+++ keyboard-configuration_1.149_all/DEBIAN/config  2016-09-18 
17:53:38.0 +0200
@@ -159,33732 +159,6 @@
 
 all_kbdnames () {
  cat <<'EOF'
-C*model*a4techKB21*A4Tech KB-21
-C*model*a4techKBS8*A4Tech KBS-8
-C*model*a4_rfkb23*A4Tech Wireless Desktop RFKB-23
[...]
-zh_TW*layout*sn*渥魯夫語
-zh_TW*variant*sn**渥魯夫語
 EOF
 }
 

Couldn't this be the cause of the problem?

-- 
Vincent Lefèvre  - Web: 
100% accessible validated (X)HTML - Blog: 
Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon)



Bug#838310: keyboard-configuration: user configuration lost + error message from setupcon

2016-09-22 Thread Vincent Lefevre
On 2016-09-22 11:10:45 +0200, Vincent Lefevre wrote:
> On 2016-09-22 01:29:12 +0300, Anton Zinoviev wrote:
> > On Mon, Sep 19, 2016 at 07:31:12PM +0200, Vincent Lefevre wrote:
> > > -XKBMODEL="pc105"
> > > +XKBMODEL=""
> > >  XKBLAYOUT="gb"
> > >  XKBVARIANT=""
> > >  XKBOPTIONS=""
> > 
> > This doesn't look as a file created by console-setup.
> 
> It is created by "dpkg-reconfigure keyboard-configuration".
[...]

I have a 3rd machine (which doesn't use systemd).

ypig:~> cat /etc/default/keyboard
# KEYBOARD CONFIGURATION FILE

# Consult the keyboard(5) manual page.

XKBMODEL="pc105"
XKBLAYOUT="gb"
XKBVARIANT=""
XKBOPTIONS=""

BACKSPACE="guess"

So, this is OK before the upgrade. Then, I upgraded only the
following with aptitude:

Preconfiguring packages ...
(Reading database ... 556584 files and directories currently installed.)
Preparing to unpack .../0-console-setup-linux_1.149_all.deb ...
Unpacking console-setup-linux (1.149) over (1.148) ...
Preparing to unpack .../1-console-setup_1.149_all.deb ...
Unpacking console-setup (1.149) over (1.148) ...
Preparing to unpack .../2-keyboard-configuration_1.149_all.deb ...
Unpacking keyboard-configuration (1.149) over (1.148) ...
Setting up keyboard-configuration (1.149) ...
Processing triggers for systemd (231-7) ...
Processing triggers for man-db (2.7.5-1) ...
Setting up console-setup-linux (1.149) ...
Setting up console-setup (1.149) ...

I got a question:

  Configuring keyboard-configuration

  The current keyboard layout in the configuration file
  /etc/default/keyboard is defined as XKBLAYOUT="gb" and
  XKBVARIANT="".

  Please choose whether you want to keep it. If you choose this
  option, no questions about the keyboard layout will be asked
  and the current configuration will be preserved.

  Keep the current keyboard layout in the configuration file?



I chose "Yes", so that I didn't expect any change. But now:

ypig:~> cat /etc/default/keyboard
# KEYBOARD CONFIGURATION FILE

# Consult the keyboard(5) manual page.

XKBMODEL=""
XKBLAYOUT="gb"
XKBVARIANT=""
XKBOPTIONS=""

BACKSPACE="guess"

which is wrong!!! And /var/cache/debconf/config.dat changed in the
same way as the other machines.

Note: I don't remember getting this question on the other machines,
but the effect was the same.

-- 
Vincent Lefèvre  - Web: <https://www.vinc17.net/>
100% accessible validated (X)HTML - Blog: <https://www.vinc17.net/blog/>
Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon)



Bug#838310: keyboard-configuration: user configuration lost + error message from setupcon

2016-09-22 Thread Vincent Lefevre
On 2016-09-22 01:29:12 +0300, Anton Zinoviev wrote:
> On Mon, Sep 19, 2016 at 07:31:12PM +0200, Vincent Lefevre wrote:
> > -XKBMODEL="pc105"
> > +XKBMODEL=""
> >  XKBLAYOUT="gb"
> >  XKBVARIANT=""
> >  XKBOPTIONS=""
> 
> This doesn't look as a file created by console-setup.

It is created by "dpkg-reconfigure keyboard-configuration".
If I start with the original /etc/default/keyboard file
(which was the file after the installation of the machine):


# KEYBOARD CONFIGURATION FILE

# Consult the keyboard(5) manual page.

XKBMODEL="pc105"
XKBLAYOUT="gb"
XKBVARIANT=""
XKBOPTIONS=""

BACKSPACE="guess"


I can reproduce the issue with:

  dpkg-reconfigure -fnoninteractive keyboard-configuration

I get:


# KEYBOARD CONFIGURATION FILE

# Consult the keyboard(5) manual page.

XKBMODEL=""
XKBLAYOUT="gb"
XKBVARIANT=""
XKBOPTIONS=""

BACKSPACE="guess"


> Because of the missing XKBMODEL, it looks like a file created by
> systemd-localed.service.
> 
> Would you experiment with the command
> 
> # localectl set-keymap 

This has no effect on /etc/default/keyboard.

> and
> 
> # localectl set-x11-keymap ...
> 
> and see if it corrupts /etc/default/keyboard.

This recreates /etc/default/keyboard, but with only 2 lines, e.g.

# localectl set-x11-keymap foo
# cat /etc/default/keyboard
XKBLAYOUT=foo
BACKSPACE=guess

> > I don't know the possible consequences, though. The
> > /usr/share/doc/keyboard-configuration/changelog.gz file just says:
> > 
> > console-setup (1.149) unstable; urgency=medium
> > 
> >   [ Updated translations ]
> >   * Danish (da.po) by Joe Hansen
> 
> If I am right that the file was corrupted by systemd-localed, then 
> /etc/default/keyboard must have been corrupted after the upgrade of 
> console-setup.  If this file was corrupted before the upgrade, then 
> console-setup would have repaired it.
> 
> > Note: I have
> > 
> > -rw-r--r-- 1 root root 145 2016-09-19 19:03:19 /etc/default/keyboard
> > 
> > Thus this file was modified when keyboard-configuration was upgraded
> > (and before this upgrade of the Linux kernel and the nvidia packages).
> 
> Do you know what other packages were upgraded after console-setup and 
> before the Linux kernel and nvidia?

Here's the aptitude log:

Aptitude 0.8.3: log report
Mon, Sep 19 2016 19:00:23 +0200

  IMPORTANT: this log only lists intended actions; actions which fail
  due to dpkg problems may not be completed.

Will install 94 packages, and remove 0 packages.
1169 kB of disk space will be freed

[HOLD, DEPENDENCIES] libegl-nvidia0:amd64 361.45.18-2
[HOLD, DEPENDENCIES] libegl1-glvnd-nvidia:amd64 361.45.18-2
[HOLD, DEPENDENCIES] libgl1-nvidia-glx:amd64 361.45.18-2
[HOLD, DEPENDENCIES] libgldispatch0-nvidia:amd64 361.45.18-2
[HOLD, DEPENDENCIES] libgles-nvidia1:amd64 361.45.18-2
[HOLD, DEPENDENCIES] libgles-nvidia2:amd64 361.45.18-2
[HOLD, DEPENDENCIES] libgles1-glvnd-nvidia:amd64 361.45.18-2
[HOLD, DEPENDENCIES] libgles2-glvnd-nvidia:amd64 361.45.18-2
[HOLD, DEPENDENCIES] libglx-nvidia0:amd64 361.45.18-2
[HOLD, DEPENDENCIES] libglx0-glvnd-nvidia:amd64 361.45.18-2
[HOLD, DEPENDENCIES] libnvidia-cfg1:amd64 361.45.18-2
[HOLD, DEPENDENCIES] libnvidia-glcore:amd64 361.45.18-2
[HOLD, DEPENDENCIES] libnvidia-ml1:amd64 361.45.18-2
[HOLD, DEPENDENCIES] libopengl0-glvnd-nvidia:amd64 361.45.18-2
[HOLD, DEPENDENCIES] linux-compiler-gcc-5-x86:amd64 4.7.2-1
[HOLD, DEPENDENCIES] linux-doc-4.7:amd64 4.7.2-1
[HOLD, DEPENDENCIES] linux-headers-4.7.0-1-amd64:amd64 4.7.2-1
[HOLD, DEPENDENCIES] linux-headers-4.7.0-1-common:amd64 4.7.2-1
[HOLD, DEPENDENCIES] linux-kbuild-4.7:amd64 4.7.2-1
[HOLD, DEPENDENCIES] linux-libc-dev:amd64 4.7.2-1
[HOLD, DEPENDENCIES] nvidia-alternative:amd64 361.45.18-2
[HOLD, DEPENDENCIES] nvidia-driver:amd64 361.45.18-2
[HOLD, DEPENDENCIES] nvidia-driver-libs:amd64 361.45.18-2
[HOLD, DEPENDENCIES] nvidia-kernel-support:amd64 361.45.18-2
[HOLD, DEPENDENCIES] nvidia-legacy-check:amd64 361.45.18-2
[HOLD, DEPENDENCIES] nvidia-vdpau-driver:amd64 361.45.18-2
[HOLD, DEPENDENCIES] xserver-xorg-video-nvidia:amd64 361.45.18-2
[HOLD] gcc-snapshot:amd64 20160508-1
[HOLD] libnvidia-eglcore:amd64 361.45.18-2
[HOLD] nvidia-driver-bin:amd64 361.45.18-2
[HOLD] nvidia-kernel-dkms:amd64 361.45.18-2
[UPGRADE] bash:amd64 4.3-15 -> 4.4-1
[UPGRADE] console-setup:amd64 1.148 -> 1.149
[UPGRADE] console-setup-linux:amd64 1.148 -> 1.149
[UPGRADE] font

Bug#838310: keyboard-configuration: user configuration lost + error message from setupcon

2016-09-19 Thread Vincent Lefevre
Same problem on another machine.

-- 
Vincent Lefèvre  - Web: 
100% accessible validated (X)HTML - Blog: 
Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon)



Bug#838310: keyboard-configuration: user configuration lost + error message from setupcon

2016-09-19 Thread Vincent Lefevre
Some additional information. In "journalctl -b" output after reboot:

[...]
Sep 19 19:10:11 zira keyboard-setup.sh[401]: cannot open file /tmp/tmpkbd.qR4ecU
[...]
Sep 19 19:10:11 zira keyboard-setup.sh[401]: setupcon: The keyboard model is 
unknown, assuming 'pc105'. Keyboard may be configured incorrectly.
[...]
Sep 19 19:10:11 zira console-setup.sh[631]: setupcon: The keyboard model is 
unknown, assuming 'pc105'. Keyboard may be configured incorrectly.
[...]
Sep 19 19:10:11 zira console-setup.sh[631]: setupcon: The keyboard model is 
unknown, assuming 'pc105'. Keyboard may be configured incorrectly.
Sep 19 19:10:11 zira console-setup.sh[631]: setupcon: The keyboard model is 
unknown, assuming 'pc105'. Keyboard may be configured incorrectly.
Sep 19 19:10:11 zira console-setup.sh[631]: setupcon: The keyboard model is 
unknown, assuming 'pc105'. Keyboard may be configured incorrectly.
[...]

-- 
Vincent Lefèvre  - Web: 
100% accessible validated (X)HTML - Blog: 
Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon)



Bug#838310: keyboard-configuration: user configuration lost + error message from setupcon

2016-09-19 Thread Vincent Lefevre
Package: keyboard-configuration
Version: 1.149
Severity: grave
Justification: causes non-serious data loss

Just after the upgrade of keyboard-configuration from 1.148 to 1.149,
I could see that my previous configuration was lost. More precisely,
config.dat changed in the following way:

Index: config.dat
===
--- config.dat  (revision 92179)
+++ config.dat  (revision 92180)
@@ -512,7 +512,7 @@
 
 Name: keyboard-configuration/modelcode
 Template: keyboard-configuration/modelcode
-Value: pc105
+Value: 
 Owners: d-i, keyboard-configuration
 Flags: seen
 
@@ -549,6 +549,9 @@
 Template: keyboard-configuration/unsupported_config_layout
 Value: true
 Owners: d-i, keyboard-configuration
+Variables:
+ XKBLAYOUT = gb
+ XKBVARIANT = 
 
 Name: keyboard-configuration/unsupported_config_options
 Template: keyboard-configuration/unsupported_config_options
@@ -581,7 +584,7 @@
 
 Name: keyboard-configuration/xkb-keymap
 Template: keyboard-configuration/xkb-keymap
-Value: gb
+Value: us
 Owners: d-i, keyboard-configuration
 Flags: seen
 

and /etc/default/keyboard changed in the following way:

Index: etc/default/keyboard
===
--- etc/default/keyboard(revision 92179)
+++ etc/default/keyboard(revision 92180)
@@ -2,7 +2,7 @@
 
 # Consult the keyboard(5) manual page.
 
-XKBMODEL="pc105"
+XKBMODEL=""
 XKBLAYOUT="gb"
 XKBVARIANT=""
 XKBOPTIONS=""

I don't know the possible consequences, though. The
/usr/share/doc/keyboard-configuration/changelog.gz file just says:

console-setup (1.149) unstable; urgency=medium

  [ Updated translations ]
  * Danish (da.po) by Joe Hansen

 -- Christian Perrier   Sun, 18 Sep 2016 17:53:38 +0200

Moreover, I can see in the /var/log/apt/term.log file after an
upgrade of the Linux kernel and the nvidia packages:

[...]
Processing triggers for libc-bin (2.24-3) ...
Processing triggers for glx-alternative-nvidia (0.7.3) ...
Processing triggers for update-glx (0.7.3) ...
Processing triggers for glx-alternative-nvidia (0.7.3) ...
Processing triggers for libc-bin (2.24-3) ...
Processing triggers for initramfs-tools (0.125) ...
update-initramfs: Generating /boot/initrd.img-4.7.0-1-amd64
setupcon: The keyboard model is unknown, assuming 'pc105'. Keyboard may be 
configured incorrectly.
Log ended: 2016-09-19  19:08:59

Note: I have

-rw-r--r-- 1 root root 145 2016-09-19 19:03:19 /etc/default/keyboard

Thus this file was modified when keyboard-configuration was upgraded
(and before this upgrade of the Linux kernel and the nvidia packages).
This error message is just a consequence of this bug.

-- System Information:
Debian Release: stretch/sid
  APT prefers unstable-debug
  APT policy: (500, 'unstable-debug'), (500, 'stable-updates'), (500, 
'unstable'), (500, 'testing'), (500, 'stable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 4.7.0-1-amd64 (SMP w/8 CPU cores)
Locale: LANG=POSIX, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages keyboard-configuration depends on:
ii  debconf 1.5.59
ii  liblocale-gettext-perl  1.07-3

keyboard-configuration recommends no packages.

keyboard-configuration suggests no packages.

Versions of packages console-setup depends on:
ii  console-setup-linux  1.149
ii  debconf  1.5.59
ii  xkb-data 2.17-1

Versions of packages console-setup suggests:
ii  locales   2.24-3
ii  lsb-base  9.20160629

Versions of packages console-setup-linux depends on:
ii  init-system-helpers  1.44
ii  initscripts  2.88dsf-59.8
ii  kbd  2.0.3-2

Versions of packages console-setup-linux suggests:
ii  console-setup  1.149

Versions of packages keyboard-configuration is related to:
pn  console-common
pn  console-data  
pn  console-tools 
pn  gnome-control-center  
ii  kbd   2.0.3-2
ii  systemd   231-6

-- debconf information:
* keyboard-configuration/optionscode:
* keyboard-configuration/altgr: The default for the keyboard layout
  console-setup/fontface47: Fixed
  keyboard-configuration/unsupported_layout: true
  console-setup/framebuffer_only:
* keyboard-configuration/model: Generic 105-key (Intl) PC
  console-setup/fontsize: 8x16
  console-setup/guess_font:
* keyboard-configuration/store_defaults_in_debconf_db: true
  debian-installer/console-setup-udeb/title:
  console-setup/codeset47: # Latin1 and Latin5 - western Europe and Turkic 
languages
  keyboard-configuration/ctrl_alt_bksp: false
  keyboard-configuration/unsupported_config_options: true
  console-setup/use_system_font:
* keyboard-configuration/toggle: No toggling
* keyboard-configuration/layoutcode: gb
  keyboard-configuration/unsupported_options: true
* keyboard-configuration/variantcode:
* keyboard-configuration/variant: English (UK)
* keyboard-configuration/switch: No temporary switch
 

Bug#795164: keyboard-configuration: obsolete comment in /etc/default/keyboard

2015-08-11 Thread Vincent Lefevre
On 2015-08-11 13:50:32 +0200, Samuel Thibault wrote:
> Vincent Lefevre, le Tue 11 Aug 2015 11:53:27 +0200, a écrit :
> > IMHO, the package should have updated the comment automatically
> > in the past
> 
> AIUI, that's not how things usually work in Debian for configuration
> files, especially free-style comments.

Packages generally ask me if I want to replace the configuration
file by the one provided by the package, and I usually do a diff
to see what has changed. So, in such a way, no changes remain
invisible.

-- 
Vincent Lefèvre  - Web: <https://www.vinc17.net/>
100% accessible validated (X)HTML - Blog: <https://www.vinc17.net/blog/>
Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon)


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20150811122031.ga2...@zira.vinc17.org



Bug#795164: keyboard-configuration: obsolete comment in /etc/default/keyboard

2015-08-11 Thread Vincent Lefevre
On 2015-08-11 11:42:17 +0200, Samuel Thibault wrote:
> Vincent Lefevre, le Tue 11 Aug 2015 11:30:03 +0200, a écrit :
> > In the /etc/default/keyboard file:
> > 
> > # If you change any of the following variables and HAL and X are
> > # configured to use this file, then the changes will become visible to
> > # X only if HAL is restarted.  In Debian you need to run
> > # /etc/init.d/hal restart
> > 
> > but /etc/init.d/hal no longer exists.
> 
> This has already long gone (since version 1.56 in 2010).  This is
> probably just a leftover on your system.

IMHO, the package should have updated the comment automatically
in the past (AFAIK, I have never modified this file).

-- 
Vincent Lefèvre  - Web: <https://www.vinc17.net/>
100% accessible validated (X)HTML - Blog: <https://www.vinc17.net/blog/>
Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon)


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20150811095327.ga3...@ypig.lip.ens-lyon.fr



Bug#795164: keyboard-configuration: obsolete comment in /etc/default/keyboard

2015-08-11 Thread Vincent Lefevre
Package: keyboard-configuration
Version: 1.131
Severity: minor

In the /etc/default/keyboard file:

# If you change any of the following variables and HAL and X are
# configured to use this file, then the changes will become visible to
# X only if HAL is restarted.  In Debian you need to run
# /etc/init.d/hal restart

but /etc/init.d/hal no longer exists.

-- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'), (1, 
'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.1.0-1-amd64 (SMP w/8 CPU cores)
Locale: LANG=POSIX, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)

Versions of packages keyboard-configuration depends on:
ii  debconf 1.5.57
ii  initscripts 2.88dsf-59.2
ii  liblocale-gettext-perl  1.05-9

keyboard-configuration recommends no packages.

keyboard-configuration suggests no packages.

Versions of packages console-setup depends on:
ii  console-setup-linux  1.131
ii  debconf  1.5.57
ii  xkb-data 2.14-1

Versions of packages console-setup suggests:
ii  locales   2.19-19
ii  lsb-base  4.1+Debian13+nmu1

Versions of packages console-setup-linux depends on:
ii  kbd  1.15.5-2

Versions of packages console-setup-linux suggests:
ii  console-setup  1.131

Versions of packages keyboard-configuration is related to:
pn  console-common  
pn  console-data
pn  console-tools   
ii  kbd 1.15.5-2

-- debconf information:
* console-setup/codeset47: # Latin1 and Latin5 - western Europe and Turkic 
languages
* keyboard-configuration/variant: English (UK)
  keyboard-configuration/layoutcode: gb
  keyboard-configuration/optionscode:
  keyboard-configuration/store_defaults_in_debconf_db: true
  console-setup/store_defaults_in_debconf_db: true
  debian-installer/console-setup-udeb/title:
  keyboard-configuration/unsupported_config_options: true
* console-setup/charmap47: UTF-8
  keyboard-configuration/switch: No temporary switch
* console-setup/fontsize-fb47: 8x16
  console-setup/guess_font:
  keyboard-configuration/unsupported_layout: true
* keyboard-configuration/compose: No compose key
  console-setup/framebuffer_only:
  keyboard-configuration/layout:
  keyboard-configuration/toggle: No toggling
* keyboard-configuration/model: Generic 105-key (Intl) PC
  keyboard-configuration/variantcode:
  keyboard-configuration/modelcode: pc105
* console-setup/fontsize-text47: 8x16
* keyboard-configuration/ctrl_alt_bksp: false
  console-setup/codesetcode: Lat15
  keyboard-configuration/xkb-keymap: gb
  console-setup/fontsize: 8x16
  console-setup/use_system_font:
  keyboard-configuration/other:
* console-setup/fontface47: Fixed
* keyboard-configuration/altgr: The default for the keyboard layout
  keyboard-configuration/unsupported_options: true
  keyboard-configuration/unsupported_config_layout: true


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20150811093003.ga15...@ypig.lip.ens-lyon.fr



Re: Packages to install be default for Stretch

2015-05-06 Thread Vincent Lefevre
On 2015-05-06 11:21:13 +0200, Marco d'Itri wrote:
> On May 05, Ansgar Burchardt  wrote:
> > - nfacct:
> >   No idea why this is at Priority: important.
> >   -> demote to "optional"
> Even extra... This is a very niche package and I have no idea why it is 
> being installed everywhere!

It seems that some developers don't know what they're doing, or
something is completely broken in the Debian system, because it
is claimed to be set to extra in November 2014, when this bug
was closed:

  https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=758229

This bug should be reopened.

-- 
Vincent Lefèvre  - Web: 
100% accessible validated (X)HTML - Blog: 
Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon)


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20150506140918.gb13...@ypig.lip.ens-lyon.fr



Bug#782228: busybox sh: parameter expansion: string length ${#parameter} is incorrect on multibyte character

2015-04-09 Thread Vincent Lefevre
Control: retitle -1 busybox sh doesn't support multibyte characters in string 
handling

Same problem with:

  busybox sh -c 'case é in ?) echo OK;; esac'

which doesn't print OK in UTF-8 locales.

-- 
Vincent Lefèvre  - Web: 
100% accessible validated (X)HTML - Blog: 
Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon)


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20150409125220.gc16...@ypig.lip.ens-lyon.fr



Bug#782228: busybox sh: parameter expansion: string length ${#parameter} is incorrect on multibyte character

2015-04-09 Thread Vincent Lefevre
Package: busybox
Version: 1:1.22.0-15
Severity: normal

In UTF-8 based locales:

$ busybox sh -c 'a=$(/usr/bin/printf \\u00e9); echo $a ${#a}'
é 2

while POSIX says[*]:

  ${#parameter}
String Length. The length in characters of the value of parameter
shall be substituted.

[*] 
http://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_06_02

This the length in *characters*, not in bytes!

So, the output should be "é 1" like with bash, ksh93 and zsh.

-- System Information:
Debian Release: 8.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'), (1, 
'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.16.0-4-amd64 (SMP w/8 CPU cores)
Locale: LANG=POSIX, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)

Versions of packages busybox depends on:
ii  libc6  2.19-17

busybox recommends no packages.

busybox suggests no packages.

-- no debconf information

-- 
Vincent Lefèvre  - Web: 
100% accessible validated (X)HTML - Blog: 
Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon)


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20150409114924.ga13...@ypig.lip.ens-lyon.fr



Re: libc6: broken LANGUAGE design

2011-07-07 Thread Vincent Lefevre
On 2011-07-07 19:30:38 -0500, Jonathan Nieder wrote:
> > My settings come from the installation. /etc/default/locale was:
> >
> > #  File generated by update-locale
> > #LANG="en_US.UTF-8"
> > LANGUAGE="en_US:en"
> >
> > (I only added a LC_TIME=en_DK since, hoping it would be taken into
> > account for the time displayed by gdm).
> >
> > FYI, I installed the machine on 2010-01-04.
> 
> Now I'm confused again.  That particular LANGUAGE setting is (I hope)
> redundant next to LANG, so it should not have been set, right?  That
> is supposed to have been fixed in localechooser 1.07 (2006-03-26):
> 
>* Only use LANGUAGELIST list of languages when really needed, ie
>  when a language needs and benefits from something else than English.
>  Should avoid reports like #356997.

Could it be due to the following?

   * Prefer official language variants by adding the combination of selected
 language and country to the front on the language list (closes: #560045).
 If a preferred locale was selected, instead add the language and country
 combination from that to the languagelist as it will most likely also
 indicate the preferred language variant.

(on 23 Dec 2009).

-- 
Vincent Lefèvre  - Web: 
100% accessible validated (X)HTML - Blog: 
Work: CR INRIA - computer arithmetic / Arénaire project (LIP, ENS-Lyon)


--
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110708023405.gb12...@prunille.vinc17.org



Bug#620228: keyboard-configuration: Error in "Setting preliminary keymap": mktemp fails (Read-only file system)

2011-03-31 Thread Vincent Lefevre
Package: keyboard-configuration
Version: 1.72
Severity: normal

In the boot messages:

Thu Mar 31 09:46:12 2011: Setting preliminary keymap...mktemp: failed to create 
file via template `/tmp/tmpkbd.XX': Read-only file system
Thu Mar 31 09:46:12 2011: Can not create temporary file
Thu Mar 31 09:46:12 2011: ^[[31mfailed.^[[39;49m

There was no such error when I booted on March 21 (with the
previous Linux kernel 2.6.38-1-amd64 and an older version of
keyboard-configuration).

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'), (1, 
'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.38-2-amd64 (SMP w/8 CPU cores)
Locale: LANG=POSIX, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages keyboard-configuration depends on:
ii  debconf   1.5.38 Debian configuration management sy

keyboard-configuration recommends no packages.

keyboard-configuration suggests no packages.

Versions of packages console-setup depends on:
ii  console-setup-linux   1.72   Linux specific part of console-set
ii  debconf   1.5.38 Debian configuration management sy
ii  xkb-data  1.8-2  X Keyboard Extension (XKB) configu

Versions of packages console-setup suggests:
ii  locales   2.11.2-13  Embedded GNU C Library: National L
ii  lsb-base  3.2-27 Linux Standard Base 3.2 init scrip

Versions of packages console-setup-linux depends on:
ii  kbd   1.15.2-3   Linux console font and keytable ut

Versions of packages console-setup-linux suggests:
ii  console-setup 1.72   console font and keymap setup prog

Versions of packages keyboard-configuration is related to:
pn  console-common (no description available)
pn  console-data   (no description available)
pn  console-tools  (no description available)
ii  kbd   1.15.2-3   Linux console font and keytable ut

-- debconf information:
* console-setup/codeset47: # Latin1 and Latin5 - western Europe and Turkic 
languages
  keyboard-configuration/layout:
  keyboard-configuration/xkb-keymap: gb
* keyboard-configuration/variant: United Kingdom
  debian-installer/console-setup-udeb/title:
  keyboard-configuration/unsupported_options: true
  console-setup/framebuffer_only:
* keyboard-configuration/ctrl_alt_bksp: false
  keyboard-configuration/variantcode:
  console-setup/guess_font:
  console-setup/store_defaults_in_debconf_db: true
  keyboard-configuration/other:
  keyboard-configuration/optionscode:
  console-setup/use_system_font:
  console-setup/fontsize: 8x16
  keyboard-configuration/modelcode: pc105
  keyboard-configuration/unsupported_config_options: true
* console-setup/fontface47: Fixed
  keyboard-configuration/unsupported_config_layout: true
  keyboard-configuration/toggle: No toggling
* console-setup/fontsize-text47: 8x16
* keyboard-configuration/compose: No compose key
  keyboard-configuration/switch: No temporary switch
* console-setup/charmap47: UTF-8
* keyboard-configuration/altgr: The default for the keyboard layout
  console-setup/codesetcode: Lat15
  keyboard-configuration/unsupported_layout: true
* keyboard-configuration/model: Generic 105-key (Intl) PC
  keyboard-configuration/layoutcode: gb
* console-setup/fontsize-fb47: 8x16
  keyboard-configuration/store_defaults_in_debconf_db: true



-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110331081149.ga5...@ypig.lip.ens-lyon.fr



Bug#565391: console-setup: typo in FAQ

2010-01-15 Thread Vincent Lefevre
Package: console-setup
Version: 1.51
Severity: minor

/usr/share/doc/console-setup/FAQ.gz says:

   And sometimes the console setup is never remembered.  In this case
   you will have to use framebuffer (try "modprobe vga16fb").  Another
   uption is to to use the "setupcon" utility whenever you need to
   ^^

I suppose this should be "option".

-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.30-2-amd64 (SMP w/8 CPU cores)
Locale: LANG=POSIX, LC_CTYPE=en_US.ISO8859-1 (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages console-setup depends on:
ii  console-terminus  4.30-2 Fixed-width fonts for fast reading
ii  debconf [debconf-2.0] 1.5.28 Debian configuration management sy
ii  keyboard-configuration1.51   system-wide keyboard preferences
ii  xkb-data  1.7-1  X Keyboard Extension (XKB) configu

Versions of packages console-setup recommends:
ii  kbd   1.15.1-2   Linux console font and keytable ut

Versions of packages console-setup suggests:
ii  locales   2.10.2-5   Embedded GNU C Library: National L
ii  lsb-base  3.2-23 Linux Standard Base 3.2 init scrip

-- debconf information:
  console-setup/codeset47: # Latin1 and Latin5 - western Europe and Turkic 
languages
* console-setup/fontface47: Fixed
* console-setup/fontsize-text47: 16
  console-setup/charmap47: UTF-8
  console-setup/codesetcode: Lat15
  console-setup/fontsize-fb47: 16
  console-setup/use_system_font:
  console-setup/fontsize: 16



-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#563035: console-setup: bottom 2-3 lines are cut off in virtual terminals with Fixed14

2010-01-14 Thread Vincent Lefevre
On 2010-01-14 22:50:13 +0200, Anton Zinoviev wrote:
> 1. Upgrade the X server to the last available.

I need to wait for bug 564203 to be fixed in Debian. For the moment,
here's some information:

> 3. Give some info about the graphics card of this machine

NVIDIA Quadro NVS 160M.

> and the version of xserver-xorg-core (this is in order to know to
> which package to reassign the bug. I suppose the X maintainers will
> require some additional information.)

1.6.5-1

-- 
Vincent Lefèvre  - Web: 
100% accessible validated (X)HTML - Blog: 
Work: CR INRIA - computer arithmetic / Arénaire project (LIP, ENS-Lyon)



--
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#563678: installation-reports: installation fails on HP Z800 (df disagrees with partman)

2010-01-04 Thread Vincent Lefevre
severity 563678 normal
thanks

The problem was solved after a second try of the installation. I'd say
that the installer forgot the new partition sizes after repartitioning
or something like that.

-- 
Vincent Lefèvre  - Web: 
100% accessible validated (X)HTML - Blog: 
Work: CR INRIA - computer arithmetic / Arénaire project (LIP, ENS-Lyon)



--
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#563678: installation-reports: installation fails on HP Z800 (df disagrees with partman)

2010-01-04 Thread Vincent Lefevre
Package: installation-reports
Severity: grave
Justification: renders package unusable

Installation of Debian/unstable failed at "Select and install
software". The first problem is the lack of clear error message.

I could start a shell. The problem is the following: "df" says that
there are 516040 KB only on /dev/sda1. The end of the partman logs
shows that there are almost 500 GB on /dev/sda1 (as expected):

[...]
parted_server: main_loop: iteration 152
parted_server: Opening infifo
/lib/partman/finish.d/70crypto_aptinstall: 
***
/lib/partman/finish.d/70crypto_aptinstall: IN: PARTITIONS =dev=sda
parted_server: Read command: PARTITIONS
parted_server: command_partitions()
parted_server: Opening outfifo
parted_server: OUT: OK


parted_server: OUT: 1   32256-479829934079  479829901824primary ext3
/dev/sda1   


parted_server: OUT: 5   479829966336-500105249279   20275282944 logical 
linux-swap  /dev/sda5   


parted_server: Partitions printed
parted_server: OUT: 


parted_server: Closing infifo and outfifo
parted_server: main_loop: iteration 153
parted_server: Opening infifo
/lib/partman/finish.d/80parted: 
***
/lib/partman/finish.d/80parted: IN: QUIT
parted_server: Read command: QUIT
parted_server: Quitting

-- Package-specific info:

Boot method: CD
Image version: 
http://cdimage.debian.org/cdimage/daily-builds/daily/arch-latest/amd64/jigdo-cd/debian-testing-amd64-netinst.jigdo
 2010-01-03 21:32:42 UTC (build on 2010-01-04 13:44:54 UTC)
Date: 

Machine: HP Z800
Partitions: 


Base System Installation Checklist:
[O] = OK, [E] = Error (please elaborate below), [ ] = didn't try it

Initial boot:   [ ]
Detect network card:[ ]
Configure network:  [ ]
Detect CD:  [ ]
Load installer modules: [ ]
Detect hard drives: [ ]
Partition hard drives:  [ ]
Install base system:[ ]
Clock/timezone setup:   [ ]
User/password setup:[ ]
Install tasks:  [ ]
Install boot loader:[ ]
Overall install:[ ]

Comments/Problems:




-- 

Please make sure that the hardware-summary log file, and any other
installation logs that you think would be useful are attached to this
report. Please compress large files using gzip.

Once you have filled out this report, mail it to sub...@bugs.debian.org.

==
Installer hardware-summary:
==
uname -a: Linux ypig 2.6.30-2-amd64 #1 SMP Fri Sep 25 22:16:56 UTC 2009 x86_64 
GNU/Linux
lspci -knn: 00:00.0 Host bridge [0600]: Intel Corporation 5520 I/O Hub to ESI 
Port [8086:3406] (rev 13)
lspci -knn: Subsystem: Hewlett-Packard Company Device [103c:130b]
lspci -knn: 00:01.0 PCI bridge [0604]: Intel Corporation 5520/5500/X58 I/O Hub 
PCI Express Root Port 1 [8086:3408] (rev 13)
lspci -knn: Kernel driver in use: pcieport-driver
lspci -knn: 00:03.0 PCI bridge [0604]: Intel Corporation 5520/5500/X58 I/O Hub 
PCI Express Root Port 3 [8086:340a] (rev 13)
lspci -knn: Kernel driver in use: pcieport-driver
lspci -knn: 00:07.0 PCI bridge [0604]: Intel Corporation 5520/5500/X58 I/O Hub 
PCI Express Root Port 7 [8086:340e] (rev 13)
lspci -knn: Kernel driver in use: pcieport-driver
lspci -knn: 00:10.0 PIC [0800]: Intel Corporation 5520/5500/X58 Physical and 
Link Layer Registers Port 0 [8086:3425] (rev 13)
lspci -knn: 00:10.1 PIC [0800]: Intel Corporation 5520/5500/X58 Routing and 
Protocol Layer Registers Port 0 [8086:3426] (rev 13)
lspci -knn: 00:11.0 PIC [0800]: Intel Corporation 5520/5500 Physical and Link 
Layer Registers Port 1 [8086:3427] (rev 13)
lspci -knn: 00:11.1 PIC [0800]: Intel Corporation 5520/5500 Routing & Protocol 
Layer Register Port 1 [8086:3428] (rev 13)
lspci -knn: 00:14.0 PIC [0800]: Intel Corporation 5520/5500/X58 I/O Hub System 
Management Registers [8086:342e] (rev 13)
lspci -knn: 00:14.1 PIC [0800]: Intel Corporation 5520/5500/X58 I/O Hub GPIO 
and Scratch Pad Registers [8086:3422] (rev 13)
lspci -knn: 00:14.2 PIC [0800]: Intel Corporation 5520/5500/X58 I/O Hub Control 
Status and RAS Registers [8086:3423] (rev 13)
lspci -knn: 00:15.0 PIC [0800]: Intel Corporation 5520/5500/X58 Trusted 
Execution Technology Registers [8086:342f] (rev 13)
lspci -knn: 00:1a.0 USB Controller [0c03]: Intel Corporation 82801JI (ICH10 
Family) USB UHCI Controller #4 [8086:3a37]
lspci -knn: Subsystem: Hewlett-Packard Company Device [103c:130b]
lspci -knn: Kernel driver in use: uhci_hcd
lspci -knn: 00:1a.1 USB Controller [0c03]: Intel Corporation 82801JI (ICH10 
Family) USB UHCI Controller #5 [8086:3a38]
lspci -knn: Subsystem: Hewlett-Packard Company Device [103c:130b]
lspci -knn: Kernel driver in use: uhci_hcd
lspci -knn: 00:1a.2 USB Controller [0c03]: Intel Corporation 82801JI (ICH10 
Family) USB UHCI Controller #6 [8086:3a39]
lspci -knn: Subsystem: Hewlett-Packard Company Device [103c:130b]
lspci -knn:   

Bug#563035: console-setup: bottom 2-3 lines are cut off in virtual terminals with Fixed14

2009-12-29 Thread Vincent Lefevre
Package: console-setup
Version: 1.50
Severity: normal

When I reconfigure console-setup to choose the Fixed font in size 14
(see debconf information below) and reboot the machine, the bottom
2-3 lines are cut off in virtual terminals.

This is a problem similar to question 1.2 from

  /usr/share/doc/console-setup/FAQ.gz

but I do not change the font size.

Fixed14 looks the same as Fixed16. So, I wonder whether the font size
is really changed.

Note: I use gdm.

-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.31-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=POSIX, LC_CTYPE=en_US.ISO8859-1 (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages console-setup depends on:
ii  console-terminus  4.30-2 Fixed-width fonts for fast reading
ii  debconf [debconf-2.0] 1.5.28 Debian configuration management sy
ii  keyboard-configuration1.50   system-wide keyboard preferences
ii  xkb-data  1.7-1  X Keyboard Extension (XKB) configu

Versions of packages console-setup recommends:
ii  kbd   1.15.1-2   Linux console font and keytable ut

Versions of packages console-setup suggests:
ii  locales   2.10.2-2   GNU C Library: National Language (
ii  lsb-base  3.2-23 Linux Standard Base 3.2 init scrip

-- debconf information:
  console-setup/variant: United Kingdom
* console-setup/codeset47: # Latin1 and Latin5 - western Europe and Turkic 
languages
  console-setup/unsupported_options: true
  console-setup/fontsize-text: 16
  console-setup/compose: No compose key
  debian-installer/console-setup-udeb/title:
  console-setup/other:
  console-setup/ctrl_alt_bksp: false
  console-setup/modelcode: pc105
  console-setup/switch: No temporary switch
  console-setup/unsupported_config_layout: true
  console-setup/use_system_font:
  console-setup/fontsize: 14
  console-setup/unsupported_layout: true
  console-setup/charmap: ISO-8859-1
  console-setup/layoutcode: gb
* console-setup/fontface47: Fixed
* console-setup/fontsize-text47: 14
  console-setup/optionscode: lv3:ralt_switch
  console-setup/unsupported_config_options: true
* console-setup/charmap47: ISO-8859-1
  console-setup/layout: United Kingdom
  console-setup/variantcode:
  console-setup/codesetcode: Lat15
  console-setup/altgr: Right Alt
  console-setup/ttys: /dev/tty[1-6]
  console-setup/model: Generic 105-key (Intl) PC
  console-setup/fontsize-fb: 16
  console-setup/fontsize-fb47: 16
  console-setup/codeset: # Latin1 and Latin5 - western Europe and Turkic 
languages
  console-setup/toggle: No toggling
  console-setup/fontface: Fixed



-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#254727: Straw unicode errors

2004-06-18 Thread Vincent Lefevre
On 2004-06-18 10:17:32 +0100, Ross Burton wrote:
> Could everyone having problems with unicode errors please try Straw
> 0.23-2, from:
> 
>  http://www.burtonini.com/debian/unstable/straw_0.23-2_all.deb
> 
> I hope this will solve the problem, and if so I shall upload asap.

I still have the same problem. You can check on:

  http://standblog.org/dotclear/rss.php

-- 
Vincent Lefèvre <[EMAIL PROTECTED]> - Web: 
100% validated (X)HTML - Acorn / RISC OS / ARM, free software, YP17,
Championnat International des Jeux Mathématiques et Logiques, etc.
Work: CR INRIA - computer arithmetic / SPACES project at LORIA


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]