eddelbuettel commented on issue #141: URL: https://github.com/apache/arrow-nanoarrow/issues/141#issuecomment-1455122944
FYI If this is on a Debian/Ubuntu we had this scheme for a decade+ where _if you add the users you want to be able to do this_ to the appropriate group everything works without sudo: ```sh edd@rob:~/git$ ls -ld /usr/local/lib/R/site-library/ drwxrwsr-x 1093 root staff 36864 Mar 5 09:26 /usr/local/lib/R/site-library/ edd@rob:~/git$ touch /usr/local/lib/R/site-library/foobarbiz edd@rob:~/git$ ls -l /usr/local/lib/R/site-library/foobarbiz -rw-rw-r-- 1 edd staff 0 Mar 5 09:27 /usr/local/lib/R/site-library/foobarbiz edd@rob:~/git$ id uid=1000(edd) gid=1000(edd) groups=1000(edd),4(adm),24(cdrom),27(sudo),30(dip),46(plugdev),50(staff),110(lxd),114(lpadmin),115(sambashare),998(docker) edd@rob:~/git$ rm /usr/local/lib/R/site-library/foobarbiz edd@rob:~/git$ ``` No `sudo` needed here as the system user (me) add my normal account to `staff`. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
