Install graphical interface on Debian/Ubuntu

I need to install a GUI on an Ubuntu Server instance and another Debian base server (no GUI ofcourse).

I just need the minimum, a gnome-terminal or similar and a browser. Don’t want to install the whole gnome package.

apt-get install ubuntu-desktop is not a valid solution as it change the kernel to generic.

Thanks!!

PD: Any x-Forwarding manual to do this??. I’m using a Windows client 🙁

Answer

You’re going about this the wrong way. All you really need to do is to be able to proxy web traffic through the box so you can gain access to the config pages of your APs.

SSH tunneling is perfect for this.

From your workstation:

$ ssh user@host.example.com -D8888

This will set up a SOCKS-compatible web proxy. Then configure your workstation’s browser to use localhost:8888 as a SOCKS proxy. After doing this, all web traffic will be tunneled through the host.example.com and you should be able to access your APs.

Attribution
Source : Link , Question Author : gcaracuel , Answer Author : EEAA

Leave a Comment