Is it possible to add a default password to ALL of your folders by adding code to the Source Code?, if yes, how?
Thanks in advance,
-D92
Thanks in advance,
-D92
cd /parent/of/mysecretfolder/ <--- change to the parent directory chmod 700 ./mysecretfolder <--- make the folder accessible only to you
sudo groupadd incrowd <--- create the group sudo nano /etc/group <--- edit the group file (see below) cd ... <--- as above chown ./mysecretfolder 770 <---- now all members of the group incrowd can use the folder
Comment