Skip to content

Instantly share code, notes, and snippets.

@faridescate
Last active October 21, 2019 20:48
Show Gist options
  • Save faridescate/b11a49ff15a3c5983cab2eab366eedab to your computer and use it in GitHub Desktop.
Save faridescate/b11a49ff15a3c5983cab2eab366eedab to your computer and use it in GitHub Desktop.
useful linux commands
# 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