So many questions - a few answers:
> how to make the "internet port" equal to the 4 lan ports?
assuming v2 hw or later:
unset vlan1 nvram variables
add "0" to vlan0ports nvram variable
set vlan0_gateway and vlan0_dns if needed
> Is there a decent intuitive text editor in openwrt? (NOT vid)
Because of openwrt I've finally learned to live with vi. Basics to get by:
- be aware of command vs edit mode
- cursor keys work
- 'x' to delete char under cursor (while in command mode)
- 'i' to enter edit mode and insert to LEFT of cursor
- 'a' to enter edit mode insert to RIGHT of cursor
- 'esc' to return to command mode
- ':wq<return>' to save and exit
- ':q!<return>' to discard and exit
that's all you need. I've been so exasperated with vi at times that I've considered porting my own editor to openwrt. It's only 10k but even it is based on vi style (old 'see' editor) but isn't nearly as insane as vi. I wonder if jed wouldn't work straight off, although it can be frustrating also?
to think that I used to edit all day long with line editors on the mf that make vi look like cat's meow :-) seriously, these editors are much more efficient when you use them day in and day out - they're only a disaster for light use.
Oh, and forget about the backspace key, linux doesn't know about ^h^h^h it, just left arrow and delete (x). but you probably already know this. It's a leftover from teletype days (rubout) I assume.
- DL
(Last edited by dl on 18 Sep 2005, 09:50)