emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#55487: closed (chmod to +w is not defaulting to ALL target in Debian


From: GNU bug Tracking System
Subject: bug#55487: closed (chmod to +w is not defaulting to ALL target in Debian 11.3)
Date: Tue, 17 May 2022 21:39:02 +0000

Your message dated Tue, 17 May 2022 14:38:33 -0700
with message-id <8da7ffd9-64b1-e549-32f5-6ad1b7da84e8@cs.ucla.edu>
and subject line Re: bug#55487: chmod to +w is not defaulting to ALL target in 
Debian 11.3
has caused the debbugs.gnu.org bug report #55487,
regarding chmod to +w is not defaulting to ALL target in Debian 11.3
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
55487: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=55487
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: chmod to +w is not defaulting to ALL target in Debian 11.3 Date: Tue, 17 May 2022 17:51:37 +0000
in Debian 8.32-4+b1 (Debian 11.3) chmod +w isn't working right.

sudo mkdir /etc/whatever
sudo touch /etc/whatever/whatever.conf
sudo chmod +w /etc/whatever/whatever.conf #doesn't work
sudo chmod a+w /etc/whatever/whatever.conf #does work
#in
man chmod
# it states "If none of these are given, the effect is as if (a) were given"
# so in conclusion the `sudo chmod +w /etc/whatever/whatever.conf` should work

--- End Message ---
--- Begin Message --- Subject: Re: bug#55487: chmod to +w is not defaulting to ALL target in Debian 11.3 Date: Tue, 17 May 2022 14:38:33 -0700 User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.9.0
On 5/17/22 10:51, Corey H wrote:
sudo chmod +w /etc/whatever/whatever.conf #doesn't work
sudo chmod a+w /etc/whatever/whatever.conf #does work

It sounds like you're misunderstanding what "chmod +w" means. It doesn't mean "turn on all the w bits". It means "turn on the w bits enabled by the current umask". So, for example, this is expected behavior:

$ umask
0022
$ touch foo
$ ls -l foo
-rw-r--r--. 1 eggert eggert 0 May 17 14:37 foo
$ chmod +w foo
$ ls -l foo
-rw-r--r--. 1 eggert eggert 0 May 17 14:37 foo
$ umask 0
$ chmod +w foo
$ ls -l foo
-rw-rw-rw-. 1 eggert eggert 0 May 17 14:37 foo


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]