Fail Fast
Learn/React Faster
Do it Better
I find frustrating the way linux manage permissions and how to grant a folder permissions to upload file with winscp.
Now the best way I find to do that is:
1. create a group for a project folder and add users to it (this is not mandatory but a good way to work)
$ groupadd <group>
$ usermod -a -G <user> <group>
2. assign permission to folder to grant upload to ftp/winscp:
$ chmod o+rwx -R workfolder/ #This assign "others" rights to rwx, could be harmful in case of web application, be carefull!
$ chmod g+rwx -R workfolder/ #grant write to group
Command to recursively search into file with grep:
grep --include="*.prop*" -nRHI "<text>" * > filename.txt
How to change a password for user on a secured area proxied by ngnix:
sudo htpasswd /etc/nginx/.htpasswd
Nell'azienda dove lavor ci sono diverse persone in Pensione che lavorano ancora come consulenti.
La cosa non sarebbe grave se non si lamentassero per ogni cosa e se non pretendessero dall'azienda gli stessi servizi di quando erano dipendenti.
Gli abbiamo proposto di fare cambio: lui al lavoro e noi a casa con la sua pensione ma stranamente dicono no, è meglio la pensione...... Ma allora vai a casa lascia il posto a qualcuno !
list enabled service :
systemctl list-unit-files
enable awslogsd:
sudo systemctl enable awslogsd