0
votes
Is it possible to forward ssh requests that come in over a certain port to another machine?
Without messing around with firewall rules, you can set up a ~/.ssh/config file.
Assume 10.1.1.1 is the 'gateway' system and 10.1.1.2 is the 'client' system.
Host gateway
…
5
votes
How do I change default runlevel in Ubuntu
You need to do this:
mv /etc/rc2.d/S30gdm /etc/rc2.d/K70gdm
See, /etc/rc2.d/README. There's README files in all the /etc/rc?.d directories, as well as /etc/init.d. …
