Cindy Cullen wrote: >> Open a terminal and type >> ipconfig eth0 > > oops! I forgot to look - I'm going to check it out again. But, that command > didn't work - said it didn't recognize it in bash
That's because Scott's too stuck in his Windows world. You should listen to Michael. The command is ifconfig eth0. >> ps ax | grep sshd >> >> That will bring you to the other (Linux) boxes in a text console. > > This is what I get: > > 2560 ? Ss 0:00 /usr/sbin/sshd > 9507 pts/1 R+ 0:00 grep sshd > > I HOPE that means something to you, because it's greek to me - and I only > speak english. :) ps shows a process list. ax specifies some options on what to see in the output. grep trims the list down to only the processes that have sshd in them. So you've got: Process #2560 is not on a terminal, is sleeping (Ss), has used no CPU time, and was run with /usr/sbin/sshd. You can also see the process that was spawned for your grep of the process list. The point of that was to make sure the SSH daemon was running. The fact that you have it running means that you can connect to that box from another box using ssh or other clients (like scp). Granted, since you're connecting to the box running sshd, you should check the box that's you're going to copy the files onto for sshd in the process list, in case that isn't what you did here. Chad Martin ------------------------ Yahoo! Groups Sponsor --------------------~--> $9.95 domain names from Yahoo!. Register anything. http://us.click.yahoo.com/J8kdrA/y20IAA/yQLSAA/0XFolB/TM --------------------------------------------------------------------~-> To unsubscribe from this list, please email [EMAIL PROTECTED] & you will be removed. Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/LINUX_Newbies/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
