- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: map hpux 11.11 file system as windows drive
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-23-2006 05:05 AM
03-23-2006 05:05 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-23-2006 05:11 AM
03-23-2006 05:11 AM
Re: map hpux 11.11 file system as windows drive
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-23-2006 05:12 AM
03-23-2006 05:12 AM
Re: map hpux 11.11 file system as windows drive
mount windows_server_name:/drive/spec /mount_dir_on_hpux
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-23-2006 05:17 AM
03-23-2006 05:17 AM
Re: map hpux 11.11 file system as windows drive
The best way to go is to install the free CIFS/9000 Samba server into HP-UX. You usually need the client to do things like join the Samba server to the domain.
NFS mount for Windows is NOT built in and costs money.
Punch in Samba or CIFS 9000 as your search term at http://software.hp.com
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
03-23-2006 05:19 AM
03-23-2006 05:19 AM
Re: map hpux 11.11 file system as windows drive
http://h20293.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=B8724AA
http://h20293.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=B8725AA
I'm having real problems the the net right now, and I can not blame HP because it seems to be universal.
It was not intentional, breaking this up into two posts, the connection clearedup right after I gave up on software.hp.com or bezeq, not really sure.
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
03-23-2006 05:27 AM
03-23-2006 05:27 AM
Re: map hpux 11.11 file system as windows drive
Here's an example mapping the first available drive letter and prompting you for the password.
mount -u:cstephen '-p:*' bugs:/source '*'
This will mount the /source filesystem on host 'bugs' on the first available drive letter as user cstephen. Note that it is necessary to quote the asterisks to prevent expansion by the shell.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-23-2006 05:31 AM
03-23-2006 05:31 AM
Re: map hpux 11.11 file system as windows drive
You should already have it but you may want to upgrade to the latest CIFS CLient version at software home.
On the Windows side, simply share out your filesystem as a WIndows share...
Favourite Toy:
AMD Athlon II X6 1090T 6-core, 16GB RAM, 12TB ZFS RAIDZ-2 Storage. Linux Centos 5.6 running KVM Hypervisor. Virtual Machines: Ubuntu, Mint, Solaris 10, Windows 7 Professional, Windows XP Pro, Windows Server 2008R2, DOS 6.22, OpenFiler
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-23-2006 06:04 AM
03-23-2006 06:04 AM
Re: map hpux 11.11 file system as windows drive
root@drfinpro-> exportfs
/history/prod/ar/import/advantage
Is there anything that I need to restart on hpux? I think we're struggling with the SFU side. I hope I didn't confuse anyone. tahnks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-23-2006 06:48 AM
03-23-2006 06:48 AM
Re: map hpux 11.11 file system as windows drive
1) To make things easier initially, I suggest you allow anonymous NFS mounts.
On your UNIX box:
a) exportfs -u /history/prod/ar/import # unexport the filesystem
b) Now edit /etc/exports and make an entry like this:
/history/prod/ar/import/advantage -anon=-2
c) Now for every directory in that path make sure that the read and search permissions for 'other' are set AND that the /history mountpoint does not have extremely restrictive permissions set. You will need to umount the filesystem on the server to confirm this. You should also enable write access for 'other' to the lowest level directory if you wish to allow users to create files in that directory.
d) exportfs -a # re-export the filesystem
e) exportfs # confirm that the filesystem is now exported and allows anonymous access
2) (Optional) It would be a good idea to try mounting this filesystem from another UNIX client so that you know you have exported properly.
e.g.
mkdir /mydir
chmod 775 mydir
mount -F nfs root@drfinpro-> exportfs
/history/prod/ar/import/advantage
If this works then umount /mydir.
3) On the Windows box under the Korn Shell:
(I assume that you can ping the UNIX host using the hostname; if not then you have name resolution promlems).
mount drfinpro:/history/prod/ar/import/advantage R:
You should now see files under /dev/fs/R.
ls -l /dev/fs/R
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-23-2006 06:51 AM
03-23-2006 06:51 AM
Re: map hpux 11.11 file system as windows drive
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-23-2006 07:13 AM
03-23-2006 07:13 AM
Re: map hpux 11.11 file system as windows drive
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-23-2006 07:23 AM
03-23-2006 07:23 AM
Re: map hpux 11.11 file system as windows drive
2) (Optional) It would be a good idea to try mounting this filesystem from another UNIX client so that you know you have exported properly.
BAD:
mkdir /mydir
chmod 775 mydir
mount -F nfs root@drfinpro-> exportfs
/history/prod/ar/import/advantage
GOOD:
mkdir /mydir
chmod 775 mydir
mount -F nfs drfinpro:/history/prod/ar/import/advantage /mydir
If this works then umount /mydir.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-23-2006 07:41 AM
03-23-2006 07:41 AM
Re: map hpux 11.11 file system as windows drive
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-23-2006 08:06 AM
03-23-2006 08:06 AM
Re: map hpux 11.11 file system as windows drive
We are going to test NFS by making an NFS mount on itself.
On host: drfinpro
mkdir /mydir
chmod 775 mydir
mount -F nfs drfinpro:/history/prod/ar/import/advantage /mydir
If you can now access the files under /mydir then the loopback mount worked. This means that your server is working. It does not mean that NFS is allowed through a firewall or that you are not using incompatible NFS versions or your server may be using tcp and your client may be using udp.
I strongly suspect that once you can get a UNIX NFS client to mount that all your problems with Microsoft SFU will disappear.
Here's a troubleshooting guide:
http://docs.hp.com/en/5991-1153/ch08s01.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-23-2006 08:18 AM
03-23-2006 08:18 AM
Re: map hpux 11.11 file system as windows drive
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-23-2006 08:23 AM
03-23-2006 08:23 AM
Re: map hpux 11.11 file system as windows drive
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-23-2006 08:30 AM
03-23-2006 08:30 AM
Solution- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-23-2006 08:37 AM
03-23-2006 08:37 AM