1
1
mirror of https://github.com/namibia/awesome-cheatsheets.git synced 2025-02-10 16:08:31 +00:00

31 lines
1.0 KiB
Bash
Raw Permalink Normal View History

2020-06-21 18:37:36 +02:00
##############################################################################
# UBUNTU
##############################################################################
scp /path/to/file user@server:/path/to/destination # Copy file from local to server
2020-06-21 18:38:14 +02:00
df -h # Check the amount of free space
2020-07-01 11:31:00 +02: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 10:45:29 +02: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 16:06:01 +02:00
2022-08-28 21:08:12 +02:00
service elasticsearch restart # Restart elasticsearch service
2020-09-26 16:06:01 +02:00
sudo -s # Log as root
cat /proc/<process_id>/maps # Show the current virtual memory usage of a Linux process
2020-12-07 17:22:08 +01:00
ip r # Display ip of the server
2021-09-07 11:43:55 +02:00
lsof -i :9000 # List process running on port 9000
journalctl -u minio.service -n 100 --no-pager # List last 100 logs for specific service
2022-02-23 16:08:50 +01:00
sudo resize2fs /dev/disk/by-id/scsi-0DO_example # Resize volume
2022-03-06 20:00:38 +01:00
2022-03-06 20:00:44 +01:00
ps -ax | grep myprocessname # Search processes
2022-03-06 20:00:38 +01:00
kill -9 PROCESS_ID # Kill process PID