One PC is running Windows 7, and another one is running GNU/Linux 16.04. My goal is to transfer 75GB big data from one to the other.I have ethernet cable and I have already tried creating LAN(TCP/IP v4 protocol) on Windows and Linux also with these settings:
PC 1:
IP Adress: 192.168.0.2
Mask: 255.255.255.0
PC 2:
IP Adress: 192.168.0.3 (These IP's are different in one number)
Mask: 255.255.255.0
I plugged cable directly on these two PCs, but from one PC I cannot acces to other. I've checked file sharing in Windows. After typing ping 192.168.0.2 in Terminal, I got: $ ping 192.168.0.2 PING 192.168.0.2 (192.168.0.2) 56(84) bytes of data. 64 bytes from 192.168.0.2: icmp_seq=1 ttl=128 time=0.420 ms 64 bytes from 192.168.0.2: icmp_seq=2 ttl=128 time=0.315 ms
So I have 2 questins: 1) How to connect these two and fulfill my task, i.e. transfer such big data without an external hard disc? 2) Are crossover and ordinary LAN cables the same thing?
ping 192.168.0.2
if done from pc2. It'll confirm your machines are talking, and you don't need a special cable (normally a switch/hub reverses the send-receive pins; but most NICs autosense this & change). If you get a reply the connection is up, you only need to set up services (eg. file server where one will act as server to the other; SaMBa/cifs is easiest with windoze) – guiverc Jan 06 '18 at 22:04ip addr
orifconfig
(interface config) on your GNU/Linux, andipconfig
on your windoze box. – guiverc Jan 06 '18 at 22:22net use
on widnoze) on windoze to copy files between machines.scp
(secure remote-copy doesn't need mounting) isn't available natively on windoze but putty may allow it, look at https://stackoverflow.com/questions/21587036/using-putty-to-scp-from-windows-to-linux – guiverc Jan 06 '18 at 22:37