×
The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.
On 1/27/12 7:05 AM, Jeff Young wrote:
The following is a copy of the session:
sftp -oPort=2222 user_name@199.83.137.157<user_name@199.83.137.157>
Connecting to 199.83.137.157...
sftp>
lcd /faceymms/01
sftp>
lls
DHANO120125B-0.txt DSIMO120125B-0.txt test.txt
sftp>
put test.txt
Uploading test.txt to /test.txt
Couldn't get handle: Permission denied
What are the causes of the above error and what can I do about it?
You're trying to save test.txt into the root '/' directory on the target
system (the "to /test.txt" part of the "Uploading..." message).
It is likely you don't have permission to write to the '/' directory on
the target system. I would expect you need to do a "cd" to get into the
directory the folks owning the target system have provided for you to
write files into. i.e. you need to do something like this before the
put command:
cd /some/path/on/the/target
alternatively, you can alter the put command to include the path:
put test.txt /some/path/on/the/target/test.txt
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2025 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact
[javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.