- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Samba
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-08-2004 05:58 AM
03-08-2004 05:58 AM
My L2000 has HP-UX 11.0 installed. I also have a D380 that I just upgraded to HP-UX 11.i and Samba came with the upgrade.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2004 06:00 AM
03-08-2004 06:00 AM
Solutionhttp://hpux.cs.utah.edu/hppd/hpux/Networking/Misc/samba-3.0.2a/
There's documentation there as well.
Good luck
mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2004 06:02 AM
03-08-2004 06:02 AM
Re: Samba
Its a great tool
Here is the links:
Client
http://software.hp.com/portal/swdepot/displayProductInfo.do?productNumber=B8724AA
Server:
http://software.hp.com/portal/swdepot/displayProductInfo.do?productNumber=B8725AA
Configuration Docs:
http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B8725-90021/B8725-90021_top.html&con=/hpux/onlinedocs/B8725-90021/00/00/9-con.html&toc=/hpux/onlinedocs/B8725-90021/00/00/9-toc.html&searchterms=configuration%7ccifs/9000&queryid=20040308-120125
My search:
http://us-support2.external.hp.com/emse/bin/doc.pl/sid=f313362c0d0fd42562?todo=search&searchtext=cifs%2F9000+configuration&searchcriteria=allwords&searchtype=SEARCH_MANUAL&searchcategory=ALL&rn=25&presort=rank&x=47&y=10
I install it on all servers, its a real time saver.
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-08-2004 06:05 AM
03-08-2004 06:05 AM
Re: Samba
https://payment.ecommerce.hp.com/portal/swdepot/try.do?productNumber=B8724AA
http://software.hp.com/portal/swdepot/displayProductInfo.do?productNumber=B8725AA
Also, for documents - docs.hp.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2004 05:43 AM
03-10-2004 05:43 AM
Re: Samba
Configuring HP CIFS Server, kodiak, as a domain_member_server
in fnsb_main with domain level authentication.
This may take a moment...
Attempting to join the domain fnsb_main...
Successfully joined the domain fnsb_main.
Executing testparm to validate your smb.conf parameters.
Do you want to dump the full list of your smb.conf parameters?
(Y or N)? : y
Load smb config files from /etc/opt/samba/smb.conf
Processing section "[homes]"
Processing section "[tmp]"
Loaded services file OK.
ERROR: Not found the user smbnull as guest account on [global] from /etc/passwd
Recommend: Please use smbnull as guest account on [global]
or change invalid uid/gid to positive numbers.
Processing comments in /etc/opt/samba/smb.conf
ERROR: Not found the user smbnull as guest account on [homes] from /etc/passwd
ERROR: Not found the user smbnull as guest account on [tmp] from /etc/passwd
Recommend: Please use smbnull as guest account
or change invalid uid/gid to positive numbers.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2004 05:48 AM
03-10-2004 05:48 AM
Re: Samba
What do you get if you do
grep smbnull /etc/passwd and
grep smbnull /etc/group ?
Make sure these accounts are accessible by doing a 'su - smbnull'.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2004 06:18 AM
03-10-2004 06:18 AM
Re: Samba
root: /home ==> grep smbnull /etc/passwd
root: /home ==> grep smbnull /etc/group
smbnull::101:
root: /home ==>
root: /home ==> su - smbnull
su: Unknown id: smbnull
root: /home ==>
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2004 06:33 AM
03-10-2004 06:33 AM
Re: Samba
'smbnull' account didn't get created. So run the command
#useradd -u 101 -g 101 -d /home/smbnull -m -k /etc/skel -s /usr/bin/ksh -c "DO NOT USE OR DELETE - needed by Samba" smbnull
#passwd -l smbnull
Then try configuring Samba again.
-Sri