Displaying 8 results from an estimated 8 matches for "groupshar".
Did you mean:
groupshare
2013 Sep 15
1
group share directory
...rin.blogspot.com/2010/03/shared-folders-in-ubuntu-with-setgid.html
http://techslaves.org/2010/04/23/posix-default-acls-umask-and-project-directories/
Here is a Bourne shell script that implements a partial solution:
#!/bin/sh
set -o nounset
set -o errexit
DIR=/mnt/z/data/GroupShare
USERNAME=groupshare
if `grep -q $USERNAME /etc/passwd`; then deluser --system $USERNAME; fi
if `grep -q $USERNAME /etc/group`; then delgroup --system $USERNAME; fi
if [ -d $DIR ]; then rm -rf $DIR; fi
adduser --system --group --no-create-home $USERNAME
mkdir $DIR...
2012 Jan 03
2
Samba Folder Permissions
...tefan, this is my first post to this Mailinglist, so please
bear with me. ;)
I am working as a Network Administrator of a small Office Network. We
use Debian Server as Samba PDC and Fileserver.
The Domain runs pretty well with all the Windows 7 Clients. I have just
one thing that bugs me.
In the groupshare we set up, users can only access folders that are
world readable, for some reason. As a temporary fix I put all users into
the Domain Admin group, so they can at least use the groupshare.
But first of all you probably want to know the details. The Samba
Version is 3.5.6
This is my smb.conf:
-...
2004 Aug 31
0
Combining NFS and Samaba - file locking
...entical view of
this shared folder, whilst in reality the folders are physically
located at different sites. Specifically, the bulk of the folders are
on the main server, and each remote site (conveniently comprising a
more or less self contained organisation unit) has one folder.
EG :
\\slox\groupshare\sales
\accounts
\warehouse --> symlink to NFS mount from warehouse server
\\warehouse\groupshare\sales --> symlink to NFS mount from slox server
\accounts --> symlink to NFS mount from slox server
\warehous...
2006 Mar 28
2
ACL on groups working half
...mba 3.0.21 with winbind and LDAP as ADS member server
A W2K003 PDC
Samba's data partition is ext3 + ACL
I've migrated my users homedirs and profiledirs from W2K003 to Samba.
These each user owns his own homedir and has rwx------ permissions
This seems to be working excelent.
Then I made a groupshare open for everyone. The directory it points to
is closed for all domain users.
No one can access this share.
As I add domain-user tjaco with rwx by ACL (useing
share-properties-security in windows or setfacl on linux) tjaco has
instant access to the share.
Now I add tjaco to group mygroup usein...
2006 Apr 25
8
Permissions for share
opensuse 10/find / samba-3.0.20b-3.3
I'm trying to change directory permissions on a share so all users can modify files in the share and when I do as suggested in Ch15 of Samba Howto the following happens
$ find `directory_name' -type d -exec chown nobody:users {}\;
find: missing argument to `-exec'
Chris Boyd
Systems Engineer
USIT
19-21 Aston Quay
Dublin 2
Ireland
Tel: +353 1
2001 Mar 29
0
acces-problems for team-shares
...also i created different shares depending on the groups of the users.
If i mount a share (from linux-client) with an valid username (which is also
a member of the group which own the share) the hole mount-point on the
linux-client gets invisible.
e.g when i mount the share
smbmount //server/mygroupshare /mnt/my-groupshare
im not able to see the mount-point on the clients local-harddisk any more
the config for this share is:
first the template ;)
[template]
comment = Template Service for COPY(S)
path = /var/tmp
browseable = no
public = no
printable = no
writeable = yes
cre...
2005 Oct 25
0
Shares/connection disappears (bug?!)
Hi
Im running Samba3 fileserver on Debian Sarge as a menber of a Ms win2003
AD. The samba-server gets it users/groups from the win2003 and hos the
users homefolder, a groupshare and a common share. But sometimes when the
users logs in they cant see any shares on the samba, exept the default
home (which the cant enter). I even tried sittinng with two workstations,
where one could see and use the shares, the other coldn't see anything..!
It's quite hard to always se...
2007 Sep 10
0
member server config problem
...= root, admin, bin, daemon, sys, sync, lp, mail, news,
uucp, proxy, www-data, backup, irc, sshd, man, identd, bacula, nobody,
Debian-exim
create mask = 0700
directory mask = 0700
browseable = No
Then all the shares....
ACLS are enabled in fstab
I have /groupdata with all groupshares and /userdata for homes.
/groupdata is actually owned by me.domain_admins
I can set acls from linux with
setfacl -R -d -m g:group:rwx folder
unfortunately I cannot change permissions from windows, not as domain-root nor
as me even if I am in the domain_admins group and privileges are activated...