OK, here we go. This is what I did, which solved most of the problems:
Text Scrolling Problem:
================
I love this one -- such a quick fix and it improves the usability immeasurably
- Open Konsole
- Type \'su\' to become root (no quotes)
- Type \'echo 1 ] /proc/sys/kernel/printk\' (no quotes)
Nice and clean now ... you might have to redraw the screen.
So that you don\'t have to do this every time you reboot, you can add it to the /etc/init.d/rc.local script.
Now that you can actually see what you\'re doing ...
The Can\'t Connect to My Access Point / DHCP Problem
===================================
If you don\'t have WEP enabled:
- Open Konsole
- Type \'su\' to become root (no quotes)
- Type \'ifconfig\' to find out what your wireless card is. Mine was called wlan0, so I\'ll use that (nb, wlan zero, not capital oh)
- Type \'udhcpc -i wlan0\' which should tell you you now have DNS servers.
Try accessing the internet, or just ping
www.yahoo.com to see if you can find it. If this still doesn\'t work try
- Type \'route\' . You\'re looking to see if you have a gateway configured. I didn\'t, so I did the next step to get one
- Type \'route add -net default gw 192.168.0.1 netmask 0.0.0.0 metric 1 wlan0\'
Now ping works and Konqueror does as well. Note that I haven\'t got this to work over a WEP connection, and I had to disable WEP on my Access Point to get this far.
Now having solved this in a touchy feely sort of way, I still have no idea about the underlying causes for this behaviour. If anyone with a more detailed knowledge of the underlying OZ OS, would care to enlighten me, I\'ll stick it all in a report to the OZ crew and hopefully they\'ll be able to fix it in the next iteration.