[Bug 133072] Re: tty console doen't show characters with accent

2015-11-02 Thread Valery Frolov
"in teh ltsp-client install with the content FRAMEBUFFER=y"

or so

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/133072

Title:
  tty console doen't show characters with accent

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/console-setup/+bug/133072/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 133072] Re: tty console doen't show characters with accent

2015-11-02 Thread Valery Frolov
have to add FRAMEBUFFER=y to /etc/default/console-setup, aren't you?
i mean console-setup, but not keymap

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/133072

Title:
  tty console doen't show characters with accent

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/console-setup/+bug/133072/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 133072] Re: tty console doen't show characters with accent

2015-11-02 Thread Oliver Grawert
*will include

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/133072

Title:
  tty console doen't show characters with accent

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/console-setup/+bug/133072/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 133072] Re: tty console doen't show characters with accent

2015-11-02 Thread Oliver Grawert
you want to ship:

/etc/initramfs-tools/conf.d/framebuffer

in teh ltsp-client install with the content FRAMEBUFFER=y ... that will
make sure that update-initramfs withh include the console settings from
the build system (the ltsp chroot in this case, so you need to make sure
keymap and font are configured there before it runs)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/133072

Title:
  tty console doen't show characters with accent

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/console-setup/+bug/133072/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 133072] Re: tty console doen't show characters with accent

2015-11-01 Thread Valery Frolov
My 5 cents.
I guess the problem is in the console-setup package. i was digging in initramfs 
scripts. hope this may help.
Changes below working well for me (15.10, i386).
Look at the "#check" marks for comments (excuse me for my badly broken English 
;-):

1. /usr/share/initramfs-tools/hooks/console_setup
cut here
#! /bin/sh -e

PREREQ="kbd|console_tools"

prereqs () {
echo "$PREREQ"
}

case $1 in
prereqs)
prereqs
exit 0
;;
esac

. /usr/share/initramfs-tools/hook-functions
[ -r /etc/default/keyboard ] || exit 0
[ -r /etc/default/console-setup ] || exit 0
. /etc/default/console-setup # also sources /etc/default/keyboard

# Copy console-setup configuration
mkdir -p "$DESTDIR/etc/default"
cp -p /etc/default/keyboard "$DESTDIR/etc/default"
cp -p /etc/default/console-setup "$DESTDIR/etc/default"

#check: because of naming convention: "8xNN" -> "NN"
FONTSIZE=${FONTSIZE#8x}
# Assume setupcon --save has been run
if [ -f "$FONT" ]; then
FONT="/etc/console-setup/${FONT##*/}"
#check: .gz is a valid suffix
#check# FONT="${FONT%.gz}"
else
FONT="/etc/console-setup/$CODESET-$FONTFACE$FONTSIZE.psf"
#check: font is always gzipped, so it's better to add ".gz" suffix
[ -f "${FONT}.gz" ] && FONT="${FONT}.gz"
fi
if [ -f "$FONT" ]; then
mkdir -p "$DESTDIR${FONT%/*}"
cp -p "$FONT" "$DESTDIR$FONT"
fi
if [ -f "$ACM" ]; then
ACM="/etc/console-setup/${ACM##*/}"
ACM="${ACM%.gz}"
else
ACM="/etc/console-setup/$CHARMAP.acm"
fi
if [ -f "$ACM" ]; then
mkdir -p "$DESTDIR${ACM%/*}"
cp -p "$ACM" "$DESTDIR$ACM"
fi
if [ -f /etc/console-setup/cached.kmap.gz ]; then
mkdir -p "$DESTDIR/etc/console-setup"
cp -p /etc/console-setup/cached.kmap.gz \
"$DESTDIR/etc/console-setup/cached.kmap.gz"
fi

exit 0
cut here

2. /usr/share/initramfs-tools/scripts/init-top/console_setup
cut here
#! /bin/sh
# A crude much-simplified clone of setupcon for use in the initramfs.

#check: no FRAMEBUFFER needed
#check# OPTION=FRAMEBUFFER
#check# PREREQ="framebuffer"

PREREQ=""

prereqs () {
echo "$PREREQ"
}

case $1 in
prereqs)
prereqs
exit 0
;;
esac

[ -r /etc/default/console-setup ] || exit 0
. /etc/default/console-setup

