SuSE Linux 6.3 Boot Message

How to display this file correctly? Disk is mounted with codepage=850,iocharset=iso8859-2 which works for alphanumeric, but fails for graphic characters.

erlangen:~ # file /mnt/MESSAGE 
/mnt/MESSAGE: data
erlangen:~ # 

erlangen:~ # enca /mnt/MESSAGE 
enca: Language `de' is unknown or not supported.
Run `enca --list languages' to get list of supported languages.
Run `enca -L none' to test only language independent, multibyte encodings.
erlangen:~ # enca -L none /mnt/MESSAGE 
Unrecognized encoding
erlangen:~ # 

19┌─────────────────────────────────────────────────────────────────────────────10┐
19│10┌───────────────────────────────────────────────────────────────────────────19┐10│
19│10│                         1f>>>  SuSE Linux 6.3  <<<                          19│10│
19│10└19───────────────────────────────────────────────────────────────────────────┘10│
19├10──────7f┌──────────────────────────70┐10─────────7f┌──────────────────────────70┐10──────┤
19│      7f│70┌────────────────────────7f┐70│00  10       7f│70┌────────────────────────7f┐70│00  10    │
19│      7f│70│       SuSE, Inc.       7f│70│00  10       7f│70│       SuSE GmbH        7f│70│00  10    │
19│      7f│70│  580 2nd Street, #210  7f│70│00  10       7f│70│  Schanzäckerstraße 10  7f│70│00  10    │
19│      7f│70│   Oakland, CA 94607    7f│70│00  10       7f│70│    D-90443 Nürnberg    7f│70│00  10    │
19│      7f│70│  Tel: +1-510-628-3380  7f│70│00  10       7f│70│  Tel: +49-911-7405331  7f│70│00  10    │
19│      7f│70│  FAX: +1-510-628-3381  7f│70│00  10       7f│70│  FAX: +49-911-7417755  7f│70│00  10    │
19│      7f│70└7f────────────────────────┘70│00  10       7f│70└7f────────────────────────┘70│00  10    │
19│      7f├──────────────────────────70┤00  10       7f├──────────────────────────70┤00  10    │
19│      7f│┌────────────────────────70┐│00  10       7f│┌────────────────────────70┐│00  10    │
19│      7f││  70http://www.suse.com   ││00  10       7f││   70http://www.suse.de   ││00  10    │
19│      7f│└70────────────────────────┘│00  10       7f│└70────────────────────────┘│00  10    │
19│      7f└70───────────3b┌──────────────────────────────────────30┐70────────────┘00  10    │
19│        00          3b│┌────────────────────────────────────30┐│00               10    │
19│                  3b││        30Have a lot of fun...        ││00  10                 │
19│                  3b│└30────────────────────────────────────┘│00  10                 │
19│                  3b└30──────────────────────────────────────┘00  10                 │
19│                    00                                        10                 │
19└10─────────────────────────────────────────────────────────────────────────────10┘07

Finally found out the file contains numerous ASCII SI followed by 2 digits. Removed these:

karl@erlangen:~> cat MESSAGE

┌─────────────────────────────────────────────────────────────────────────────┐
│┌───────────────────────────────────────────────────────────────────────────┐│
││                         >>>  SuSE Linux 6.3  <<<                          ││
│└───────────────────────────────────────────────────────────────────────────┘│
├──────┌──────────────────────────┐─────────┌──────────────────────────┐──────┤
│      │┌────────────────────────┐│         │┌────────────────────────┐│      │
│      ││       SuSE, Inc.       ││         ││       SuSE GmbH        ││      │
│      ││  580 2nd Street, #210  ││         ││  Schanzäckerstraße 10  ││      │
│      ││   Oakland, CA 94607    ││         ││    D-90443 Nürnberg    ││      │
│      ││  Tel: +1-510-628-3380  ││         ││  Tel: +49-911-7405331  ││      │
│      ││  FAX: +1-510-628-3381  ││         ││  FAX: +49-911-7417755  ││      │
│      │└────────────────────────┘│         │└────────────────────────┘│      │
│      ├──────────────────────────┤         ├──────────────────────────┤      │
│      │┌────────────────────────┐│         │┌────────────────────────┐│      │
│      ││  http://www.suse.com   ││         ││   http://www.suse.de   ││      │
│      │└────────────────────────┘│         │└────────────────────────┘│      │
│      └───────────┌──────────────────────────────────────┐────────────┘      │
│                  │┌────────────────────────────────────┐│                   │
│                  ││        Have a lot of fun...        ││                   │
│                  │└────────────────────────────────────┘│                   │
│                  └──────────────────────────────────────┘                   │
│                                                                             │
└─────────────────────────────────────────────────────────────────────────────┘
karl@erlangen:~> 

Converted with: iconv -f cp850 -t UTF-8

karl@erlangen:~> file MESSAGE
MESSAGE: UTF-8 Unicode text, with CRLF line terminators
karl@erlangen:~>

:slight_smile:

I would have gone for ASCII escape sequences, not for SI. But nice you detected it.

Good old ASCII art and consorts. :kiss:

I never bothered in the old days, but now I needed to find out:): Shift Out and Shift In characters
Guessing does not work. With “bless” being botched on current Tumbleweed I finally installed hex. There is comprehensive information: https://www.tldp.org/HOWTO/Text-Terminal-HOWTO.html