Hi . i need to do a regular file transfere between 2 machines both 64 bit both running 11.3 x86_64 both running KDE 4.5.5 release 1 both on an internal network i cant get to ftp wont connect fish used to be perfect now it wont connect i could care less about rsync far to complicated and usb sticks are too slow and too unreliable . so how do i eithe get ftp working or fish working they both fail miserably right now and it is getting up my thrupenny bits right now because something that used to be so simple is now next to impossible pete . -- Powered by openSUSE 11.3 (x86_64) Kernel: 2.6.34.7-0.7-desktop KDE Development Platform: 4.5.5 (KDE 4.5.5) "release 1" 10:18 up 4 days 17:50, 4 users, load average: 0.07, 0.03, 0.03 -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org For additional commands, e-mail: opensuse+help@opensuse.org
On Fri, 18 Mar 2011 15:53:18 +0530, Peter Nikolic <p.nikolic1@btinternet.com> wrote:
Hi .
i need to do a regular file transfere between 2 machines both 64 bit both running 11.3 x86_64 both running KDE 4.5.5 release 1 both on an internal network
i cant get to ftp wont connect fish used to be perfect now it wont connect i could care less about rsync far to complicated and usb sticks are too slow and too unreliable .
so how do i eithe get ftp working or fish working they both fail miserably right now and it is getting up my thrupenny bits right now because something that used to be so simple is now next to impossible
use nfs? this used to be the 'normal' way for me to transfer files between linux systems, until fish:// came along. i know there were problems creating new fish connections on KDE 4.5.x, and since KDE stable is now at 4.6, i'm not sure these will be fixed. for me, on KDE 4.6.1, fish works fine. -- phani. -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org For additional commands, e-mail: opensuse+help@opensuse.org
On 3/18/2011 6:42 AM, phanisvara das wrote:
i cant get to ftp wont connect fish used to be perfect now it wont connect i could care less about rsync far to complicated and usb sticks are too slow and too unreliable . Is this a new install? Do you have those ports open in the firewall? Do you have ftp and/or ssh(sftp) running? -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org For additional commands, e-mail: opensuse+help@opensuse.org
On Friday 18 March 2011 06:23:18 Peter Nikolic wrote:
Hi .
i need to do a regular file transfere between 2 machines both 64 bit both running 11.3 x86_64 both running KDE 4.5.5 release 1 both on an internal network
i cant get to ftp wont connect fish used to be perfect now it wont connect i could care less about rsync far to complicated and usb sticks are too slow and too unreliable .
so how do i eithe get ftp working or fish working they both fail miserably right now and it is getting up my thrupenny bits right now because something that used to be so simple is now next to impossible
pete .
box to box on local net, synchronizing same user's '~/Documents/' directory, in this case 'carl', recursively: carl@linux:~> rsync -rv --delete ~/Documents/ carl@IP.IP.IP.IP:~/Documents -rv = recursive and verbose --delete = if a file no longer exists under source/, delete from target/ * trailing '/' = sync the contents of source/, do not copy source/ itself This is far and away the easiest method. Or, if you just want to copy a file: carl@linux:~> scp somefile carl@IP.IP.IP.IP:~/Documents hth & regards :-) Carl -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org For additional commands, e-mail: opensuse+help@opensuse.org
On Friday 18 March 2011 01:42:05 am Carl Hartung wrote:
On Friday 18 March 2011 06:23:18 Peter Nikolic wrote:
Hi .
i need to do a regular file transfere between 2 machines both 64 bit both running 11.3 x86_64 both running KDE 4.5.5 release 1 both on an internal network
i cant get to ftp wont connect fish used to be perfect now it wont connect i could care less about rsync far to complicated and usb sticks are too slow and too unreliable .
so how do i eithe get ftp working or fish working they both fail miserably right now and it is getting up my thrupenny bits right now because something that used to be so simple is now next to impossible
pete .
box to box on local net, synchronizing same user's '~/Documents/' directory, in this case 'carl', recursively:
carl@linux:~> rsync -rv --delete ~/Documents/ carl@IP.IP.IP.IP:~/Documents
-rv = recursive and verbose --delete = if a file no longer exists under source/, delete from target/ * trailing '/' = sync the contents of source/, do not copy source/ itself
This is far and away the easiest method.
Or, if you just want to copy a file:
carl@linux:~> scp somefile carl@IP.IP.IP.IP:~/Documents
hth & regards :-)
Carl
That would not work for a bidirectional sync. -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org For additional commands, e-mail: opensuse+help@opensuse.org
On Friday 18 March 2011 17:59:21 kanenas@hawaii.rr.com wrote:
That would not work for a bidirectional sync.
Yes but it does what i need very well as the files are almost always going to be a one way transaction from desktop to laptop Pete . -- Powered by openSUSE 11.3 (x86_64) Kernel: 2.6.34.7-0.7-desktop KDE Development Platform: 4.5.5 (KDE 4.5.5) "release 1" 18:06 up 0:42, 5 users, load average: 0.53, 0.52, 0.35 -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org For additional commands, e-mail: opensuse+help@opensuse.org
On Friday 18 March 2011 08:08:09 am Peter Nikolic wrote:
On Friday 18 March 2011 17:59:21 kanenas@hawaii.rr.com wrote:
That would not work for a bidirectional sync.
Yes but it does what i need very well as the files are almost always going to be a one way transaction from desktop to laptop
Pete .
-- Powered by openSUSE 11.3 (x86_64) Kernel: 2.6.34.7-0.7-desktop KDE Development Platform: 4.5.5 (KDE 4.5.5) "release 1" 18:06 up 0:42, 5 users, load average: 0.53, 0.52, 0.35
you might want to remove the --delete portion of the command, it might have some unintended consequences. -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org For additional commands, e-mail: opensuse+help@opensuse.org
On Friday 18 March 2011 14:32:52 kanenas@hawaii.rr.com wrote:
On Friday 18 March 2011 08:08:09 am Peter Nikolic wrote:
On Friday 18 March 2011 17:59:21 kanenas@hawaii.rr.com wrote:
That would not work for a bidirectional sync.
Yes but it does what i need very well as the files are almost always going to be a one way transaction from desktop to laptop
Pete .
-- Powered by openSUSE 11.3 (x86_64) Kernel: 2.6.34.7-0.7-desktop KDE Development Platform: 4.5.5 (KDE 4.5.5) "release 1"
18:06 up 0:42, 5 users, load average: 0.53, 0.52, 0.35
you might want to remove the --delete portion of the command, it might have some unintended consequences.
Nonsense! This is FUD. The behavior of '--delete' was adequately explained in my example. Why are you 'trolling' my simple answer to the OP's simple question? bye -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org For additional commands, e-mail: opensuse+help@opensuse.org
On Friday 18 March 2011 08:41:14 am Carl Hartung wrote:
On Friday 18 March 2011 14:32:52 kanenas@hawaii.rr.com wrote:
On Friday 18 March 2011 08:08:09 am Peter Nikolic wrote:
On Friday 18 March 2011 17:59:21 kanenas@hawaii.rr.com wrote:
That would not work for a bidirectional sync.
Yes but it does what i need very well as the files are almost always going to be a one way transaction from desktop to laptop
Pete .
-- Powered by openSUSE 11.3 (x86_64) Kernel: 2.6.34.7-0.7-desktop KDE Development Platform: 4.5.5 (KDE 4.5.5) "release 1"
18:06 up 0:42, 5 users, load average: 0.53, 0.52, 0.35
you might want to remove the --delete portion of the command, it might have some unintended consequences.
Nonsense! This is FUD. The behavior of '--delete' was adequately explained in my example. Why are you 'trolling' my simple answer to the OP's simple question?
bye
no trolling, honest. but, let's say that files from the desktop /documents are to be transferred to the laptop /documents folder. the sync command will transfer the files from the dektop, so now the laptop has all the files from the desktop. But, wouldn't the --delete option remove any files from the laptop that are *not* in the desktop? If one isn't always careful, one can loose work that way, no? -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org For additional commands, e-mail: opensuse+help@opensuse.org
On 3/18/2011 2:41 PM, Carl Hartung wrote:
On Friday 18 March 2011 14:32:52 kanenas@hawaii.rr.com wrote:
On Friday 18 March 2011 08:08:09 am Peter Nikolic wrote:
On Friday 18 March 2011 17:59:21 kanenas@hawaii.rr.com wrote:
That would not work for a bidirectional sync.
Yes but it does what i need very well as the files are almost always going to be a one way transaction from desktop to laptop
Pete .
-- Powered by openSUSE 11.3 (x86_64) Kernel: 2.6.34.7-0.7-desktop KDE Development Platform: 4.5.5 (KDE 4.5.5) "release 1"
18:06 up 0:42, 5 users, load average: 0.53, 0.52, 0.35
you might want to remove the --delete portion of the command, it might have some unintended consequences.
Nonsense! This is FUD. The behavior of '--delete' was adequately explained in my example. Why are you 'trolling' my simple answer to the OP's simple question?
bye
The OP advertised himself as simple and ignorant with the very first post. It was entirely correct in that context to say either nothing at all to them, since you have no idea that they'll follow directions accurately, or if you say anything, say only the safest possible things. When a person says "I can't figure out how to turn my tv on and the remote is too complicated and I don't want to read the manual either because I'm too lazy and I can't understand it anyways." You do not tell THAT person to take the back off the tv and look for broken wires to fix and then call it THEIR fault if they get electrocuted because you included a note about being careful. -- bkw -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org For additional commands, e-mail: opensuse+help@opensuse.org
On 3/18/2011 2:41 PM, Carl Hartung wrote:
On Friday 18 March 2011 14:32:52 kanenas@hawaii.rr.com wrote:
On Friday 18 March 2011 08:08:09 am Peter Nikolic wrote:
On Friday 18 March 2011 17:59:21 kanenas@hawaii.rr.com wrote:
That would not work for a bidirectional sync.
Yes but it does what i need very well as the files are almost always going to be a one way transaction from desktop to laptop
Pete .
-- Powered by openSUSE 11.3 (x86_64) Kernel: 2.6.34.7-0.7-desktop KDE Development Platform: 4.5.5 (KDE 4.5.5) "release 1"
18:06 up 0:42, 5 users, load average: 0.53, 0.52, 0.35
you might want to remove the --delete portion of the command, it might have some unintended consequences.
Nonsense! This is FUD. The behavior of '--delete' was adequately explained in my example. Why are you 'trolling' my simple answer to the OP's simple question?
bye
The OP advertised himself as simple and ignorant with the very first post. It was entirely correct in that context to say either nothing at all to them, since you have no idea that they'll follow directions accurately, or if you say anything, say only the safest possible things.
When a person says "I can't figure out how to turn my tv on and the remote is too complicated and I don't want to read the manual either because I'm too lazy and I can't understand it anyways." You do not tell THAT person to take the back off the tv and look for broken wires to fix and then call it THEIR fault if they get electrocuted because you included a note about being careful. best part of it all is i used to run Slackware and was well used to CLI hacking but have used a GUI for so long now i have forgotten a hell of a lot , I spose i should get back to more CLI again think i will have to reinstall slakware on a spare box and get back into it i have been running Linux since
On Friday 18 March 2011 20:41:19 Brian K. White wrote: the era of around kernel 0.99 with no gui then along came my all time favorite gui OLVWM times change Pete -- Powered by openSUSE 11.3 (x86_64) Kernel: 2.6.34.7-0.7-desktop KDE Development Platform: 4.5.5 (KDE 4.5.5) "release 1" 21:42 up 4:18, 5 users, load average: 0.39, 0.23, 0.19 -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org For additional commands, e-mail: opensuse+help@opensuse.org
Hi, On Fri, Mar 18, 2011 at 10:23:18AM +0000, Peter Nikolic wrote:
i need to do a regular file transfere between 2 machines both 64 bit both running 11.3 x86_64 both running KDE 4.5.5 release 1 both on an internal network
I use scp for this purpose. You might also be interested in sftp.
i cant get to ftp wont connect fish used to be perfect now it wont connect i could care less about rsync far to complicated and usb sticks are too slow and too unreliable .
fish can also connect to SSH servers.
so how do i eithe get ftp working or fish working they both fail miserably right now and it is getting up my thrupenny bits right now because something that used to be so simple is now next to impossible
Maybe a firewall issue? Can you connect to the ftp server with a browser? -- Bye, Stephan Barth Novell Technical Services, Worldwide Support Services Linux SUSE LINUX GmbH, GF: Felix Imendörffer, HRB 21284 (AG Nürnberg) Maxfeldstr. 5, D-90409 Nuremberg -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org For additional commands, e-mail: opensuse+help@opensuse.org
On Friday 18 March 2011 11:50:47 Stephan Barth wrote:
Hi,
On Fri, Mar 18, 2011 at 10:23:18AM +0000, Peter Nikolic wrote:
i need to do a regular file transfere between 2 machines both 64 bit both running 11.3 x86_64 both running KDE 4.5.5 release 1 both on an internal network
I use scp for this purpose. You might also be interested in sftp.
i cant get to ftp wont connect fish used to be perfect now it wont connect i could care less about rsync far to complicated and usb sticks are too slow and too unreliable .
fish can also connect to SSH servers.
so how do i eithe get ftp working or fish working they both fail miserably right now and it is getting up my thrupenny bits right now because something that used to be so simple is now next to impossible
Maybe a firewall issue? Can you connect to the ftp server with a browser?
Right then got it sorted using gftp , I was using usb sticks but was having too many corruptions . Thanks all Pete . -- Powered by openSUSE 11.3 (x86_64) Kernel: 2.6.34.7-0.7-desktop KDE Development Platform: 4.5.5 (KDE 4.5.5) "release 1" 16:01 up 4 days 23:33, 4 users, load average: 1.03, 0.97, 0.76 -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org For additional commands, e-mail: opensuse+help@opensuse.org
On Fri, 18 Mar 2011 10:23:18 +0000, Peter Nikolic wrote:
i need to do a regular file transfere between 2 machines both 64 bit both running 11.3 x86_64 both running KDE 4.5.5 release 1 both on an internal network
Come over to the openSUSE forums and ask a question there. Someone will be more than happy to help you out. :-) http://forums.opensuse.org Jim -- Jim Henderson Please keep on-topic replies on the list so everyone benefits -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org For additional commands, e-mail: opensuse+help@opensuse.org
El 18/03/11 07:23, Peter Nikolic escribió:
Hi .
i need to do a regular file transfere between 2 machines both 64 bit both running 11.3 x86_64 both running KDE 4.5.5 release 1 both on an internal network
For that scenario either use rsync or a CIFS share. -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org For additional commands, e-mail: opensuse+help@opensuse.org
On Friday 18 Mar 2011 19:12:53 Cristian Rodríguez wrote:
El 18/03/11 07:23, Peter Nikolic escribió:
Hi .
i need to do a regular file transfere between 2 machines both 64 bit both running 11.3 x86_64 both running KDE 4.5.5 release 1 both on an internal network
For that scenario either use rsync or a CIFS share.
I feel sure the OP is asking us to tell him what to do. But no one tells him what to do. Why not let's ask him for his internal network addresses. They may be 192.168.1.1 and 192.168.1.2. But we don't know so we can't help him. If we knew this information a rsync guru could give him an exact command line to use. No? I'm sure that's all he's looking for. How do I use rsync between these 2 computers. Me? I use memory sticks and nfs. But a direct answer to this thread may make me change my mind. L x -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org For additional commands, e-mail: opensuse+help@opensuse.org
On Friday 18 Mar 2011 21:33:12 lynn wrote:
On Friday 18 Mar 2011 19:12:53 Cristian Rodríguez wrote:
El 18/03/11 07:23, Peter Nikolic escribió:
Hi .
i need to do a regular file transfere between 2 machines both 64 bit both running 11.3 x86_64 both running KDE 4.5.5 release 1 both on an internal network
For that scenario either use rsync or a CIFS share.
I feel sure the OP is asking us to tell him what to do. But no one tells him what to do. Why not let's ask him for his internal network addresses. They may be 192.168.1.1 and 192.168.1.2. But we don't know so we can't help him. If we knew this information a rsync guru could give him an exact command line to use. No? I'm sure that's all he's looking for. How do I use rsync between these 2 computers. Me? I use memory sticks and nfs. But a direct answer to this thread may make me change my mind. L x
OK I just did it. I export /home from the nfs server to all internal computers.Nis looks after the passwords.. So /home is mirrored on the client. You can then go to the client and: rsync -auzv /home /mnt The server folder home, is now under /mnt on the second computer That't the nearest I can get generalising. hth Lx -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org For additional commands, e-mail: opensuse+help@opensuse.org
Peter Nikolic wrote:
Hi .
i need to do a regular file transfere between 2 machines both 64 bit both running 11.3 x86_64 both running KDE 4.5.5 release 1 both on an internal network
Assuming one machine will initially have the master copy, rsync is your answer. I rsync several gigabytes a day unattended/cron-driven. -- Per Jessen, Zürich (7.2°C) -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org For additional commands, e-mail: opensuse+help@opensuse.org
participants (11)
-
Brian K. White
-
Carl Hartung
-
Cristian Rodríguez
-
Jim Henderson
-
kanenas@hawaii.rr.com
-
lynn
-
Michael S. Dunsaavage
-
Per Jessen
-
Peter Nikolic
-
phanisvara das
-
Stephan Barth