public inbox for linux-msdos@vger.kernel.org
 help / color / mirror / Atom feed
* fonts in console dosemu
@ 2003-06-30  4:21 Ralph Alvy
  2003-06-30 14:25 ` Peter B. Steiger
  2003-07-01  0:44 ` Ralph Alvy
  0 siblings, 2 replies; 7+ messages in thread
From: Ralph Alvy @ 2003-06-30  4:21 UTC (permalink / raw)
  To: linux-msdos

I'm sure this has been asked many times before. I'd like to know how to 
get my fonts in a console session of session to look decent. Right now, 
line draw and fill characters look terrible.



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: fonts in console dosemu
@ 2003-06-30 11:49 Will Styles
  0 siblings, 0 replies; 7+ messages in thread
From: Will Styles @ 2003-06-30 11:49 UTC (permalink / raw)
  To: Ralph Alvy; +Cc: linux-msdos

> I'd like to know how to get my fonts in a console
> session of session to look decent. Right now, 
> line draw and fill characters look terrible.
easiest way is run as root with $_rawkeyboard,
$_console & $_graphics on, i guess.


__________________________________
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: fonts in console dosemu
  2003-06-30 12:27 fonts in console dosemu Anderson Pereira Ataides
@ 2003-06-30 12:16 ` Bart Oldeman
  2003-06-30 14:27   ` mrvoland
  0 siblings, 1 reply; 7+ messages in thread
From: Bart Oldeman @ 2003-06-30 12:16 UTC (permalink / raw)
  To: Ralph Alvy; +Cc: linux-msdos

On Mon, 30 Jun 2003, Anderson Pereira Ataides wrote:

> >> I'd like to know how to get my fonts in a console
> >> session of session to look decent. Right now,
> >> line draw and fill characters look terrible.
> >easiest way is run as root with $_rawkeyboard,
> >$_console & $_graphics on, i guess.
>
> For text-mode you should try $_term_char_set="ibm"

and if that fails, then you should try
setfont default8x16
before starting dosemu.

$_graphics is somewhat tricky (depening on hardware) if you use fbdev
instead of the 80x25 text mode on the console.

Bart


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: fonts in console dosemu
@ 2003-06-30 12:27 Anderson Pereira Ataides
  2003-06-30 12:16 ` Bart Oldeman
  0 siblings, 1 reply; 7+ messages in thread
From: Anderson Pereira Ataides @ 2003-06-30 12:27 UTC (permalink / raw)
  To: linux-msdos

>> I'd like to know how to get my fonts in a console
>> session of session to look decent. Right now, 
>> line draw and fill characters look terrible.
>easiest way is run as root with $_rawkeyboard,
>$_console & $_graphics on, i guess.

For text-mode you should try $_term_char_set="ibm"

[]s
Anderson Pereira Ataides


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: fonts in console dosemu
  2003-06-30  4:21 Ralph Alvy
@ 2003-06-30 14:25 ` Peter B. Steiger
  2003-07-01  0:44 ` Ralph Alvy
  1 sibling, 0 replies; 7+ messages in thread
From: Peter B. Steiger @ 2003-06-30 14:25 UTC (permalink / raw)
  To: linux-msdos

> I'm sure this has been asked many times before. I'd like to know how
> to get my fonts in a console session of session to look decent.
> Right now, line draw and fill characters look terrible.

I know that one!  The "ibm" character set:
$_term_char_set = "ibm"

pbs
--------
Peter B. Steiger
Cheyenne, WY



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: fonts in console dosemu
  2003-06-30 12:16 ` Bart Oldeman
@ 2003-06-30 14:27   ` mrvoland
  0 siblings, 0 replies; 7+ messages in thread
From: mrvoland @ 2003-06-30 14:27 UTC (permalink / raw)
  To: linux-msdos

Bart Oldeman wrote:

> On Mon, 30 Jun 2003, Anderson Pereira Ataides wrote:
> 
>> >> I'd like to know how to get my fonts in a console
>> >> session of session to look decent. Right now,
>> >> line draw and fill characters look terrible.
>> >easiest way is run as root with $_rawkeyboard,
>> >$_console & $_graphics on, i guess.
>>
>> For text-mode you should try $_term_char_set="ibm"
> 
> and if that fails, then you should try
> setfont default8x16
> before starting dosemu.
> 
> $_graphics is somewhat tricky (depening on hardware) if you use fbdev
> instead of the 80x25 text mode on the console.
> 
> Bart
> 
try to set
$_term_char_set = "ibm"
$_external_char_set = "cp437"
$_internal_char_set = "cp437"

$_video = "vga"         # one of: plainvga, vga, ega, mda, mga, cga
$_console = (0)         # use 'console' video
$_graphics = (0)        # use the cards BIOS to set graphics
$_videoportaccess = (0) # allow videoportaccess when 'graphics' enabled
$_vbios_seg = (0xc000)  # set the address of your VBIOS (e.g. 0xe000)
$_vbios_size = (0x10000)# set the size of your BIOS (e.g. 0x8000)
$_vmemsize = (1024)     # size of regen buffer
$_chipset = "plainvga"  # one of: plainvga, trident, et4000, diamond, avance
somehow console video and graphics mess with pseudo graphics
i am from bulgaria and upper options is here:
$_term_char_set = "latin1"
$_external_char_set = "cp855"
$_internal_char_set = "cp855"
this work perfect with pseudo graphics on paradox4.5 and cyrllic font on my 
console
dosemu version is 1.1.4.0, in older versions i dont have succes with 
pseudo-graphics and my language
-- 
no pain no gain


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: fonts in console dosemu
  2003-06-30  4:21 Ralph Alvy
  2003-06-30 14:25 ` Peter B. Steiger
@ 2003-07-01  0:44 ` Ralph Alvy
  1 sibling, 0 replies; 7+ messages in thread
From: Ralph Alvy @ 2003-07-01  0:44 UTC (permalink / raw)
  To: linux-msdos

Ralph Alvy wrote:
> I'm sure this has been asked many times before. I'd like to know how to 
> get my fonts in a console session of session to look decent. Right now, 
> line draw and fill characters look terrible.


Okay, here's the upshot after reading all your replies (many thanks!). 
Only one setting was needed: $_graphics (1). Of course that means I can 
only run that as root (or it has no effect). No other settings talked 
about here helped, other than that one.

I also find that Shift Tab does indeed work, as long as I use rawkeyboard.

Thanks again.



^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2003-07-01  0:44 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-06-30 12:27 fonts in console dosemu Anderson Pereira Ataides
2003-06-30 12:16 ` Bart Oldeman
2003-06-30 14:27   ` mrvoland
  -- strict thread matches above, loose matches on Subject: below --
2003-06-30 11:49 Will Styles
2003-06-30  4:21 Ralph Alvy
2003-06-30 14:25 ` Peter B. Steiger
2003-07-01  0:44 ` Ralph Alvy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox