- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- transfer file from PC
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-09-2003 10:48 PM
04-09-2003 10:48 PM
How to set a schedule job to get the file from UNIX to pc :
My case like this:
there are some files on the UNIX system /home/edp , I want to set a schedule job to get this file from UNIX to pc , and then delete the files on UNIX.
what command can do this in PC side to get and delete files ? thx.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-09-2003 11:32 PM
04-09-2003 11:32 PM
SolutionOn your pc you will need a ftp-server and winat or wincron.
Take a look at next link.
http://www.wincron.co.uk/
You can also take a look at samba and mount a unix filesystem on your pc.
Hope it gives you some idears.
Robert-Jan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-09-2003 11:33 PM
04-09-2003 11:33 PM
Re: transfer file from PC
then select FTP for Windows Explorer
but you need to set it up so that it can ftp automatically to your unix server without requiring a login. This can be done - you will need to write a script to do it on your PC.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2003 12:51 AM
04-10-2003 12:51 AM
Re: transfer file from PC
I do a simular job using cifs . It is activated by cron. This is the script I use:
#!/sbin/sh
#this script copys the entire basisgeo to an NT machine
mount -F cifs -o username=dkorf,password=secret rdijsr032:/gisdata /tmp/copy_basisgeo
# test of mount gelukt is
MOUNTED=`mount | grep RDIJSR032 |grep basisgeo | wc -l`
# If source and destination exists then copy
if
[ -d /export/basisgeo/top250 ] -a [ $MOUNTED = 1 ]
then
rm -r /tmp/copy_basisgeo/basisgeo
cp -r /export/basisgeo /tmp/copy_basisgeo
else
echo "problems replicating basisgeo; original or source does not exist." | elm -s basisgeo d.kok@xxx.nl
fi
umount /tmp/copy_basisgeo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2003 04:09 AM
04-10-2003 04:09 AM
Re: transfer file from PC
Cron one from HP-UX extracts the MeasureWare information and copies it into a sending directory.
Cron two calls an ftp user account dedicated to the transfers. This account also exists on the work station. It tests for files in the sending directory, starts an ftp session with the user name and password stored in a .netrc file. Pasted below is a link describing this configuration?
Within the .netrc file are embedded ftp commands like put and macdef.
Once the files are on the work station a windows scheduler comes on at an appointed time, like 10 minutes after the cron, and executes a macro that loads the files into excel. The macro was made by just recording the commands as typed.
Here is the ftp .netrc example:
http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B2355-90696/B2355-90696_top.html&con=/hpux/onlinedocs/B2355-90696/00/00/73-con.html&toc=/hpux/onlinedocs/B2355-90696/00/00/73-toc.html&searchterms=.netrc%7cftp&queryid=20030410-055724
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2003 05:28 AM
04-10-2003 05:28 AM
Re: transfer file from PC
Software is free:
Secure Shell: a replacement for rcp ftp and telnet that encrypts passwords
http://www.software.hp.com/cgi-bin/swdepot_parser.cgi/cgi/displayProductInfo.pl?productNumber=T1471AA
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2003 03:40 AM
04-15-2003 03:40 AM
Re: transfer file from PC
Please report back if the given suggestions solve(d) your problem.