On Fri, Apr 17, 2020 at 12:39 PM C. Linus Hicks linush@mindspring.com wrote:
Again, you need to read more carefully. You missed the point of this exercise:
You were asked: "what does ssh test@192.168.125.133 pwd return?"
But you ran: "ssh test@192.168.125.133"
The difference is subtle but it's there.
Linus...
Umm.. I'm missing something here then...
I thought the OP was asking to run the basic ssh cmd and then to provide the passwd
If I'm missing something.. what's the OP wanting me to run?
in other words, just what should I be running for >>> ssh test@192.168.125.133 pwd
-----Original Message----- From: bruce Sent: Apr 17, 2020 12:13 PM To: Community support for Fedora users Subject: Re: rsync error... can i ask for help here??
Hi Roger,
what does ssh test@192.168.125.133 pwd return?
Yeah, I had started to question if basic ssh was the issue!
ssh test@192.168.125.133 test@192.168.125.133's password: Activate the web console with: systemctl enable --now cockpit.socket
Last failed login: Fri Apr 17 11:30:42 EDT 2020 from 192.168.125.1 on ssh:notty There were 2 failed login attempts since the last successful login. Last login: Fri Apr 17 08:12:35 2020 from 192.168.125.1
works as it's supposed to .
baby steps!
On Fri, Apr 17, 2020 at 12:02 PM Roger Heflin rogerheflin@gmail.com wrote:
what does ssh test@192.168.125.133 pwd return?
On Fri, Apr 17, 2020 at 10:55 AM bruce badouglas@gmail.com wrote:
rsync -avz /home/test/cat test@192.168.125.133:/home/test/cat test@192.168.125.133's password: sending incremental file list rsync: change_dir "/home/test/cat/ /home/test" failed: No such file or
directory (2)
sent 18 bytes received 12 bytes 6.67 bytes/sec total size is 0 speedup is 0.00 rsync error: some files/attrs were not transferred (see previous
errors) (code 23) at main.c(1039) [sender=3.0.6]
the weird thing::: I'm running this as user "test" I'm running from the "/home/test/cat" dir..
could this be some sort of permissions thing?? /home drwxrwxrwx 33 test test 4096 Apr 17 11:23 test
/home/test drwxrwxrwx 7 test test 4096 Apr 17 11:00 cat
On Fri, Apr 17, 2020 at 11:41 AM C. Linus Hicks linush@mindspring.com
wrote:
Generally speaking, when your destination directory is within the home
directory of the destination user, you would not specify full path, as in:
rsync -avz /home/test/cat test@192.168.125.133:cat
Also, you probably don't want to copy the directory into a directory
of the same name, so your command would probably more appropriately be one of these:
rsync -avz /home/test/cat/ test@192.168.125.133:cat
rsync -avz /home/test/cat test@192.168.125.133:
-----Original Message----- From: bruce Sent: Apr 17, 2020 11:28 AM To: Community support for Fedora users Subject: Re: rsync error... can i ask for help here??
ok..
as user "test" on the local machine. there's a test on the remote as
well
each local/remote has the dir /home/test/cat, and /home/test/cat1 all dirs are owned by user 'test' and have '777' to make sure no weird
errs happen due to owner/perms
this works: rsync -avz /home/test/cat /home/test/cat1
this doesn't rsync -avz /home/test/cat test@192.168.125.133:/home/test/cat
generates error:: test@192.168.125.133's password: sending incremental file list rsync: change_dir "/home/ /home/test" failed: No such file or
directory (2)
sent 18 bytes received 12 bytes 5.45 bytes/sec total size is 0 speedup is 0.00 rsync error: some files/attrs were not transferred (see previous
errors) (code 23) at main.c(1039) [sender=3.0.6]
unless rsync cant be used with ssh/password.. can't figure out why
this is failing
On Fri, Apr 17, 2020 at 11:15 AM Kai Bojens kb@kbojens.de wrote:
Am 2020-04-17 16:41, schrieb bruce:
I've got an rsync error that I can't seem to resolve. Did the google/testing etc.. no dice so far. Even did the irc centos chat... what a clusterphk.
Please state the nature of your rsync emergency. _______________________________________________ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-leave@lists.fedoraproject.org Fedora Code of Conduct:
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines:
https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives:
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org
users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-leave@lists.fedoraproject.org Fedora Code of Conduct:
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines:
https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives:
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org
users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-leave@lists.fedoraproject.org Fedora Code of Conduct:
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives:
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org _______________________________________________ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-leave@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org
users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-leave@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org
doh...
never mind...
didn't know you could do ssh like that!
ssh test@192.168.125.133 pwd test@192.168.125.133's password: /home/test
lord!
On Fri, Apr 17, 2020 at 12:51 PM bruce badouglas@gmail.com wrote:
On Fri, Apr 17, 2020 at 12:39 PM C. Linus Hicks linush@mindspring.com wrote:
Again, you need to read more carefully. You missed the point of this exercise:
You were asked: "what does ssh test@192.168.125.133 pwd return?"
But you ran: "ssh test@192.168.125.133"
The difference is subtle but it's there.
Linus...
Umm.. I'm missing something here then...
I thought the OP was asking to run the basic ssh cmd and then to provide the passwd
If I'm missing something.. what's the OP wanting me to run?
in other words, just what should I be running for >>> ssh test@192.168.125.133 pwd
-----Original Message----- From: bruce Sent: Apr 17, 2020 12:13 PM To: Community support for Fedora users Subject: Re: rsync error... can i ask for help here??
Hi Roger,
what does ssh test@192.168.125.133 pwd return?
Yeah, I had started to question if basic ssh was the issue!
ssh test@192.168.125.133 test@192.168.125.133's password: Activate the web console with: systemctl enable --now cockpit.socket
Last failed login: Fri Apr 17 11:30:42 EDT 2020 from 192.168.125.1 on ssh:notty There were 2 failed login attempts since the last successful login. Last login: Fri Apr 17 08:12:35 2020 from 192.168.125.1
works as it's supposed to .
baby steps!
On Fri, Apr 17, 2020 at 12:02 PM Roger Heflin rogerheflin@gmail.com wrote:
what does ssh test@192.168.125.133 pwd return?
On Fri, Apr 17, 2020 at 10:55 AM bruce badouglas@gmail.com wrote:
rsync -avz /home/test/cat test@192.168.125.133:/home/test/cat test@192.168.125.133's password: sending incremental file list rsync: change_dir "/home/test/cat/ /home/test" failed: No such file or
directory (2)
sent 18 bytes received 12 bytes 6.67 bytes/sec total size is 0 speedup is 0.00 rsync error: some files/attrs were not transferred (see previous
errors) (code 23) at main.c(1039) [sender=3.0.6]
the weird thing::: I'm running this as user "test" I'm running from the "/home/test/cat" dir..
could this be some sort of permissions thing?? /home drwxrwxrwx 33 test test 4096 Apr 17 11:23 test
/home/test drwxrwxrwx 7 test test 4096 Apr 17 11:00 cat
On Fri, Apr 17, 2020 at 11:41 AM C. Linus Hicks linush@mindspring.com
wrote:
Generally speaking, when your destination directory is within the
home directory of the destination user, you would not specify full path, as in:
rsync -avz /home/test/cat test@192.168.125.133:cat
Also, you probably don't want to copy the directory into a directory
of the same name, so your command would probably more appropriately be one of these:
rsync -avz /home/test/cat/ test@192.168.125.133:cat
rsync -avz /home/test/cat test@192.168.125.133:
-----Original Message----- From: bruce Sent: Apr 17, 2020 11:28 AM To: Community support for Fedora users Subject: Re: rsync error... can i ask for help here??
ok..
as user "test" on the local machine. there's a test on the remote as
well
each local/remote has the dir /home/test/cat, and /home/test/cat1 all dirs are owned by user 'test' and have '777' to make sure no
weird errs happen due to owner/perms
this works: rsync -avz /home/test/cat /home/test/cat1
this doesn't rsync -avz /home/test/cat test@192.168.125.133:/home/test/cat
generates error:: test@192.168.125.133's password: sending incremental file list rsync: change_dir "/home/ /home/test" failed: No such file or
directory (2)
sent 18 bytes received 12 bytes 5.45 bytes/sec total size is 0 speedup is 0.00 rsync error: some files/attrs were not transferred (see previous
errors) (code 23) at main.c(1039) [sender=3.0.6]
unless rsync cant be used with ssh/password.. can't figure out why
this is failing
On Fri, Apr 17, 2020 at 11:15 AM Kai Bojens kb@kbojens.de wrote:
Am 2020-04-17 16:41, schrieb bruce:
> I've got an rsync error that I can't seem to resolve. Did the > google/testing etc.. no dice so far. Even did the irc centos
chat...
> what a clusterphk.
Please state the nature of your rsync emergency. _______________________________________________ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-leave@lists.fedoraproject.org Fedora Code of Conduct:
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines:
https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives:
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org
users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-leave@lists.fedoraproject.org Fedora Code of Conduct:
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines:
https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives:
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org
users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-leave@lists.fedoraproject.org Fedora Code of Conduct:
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines:
https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives:
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org _______________________________________________ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-leave@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org
users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-leave@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org
Hi
Can you run this command (exactly it please, on 3 lines thus):
rsync -vvv -avz /home/test/cat \ test@192.168.125.133:/home/test/cat \ >& /tmp/log
Then:
grep ssh /tmp/log
Thanks.
Hi Francis..
rsync -vvv -avz /home/test/cat \
test@192.168.125.133:/home/test/cat \ >& /tmp/log
test@192.168.125.133's password: [test@foo cat]$
[test@foo cat]$ grep ssh /tmp/log cmd[0]=ssh cmd[1]=-l cmd[2]=test cmd[3]=192.168.125.133 cmd[4]=rsync cmd[5]=--server cmd[6]=-vvvvlogDtprze.iLs cmd[7]=. cmd[8]=/home/test/cat opening connection using: ssh -l test 192.168.125.133 rsync --server -vvvvlogDtprze.iLs . /home/test/cat
On Fri, Apr 17, 2020 at 1:03 PM Francis.Montagnac@inria.fr wrote:
Hi
Can you run this command (exactly it please, on 3 lines thus):
rsync -vvv -avz /home/test/cat \ test@192.168.125.133:/home/test/cat \ >& /tmp/log
Then:
grep ssh /tmp/log
Thanks.
-- francis _______________________________________________ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-leave@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org