Re: Connecting two machines directly. Was Re: [Ilugc] [Tip] Temporarily stop/start a process in linux

2010-10-26 Thread Yoganandam Goteti
On Tue, 2010-10-26 at 14:20 +0530, Girish Venkatachalam wrote: 
> On Tue, Oct 26, 2010 at 2:12 PM, Abishek Goda  wrote:
> >
> > machine1 # rsync -r machine2:/path/to/files .
> >
> > should do the trick. Again, this is not the only way. I am not sure
> > what GUI options are available. Some research on google should give
> > you all the methods you can try
I am using wifi to do this between my desktop and laptop works very well
no messing with any settings at all. Most distros detect wifi adaptors
with out a prob. On my desktop I use dlink usb and the laptop has built
in intel pro My Airtel broadband  has a wifi router.


> 
> I dunno if cross and straight cables are relevant anymore.
> 
> Arun told me that nowadays this is a non issue.
> 
> We can also connect machines together with a null modem serial
> cable but that is slower, messy and of course more complex.
I used that them extensively during 90's and early 2000 yes they are slow 
compared to the 10/100 Ether net or wifi of today.;-)
GY
> -Girish
> 
> 




___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: Connecting two machines directly. Was Re: [Ilugc] [Tip] Temporarily stop/start a process in linux

2010-10-26 Thread Kenneth Gonsalves
On Tue, 2010-10-26 at 14:45 +0530, Abishek Goda wrote:
> > depends on the ethernet ports - some are able to distinguish between
> > cross and straight wiring - older ones may not
> 
> hmm, that might be. but then for machines that are not older than 2-3
> years, this should not be an issue. 

the last time I did this was in 2007 - the new machines we had bought
then had no problem - the others had.
-- 
regards
KG
http://lawgon.livejournal.com

___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: Connecting two machines directly. Was Re: [Ilugc] [Tip] Temporarily stop/start a process in linux

2010-10-26 Thread Abishek Goda
Hi,
>
> depends on the ethernet ports - some are able to distinguish between
> cross and straight wiring - older ones may not

hmm, that might be. but then for machines that are not older than 2-3
years, this should not be an issue.

Abishek
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: Connecting two machines directly. Was Re: [Ilugc] [Tip] Temporarily stop/start a process in linux

2010-10-26 Thread Kenneth Gonsalves
On Tue, 2010-10-26 at 14:25 +0530, Abishek Goda wrote:
> > I dunno if cross and straight cables are relevant anymore.
> Yep. We do this many times during testing. 

depends on the ethernet ports - some are able to distinguish between
cross and straight wiring - older ones may not
-- 
regards
KG
http://lawgon.livejournal.com

___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: Connecting two machines directly. Was Re: [Ilugc] [Tip] Temporarily stop/start a process in linux

2010-10-26 Thread Abishek Goda
Hi,

> I dunno if cross and straight cables are relevant anymore.
Yep. We do this many times during testing.

Abishek
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: Connecting two machines directly. Was Re: [Ilugc] [Tip] Temporarily stop/start a process in linux

2010-10-26 Thread Girish Venkatachalam
On Tue, Oct 26, 2010 at 2:12 PM, Abishek Goda  wrote:
>
> machine1 # rsync -r machine2:/path/to/files .
>
> should do the trick. Again, this is not the only way. I am not sure
> what GUI options are available. Some research on google should give
> you all the methods you can try.
>

I dunno if cross and straight cables are relevant anymore.

Arun told me that nowadays this is a non issue.

We can also connect machines together with a null modem serial
cable but that is slower, messy and of course more complex.

-Girish


-- 
Gayatri Hitech

http://gayatri-hitech.com
gir...@gayatri-hitech.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: Connecting two machines directly. Was Re: [Ilugc] [Tip] Temporarily stop/start a process in linux

2010-10-26 Thread pandiyan R
thank you i will try


On Tue, Oct 26, 2010 at 2:12 PM, Abishek Goda wrote:

> Hi,
>
> > if you know the steps means please because i am new to linux.
> I will try.
>
> >> You can just add an ethernet cable between the PC eth0 and laptops
> >> eth0, configure them with custom ip addresses and rsync/scp the files
> >> you need. I think that should work most of the time.
>
> Just add a ethernet cable between the two machines. That is
> straightforward, right?
>
> On each machine, as root, do the following.
>
> machine1 # ifconfig eth0 192.168.1.2
> machine2 # ifconfig eth0 192.168.1.3
>
> you should be able to ping the machines from one another. Then rsync the
> folders
>
> machine1 # rsync -r machine2:/path/to/files .
>
> should do the trick. Again, this is not the only way. I am not sure
> what GUI options are available. Some research on google should give
> you all the methods you can try.
>
> Abishek
> ___
> ILUGC Mailing List:
> http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
>
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Connecting two machines directly. Was Re: [Ilugc] [Tip] Temporarily stop/start a process in linux

2010-10-26 Thread Abishek Goda
Hi,

> if you know the steps means please because i am new to linux.
I will try.

>> You can just add an ethernet cable between the PC eth0 and laptops
>> eth0, configure them with custom ip addresses and rsync/scp the files
>> you need. I think that should work most of the time.

Just add a ethernet cable between the two machines. That is
straightforward, right?

On each machine, as root, do the following.

machine1 # ifconfig eth0 192.168.1.2
machine2 # ifconfig eth0 192.168.1.3

you should be able to ping the machines from one another. Then rsync the folders

machine1 # rsync -r machine2:/path/to/files .

should do the trick. Again, this is not the only way. I am not sure
what GUI options are available. Some research on google should give
you all the methods you can try.

Abishek
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc