Last active
October 27, 2017 03:08
-
-
Save punkdata/f0fa19d65bae32f082fed630d2f2b1d2 to your computer and use it in GitHub Desktop.
Linux Terminal Commands
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
# Search Type Commands | |
grep -Ril "text-to-find-here" / | |
# rsync command to actually sync files | |
rsync -hvrPt angel/home_angel/ /home/angel/ | |
# rsync copy over all files with all attributes | |
rsync -avP source-dir target-dir | |
# Netstat Continuous polling for a specific IP address | |
netstat -na 1 | grep "10.0.5.53" | |
# Netstat continuos polling | |
netstat -nputwc | |
#random VMware additional disks | |
https://www.cyberciti.biz/tips/vmware-add-a-new-hard-disk-without-rebooting-guest.html |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment