>> How can I increase the size of console
The usual answer is to use X11 or remote connection using ssh or telnet
pikpik wrote:
> While I haven't done this, there seems to be a way using the "console"
> boot parameter:
It will not work: "console=" was dealt as part of the old booting
process (in bootimage.c, calling set_mode() which effectively set up the
video mode using VGA BIOS, just before bootstrapping MINIX.)
Furthermore, this required adequate support for "enhanced text modes"
from the VGA BIOS, and it seems this is not high priority for the VM
makers (since almost all the guests are using graphic modes, or frame
buffers which is basically bypassing the VGA BIOS.) For example, while I
was able to switch to 50-line mode (using console=8003), I did not use
it since the characters were distorted and not readily legible.
> There may be other ways, however, again, I haven't tried them:
The basic point here is the lack of any driver support to change the
graphic device settings. Of course this can be done (and I guess XFree86
does exactly that), but it was never put into MINIX since the
above-mentioned "console=" fitted the need so far.
Also, assuming enough pressure, it should not be difficult to bring back
the console= feature into the NetBSD-based boot loader.
>> and change the console font in Minix3.
>
> The "loadfont" manual page, accessed via "man loadfont," looks most
> relevant.
Also, keep in mind that only fixed-width (not Indian) single-byte (not
CVJK, nor variable-length like UTF-8) character sets can be handled.
>> Is there a way to enable console colors ini Minix for syntax
>> highlighting?
As far as I know it is enabled by default (with TERM=minix), for both
termcap and terminfo based programs.
Of course it requires programs to make use of colours ;-)
(i.e. normal vi does not highlight syntax at all, while vim does.)
Antoine