- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- CIFS for 10.20
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
10-08-2003 08:55 PM
10-08-2003 08:55 PM
CIFS for 10.20
I want to share a filesystem from HPUX 10.20 box to windows machines. I believe that CIFS is not available for 10.20. Is there any other way to implement it?
Thanks in advance
Vikas
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2003 09:04 PM
10-08-2003 09:04 PM
Re: CIFS for 10.20
You are right in thinking that CIFS is not available for 10.20. You could consider installing an open source version of Samba (which is what CIFS is based on.) Try http://www.samba.org as a starting point.
There are NFS clients available for PCs, and of course NFS supplied with 10.20.
It's also worth remembering that 10.20 is an old OS, there are many good reasons to upgrade to 11.x.
regards,
Darren.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2003 09:06 PM
10-08-2003 09:06 PM
Re: CIFS for 10.20
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2003 09:10 PM
10-08-2003 09:10 PM
Re: CIFS for 10.20
You can not use cifs on 10.20, but you can use Samba. Here is a page for the precompiled software.
http://hpux.connect.org.uk/hppd/hpux/Networking/Misc/samba-2.2.3a/
http://www.jt.iki.fi/files/samba.htm
Regards,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2003 10:04 PM
10-08-2003 10:04 PM
Re: CIFS for 10.20
-Vikas
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2003 11:45 PM
10-08-2003 11:45 PM
Re: CIFS for 10.20
Is there any other manual configuration I need to do?
-Vikas
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2003 11:58 PM
10-08-2003 11:58 PM
Re: CIFS for 10.20
Just copied the file from another machine.
Just attached the sample file.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2003 12:01 AM
10-09-2003 12:01 AM
Re: CIFS for 10.20
CIFS is a superset of Samba. You can refer this document
http://docs.hp.com/cgi-bin/onlinedocs.py?mpn=B8725-90016&service=hpux&path=00/00/36&title=Installing%20and%20Administering%20the%20CIFS/9000%20Server,%20September%202001
HTH,
Umapathy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2003 12:07 AM
10-09-2003 12:07 AM
Re: CIFS for 10.20
# Samba daemon startup script
/usr/local/samba/bin/smbd -D
/usr/local/samba/bin/nmbd -D
echo "Starting samba"
Revert
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2003 12:41 AM
10-09-2003 12:41 AM
Re: CIFS for 10.20
smbd -D -l "log file" -s "smb.conf file path"
I got this error in the log file
[2003/10/09 13:12:44, 0] smbd/server.c:main(698)
smbd version 2.2.3a started.
Copyright Andrew Tridgell and the Samba Team 1992-2002
[2003/10/09 13:12:44, 0] tdb/tdbutil.c:tdb_log(475)
tdb((NULL)): tdb_open_ex: could not open file /opt/samba/private/secrets.tdb: No such file or directory
[2003/10/09 13:12:44, 0] passdb/secrets.c:secrets_init(43)
Failed to open /opt/samba/private/secrets.tdb
In my /opt/samba directory, I have only following directories
bin,doc,lib,man and swat.
Any suggestions?
-Vikas
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2003 12:48 AM
10-09-2003 12:48 AM
Re: CIFS for 10.20
you can run testparm to check the configuration file syntax..
you can just use (without options)
#smbd
to start the process.
logs are available by default under /usr/local/samba/var
Also do not forget to start
#nmbd
Revert