- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Urgent ...help
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-22-2001 07:22 PM
04-22-2001 07:22 PM
Urgent ...help
Use script or how ? any idea pls.....
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-22-2001 07:28 PM
04-22-2001 07:28 PM
Re: Urgent ...help
I can think of the following ways:
1) Run an FTP server on Win98 PC. Run a cron-job ftp script from your Unix system.
2) Run an FTP server on your Unix system. Run an at-job ftp script from your Win98 PC.
3) Install SAMBA/CIFS on the Unix system. But because you are only uploaded a single file, it might be an overkill.
Hope this helps. Regards.
Steven Sim Kok Leong
Brainbench MVP for Unix Admin
http://www.brainbench.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-22-2001 07:38 PM
04-22-2001 07:38 PM
Re: Urgent ...help
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-22-2001 07:43 PM
04-22-2001 07:43 PM
Re: Urgent ...help
If you're urgent
ftp form PC is most easy
by invoke ftp program at dos prompt
supply unix account and password
and use put for put PC file to unix
use get to get unix file to NT.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-22-2001 10:37 PM
04-22-2001 10:37 PM
Re: Urgent ...help
For getting a file occassionally method suggested by printaporn is better, but in ur case since u need it often it is good to use SAMBA which makes ur job easier.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-23-2001 03:01 AM
04-23-2001 03:01 AM
Re: Urgent ...help
Later,
Bill
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-23-2001 12:38 PM
04-23-2001 12:38 PM
Re: Urgent ...help
Look into using .netrc file for security.
Refs;
man ftp
man netrc
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2001 02:24 AM
04-24-2001 02:24 AM
Re: Urgent ...help
You can export your UNIX file system & install on your PC that program. In that way, you can connect your PC to your UNIX server and to share the files.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2001 11:20 AM
04-24-2001 11:20 AM
Re: Urgent ...help
- fnhalili
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2001 12:14 PM
04-24-2001 12:14 PM
Re: Urgent ...help
You only have to add "+Your-PC-User-Name" to your home account's .rhosts file on the Unix box. You can then rcp any file on your PC, to any place on the Unix box that allows "world" to access and write(Usually /tmp allows this). At dos prompt :
cd to location on PC where file to be copied exists
rcp -b
At a unix prompt on yourunixhost;
cat ~yourunixname/.rhosts # should show the following
+ yourunixname
+ yourpcname
HINT: Unix is case-sensitive!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2001 04:45 PM
04-24-2001 04:45 PM
Re: Urgent ...help
To do this via FTP every couple of minutes is crazy! This is a very tedious mechanism for transfering 1 file( unless it is HUGE!).
Download and install SAMBA, and read the docs. You can use smbclient to access a windows share directly, and therefor write a script to run via cron. Since smbclient is very similar to ftp the smbclient may not be the most effective mechanism.
The most effective method is to create a samba share, and mount that on windblows. Have the windblows program dumping a file dump to the mapped drive.
Read the docs for SAMBA, and you will learn all you need. pretty basic though...
If you have to use smbclient, then it is a bit better than ftp, because it is completely control the scripts from the UNIX box, without adding software to windblows!
Read the docs for smbclient, and you'll be off and running...
Regards
Shannon