LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 03-11-2008, 05:15 AM   #1
r-t
Member
 
Registered: Oct 2004
Location: Manchester UK
Distribution: Arch, Fedora
Posts: 54

Rep: Reputation: 15
Copy directories/files from Fedora 8 machine to SuSE 10.3 machine


I've had two Fedora 8 machines networked together for some time, where I backed up the newer one to the older one using rsync. I could also start nfs and mount the home directory of one on the other (since I had enough disc space). Problems with Fedora (probably to do with recent kernel upgrade) made me decide to try SuSE 10.3 on the newer one. The trouble is I cannot transfer files from one to the other (I'm resorting to burning dvd's). I've tried cp, scp, rysnc and ftp and running nfs and mounting one home file system on the other, all with no luck. Anyone can tell me the simplest, effective way of going about it, please?
 
Old 03-11-2008, 05:24 AM   #2
billymayday
LQ Guru
 
Registered: Mar 2006
Location: Sydney, Australia
Distribution: Fedora, CentOS, OpenSuse, Slack, Gentoo, Debian, Arch, PCBSD
Posts: 6,678

Rep: Reputation: 122Reputation: 122
Sounds like a firewall issue. What are your Suse settings?
 
Old 03-11-2008, 05:26 AM   #3
r-t
Member
 
Registered: Oct 2004
Location: Manchester UK
Distribution: Arch, Fedora
Posts: 54

Original Poster
Rep: Reputation: 15
I've tried with both firewalls switched completely off. (With Fedora this did not matter with rysnc, though it did with nfs and mount).

Will there be a problem with different file types?

Both rsync and scp seem to function but then I find nothing is actually visible at the destination address (or in the case of rsync it has only bothered about a few files).

Last edited by r-t; 03-11-2008 at 05:32 AM.
 
Old 03-11-2008, 05:27 AM   #4
billymayday
LQ Guru
 
Registered: Mar 2006
Location: Sydney, Australia
Distribution: Fedora, CentOS, OpenSuse, Slack, Gentoo, Debian, Arch, PCBSD
Posts: 6,678

Rep: Reputation: 122Reputation: 122
What errors are you getting (preferably log entries)
 
Old 03-11-2008, 05:52 AM   #5
r-t
Member
 
Registered: Oct 2004
Location: Manchester UK
Distribution: Arch, Fedora
Posts: 54

Original Poster
Rep: Reputation: 15
scp and rsync do not produce errors – just there is nothing at the destination.

Trying to mount from nfs server:

Code:
localhost:/home/rt # mount 192.168.1.64:/home/rt /mnt/home
mount: mount to NFS server '192.168.1.64' failed: RPC Error: Program not registered.
localhost:/home/rt #
Code:
localhost:/home/rt # rpcinfo -p 192.168.1.64
   program vers proto   port
    100000    2   tcp    111  portmapper
    100000    2   udp    111  portmapper
localhost:/home/rt #
Code:
localhost:/home/rt # rpcinfo -p 192.168.1.65
   program vers proto   port
    100000    4   tcp    111  portmapper
    100000    3   tcp    111  portmapper
    100000    2   tcp    111  portmapper
    100000    4   udp    111  portmapper
    100000    3   udp    111  portmapper
    100000    2   udp    111  portmapper
    100000    4     0    111  portmapper
    100000    3     0    111  portmapper
    100000    2     0    111  portmapper
    100024    1   udp  46656  status
    100024    1   tcp  39454  status
    100011    1   udp    601  rquotad
    100011    2   udp    601  rquotad
    100011    1   tcp    604  rquotad
    100011    2   tcp    604  rquotad
    100021    1   udp  32888  nlockmgr
    100021    3   udp  32888  nlockmgr
    100021    4   udp  32888  nlockmgr
    100003    2   udp   2049  nfs
    100003    3   udp   2049  nfs
    100003    4   udp   2049  nfs
    100021    1   tcp  41742  nlockmgr
    100021    3   tcp  41742  nlockmgr
    100021    4   tcp  41742  nlockmgr
    100003    2   tcp   2049  nfs
    100003    3   tcp   2049  nfs
    100003    4   tcp   2049  nfs
    100005    1   udp  52396  mountd
    100005    1   tcp  44778  mountd
    100005    2   udp  52396  mountd
    100005    2   tcp  44778  mountd
    100005    3   udp  52396  mountd
    100005    3   tcp  44778  mountd
localhost:/home/rt #
FTP – command line, Konqueror, Krusader, gFTP will not connect

Last edited by r-t; 03-11-2008 at 05:54 AM. Reason: Add information
 
Old 03-11-2008, 07:11 AM   #6
Neeladi
LQ Newbie
 
Registered: Apr 2006
Location: Bangalore
Distribution: Redhat and CentOS
Posts: 2

Rep: Reputation: 0
From your output nfs server is running on ip 192.168.1.65, and you are trying to mount directory from 192.168.1.64 (where nfs server is not running, only port mapper is running).

-- your output
# rpcinfo -p 192.168.1.64
program vers proto port
100000 2 tcp 111 portmapper
100000 2 udp 111 portmapper

start nfs server on 192.18.1.64, then try to mount or otherwise
 
Old 03-11-2008, 07:54 AM   #7
r-t
Member
 
Registered: Oct 2004
Location: Manchester UK
Distribution: Arch, Fedora
Posts: 54

Original Poster
Rep: Reputation: 15
It looks as if the IP addresses of my machines got swapped (192.168.1.64 had become 192.168.165 and vice versa – DHCP and my SpeedTouch router?) so I was copying and rsyncing to the same machine I was issuing command from and hence the nfs not running problem. Hopefully I might start getting a bit further now!
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
scp: copy a file from local machine to remote machine seran Linux - Newbie 8 10-30-2007 12:23 PM
How do I copy files from a linux machine to a Windows machines? hello321_1999 Linux - Software 11 05-15-2006 01:58 PM
trying to copy files from another machine to the local machine using telnet,..how? shrike_912 Programming 6 03-14-2006 04:45 PM
copy from windows machine to a linux machine s_deepblue Linux - Networking 3 03-12-2005 01:43 PM
Using SMB to copy files from one linux machine to second linux machine. coppersky Linux - Networking 9 06-24-2003 12:07 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 03:50 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration