- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to import a text file from Windows to a HP-UX ...
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-26-2008 07:16 PM
08-26-2008 07:16 PM
How to import a text file from Windows to a HP-UX system ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2008 07:51 PM
08-26-2008 07:51 PM
Re: How to import a text file from Windows to a HP-UX system ?
thinking of carrying a disk, tape, flash
EEPROM (punched cards or tape, ...) between
these systems, or are they connected by some
kind of data-carrying network?
If "network", were you looking for a
procedure to run on the Windows system or on
the HP-UX system? Manual or automatic?
Did you have any network protocol in mind,
like FTP, Samba, rcp, scp, sftp, ...?
The phrase "text file" does not completely
describe the data format.
This is really an amazingly vague question,
which makes it hard to supply a useful
answer.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2008 08:09 PM
08-26-2008 08:09 PM
Re: How to import a text file from Windows to a HP-UX system ?
UNIX_dev> ftp
ftp: connect: Connection refused
UNIX_dev> ftp
ftp> get c:\101.txt
Not connected.
I don't want to use VI to type a script file on our Dev HP-UX system again.
Please give me some ideals, thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2008 08:17 PM
08-26-2008 08:17 PM
Re: How to import a text file from Windows to a HP-UX system ?
Hi
open the command prompt from windows.Suppose i m having tty.txt file in c: drive and i want this on unix server then
do the below procedure
1) cd c:
2)dir
check ur file in c drive
3)ftp
it will ask user name and password after that you will ftp prompt
4)ftp> cd /home/atul
here go to ur own unix directory on unix server
5)put tty.txt
6)dir
check whethet its copied or not.
7)ftp>bye
it will close the ftp session
Regards
Atul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2008 08:49 PM
08-26-2008 08:49 PM
Re: How to import a text file from Windows to a HP-UX system ?
What happen. u did the ftp successfully or not
Regards
Atul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2008 09:07 PM
08-26-2008 09:07 PM
Re: How to import a text file from Windows to a HP-UX system ?
FTP> ASCII
FTP> PUT somefile.
If all you need is a few KB of text, then a ^A ^C (select-all, copy) from notepad or similar and unix> cat > x.txt .. 'paste' is often a nice quick & dirty method.
For frequent transfers you may want a GUI FTP client and/or check out NFS client/server setup.
And if you need further help, please do add what you want, what you tried, what went wrong. Wee all like helping here, but only a few amongst us posses psychic powers.
Cheers,
Hein
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2008 09:33 PM
08-26-2008 09:33 PM
Re: How to import a text file from Windows to a HP-UX system ?
FTP protocol is the best way to get or put some file from windows to HPUX. do the following :-
go to the specific path where your file resides. consider it is c:\>
c:\> ftp
give username and password-----
ftp> bin
go to desired directory path in HPUX---
ftp> cd
ftp> put
your text file will be transferred to the desired location of HPUX server.
Rgds
Vishu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2008 10:18 PM
08-26-2008 10:18 PM
Re: How to import a text file from Windows to a HP-UX system ?
Thanks a lot.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2008 10:27 PM
08-26-2008 10:27 PM
Re: How to import a text file from Windows to a HP-UX system ?
Assign the points as per ITRC forum rule
Reagrds
Atul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-27-2008 07:03 AM
08-27-2008 07:03 AM
Re: How to import a text file from Windows to a HP-UX system ?
ftp> bin need to be modified to:
ftp > ascii.
Otherwise, there will be a ^M in the end of each line which won't be seen unless vi is used. The ^M will cause some issues such as a shell script won't run.
Also, sometimes in the unix, ftp is turned off for security reasons. Then scp or winscp can be used for file transfer.