Thread: SSH tunneling
View Single Post
autodata
hustlin
 
Join Date: May 2004
 
2007-08-11, 01:22

Quote:
Originally Posted by turtle2472 View Post
What I'm trying to do is connect to my home server which is a Linux box running SME Server. I'm trying to be able to do command line stuff so I can eventually remove the monitor and keyboard from the box and just let it run. So my only real goal is to log in as root in secure shell to allow me to run those modifications.
That's not "tunneling." Tunneling is sending other stuff through the ssh connection.
Quote:
Originally Posted by turtle2472 View Post
My only question about this though is if I'm logging into my Linux server to make command line changes wouldn't I need root access to do that?
No. You can create a new user ("adduser imausername") and then set them in the sudoers file (simple version: log in as root, run "visudo" then add your user below root with the same options). Then you can disable root and run commands using sudo.

Anyway, remember, google is your friend, and the same goes for man pages. This stuff is largely the same on your macs, too.
  quote