[ "$ACTIVE_CONSOLES" ] || exit 0

if [ "$VERBOSE_OUTPUT" = yes ]; then
verbose=
else
verbose='>/dev/null 2>&1'
fi

for i in 1 2 3 4 5 6; do
[ -c /dev/tty$i ] || mknod /dev/tty$i c 4 $i
done

#check: because of font naming convention: "...8xNN" -> "...NN"
FONTSIZE=${FONTSIZE#8x}
#check: Define font name only once, not every cycle, also it gives proper font 
name for /dev/tty1
if [ "$FONT" ]; then
FONT="/etc/console-setup/${FONT##*/}"
#check: .gz is a valid suffix
#check# FONT="${FONT%.gz}"
else
FONT="/etc/console-setup/$CODESET-$FONTFACE$FONTSIZE.psf"
#check: try to find gzipped font
[ -f "${FONT}.gz" ] && FONT="${FONT}.gz"
fi

for console in $ACTIVE_CONSOLES; do
[ -w $console ] || continue

if [ "$CHARMAP" = UTF-8 ] || [ -z "$ACM$CHARMAP" ]; then
printf '\033%%G' >$console
else
printf '\033%%@' >$console
fi

if [ -f "$FONT" ]; then
if type consolechars >/dev/null 2>&1; then
eval consolechars -v --tty=$console -f "$FONT" $verbose
elif type setfont >/dev/null 2>&1; then
eval setfont -v -C $console "$FONT" $verbose
fi
fi

if [ "$ACM" ]; then
ACM="/etc/console-setup/${ACM##*/}"
ACM="${ACM%.gz}"
else
ACM="/etc/console-setup/$CHARMAP.acm"
fi
if [ -f "$ACM" ]; then
if type consolechars >/dev/null 2>&1; then
eval consolechars -v --tty=$console --acm "$ACM" \
$verbose
elif type setfont >/dev/null 2>&1; then
eval setfont -v -C "$console" -m "$ACM" $verbose
fi
fi

if type kbd_mode >/dev/null 2>&1; then
if [ "$CHARMAP" = UTF-8 ] || [ -z "$ACM" ]; then
kbd_mode -u <$console
else
kbd_mode -a <$console
fi
fi
done

if [ -f /etc/console-setup/cached.kmap.gz ] && type loadkeys >/dev/null; then
eval loadkeys /etc/console-setup/cached.kmap.gz $verbose
fi

exit 0
cut here

3. /usr/share/initramfs-tools/scripts/init-top/keymap
cut here
#!/bin/sh

#check: 
#check# OPTION=FRAMEBUFFER
PREREQ=""
prereqs()
{
echo 

[Bug 133072] Re: tty console doen't show characters with accent

2015-11-01 Thread Valery Frolov
Sorry. Mistake in previous post:

2. /usr/share/initramfs-tools/scripts/init-top/console_setup
cut here
#! /bin/sh
# A crude much-simplified clone of setupcon for use in the initramfs.

#check: no FRAMEBUFFER needed
#check# OPTION=FRAMEBUFFER
#check# PREREQ="framebuffer"  <<-- 

doesn't work with PREREQ=""

leave
PREREQ=framebuffer

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/133072

Title:
  tty console doen't show characters with accent

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/console-setup/+bug/133072/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 133072] Re: tty console doen't show characters with accent

2015-08-12 Thread Alkis Georgopoulos
The problem still exists in 15.10 daily build.

** Changed in: console-setup (Ubuntu)
   Status: Fix Released = Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/133072

Title:
  tty console doen't show characters with accent

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/console-setup/+bug/133072/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 133072] Re: tty console doen't show characters with accent

2011-09-03 Thread Rafael Belmonte
** Changed in: console-setup (Ubuntu)
   Status: Confirmed = Fix Released

** Changed in: kbd (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/133072

Title:
  tty console doen't show characters with accent

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/console-setup/+bug/133072/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 133072] Re: tty console doen't show characters with accent

2011-06-22 Thread Alkis Georgopoulos
Adding a small delay (in my case 2 secs) in a setfont wrapper script
makes the problem go away for KMS clients too.

Also, in /lib/udev/console-setup-tty and in /lib/udev/rules.d/85
-console-setup some comments indicate that there are known race
conditions, maybe this bug is caused by them.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/133072

