Last active
August 29, 2015 14:04
-
-
Save kramarama/439ff962096bbc3a13c3 to your computer and use it in GitHub Desktop.
Ubuntu Server 101
This file contains hidden or 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
| sudo traceroute -n -w 2 -q 2 -m 30 8.8.8.8 | |
| dig @8.8.8.8 www.example.com. | |
| dig @2001:4860:4860::8888 www.example.com. AAAA | |
| dig www.example.com. @4.2.2.1 | |
| sudo netstat -plunt | |
| netstat -tuplen | |
| nmcli dev list iface eth0 | grep IP4 | |
| mtr | |
| nc | |
| route -n | |
| netstat -rn | grep -v ESTA | |
| netstat -ntl | |
| ip route list | |
| ip -4 a | |
| find . -type f -exec chmod 644 {} \; | |
| find . -type d -exec chmod 755 {} \; | |
| chown -R www-data:www-data /var/www/site | |
| grep -r "foo" $(pwd) | |
| usermod -a -G group user | |
| useradd username | |
| passwd username | |
| usermod -m -d /path/to/new/home/dir userNameHere | |
| php -r 'echo ini_get("memory_limit") . "\n";' | |
| php -i | grep php.ini | |
| apachectl configtest | |
| apache2 -S | |
| apachectl configtest | |
| stop all apache processes: sudo apachectl -k stop | |
| sudo a2ensite website.com.conf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment