Benjamin_Loison commented on issue Benjamin_Loison/linux#60 2025-02-22 12:45:50 +01:00
How to make a user able without root to share a folder with given other user(s)

On user_1 still face:

ls /home/user_0/folder_to_share_with_user_0_and_1/
ls: cannot access '/home/user_0/folder_to_share_with_user_0_and_1/': Permission denied
Benjamin_Loison commented on issue Benjamin_Loison/linux#60 2025-02-22 12:44:28 +01:00
How to make a user able without root to share a folder with given other user(s)
ls -lha
Output:
total 36K
drwx------  3 user_0 user_0 4.0K Feb 22 12:29 .
drwxr-xr-x  6 root   root   4.0K Feb 22 12:28 ..
-rw-------  1…
Benjamin_Loison commented on issue Benjamin_Loison/linux#60 2025-02-22 12:43:51 +01:00
How to make a user able without root to share a folder with given other user(s)

As user_0:

setfacl -R -m u:user_1:rwx folder_to_share_with_user_0_and_1/

does not return anything.

Benjamin_Loison commented on issue Benjamin_Loison/linux#60 2025-02-22 12:42:33 +01:00
How to make a user able without root to share a folder with given other user(s)
ls /home/user_0/folder_to_share_with_user_0_and_1/
ls: cannot access '/home/user_0/folder_to_share_with_user_0_and_1/': Permission denied
Benjamin_Loison commented on issue Benjamin_Loison/linux#60 2025-02-22 12:42:16 +01:00
How to make a user able without root to share a folder with given other user(s)

So the aim is not to have access to /home/user_0/ but just the mentioned subfolder.

Benjamin_Loison commented on issue Benjamin_Loison/linux#60 2025-02-22 12:41:54 +01:00
How to make a user able without root to share a folder with given other user(s)

From user_1:

ls /home/user_0/
ls: cannot open directory '/home/user_0/': Permission denied

on Debian 12 GNOME.

Benjamin_Loison commented on issue Benjamin_Loison/linux#60 2025-02-22 12:33:12 +01:00
How to make a user able without root to share a folder with given other user(s)
FOLDER=~/folder_to_share_with_user_0_and_1/sub_folder_to_share_with_user_0_and_1
mkdir $FOLDER/
echo secret > $FOLDER/file_to_share_with_user_0_and_1.txt
Benjamin_Loison commented on issue Benjamin_Loison/linux#60 2025-02-22 12:32:38 +01:00
How to make a user able without root to share a folder with given other user(s)

I like recursivity so let us look for recursive approach.

Having to run again the permission grant on new recursive folder is fine in my opinion for the moment.

Benjamin_Loison commented on issue Benjamin_Loison/linux#60 2025-02-22 12:30:29 +01:00
How to make a user able without root to share a folder with given other user(s)

In theory can leverage the chown other user group to have both users having access, but let us consider the cleaner more general case.

Benjamin_Loison commented on issue Benjamin_Loison/linux#60 2025-02-22 12:29:51 +01:00
How to make a user able without root to share a folder with given other user(s)
mkdir ~/folder_to_share_with_user_0_and_1/
Benjamin_Loison commented on issue Benjamin_Loison/linux#60 2025-02-22 12:11:22 +01:00
How to make a user able without root to share a folder with given other user(s)

DuckDuckGo search Linux give access to a user to a folder.

Benjamin_Loison commented on issue Benjamin_Loison/linux#60 2025-02-22 12:11:01 +01:00
How to make a user able without root to share a folder with given other user(s)

So the aim is not to create a group for all (used) combinations of user permission access.

Benjamin_Loison commented on issue Benjamin_Loison/linux#60 2025-02-22 12:10:16 +01:00
How to make a user able without root to share a folder with given other user(s)
The persons:
-----BEGIN PGP MESSAGE-----

hF4DTQa9Wom5MBgSAQdAbVD1Fr1s/4JfZDgkHO2hSZ3jzxkp7l3r9YF4N3mMuWIw
xdDO5OF3iP+/e0hr77lftNy1wbPhK7j7fqlyaFZSHduTiHlFa…
Benjamin_Loison commented on issue Benjamin_Loison/linux#27 2025-02-22 12:06:58 +01:00
Dual boot Windows time inconsistency

Debian 12 GNOME host and guest Virtual Machine Manager virtual machine is not realtime updated on ntpdate on host.

Benjamin_Loison commented on issue Benjamin_Loison/linux#66 2025-02-22 11:48:08 +01:00
Log /etc/rc.local std{out,err}
Bash script:
log() {
    # Should ensure that date is not evaluated at script reading
    echo `date` \"$@\"
}

log hey

sudo su --login benjamin_lo…
Benjamin_Loison commented on issue Benjamin_Loison/linux#66 2025-02-22 11:43:38 +01:00
Log /etc/rc.local std{out,err}
Bash script:
sudo su --login benjamin_loison -c "
    log() {
        # Should ensure that date is not evaluated at script reading
        echo `date`…
Benjamin_Loison commented on issue Benjamin_Loison/linux#32 2025-02-21 10:24:22 +01:00
Make my SSH aliases prefer LAN over Internet but with a single command
ssh_on_same_network_preferably CENSORED
Output:
Internet proxy
ssh: Could not resolve hostname CENSORED.ddns.net: No address associated with…