For the backspace problem, in a console, try using the command:
stty erase ^?
... and then run vi/vim.
If that solves the problem, you can add the following line to one of your rc files (.profile, .bash_profile, .bashrc, etc):
stty erase "^?"
... note the quotes this time, they are required.
As for the status bar problem, I don't know... I use a (Japanese) build of vim under Cacko Qt, and don't have a problem. To turn off line wrapping, you can try the following command in vi:
:set nowrap
... I don't know if it will affect the status bar though.
You could also try turning the status bar off (so that it only shows up when needed), using:
:set laststatus = 0
If you want, you can add either of the above two commands to your ~/.vimrc file.
- ashikase
anpachi, gifu, japan