- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: How do i mount Windows NT file system on 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
03-18-2002 07:14 AM
03-18-2002 07:14 AM
How do i mount Windows NT file system on HP-UX server.
I want to mount windows NT file system /abcd on HP-UX server on a directory /hp-abcd
Can anybody tell me for sucessful mounting what needs to be done on NT side and on HP side.
Thanks,
-Piyush.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2002 07:16 AM
03-18-2002 07:16 AM
Re: How do i mount Windows NT file system on HP-UX server.
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2002 07:18 AM
03-18-2002 07:18 AM
Re: How do i mount Windows NT file system on HP-UX server.
I need to know the commands for mounting NT filke system on HP.
Not the packages.
Thanks,
-Piyush.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2002 07:19 AM
03-18-2002 07:19 AM
Re: How do i mount Windows NT file system on HP-UX server.
If you are on 11.X have a look at HPs CIFS9000 products:
CIFS9000 Client (allows mounting of NT shares):
http://www.software.hp.com/cgi-bin/swdepot_parser.cgi/cgi/displayProductInfo.pl?productNumber=B8724AA
CIFS9000 Server (allows NT to mount HP-UX shares):
http://www.software.hp.com/cgi-bin/swdepot_parser.cgi/cgi/displayProductInfo.pl?productNumber=B8725AA
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2002 07:22 AM
03-18-2002 07:22 AM
Re: How do i mount Windows NT file system on HP-UX server.
Thanks,
-Piyush.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2002 07:24 AM
03-18-2002 07:24 AM
Re: How do i mount Windows NT file system on HP-UX server.
http://www.docs.hp.com/hpux/onlinedocs/B8724-90011/B8724-90011.html
In the section "Installing and Configuring the CIFS/9000 Client" go to the sub-section "More on Mounting CIFS Filesystems" and it will give instructions on how to mount the filesystems.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2002 07:26 AM
03-18-2002 07:26 AM
Re: How do i mount Windows NT file system on HP-UX server.
Once you install the CIFS/9000, you will get access to all shares from NT.
OR check this thread for command lines:
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x366c37f45ef7d4118fef0090279cd0f9,00.html
HTH,
Shiju
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2002 07:26 AM
03-18-2002 07:26 AM
Re: How do i mount Windows NT file system on HP-UX server.
If the filesystem on the NT is exported, then you just use the 'mount' command to mount. Something like:
# mount nt_machine:/abcd /hp_abcd
Do a man on mount_nfs for NFS specific mount options.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2002 07:31 AM
03-18-2002 07:31 AM
Re: How do i mount Windows NT file system on HP-UX server.
On your NT, if you are mounting an HP drive, then on the HP you have to export your mount point:
man exportfs
add entry to /etc/exports
On your HP, if you are mounting an NT drive, then you have to export your mount point from your NT, and then on your HP mount -F nfs hostname:path localdir
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2002 07:51 AM
03-18-2002 07:51 AM
Re: How do i mount Windows NT file system on HP-UX server.
First ensure you have the NFS client started on the HP-UX system.
Run #ps -ef | grep rpc
You should see rpcbind rpc.statd & rpc.lockd
If running 10.20 you're looking for portmap
If none are running then you need to start the NFS client:
#/sbin/init.d/nfs.core start then run
#/sibn/init.d/nfs.client start
Your /etc/rc.config.d/nfsconf should contain (prior to running above)
NFS_CLIENT=1
NFS_SERVER=0 ( if not serving NFS)
NUM_NFSD=0
NUM_NFSIOD=4
PCNFS_SERVER=0
START_MOUNTD=0
At this point you can try to mount the NFS dir the NT is exporting.
#mount ntservername:/abcd /hp-abcd
Provided you've created the mount point & the NT server is in DNS (or NIS)or at least in /etc/hosts and is exporting that file-system
You can verify that the NT server is exporting FSs with the showmount command:
#showmount -e ntservername
If no file systems appear - you'll have to set them up on the NT server - before you can mount them on the HP system.
If not sure if NT server is set to serve NFS you can run
#rpcinfo -u ntservername nfs (for UDP) or for TCP use:
#rpcinfo -t ntservername nfs
If the NT server returns nothing then it's not setup as a NFS server.
HTH,
Jeff