netlinux

how do i network two linux computers??? i am a newbie and have no idea what to do??? somebody please help!!!

Linux Networking 361 This topic was started by ,


data/avatar/default/avatar26.webp

151 Posts
Location -
Joined 2003-12-23
how do i network two linux computers???
i am a newbie and have no idea what to do???
somebody please help!!!

Participate on our website and join the conversation

You have already an account on our website? Use the link below to login.
Login
Create a new user account. Registration is free and takes only a few seconds.
Register
This topic is archived. New comments cannot be posted and votes cannot be cast.

Responses to this topic


data/avatar/default/avatar04.webp

1678 Posts
Location -
Joined 2003-09-27
It all depends on how you want to do it. You can use ftp or ssh or telnet or tightvnc. On the same network, and especially if using wireless, I prefer ssh as it is much more secure than the others.
 
First, you'll need to make sure both boxes have openssh server and client software on them. Check your firewall and make sure it allows ssh to go through as "trusted." Once all this is done, open up a terminal and find out the ip of both boxes if you don't already know. As root do:
 
/sbin/ifconfig [enter]
 
On each box respectively. This will give you their ip addresses.
 
Let's pretend the user name on the server box you want to contact is bob. Let's also pretend the ip of that server box is 192.168.1.101. Go:
 
ssh bob@192.168.1.101 [enter]
 
The server will then ask for bob's password. Give it and press enter. That's it, you're in!