Adding a new rsync service


 
Thread Tools Search this Thread
Operating Systems Solaris Adding a new rsync service
# 8  
Old 04-08-2010
What says
Code:
netstat -an | grep 873

?
# 9  
Old 04-12-2010
Any ideas anyone

Code:
 
# netstat -an | grep 873
      *.873                *.*                0      0 49152      0 LISTEN
 
chmod +x rsync
 
# /opt/sfw/bin/rsync -v -a -e ssh admin@???????????????????
 
/opt/sfw/bin/rsync: cannot execute

# 10  
Old 04-12-2010
Quote:
Originally Posted by jamba1
/opt/sfw/bin/rsync: cannot execute
What say:
Code:
file /opt/sfw/bin/rsync
cat /etc/release
isainfo


Last edited by jlliagre; 04-12-2010 at 10:10 AM..
# 11  
Old 04-19-2010
Thanks jlliagre....

I had installed rsync from an older companion cd version than the current Solaris version installed on the server. Also x86 version on sparc - doh.
Downloaded and installed correct version and can now use rsync.
Login or Register to Ask a Question

Previous Thread | Next Thread

5 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Adding to an array in an external file, and adding elements to it.

I have an array in an external file, "array.txt", which contains: char *testarray={"Zero", "One", "Two", "Three", "Four", "Five", "Six", "Seven", "Eight", "Nine"};I want to be able to add an element to this array, and have that element display, whenever I call it, without having to recompile... (29 Replies)
Discussion started by: ignatius
29 Replies

2. Shell Programming and Scripting

Rsync Error: rsync: link_stat failed: No such file or directory (2)

I wish to copy all the files & folder under /web/Transfer_Files/data/ on mymac1 (Linux) to remote server mybank.intra.com (Solaris 10) /tmp/ location I am using Ansible tool synchronize module which triggers the unix rsync command as below:rsync --delay-updates -F --compress --archive --rsh=ssh... (2 Replies)
Discussion started by: mohtashims
2 Replies

3. UNIX for Beginners Questions & Answers

Run one service after another service has finished - systemd

Hi all I would like to know how to run task2.service after task1.service has finished. task1.service has a timer (task1.timer), that makes it run every 5 minutes OnCalendar=*:0/5task2.service is basically a script, that has to work on the files created after task1 has finished. This is what I... (2 Replies)
Discussion started by: guilliber
2 Replies

4. Ubuntu

FAQ adding rules in udev for my usb 8G to autorun rsync

Hi, I would like to ask if someone knows and show/point me or simple help me how udev rules work in lucyd, upon my quest and search all the tuts i used is based on old udev since something i read the udev change in lucyd version.. I want to accomplised when i plug my usb 8Gb device and automount... (0 Replies)
Discussion started by: jao_madn
0 Replies

5. Shell Programming and Scripting

Adding new lines to a file + adding suffix to a pattern

I need some help with adding lines to file and substitute a pattern. Ok I have a file: #cat names.txt name: John Doe stationed: 1 name: Michael Sweets stationed: 41 . . . And would like to change it to: name: John Doe employed permanently stationed: 1-office (7 Replies)
Discussion started by: hemo21
7 Replies
Login or Register to Ask a Question