LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 11-04-2018, 02:29 PM   #1
BW-userx
LQ Guru
 
Registered: Sep 2013
Location: Somewhere in my head.
Distribution: Slackware (15 current), Slack15, Ubuntu studio, MX Linux, FreeBSD 13.1, WIn10
Posts: 10,342

Rep: Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242
what font set do you think would fix this issue?


this in in Eterm slack current full install,
Code:
userx@slackOlatern:/media/data1/qbittorrent.completed$ lsblk
NAME    MAJ:MIN RM   SIZE RO TYPE MOUNTPOINT
sda       8:0    0 232.9G  0 disk 
├─sda1    8:1    0   549M  0 part 
├─sda2    8:2    0  97.1G  0 part 
├─sda3    8:3    0  17.6G  0 part 
├─sda4    8:4    0     1K  0 part 
├─sda5    8:5    0  30.8G  0 part /
└─sda6    8:6    0  30.4G  0 part 
sdb       8:16   0   1.8T  0 disk 
├─sdb1    8:17   0  68.4G  0 part /home
├─sdb2    8:18   0  29.3G  0 part 
├─sdb3    8:19   0  29.3G  0 part 
├─sdb4    8:20   0     1K  0 part 
├─sdb5    8:21   0  29.3G  0 part 
├─sdb6    8:22   0   1.5T  0 part /media/data1
└─sdb7    8:23   0 215.1G  0 part /media/ntfs1
sdc       8:32   0   2.7T  0 disk 
└─sdc1    8:33   0   2.7T  0 part /run/media/userx/3TB-External
sdd       8:48   1  14.6G  0 disk 
├─sdd1    8:49   1     2G  0 part /run/media/userx/MJR17112
└─sdd2    8:50   1     4M  0 part
I do not get this issue with xterm, so maybe it goes deeper than missing font, I do not know, but I got a start somewhere.
 
Old 11-04-2018, 05:32 PM   #2
allend
LQ 5k Club
 
Registered: Oct 2003
Location: Melbourne
Distribution: Slackware64-15.0
Posts: 6,374

Rep: Reputation: 2754Reputation: 2754Reputation: 2754Reputation: 2754Reputation: 2754Reputation: 2754Reputation: 2754Reputation: 2754Reputation: 2754Reputation: 2754Reputation: 2754
It looks like eterm does not support UTF-8 unicode. I used to see similar problems in rxvt, before it was replaced with urxvt.
You could try setting a non-UTF-8 locale in /etc/profile.d/lang.sh to check.
 
1 members found this post helpful.
Old 11-04-2018, 06:12 PM   #3
BW-userx
LQ Guru
 
Registered: Sep 2013
Location: Somewhere in my head.
Distribution: Slackware (15 current), Slack15, Ubuntu studio, MX Linux, FreeBSD 13.1, WIn10
Posts: 10,342

Original Poster
Rep: Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242
Quote:
Originally Posted by allend View Post
It looks like eterm does not support UTF-8 unicode. I used to see similar problems in rxvt, before it was replaced with urxvt.
You could try setting a non-UTF-8 locale in /etc/profile.d/lang.sh to check.
thanks for the lead, found this
https://bugs.debian.org/cgi-bin/bugr...cgi?bug=184801
so I changed it,

Code:
# UTF-8 locales will include "UTF-8" in the output.
#export LANG=en_US.UTF-8
export LANG=en_US

that worked,
Code:
userx@slackOlatern:~$ lsblk
NAME    MAJ:MIN RM   SIZE RO TYPE MOUNTPOINT
sda       8:0    0 232.9G  0 disk 
|-sda1    8:1    0   549M  0 part 
|-sda2    8:2    0  97.1G  0 part 
|-sda3    8:3    0  17.6G  0 part 
|-sda4    8:4    0     1K  0 part 
|-sda5    8:5    0  30.8G  0 part /
|-sda6    8:6    0  30.4G  0 part 
`-sda7    8:7    0    28G  0 part 
sdb       8:16   0   1.8T  0 disk 
|-sdb1    8:17   0  68.4G  0 part /home
|-sdb2    8:18   0  29.3G  0 part 
|-sdb3    8:19   0  29.3G  0 part 
|-sdb4    8:20   0     1K  0 part 
|-sdb5    8:21   0  29.3G  0 part 
|-sdb6    8:22   0   1.5T  0 part /media/data1
`-sdb7    8:23   0 215.1G  0 part /media/ntfs1
sdc       8:32   0   2.7T  0 disk 
`-sdc1    8:33   0   2.7T  0 part /run/media/userx/3TB-External
mmcblk0 179:0    0  14.5G  0 disk /run/media/userx/16SDCard
But will that interrupt anything else within Slack?

Last edited by BW-userx; 11-04-2018 at 06:13 PM.
 
Old 11-04-2018, 07:20 PM   #4
allend
LQ 5k Club
 
Registered: Oct 2003
Location: Melbourne
Distribution: Slackware64-15.0
Posts: 6,374

Rep: Reputation: 2754Reputation: 2754Reputation: 2754Reputation: 2754Reputation: 2754Reputation: 2754Reputation: 2754Reputation: 2754Reputation: 2754Reputation: 2754Reputation: 2754
For an english language user, there is likely to be little disruption. Unicode is the new standard, so you may come across cases where unicode is expected to be handled. e.g. text documents written with a unicode editor, special characters in filenames.
 
Old 11-04-2018, 07:36 PM   #5
BW-userx
LQ Guru
 
Registered: Sep 2013
Location: Somewhere in my head.
Distribution: Slackware (15 current), Slack15, Ubuntu studio, MX Linux, FreeBSD 13.1, WIn10
Posts: 10,342

Original Poster
Rep: Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242
Quote:
Originally Posted by allend View Post
For an english language user, there is likely to be little disruption. Unicode is the new standard, so you may come across cases where unicode is expected to be handled. e.g. text documents written with a unicode editor, special characters in filenames.
yeaaahhhhh I thought so, I vaguly remember having slight issues with some text files long ago and setting it to UTF-8, I think, I guess I'll just have to wait and see what happens. Though, wouldn't assigning a font type to Eterms command line options preclude that issue Eterm -F *-*-fixed-*-*-* something like that?

I'll give that a try and see what's what.

Last edited by BW-userx; 11-04-2018 at 07:43 PM.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
how to fix awesome font symbols in kde konsole arun_ Linux - Software 0 06-26-2017 07:48 PM
[SOLVED] How to set font and font size for console in debian8? luofeiyu Linux - Newbie 3 03-06-2016 09:15 AM
[SOLVED] how to fix font size for a shrunken webpage? please read on . . . freethemushrooms Linux - Newbie 3 01-24-2015 04:40 PM
Set console locale, font, and font size? penyuan Debian 3 12-09-2011 07:54 PM
console font garbed easy fix? rcorkum Slackware 3 12-03-2006 08:41 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 03:57 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration