- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Downloading files with "Windows Naming Convent...
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
08-24-2003 10:32 PM
08-24-2003 10:32 PM
I've a file called "Installation Steps.doc" in the unix folder. Note the "space" between the words. What's the quickest way I can donwload or ftp the file on my pc??
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2003 10:42 PM
08-24-2003 10:42 PM
SolutionOn PC:
ftp
cd
prompt
bin
mget install*
or
mput install*
depending if you want to get or put the file on the Unix server or PC.
You will get the drift!
Tim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2003 10:44 PM
08-24-2003 10:44 PM
Re: Downloading files with "Windows Naming Convention"
cd
ftp>mget *.doc
Installation Steps.doc?y
ftp>bye
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2003 10:48 PM
08-24-2003 10:48 PM
Re: Downloading files with "Windows Naming Convention"
My initial thought was the I'm downloading in a wrong way but now have tried your steps too but it's still giving the same error msg. I've verified and the document is ok on the Unix folder.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2003 10:55 PM
08-24-2003 10:55 PM
Re: Downloading files with "Windows Naming Convention"
Then do a ftp to the unix mahcine
cd to the file path.
do a mget *.doc
make sure that the file is downloaded to the PC.
check for the file size.
Else you can use a tool which could be user -friendly like WSFTP.
http://www.ftpplanet.com/download.htm
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2003 10:56 PM
08-24-2003 10:56 PM
Re: Downloading files with "Windows Naming Convention"
get "Installation Steps.doc"
but this requires non-standard filename support on both ends. Imbedded spaces are a very big problem even in Windows (you'll see such filenames enclosed in "..." in dialog boxes. The problem is that ftp thinks you are trying to download a file called Installation and store it on your PC with the new name Steps.doc which is exactly how the get/put commands are parsed. I would recommend using standard filenames (no special characters, especially spaces) for all your files.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2003 11:17 PM
08-24-2003 11:17 PM
Re: Downloading files with "Windows Naming Convention"
You can use tar.
# tar -cvf doc.tar Installation*.doc
# from your windows pc use ftp as discribed above and use winzip to decompresse.
Hope it helps,
Robert-Jan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2003 11:21 PM
08-24-2003 11:21 PM
Re: Downloading files with "Windows Naming Convention"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2003 10:11 PM
08-25-2003 10:11 PM