Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. saslva

    perl Net::SFTP::Foreign put() file size zero

    That probably happens because Net::SFTP::Foreign is not able to change the permissions of the file. Try as follows: $sftp->put($file, $dest, copy_perm => 0, copy_time => 0) or die $sftp->error;
  2. saslva

    Net::SSH::Perl - want to launch remote cmd and return

    you don't really need to use nohup, just redirect the IO channels of the remote process to /dev/null: ssh foo@host '/remote/command </dev/null >/dev/null 2>&1 &'
  3. saslva

    Net::SFTP::Foreign error on -&gt;put() call

    Hi, I am the author of Net::SFTP::Foreign. It seems that the server you are connecting to, doesn't like the way Net::SFTP::Foreign transfers files. Could you provide me with more details about the server in order to set a workaround in place (OS, SSH sofware vendor and versions)? Also, set the...

Part and Inventory Search

Back
Top