Title:
  tty console doen't show characters with accent

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/console-setup/+bug/133072/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 133072] Re: tty console doen't show characters with accent

2011-06-20 Thread Alkis Georgopoulos
Current situation in Natty:

1) Booting normally in X and switching to vt1:
Font and charmap is not applied.

2) Booting in X *without splash* and switching to vt1:
Font is applied (e.g. Terminus), but not charmap, so I still can't see e.g. 
Greek.

3) Booting in recovery mode (vmlinuz single):
Everything works fine.


I tried troubleshooting it a bit, by putting a wrapper script around 
/bin/setfont. I saw that setfont -C /dev/ttyX 
/etc/console-setup/Uni2-Terminus16.psf is actually called for tty[1-6] on 
boot, and also *twice* for each tty, but something prevents them from actually 
taking effect.

Of course running that command after boot correctly sets the
font/charmap.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/133072

Title:
  tty console doen't show characters with accent

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/console-setup/+bug/133072/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 133072] Re: tty console doen't show characters with accent

2011-06-20 Thread Alkis Georgopoulos
Update.

In a VirtualBox Natty installation (=no KMS), I'm able to 100% make the
problem disappear, by doing both the following:

1) Disabling grub graphics mode:
Uncomment GRUB_TERMINAL=console in /etc/default/grub and run `sudo 
update-grub`.

2) Removing vt.handoff=7 from the kernel command line:
Either manually, by pressing e (edit) at the grub menu, or by removing it 
from /etc/grub.d/10_linux, and running `sudo update-grub`.

I'll try with a KMS Natty client next, not sure if that will make any
difference.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/133072

Title:
  tty console doen't show characters with accent

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/console-setup/+bug/133072/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 133072] Re: tty console doen't show characters with accent

2011-06-20 Thread Alkis Georgopoulos
No, disabling grub graphics mode and vt.handoff didn't solve the problem on a 
Natty laptop with KMS.
I had to also add nomodeset to make it work, so something else is needed for 
KMS clients.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/133072

Title:
  tty console doen't show characters with accent

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/console-setup/+bug/133072/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 133072] Re: tty console doen't show characters with accent

2011-06-20 Thread Alkis Georgopoulos
** Also affects: kbd (Ubuntu)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/133072

Title:
  tty console doen't show characters with accent

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/console-setup/+bug/133072/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 133072] Re: tty console doen't show characters with accent

2011-06-20 Thread Alkis Georgopoulos
I believe the problem is in setfont, so I'm adding kdb to the affected
projects.

setfont should at least indicate an error if it's unable to load the
font because of grub graphics mode/plymouth/KMS/whatever, right?

It now happily says
Loading 512-char 8x16 font from file /etc/console-setup/Uni2-TerminusBold16.psf
Loading Unicode mapping table...
when I turn on its verbose mode in my /bin/setfont wrapper, but of course that 
font is never loaded unless I disable the grub graphics mode, vt.handoff=7, and 
KMS with nomodeset.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/133072

Title:
  tty console doen't show characters with accent

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/console-setup/+bug/133072/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 133072] Re: tty console doen't show characters with accent

2011-02-15 Thread Brian Murray
** Tags added: regression-release
** Tags removed: regression-potential

** Changed in: console-setup (Ubuntu)
   Importance: Undecided = Medium

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/133072

Title:
  tty console doen't show characters with accent

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 133072] Re: tty console doen't show characters with accent

2010-10-31 Thread R33D3M33R
This is still an issue with Maverick Meerkat, slovenian locale.

LANG=sl_SI.UTF-8
LANGUAGE=
LC_CTYPE=sl_SI.UTF-8
LC_NUMERIC=sl_SI.UTF-8
LC_TIME=sl_SI.UTF-8
LC_COLLATE=sl_SI.UTF-8
LC_MONETARY=sl_SI.UTF-8
LC_MESSAGES=sl_SI.UTF-8
LC_PAPER=sl_SI.UTF-8
LC_NAME=sl_SI.UTF-8
LC_ADDRESS=sl_SI.UTF-8
LC_TELEPHONE=sl_SI.UTF-8
LC_MEASUREMENT=sl_SI.UTF-8
LC_IDENTIFICATION=sl_SI.UTF-8
LC_ALL=

čšž show up as white filled squares.

