I am learning basic file permission in Linux and tried actions below.
I have a folder "music" to which group "music" has wxr permission.
I have user "finxxi" added into group "music".
When user "finxxi" tries to create files in folder "music", "Permission denied" is reached. Since user "finxxi" belongs to group "music" which should has wxr permission, why permission denied?
finxxi@MyST ~ $ ls -la music
total 8
drwxrwxr-x 2 root music 4096 Dec 2 06:47 .
drwxr-xr-x 25 finxxi finxxi 4096 Dec 2 06:47 ..
finxxi@MyST ~ $ members music
finxxi
finxxi@MyST ~ $ cd music
finxxi@MyST ~/music $ > test.txt
bash: test.txt: Permission denied