Last active
October 21, 2019 20:48
-
-
Save faridescate/b11a49ff15a3c5983cab2eab366eedab to your computer and use it in GitHub Desktop.
useful linux commands
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Show a ordered list of folders with size | |
du -sch * | sort -rh | |
# count lines from output | |
<command> | wc -l | |
# change primary group | |
usermod -g primarygroupname username | |
# apache - SELinux | |
setenforce 0 | |
chcon -Rv --type=httpd_t . | |
setenforce 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment