- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Help with samba users writing files to share
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
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
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
тАО08-13-2003 01:17 PM
тАО08-13-2003 01:17 PM
I have samba running on my HP-UX 11.0 server. I have a basic default configuration for my shares. I have users, who are part of a development group, who need to access a samba share on their pc's. When the users access the share they are not allowed to write to the share. I have been adding the users to the samba database via the swat tool. The permissions on the samba share are '755 owner=oracle group=devel' The development members are members of group devel. If I change the permissions on the samba share to 777, then the users can write files to the share. In my share config, the guest user is smbnull, I added smbnull to the devel group, but still the users can not write files to the samba share directory. any help is greatly appreciated.
Thanks everyone.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-13-2003 03:25 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-14-2003 02:31 AM
тАО08-14-2003 02:31 AM
Re: Help with samba users writing files to share
Here's some pointers of things to check:
1) run smbstatus whilst your users are connected, this will show whether they are connected as a particular user - or as the guest user (smbnull in your case.) If they're connected as guest that implies that something is wrong with your authentication.
2) check that the log level in the global section of your smb.conf is set to 2; if not, set it and restart CIFS. Then you will start logging information about how you're accessing files on the share.
It would be useful to see your smb.conf to determine your security method and check the other settings.
regards,
Darren
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-14-2003 02:40 AM
тАО08-14-2003 02:40 AM
Re: Help with samba users writing files to share
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-14-2003 02:52 AM
тАО08-14-2003 02:52 AM
Re: Help with samba users writing files to share
I've been investigating the writable/writeable parameter in the smb.conf man page.
It's the inverse of the read only parameter, hence I believe if you already have read only = no in the [global] section, you don't have to put writable = yes or read only = no under each share.
A useful tool for seeing exactly what you have set up is testparm - which will show you all the parameters and their values.
Elaine - it could also be useful if you post the output of testparm -s too ;)
regards,
Darren
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-14-2003 03:12 AM
тАО08-14-2003 03:12 AM
Re: Help with samba users writing files to share
First of all u put the permission for all shares is 777
then put the entry in smb.conf in share tab
writable=yes
browsable=yes
thanx
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-14-2003 11:12 AM
тАО08-14-2003 11:12 AM
Re: Help with samba users writing files to share
writable = true did the job!!!
Thanks again everyone.