I don't know of any, but if you run X you should be able to make a
bigger xterm window. Another way is to open an SSH session to your
MINIX from another computer.
With kind regards,
Erik
Yes, assuming VGA BIOS support.
'Man monitor' have the fine words, but the basic idea is to change VGA
mode with 'console=YXXX' at monitor prompt (hit Esc before starting
Minix); after that 'boot' will start Minix.
Before trying, you have to learn how to get back to the monitor prompt:
since if the new mode does not work, you will have to do it blindly,
without screen echo! Wait the needed time for Minix to boot until login,
then log in as root, password, and use halt to be back at monitor
prompt. As I said, you should be able to do that successfully without
looking at the screen!
About the values, 8003 works everywhere and gives you 80x50; A003 works
often and gives you 80x60; 109 (resp. 10b, 10c) are often available
(except low-end, recent, integrated graphics) and give 132x25 (resp.
132x50, 132x60.)
Antoine
> Before trying, you have to learn how to get back to the monitor prompt:
> since if the new mode does not work, you will have to do it blindly,
> without screen echo! Wait the needed time for Minix to boot until login,
> then log in as root, password, and use halt to be back at monitor
> prompt. As I said, you should be able to do that successfully without
> looking at the screen!
CTRL+ALT+DEL also achieves this.
With kind regards,
Erik
--
You received this message because you are subscribed to the Google Groups "minix3" group.
To post to this group, send email to min...@googlegroups.com.
To unsubscribe from this group, send email to minix3+un...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/minix3?hl=en.
Thanks for the info both of you. I added X last night and that essentially gives me what I want. I had tried working over SSH but unfortunately I lose network connectivity due to a known issue with the Lance driver.
--
Wonderful!
That brings up a whole new problem which I have been struggling with for the last couple of days.
I followed the "Tracking Current" wiki however I run into a problem of either incorrect config files (missing a passwd entry for 'service') or missing config files (system.conf <-- I think this was it) in /etc. I compared /usr/src/etc and /etc but didn't find any differences even thought he errors I was getting indicate that there are. Do you have any suggestions?
--
Evgeniy Ivanov
--
[ Just a suggestion, nothing actually tested for real. ]
Besides being on /etc as you see it (i.e. in the root file systems),
system.conf (old drivers.conf) and passwd are also stored in the ramdisk
embedded in the OS image (inside memory, look after file proto in
src/drivers/memory/ramdisk.)
My reading of the Makefile indicates that it should take care of that
and use the newest versions from your src tree, however it is possible
(for example, if you copied the new version of passwd keeping its commit
date) that the new version could be "insufficiently" new with respect to
the ramdisk image and hence fails to trigger a re-building of the
'memory' driver (classical problem of recursive makefiles): as a result
your OS image picked the previous version of passwd, and consequently
Minix will fail to complete loading (user service missing from passwd).
Cure is pretty easy: go to src/drivers/memory, 'make clean', then go
back to tools and make another image (should rebuild ramdisk and
memory), install it and test.
Antoine
They are in the trunk since before xmas ;-)
Cheers, T.
--