- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: how to ftp 1000 files without intervention
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-14-2008 12:41 AM
04-14-2008 12:41 AM
would really appreciate you can shed some light on this.
i want to transfer 1000 files, mput * but it requires me to enter or say yes. how can i do this without my keyboard intervention.
hope to hear from you. promise of good points.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-14-2008 12:46 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-14-2008 01:13 AM
04-14-2008 01:13 AM
Re: how to ftp 1000 files without intervention
once u connected with ftp
do prompt 0
this will get inetractive mode off
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-14-2008 01:16 AM
04-14-2008 01:16 AM
Re: how to ftp 1000 files without intervention
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-14-2008 02:16 AM
04-14-2008 02:16 AM
Re: how to ftp 1000 files without intervention
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-14-2008 03:06 AM
04-14-2008 03:06 AM
Re: how to ftp 1000 files without intervention
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-14-2008 03:10 AM
04-14-2008 03:10 AM
Re: how to ftp 1000 files without intervention
http://forums11.itrc.hp.com/service/forums/helptips.do?#41
-=ShRi=-
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2008 10:35 PM
04-15-2008 10:35 PM
Re: how to ftp 1000 files without intervention
test1 is a directory. i wanna confirm my step:
1. # tar -cvf test1.tar
Attempt to create archive of no files. Nothing dumped.
2. #ls
test1.tar
when i untar
3. tar -xvf test1.tar
Tar: blocksize = 0; broken pipe?
appreciate your advice on my missing steps. i can tar folder right, not neccessary file? thanks a lot
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2008 10:43 PM
04-15-2008 10:43 PM
Re: how to ftp 1000 files without intervention
Perhaps more would happen with something
like:
tar -cvf test1.tar test1
> 2. #ls
Try "ls -l" to see how little you got.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2008 11:04 PM
04-15-2008 11:04 PM
Re: how to ftp 1000 files without intervention
#tar -cvf test.tar test
tar: couldn't get uname for uid 65534
tar: couldn't get uname for uid 65534
a test/test 0 blocks
tar: couldn't get uname for uid 65534
a test/1 0 blocks
tar: couldn't get uname for uid 65534
a test/2 0 blocks
why it says couldn't get uname for uid? but test.tar was successfully created. after that i untar, get the original file. why when i tar the file, it gives me couldn't get uname thing? hope to hear from you
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2008 11:26 PM
04-15-2008 11:26 PM
Re: how to ftp 1000 files without intervention
This is just a warning.
The file returning an error is in fact included in the TAR, but tar is just warning you that it has no valid owner attached to it.
The uid attached to the file has no corresponding user in the /etc/passwd
file.
This happen when you delete a user without removing files owned by the latter.
To find the files that tar issues this warning about, you could search for files with uid set equal to 65534 (in your example):
ll -R | grep 65534
To get rid of the warnings, either remove the files, or use the chown commmand to give them a valid owner.
hope this helps!
kind regards
yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2008 11:36 PM
04-15-2008 11:36 PM
Re: how to ftp 1000 files without intervention
below the command to change the ownership of the files:
#chown
username--any username on the system
groupname---any groupname on the system.
filename---name and path of file
You might as well do a:
#chown -R
hope this helps too!
kind regards
yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2008 11:42 PM
04-15-2008 11:42 PM
Re: how to ftp 1000 files without intervention
>why it says couldn't get uname for uid?
Does UID of 65534 exist?
This is likely -2, or "nobody".
On my systems, 11.23 or 11.11, I have no problems with either -2 or 65534.
Of course one is in /etc/passwd and the other in NIS.