Spyke

Replies

Comment on

Good experience with neko remote browser

Perhaps there was an easier lighter-weight way of doing this?

Yeah, SSH tunneling. What I would do (and have done in the past) is something like:

ssh -L 8080:192.168.0.1:80 myserver

That will forward port 8080 on your host to port 80 on 192.168.0.1, so you can access your router's web UI with http://localhost:8080/ in your own web browser.

You can also setup full tunneling with SSH, but that requires messing around with SOCKS and I usually can't be bothered.

Comment on

crash in Ubuntu GNU/Linux

The cool part is, the kernel and most of the user space is still running fine, so there's no restart required (although I would anyway), it's just gnome is having issues.

I've had dodgy hardware cause a kernel panic, which is much more equivalent to a Windows BSOD.