awesome-cheatsheets/tools/ubuntu.sh

20 lines
703 B
Bash
Raw Normal View History

2020-06-21 16:37:36 +00:00
##############################################################################
# UBUNTU
##############################################################################
scp /path/to/file user@server:/path/to/destination # Copy file from local to server
2020-06-21 16:38:14 +00:00
df -h # Check the amount of free space
2020-07-01 09:31:00 +00:00
sudo ufw status # Check status
sudo ufw allow from remote_IP_address to any port 3306 # Allow external ip to access port
2020-09-11 08:45:29 +00:00
scp user@remote_host:remote_file local_file # download: remote -> local
scp local_file user@remote_host:remote_file # upload: local -> remote
2020-09-26 14:06:01 +00:00
sudo -s # Log as root
cat /proc/<process_id>/maps # Show the current virtual memory usage of a Linux process
2020-12-07 16:22:08 +00:00
ip r # Display ip of the server