** Tags added: regression-potential

-- 
tty console doen't show characters with accent
https://bugs.launchpad.net/bugs/133072
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 133072] Re: tty console doen't show characters with accent

2010-01-20 Thread Henning Moll
I also can't reproduce this anymore in karmic.

-- 
tty console doen't show characters with accent
https://bugs.launchpad.net/bugs/133072
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 133072] Re: tty console doen't show characters with accent

2009-08-08 Thread EagleScreen
This is recently fixed for me in some karmic update, unfortunately, i
don't know what package update fixed the problem.

-- 
tty console doen't show characters with accent
https://bugs.launchpad.net/bugs/133072
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 133072] Re: tty console doen't show characters with accent

2009-08-05 Thread EagleScreen
I have a similar issue on karmic, tty seems to be set in English keyboard, 
while my system was installed and configured for Spanish. After running $sudo 
setupcon, tty is fixed and start to use Spanish keyboard.
But it is the same problem, you need to run setupcon for each time you login on 
tty.

-- 
tty console doen't show characters with accent
https://bugs.launchpad.net/bugs/133072
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 133072] Re: tty console doen't show characters with accent

2009-04-12 Thread David Henningsson
Swedish language, Ubuntu 9.04. ÅÄÖåä works but not ö. If I do setupcon
the ös show up but they are in white color (all other text is light
gray).

-- 
tty console doen't show characters with accent
https://bugs.launchpad.net/bugs/133072
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 133072] Re: tty console doen't show characters with accent

2009-03-12 Thread EagleScreen
I can confirm this bug also in Ubuntu 9.04 in two complete different computers 
(all I have for testing), one is amd64 and the other one is i386.
'sudo setupcon' fixes the problem, but it is necessary to run it each time you 
log in to a tty.
Both computers have Spanish configuration.

-- 
tty console doen't show characters with accent
https://bugs.launchpad.net/bugs/133072
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 133072] Re: tty console doen't show characters with accent

2009-02-03 Thread EagleScreen
Hi, this is still an issue in 8.10, but as C. Watson said, sudo setupcon
fixes the problem, the unique problem is that I need to run sudo
setupcon each time I boot Ubuntu.

-- 
tty console doen't show characters with accent
https://bugs.launchpad.net/bugs/133072
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 133072] Re: tty console doen't show characters with accent

2008-10-03 Thread NeverMind
Are you try ?

sudo dpkg-reconfigure console-setup

-- 
tty console doen't show characters with accent
https://bugs.launchpad.net/bugs/133072
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 133072] Re: tty console doen't show characters with accent

2008-08-25 Thread cubells
Are you sure?

There is no bug in my Ubuntu Intrepid Ibex (Gnome)...

-- 
tty console doen't show characters with accent
https://bugs.launchpad.net/bugs/133072
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 133072] Re: tty console doen't show characters with accent

2008-08-25 Thread EagleScreen
Yes sure, I am suffering it now in Kubuntu Intrepid ibex. In addiction i
think this is also reproducible in Hardy heron, i will confirm this.

-- 
tty console doen't show characters with accent
https://bugs.launchpad.net/bugs/133072
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 133072] Re: tty console doen't show characters with accent

2008-08-25 Thread cubells
In addiction i think this is also reproducible in Hardy heron, i will
confirm this.

Yes, this is not what I was saying: I can't write especial characters in
my tty console in my Ubuntu Hardy, but bI have no problem in my Ubuntu
Intrepid/b (gnome).

So we have to guess if it is a kde problem or it is a problem of your
system, we haven't?

I have activated proposed and backported repositories. Have you?

-- 
tty console doen't show characters with accent
https://bugs.launchpad.net/bugs/133072
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 133072] Re: tty console doen't show characters with accent

2008-08-23 Thread EagleScreen
This bug is present in Kubuntu Intrepid ibex.
tty console cannot display characters as vocals with accent: í, ú,..;  'ñ', or 
euro '€' symbol.
This is already an old bug in Ubuntu releases. Why is it not fixed yet?

-- 
tty console doen't show characters with accent
https://bugs.launchpad.net/bugs/133072
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 133072] Re: tty console doen't show characters with accent

2008-03-26 Thread Henning Moll
** Changed in: console-setup (Ubuntu)
   Status: Incomplete = Confirmed

