samba share mount owner is colord

Clash Royale CLAN TAG#URR8PPP
up vote
0
down vote
favorite
My hair is falling out already on the account of samba share issues.
- I have an ext4 samba share on a raspberry pi, with a mask
0777specified. - Only
myuseron raspberry can authenticate via samba. chmod -Randchownwere run on the folders to fix (self-created)
authorization issues.myuserwas added to groupdebian-transmissionin order to access
torrented files properly from my laptop.- From my notebook I access files with
myuserwith the appropriate password via samba.
Now, newly downloaded files and folders have the owner colord and group avahi-autoipd, and I cannot make sense of it. I also have only read access from the notebook. How can I fix this?
Edit: the owner on the server is debian-transmission, the owner checked with ls -l is colors, with group avahi-autopid...
Edit2: per @X Tian's comment, the uid and gid on the notebook indeed equals to user and group debian-transmission on the samba server.
samba authorization transmission
add a comment |Â
up vote
0
down vote
favorite
My hair is falling out already on the account of samba share issues.
- I have an ext4 samba share on a raspberry pi, with a mask
0777specified. - Only
myuseron raspberry can authenticate via samba. chmod -Randchownwere run on the folders to fix (self-created)
authorization issues.myuserwas added to groupdebian-transmissionin order to access
torrented files properly from my laptop.- From my notebook I access files with
myuserwith the appropriate password via samba.
Now, newly downloaded files and folders have the owner colord and group avahi-autoipd, and I cannot make sense of it. I also have only read access from the notebook. How can I fix this?
Edit: the owner on the server is debian-transmission, the owner checked with ls -l is colors, with group avahi-autopid...
Edit2: per @X Tian's comment, the uid and gid on the notebook indeed equals to user and group debian-transmission on the samba server.
samba authorization transmission
From where do you down load & look at the actual user ID/group I'd of the downloaded files not name since it really works with id's and names are worked out bylsusing/etc/passwd
â X Tian
Oct 29 '17 at 10:21
1
Sorry, I mean use-noption on ls to look at actual numeric id's not their name translation because passed file may have different names for those id's.
â X Tian
Oct 29 '17 at 10:26
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
My hair is falling out already on the account of samba share issues.
- I have an ext4 samba share on a raspberry pi, with a mask
0777specified. - Only
myuseron raspberry can authenticate via samba. chmod -Randchownwere run on the folders to fix (self-created)
authorization issues.myuserwas added to groupdebian-transmissionin order to access
torrented files properly from my laptop.- From my notebook I access files with
myuserwith the appropriate password via samba.
Now, newly downloaded files and folders have the owner colord and group avahi-autoipd, and I cannot make sense of it. I also have only read access from the notebook. How can I fix this?
Edit: the owner on the server is debian-transmission, the owner checked with ls -l is colors, with group avahi-autopid...
Edit2: per @X Tian's comment, the uid and gid on the notebook indeed equals to user and group debian-transmission on the samba server.
samba authorization transmission
My hair is falling out already on the account of samba share issues.
- I have an ext4 samba share on a raspberry pi, with a mask
0777specified. - Only
myuseron raspberry can authenticate via samba. chmod -Randchownwere run on the folders to fix (self-created)
authorization issues.myuserwas added to groupdebian-transmissionin order to access
torrented files properly from my laptop.- From my notebook I access files with
myuserwith the appropriate password via samba.
Now, newly downloaded files and folders have the owner colord and group avahi-autoipd, and I cannot make sense of it. I also have only read access from the notebook. How can I fix this?
Edit: the owner on the server is debian-transmission, the owner checked with ls -l is colors, with group avahi-autopid...
Edit2: per @X Tian's comment, the uid and gid on the notebook indeed equals to user and group debian-transmission on the samba server.
samba authorization transmission
edited Oct 29 '17 at 20:56
asked Oct 29 '17 at 9:28
itarill
136
136
From where do you down load & look at the actual user ID/group I'd of the downloaded files not name since it really works with id's and names are worked out bylsusing/etc/passwd
â X Tian
Oct 29 '17 at 10:21
1
Sorry, I mean use-noption on ls to look at actual numeric id's not their name translation because passed file may have different names for those id's.
â X Tian
Oct 29 '17 at 10:26
add a comment |Â
From where do you down load & look at the actual user ID/group I'd of the downloaded files not name since it really works with id's and names are worked out bylsusing/etc/passwd
â X Tian
Oct 29 '17 at 10:21
1
Sorry, I mean use-noption on ls to look at actual numeric id's not their name translation because passed file may have different names for those id's.
â X Tian
Oct 29 '17 at 10:26
From where do you down load & look at the actual user ID/group I'd of the downloaded files not name since it really works with id's and names are worked out by
ls using /etc/passwdâ X Tian
Oct 29 '17 at 10:21
From where do you down load & look at the actual user ID/group I'd of the downloaded files not name since it really works with id's and names are worked out by
ls using /etc/passwdâ X Tian
Oct 29 '17 at 10:21
1
1
Sorry, I mean use
-n option on ls to look at actual numeric id's not their name translation because passed file may have different names for those id's.â X Tian
Oct 29 '17 at 10:26
Sorry, I mean use
-n option on ls to look at actual numeric id's not their name translation because passed file may have different names for those id's.â X Tian
Oct 29 '17 at 10:26
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
0
down vote
I think it could be two possible options to solve your problem.
1) Try to add
force user = myuser
force group = debian-transmission
to [global] section in /etc/samba/smb.conf
2) Second option. I'm not sure if it works, but you should try if first method fails. Add sticky bit to shared folder.
chmod 2770 SHARED_FOLDER
find SHARED_FOLDER -type d -exec chmod g+s ;
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
I think it could be two possible options to solve your problem.
1) Try to add
force user = myuser
force group = debian-transmission
to [global] section in /etc/samba/smb.conf
2) Second option. I'm not sure if it works, but you should try if first method fails. Add sticky bit to shared folder.
chmod 2770 SHARED_FOLDER
find SHARED_FOLDER -type d -exec chmod g+s ;
add a comment |Â
up vote
0
down vote
I think it could be two possible options to solve your problem.
1) Try to add
force user = myuser
force group = debian-transmission
to [global] section in /etc/samba/smb.conf
2) Second option. I'm not sure if it works, but you should try if first method fails. Add sticky bit to shared folder.
chmod 2770 SHARED_FOLDER
find SHARED_FOLDER -type d -exec chmod g+s ;
add a comment |Â
up vote
0
down vote
up vote
0
down vote
I think it could be two possible options to solve your problem.
1) Try to add
force user = myuser
force group = debian-transmission
to [global] section in /etc/samba/smb.conf
2) Second option. I'm not sure if it works, but you should try if first method fails. Add sticky bit to shared folder.
chmod 2770 SHARED_FOLDER
find SHARED_FOLDER -type d -exec chmod g+s ;
I think it could be two possible options to solve your problem.
1) Try to add
force user = myuser
force group = debian-transmission
to [global] section in /etc/samba/smb.conf
2) Second option. I'm not sure if it works, but you should try if first method fails. Add sticky bit to shared folder.
chmod 2770 SHARED_FOLDER
find SHARED_FOLDER -type d -exec chmod g+s ;
answered Oct 29 '17 at 11:37
Damian
32
32
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f401183%2fsamba-share-mount-owner-is-colord%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
From where do you down load & look at the actual user ID/group I'd of the downloaded files not name since it really works with id's and names are worked out by
lsusing/etc/passwdâ X Tian
Oct 29 '17 at 10:21
1
Sorry, I mean use
-noption on ls to look at actual numeric id's not their name translation because passed file may have different names for those id's.â X Tian
Oct 29 '17 at 10:26