<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Samba frustration root cant mount regular user gets wrong permissions in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/samba-frustration-root-cant-mount-regular-user-gets-wrong/m-p/3450351#M86972</link>
    <description>Hi SEP,&lt;BR /&gt;&lt;BR /&gt;Always with my old config : RedHat 7.2, Samba 2.2.1. Mounting server on itself with "mount -f smbfs" and "smbmount" results in the same all_is_owned_by_root problem. But maybe my conf is too old. I can not even test the patch you mentionned due to this. I don't have another server here, but I'll try at home if I find time (but old versions too. I don't have time to upgrade, and it works so well).&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Fred&lt;BR /&gt;</description>
    <pubDate>Wed, 09 Feb 2005 13:49:47 GMT</pubDate>
    <dc:creator>Fred Ruffet</dc:creator>
    <dc:date>2005-02-09T13:49:47Z</dc:date>
    <item>
      <title>Samba frustration root cant mount regular user gets wrong permissions</title>
      <link>https://community.hpe.com/t5/operating-system-linux/samba-frustration-root-cant-mount-regular-user-gets-wrong/m-p/3450322#M86943</link>
      <description>Supposedly simple situation between two boxes.&lt;BR /&gt;&lt;BR /&gt;Client: Red Hat ES 3. Samba 3.0.9  &lt;BR /&gt;Server: Fedora Core 2 Samba 3.0.10&lt;BR /&gt;&lt;BR /&gt;client ip 192.168.0.40&lt;BR /&gt;server ip 192.168.0.20&lt;BR /&gt;&lt;BR /&gt;mount line from /etc/fstab&lt;BR /&gt;&lt;BR /&gt;//192.168.0.20/web /webtemp smbfs credentials=/etc/.smbpasswd 0 0&lt;BR /&gt;//192.168.0.20/web /webroot smbfs credentials=/etc/.rootsmbpasswd 0 0&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;the /etc/.smbpasswd file has two things in it&lt;BR /&gt;username=invest&lt;BR /&gt;password=password_for_user_invest&lt;BR /&gt;&lt;BR /&gt;mount /webtemp&lt;BR /&gt;&lt;BR /&gt;Works just fine.&lt;BR /&gt;&lt;BR /&gt;One problem. All the files are owned by root. Except invest is a valid user and should own files on the server. The user id numeric is the same on both systems.&lt;BR /&gt;&lt;BR /&gt;mount /webroot&lt;BR /&gt;&lt;BR /&gt;[root@jerusalem /]# mount /webroot&lt;BR /&gt;17997: session setup failed: ERRDOS - ERRnoaccess (Access denied.)&lt;BR /&gt;SMB connection failed&lt;BR /&gt;&lt;BR /&gt;the /etc/.rootsmbpasswd file&lt;BR /&gt;contains root credentials.&lt;BR /&gt;&lt;BR /&gt;I'm attaching the smb.conf file. I would like a methodology to mount this filesystem in /etc/fstab and have permissions on the mount drive match those on the server.&lt;BR /&gt;&lt;BR /&gt;user invest on the server&lt;BR /&gt;[invest@ashdod investmenttool]$ id&lt;BR /&gt;uid=500(invest) gid=104(web) groups=104(web)&lt;BR /&gt;&lt;BR /&gt;user invest on the client&lt;BR /&gt;[invest@jerusalem investmenttool]$ id&lt;BR /&gt;uid=500(invest) gid=104(web) groups=104(web)&lt;BR /&gt;&lt;BR /&gt;Bunny for a solution. I want to stop using NFS.&lt;BR /&gt;&lt;BR /&gt;Get this: root user on an hp9000 can mount using hp-ux methodology and gets correct perms. I think this is because cifsclient really sits on top of nfs.client with hp-ux.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Sat, 25 Dec 2004 21:18:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/samba-frustration-root-cant-mount-regular-user-gets-wrong/m-p/3450322#M86943</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2004-12-25T21:18:42Z</dc:date>
    </item>
    <item>
      <title>Re: Samba frustration root cant mount regular user gets wrong permissions</title>
      <link>https://community.hpe.com/t5/operating-system-linux/samba-frustration-root-cant-mount-regular-user-gets-wrong/m-p/3450323#M86944</link>
      <description>IMO, you should use "uid" in order to "set the uid that will own all files on the mounted filesystem." - see smbmount manpage.&lt;BR /&gt;&lt;BR /&gt;Rgds,&lt;BR /&gt;Vitaly&lt;BR /&gt;PS: I like your hostname!</description>
      <pubDate>Mon, 27 Dec 2004 01:34:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/samba-frustration-root-cant-mount-regular-user-gets-wrong/m-p/3450323#M86944</guid>
      <dc:creator>Vitaly Karasik_1</dc:creator>
      <dc:date>2004-12-27T01:34:52Z</dc:date>
    </item>
    <item>
      <title>Re: Samba frustration root cant mount regular user gets wrong permissions</title>
      <link>https://community.hpe.com/t5/operating-system-linux/samba-frustration-root-cant-mount-regular-user-gets-wrong/m-p/3450324#M86945</link>
      <description>with mount options :&lt;BR /&gt;mount -o uid=xxx,gid=yyy # will set mount point owner to xxx:yyy&lt;BR /&gt;mount -o setuid=xxx,setgid=yyy # will set every file under mount point to this user:group&lt;BR /&gt;&lt;BR /&gt;with smbmount options :&lt;BR /&gt;uid=xxx and gid=yyy # will set every file under mount point to this user:group&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Fred&lt;BR /&gt;</description>
      <pubDate>Mon, 27 Dec 2004 03:59:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/samba-frustration-root-cant-mount-regular-user-gets-wrong/m-p/3450324#M86945</guid>
      <dc:creator>Fred Ruffet</dc:creator>
      <dc:date>2004-12-27T03:59:51Z</dc:date>
    </item>
    <item>
      <title>Re: Samba frustration root cant mount regular user gets wrong permissions</title>
      <link>https://community.hpe.com/t5/operating-system-linux/samba-frustration-root-cant-mount-regular-user-gets-wrong/m-p/3450325#M86946</link>
      <description>I'll give it a try when I get a moment.&lt;BR /&gt;&lt;BR /&gt;Any reason why root can't do it based on the config file?&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Mon, 27 Dec 2004 09:11:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/samba-frustration-root-cant-mount-regular-user-gets-wrong/m-p/3450325#M86946</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2004-12-27T09:11:08Z</dc:date>
    </item>
    <item>
      <title>Re: Samba frustration root cant mount regular user gets wrong permissions</title>
      <link>https://community.hpe.com/t5/operating-system-linux/samba-frustration-root-cant-mount-regular-user-gets-wrong/m-p/3450326#M86947</link>
      <description>Are you basically saying that I have to build a different mount command for each user?&lt;BR /&gt;&lt;BR /&gt;My nfs/samba share on the server shares a folder called /web&lt;BR /&gt;&lt;BR /&gt;Under web are dozens of websites each owned by a different user. NFS mounts correctly reflect permissions on the server. Samba mounts do not.&lt;BR /&gt;&lt;BR /&gt;This seems like a configuration error with samba on the server. Doesn't it?&lt;BR /&gt;&lt;BR /&gt;????&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Mon, 27 Dec 2004 12:24:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/samba-frustration-root-cant-mount-regular-user-gets-wrong/m-p/3450326#M86947</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2004-12-27T12:24:28Z</dc:date>
    </item>
    <item>
      <title>Re: Samba frustration root cant mount regular user gets wrong permissions</title>
      <link>https://community.hpe.com/t5/operating-system-linux/samba-frustration-root-cant-mount-regular-user-gets-wrong/m-p/3450327#M86948</link>
      <description>Tried the suggestion.&lt;BR /&gt;&lt;BR /&gt;Root owns anything.&lt;BR /&gt;&lt;BR /&gt;If I ssh over to the samba server permissions are correct and respected.&lt;BR /&gt;&lt;BR /&gt;If I connect to the samba server with a windows client, permissions are correct and respected.&lt;BR /&gt;&lt;BR /&gt;??????????????????????&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Mon, 27 Dec 2004 12:51:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/samba-frustration-root-cant-mount-regular-user-gets-wrong/m-p/3450327#M86948</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2004-12-27T12:51:41Z</dc:date>
    </item>
    <item>
      <title>Re: Samba frustration root cant mount regular user gets wrong permissions</title>
      <link>https://community.hpe.com/t5/operating-system-linux/samba-frustration-root-cant-mount-regular-user-gets-wrong/m-p/3450328#M86949</link>
      <description>Resolved the most minor and trivial of the issues and came up with an item of note.&lt;BR /&gt;&lt;BR /&gt;I added root as a valid user to the smbpasswd file on the samba server.&lt;BR /&gt;&lt;BR /&gt;My old methodology which involved smbpasswd -a username password does not work for Samba 3. I had to do it on the commandline and put the password in twice.&lt;BR /&gt;&lt;BR /&gt;So, now root can mount.&lt;BR /&gt;&lt;BR /&gt;So I decided to conduct a little experiment.&lt;BR /&gt;&lt;BR /&gt;I mounted a samba share from the client as root&lt;BR /&gt;&lt;BR /&gt;I changed directories to a test directory:&lt;BR /&gt;&lt;BR /&gt;cd /web/steveT&lt;BR /&gt;&lt;BR /&gt;touch testfile&lt;BR /&gt;&lt;BR /&gt;Naturally the file was owned by root.&lt;BR /&gt;&lt;BR /&gt;chown invest:web testfile&lt;BR /&gt;&lt;BR /&gt;That should work right?&lt;BR /&gt;&lt;BR /&gt;No:&lt;BR /&gt;&lt;BR /&gt;chown: changing the ownership of 'testfile' not permitted.&lt;BR /&gt;&lt;BR /&gt;I mounted the same share three times:&lt;BR /&gt;&lt;BR /&gt;Once with NFS&lt;BR /&gt;second /webroot with samba as root&lt;BR /&gt;third /webtemp with samba as invest&lt;BR /&gt;&lt;BR /&gt;su - invest&lt;BR /&gt;&lt;BR /&gt;cd / &lt;A directory="" that="" invest="" owns="" on="" server="" target="_blank"&gt;&lt;BR /&gt;touch steve232&lt;BR /&gt;Permission denied.&lt;BR /&gt;&lt;BR /&gt;Something must be wrong with the smb.conf file. Hopefully it won't take a Kosher steak dinner to get someone to read the file and make a suggestion, but if necessary....&lt;BR /&gt;&lt;BR /&gt;SEP&lt;/A&gt;</description>
      <pubDate>Mon, 27 Dec 2004 13:31:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/samba-frustration-root-cant-mount-regular-user-gets-wrong/m-p/3450328#M86949</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2004-12-27T13:31:05Z</dc:date>
    </item>
    <item>
      <title>Re: Samba frustration root cant mount regular user gets wrong permissions</title>
      <link>https://community.hpe.com/t5/operating-system-linux/samba-frustration-root-cant-mount-regular-user-gets-wrong/m-p/3450329#M86950</link>
      <description>Ping:&lt;BR /&gt;&lt;BR /&gt;Why does the windows samba client get proper permissions but RH does not.&lt;BR /&gt;&lt;BR /&gt;Will be doing some testing with a RH laptop to see if Fedora Core 3 is a better client than RH ES 3.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Mon, 03 Jan 2005 01:42:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/samba-frustration-root-cant-mount-regular-user-gets-wrong/m-p/3450329#M86950</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2005-01-03T01:42:29Z</dc:date>
    </item>
    <item>
      <title>Re: Samba frustration root cant mount regular user gets wrong permissions</title>
      <link>https://community.hpe.com/t5/operating-system-linux/samba-frustration-root-cant-mount-regular-user-gets-wrong/m-p/3450330#M86951</link>
      <description>Have you tried shangig security smb.conf parameter from user to share ?&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Fred&lt;BR /&gt;</description>
      <pubDate>Mon, 03 Jan 2005 04:52:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/samba-frustration-root-cant-mount-regular-user-gets-wrong/m-p/3450330#M86951</guid>
      <dc:creator>Fred Ruffet</dc:creator>
      <dc:date>2005-01-03T04:52:25Z</dc:date>
    </item>
    <item>
      <title>Re: Samba frustration root cant mount regular user gets wrong permissions</title>
      <link>https://community.hpe.com/t5/operating-system-linux/samba-frustration-root-cant-mount-regular-user-gets-wrong/m-p/3450331#M86952</link>
      <description>Fred,&lt;BR /&gt;&lt;BR /&gt;You are a mind reader. I was thinking the same thing all weekend but did not get around to trying it.&lt;BR /&gt;&lt;BR /&gt;I will do so in the next 24 hours. G-d willing.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Mon, 03 Jan 2005 09:10:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/samba-frustration-root-cant-mount-regular-user-gets-wrong/m-p/3450331#M86952</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2005-01-03T09:10:48Z</dc:date>
    </item>
    <item>
      <title>Re: Samba frustration root cant mount regular user gets wrong permissions</title>
      <link>https://community.hpe.com/t5/operating-system-linux/samba-frustration-root-cant-mount-regular-user-gets-wrong/m-p/3450332#M86953</link>
      <description>Apparently at some point over the weekend I actually tried security = share&lt;BR /&gt;&lt;BR /&gt;Restarted the daemon again this morning and tested it. Same results.&lt;BR /&gt;&lt;BR /&gt;Perhaps a password server. Let the FC2 box be the password server? Looks like that option is for NT based servers.&lt;BR /&gt;&lt;BR /&gt;Suggestions welcome and rewarded.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Mon, 03 Jan 2005 09:17:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/samba-frustration-root-cant-mount-regular-user-gets-wrong/m-p/3450332#M86953</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2005-01-03T09:17:46Z</dc:date>
    </item>
    <item>
      <title>Re: Samba frustration root cant mount regular user gets wrong permissions</title>
      <link>https://community.hpe.com/t5/operating-system-linux/samba-frustration-root-cant-mount-regular-user-gets-wrong/m-p/3450333#M86954</link>
      <description>Something sounds strange. Here I extract your global section from provided smb.conf :&lt;BR /&gt;   workgroup = napro&lt;BR /&gt;   server string = Samba DATA Server&lt;BR /&gt;   hosts allow = 192.168.0. 127.&lt;BR /&gt;   printcap name = /etc/printcap&lt;BR /&gt;   load printers = yes&lt;BR /&gt;   log file = /var/log/samba/%m.log&lt;BR /&gt;   max log size = 50&lt;BR /&gt;   security = user&lt;BR /&gt;   socket options = TCP_NODELAY SO_RCVBUF=8192 SO_SNDBUF=8192&lt;BR /&gt;   local master = no&lt;BR /&gt;   domain master = no &lt;BR /&gt;   preferred master = no&lt;BR /&gt;   dns proxy = no &lt;BR /&gt;   idmap uid = 16777216-33554431&lt;BR /&gt;   idmap gid = 16777216-33554431&lt;BR /&gt;   template shell = /bin/false&lt;BR /&gt;   winbind use default domain = no&lt;BR /&gt;&lt;BR /&gt;Questions : With this conf, who is doing authentication ? You use a workgroup. Is it a domain ? Is there a PDC ? You use "idmap uid" and "idmap uid" but do not have "idmap backend". Those points doesn't seem clear to me.&lt;BR /&gt;&lt;BR /&gt;If you don't have a PDC in the domain, you should maybe use your samba server as one.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Fred&lt;BR /&gt;</description>
      <pubDate>Thu, 06 Jan 2005 04:11:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/samba-frustration-root-cant-mount-regular-user-gets-wrong/m-p/3450333#M86954</guid>
      <dc:creator>Fred Ruffet</dc:creator>
      <dc:date>2005-01-06T04:11:01Z</dc:date>
    </item>
    <item>
      <title>Re: Samba frustration root cant mount regular user gets wrong permissions</title>
      <link>https://community.hpe.com/t5/operating-system-linux/samba-frustration-root-cant-mount-regular-user-gets-wrong/m-p/3450334#M86955</link>
      <description>What I've done up to now is let the Samba Server fend for itself.&lt;BR /&gt;&lt;BR /&gt;Its in the napro workgroup so that users on that server who have id's on the Samba server can also attach to and use resources without going through a full procedure to integrate the box into the domain.&lt;BR /&gt;&lt;BR /&gt;About the only feature thats not working properly is permissoins on Samba shares. The same directory is also exported under NFS, a temporary solution so that permissions are correct for my users.&lt;BR /&gt;&lt;BR /&gt;I have resolved the issue of root user not being able to do the samba mount. The syntax of the setup smbpasswd command changed with Samba 3.0.x&lt;BR /&gt;&lt;BR /&gt;So the only annoying thing is that when root mounts the samba share from Linux (windows and hpux works) permissions are incorrect.&lt;BR /&gt;&lt;BR /&gt;How would you suggest I proceed?&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Thu, 06 Jan 2005 08:51:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/samba-frustration-root-cant-mount-regular-user-gets-wrong/m-p/3450334#M86955</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2005-01-06T08:51:43Z</dc:date>
    </item>
    <item>
      <title>Re: Samba frustration root cant mount regular user gets wrong permissions</title>
      <link>https://community.hpe.com/t5/operating-system-linux/samba-frustration-root-cant-mount-regular-user-gets-wrong/m-p/3450335#M86956</link>
      <description>And what is Samba version on HP-UX ? (or CIFS ?) Same as on linux ? Maybe the linux Samba is not able to contact domain, such as HP-UX does. May be a smb problem as well as a network conf...&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Fred&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 06 Jan 2005 12:47:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/samba-frustration-root-cant-mount-regular-user-gets-wrong/m-p/3450335#M86956</guid>
      <dc:creator>Fred Ruffet</dc:creator>
      <dc:date>2005-01-06T12:47:57Z</dc:date>
    </item>
    <item>
      <title>Re: Samba frustration root cant mount regular user gets wrong permissions</title>
      <link>https://community.hpe.com/t5/operating-system-linux/samba-frustration-root-cant-mount-regular-user-gets-wrong/m-p/3450336#M86957</link>
      <description>Linux on the server side. Samba 3.10&lt;BR /&gt;Linx on the Linux client side 3..0.9 latest from red hat.&lt;BR /&gt;&lt;BR /&gt;HP was tested with the last 2.2 samba/cifs client because thats what was available when I wrote this thread.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Thu, 06 Jan 2005 12:50:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/samba-frustration-root-cant-mount-regular-user-gets-wrong/m-p/3450336#M86957</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2005-01-06T12:50:23Z</dc:date>
    </item>
    <item>
      <title>Re: Samba frustration root cant mount regular user gets wrong permissions</title>
      <link>https://community.hpe.com/t5/operating-system-linux/samba-frustration-root-cant-mount-regular-user-gets-wrong/m-p/3450337#M86958</link>
      <description>In fact, I have here a 2.2.1 on a linux box. Mounting server on itself results in the same error as yours. Have you tried this ? Maybe it's a problem of smbclient on linux...&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Fred&lt;BR /&gt;</description>
      <pubDate>Thu, 06 Jan 2005 13:08:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/samba-frustration-root-cant-mount-regular-user-gets-wrong/m-p/3450337#M86958</guid>
      <dc:creator>Fred Ruffet</dc:creator>
      <dc:date>2005-01-06T13:08:38Z</dc:date>
    </item>
    <item>
      <title>Re: Samba frustration root cant mount regular user gets wrong permissions</title>
      <link>https://community.hpe.com/t5/operating-system-linux/samba-frustration-root-cant-mount-regular-user-gets-wrong/m-p/3450338#M86959</link>
      <description>I think it is a linux samba client error.&lt;BR /&gt;&lt;BR /&gt;I guess I may need to file a bug report. samba.org ????&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Thu, 06 Jan 2005 13:34:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/samba-frustration-root-cant-mount-regular-user-gets-wrong/m-p/3450338#M86959</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2005-01-06T13:34:10Z</dc:date>
    </item>
    <item>
      <title>Re: Samba frustration root cant mount regular user gets wrong permissions</title>
      <link>https://community.hpe.com/t5/operating-system-linux/samba-frustration-root-cant-mount-regular-user-gets-wrong/m-p/3450339#M86960</link>
      <description>In fact, it's hard to believe. I thought samba was developped on linux to access windows share, and then ported to other systems. So if it works on HP, and not on Linux sound strange to me.&lt;BR /&gt;If you contact samba.org, let us know of the answer...&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Fred&lt;BR /&gt;</description>
      <pubDate>Fri, 07 Jan 2005 04:01:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/samba-frustration-root-cant-mount-regular-user-gets-wrong/m-p/3450339#M86960</guid>
      <dc:creator>Fred Ruffet</dc:creator>
      <dc:date>2005-01-07T04:01:10Z</dc:date>
    </item>
    <item>
      <title>Re: Samba frustration root cant mount regular user gets wrong permissions</title>
      <link>https://community.hpe.com/t5/operating-system-linux/samba-frustration-root-cant-mount-regular-user-gets-wrong/m-p/3450340#M86961</link>
      <description>I shall keep you in the loop. It was extremely useful that you took the time to actually verify my conclusions.  Thats going to get you a bunny.&lt;BR /&gt;&lt;BR /&gt;I'm going to hold off a few days so people don't pass the thread by thinking its solved.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Fri, 07 Jan 2005 08:44:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/samba-frustration-root-cant-mount-regular-user-gets-wrong/m-p/3450340#M86961</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2005-01-07T08:44:08Z</dc:date>
    </item>
    <item>
      <title>Re: Samba frustration root cant mount regular user gets wrong permissions</title>
      <link>https://community.hpe.com/t5/operating-system-linux/samba-frustration-root-cant-mount-regular-user-gets-wrong/m-p/3450341#M86962</link>
      <description>Fred,&lt;BR /&gt;&lt;BR /&gt;I've logged a Samba bug.&lt;BR /&gt;&lt;BR /&gt;I may ask you to submit configuration information to samba should they request it.&lt;BR /&gt;&lt;BR /&gt;If time zones are compatible, I might be able to allocate some telephone time to playing with this, if you are interested.&lt;BR /&gt;&lt;BR /&gt;Also, my shell account provider, speakeasy.net may have this setup working right on Debian. I'm going to ask if they use NFS or Samba and if its Samba what the config file looks like.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Fri, 07 Jan 2005 09:01:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/samba-frustration-root-cant-mount-regular-user-gets-wrong/m-p/3450341#M86962</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2005-01-07T09:01:19Z</dc:date>
    </item>
  </channel>
</rss>