-- 
tty console doen't show characters with accent
https://bugs.launchpad.net/bugs/133072
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 133072] Re: tty console doen't show characters with accent

2008-03-24 Thread Daniel Ugra
Confirming in Kubuntu Hardy Beta (console-setup 1.21ubuntu4).

The problem seems threefold:

1) After clean install console character set is Uni1. It should be Lat2 for 
hu_HU.
When hacking around in mc on console (eg. change some X setting) it is very 
annoying that there is no bright attribute (Uni1 has 512 chars).
This can be solved with dpkg-reconfigure console-setup and selecting Lat2 as 
console character set.

2) With Uni1 character set some accented chars appear brighter. Maybe those 
with character code = 256 (bright attribute set).
Maybe this is a feature, not a bug?

3) With Uni1 switching from console to X then back makes characters described 
in 2) appear as garbage.
Executing setupcon solves the problem.

-- 
tty console doen't show characters with accent
https://bugs.launchpad.net/bugs/133072
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 133072] Re: tty console doen't show characters with accent

2008-01-06 Thread Henning Moll
Another solution is to enable the framebuffer. Then it works with
'Combined - Latin; Slavic Cyrillic; Hebrew; basic Arabic' (Uni1) out of
the box.

-- 
tty console doen't show characters with accent
https://bugs.launchpad.net/bugs/133072
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 133072] Re: tty console doen't show characters with accent

2008-01-03 Thread Henning Moll
Some news: I noticed that i only have to use an additional sudo
setupcon if i choose a specific codeset within dpkg-reconfigure
console-setup:

If i choose 'Combined - Latin; Slavic Cyrillic; Hebrew; basic Arabic'
and restart the system, the german umlauts are not properly shown in a
tty. After doing a 'sudo setupcon' they do work. (On my system some of
the umlauts are still grey colored and not white as all of the other
characters... But i can't reproduce this color issue in a vmware...)

If i choose 'Latin1 and Latin5' and restart the system, everything works
perfectly. No additional 'sudo setupcon' needed (no color issue...).

hth

-- 
tty console doen't show characters with accent
https://bugs.launchpad.net/bugs/133072
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 133072] Re: tty console doen't show characters with accent

2007-11-14 Thread Henning Moll
Just want to report that it is possible to reproduce this bug in a
virtual vmware machine:

default install of gutsy (select german language).
tty's are not able to view some 'umlauts': 'ö' and 'ü' are not properly viewed, 
but 'ä'. Also the euro sign is bad.

Character encoding is utf8 and  is working. The bad characters can be
typed in a file, which shows correctly under X ('file' says 'UTF-8
Unicode text').

after running 'setupcon' (no sudo needed) everything works fine...

-- 
tty console doen't show characters with accent
https://bugs.launchpad.net/bugs/133072
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 133072] Re: tty console doen't show characters with accent

2007-10-29 Thread Rodolfo Valeiras
Hello. 'sudo /etc/init.d/console-setup restart' or 'sudo setupcon' fix
it (temporarily), but some special characters (ñ, á,...) are
highlighted (white instead gray, cyan, instead blue, etc.).  Some
solution for this? Thanks!

-- 
tty console doen't show characters with accent
https://bugs.launchpad.net/bugs/133072
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 133072] Re: tty console doen't show characters with accent

2007-09-12 Thread Y Desmouceaux
I have the same problem (but with fr_FR.UTF-8), and 'sudo /etc/init.d
/console-setup restart' or 'sudo setupcon' fix it.

-- 
tty console doen't show characters with accent
https://bugs.launchpad.net/bugs/133072
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 133072] Re: tty console doen't show characters with accent

2007-08-18 Thread Colin Watson
Does running 'sudo setupcon' at the console fix it? (That would be
depressing; I thought I'd nailed this bug a while ago.)

** Changed in: console-setup (Ubuntu)
 Assignee: (unassigned) = Colin Watson
   Status: New = Incomplete

-- 
tty console doen't show characters with accent
https://bugs.launchpad.net/bugs/133072
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 133072] Re: tty console doen't show characters with accent

2007-08-16 Thread Brian Murray
** Changed in: console-setup (Ubuntu)
Sourcepackagename: None = console-setup

-- 
tty console doen't show characters with accent
https://bugs.launchpad.net/bugs/133072
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs