x
1ssh user@127.127.127.127
2ssh -i /path/private.key user@127.127.127.127
Remove host from ssh known hosts (when server changes, but IP stays the same)
11ssh-keygen -R "hostname"
Key must have read only rights
11chmod 600 /path/private.key
Exit any program in console using CTRL+C command
move to directory
11cd /path/to/some/dir
Tab button gives you auto-complete
Move back one dir
11cd ..
Your home directory
11cd ~/
Make directory
11mkdir ~/some_dir
Delete directory
11rm -rf ~/some_dir
Install programs in Debian/Ubuntu using apt / apt-get package manager (replace PACKAGE_NAME)
xxxxxxxxxx
11sudo apt install PACKAGE_NAME
If program not available in package managers download using wget and install manually.
chmod gives execution rights, sudo means - execute as administrator
x1cd ~/downloads
2
3wget https://repo.anaconda.com/archive/Anaconda3-2021.11-Linux-x86_64.sh
4
5sudo chomd +x ./Anaconda3-2021.11-Linux-x86_64.sh
6
7sudo ./Anaconda3-2021.11-Linux-x86_64.sh
Rxecutable
xxxxxxxxxx
11chmod +x ./file.sh
Readable by all users
xxxxxxxxxx
11chomd a+wr ./file.sh
get chomd settings from file
xxxxxxxxxx
11ls -l myfile.txt
htop
- Activity monitor, also can kill programs with F9 , then 9
Which process use most CPU
xxxxxxxxxx
11ps auxh --sort=-pcpu | head -n 10
Which processes use most Memory
xxxxxxxxxx
11ps auxh --sort=-rss | head -n 10
Find parent Process ID (to find correct screen)
xxxxxxxxxx
11ps -o ppid= -p 1289173
xxxxxxxxxx
11sudo apt install lm-sensors
then
xxxxxxxxxx
11sensors
xxxxxxxxxx
31sudo apt-get install jnettop
2
3sudo jnettop
nvidia-smi
shows GPU usage and memory usage
xxxxxxxxxx
151sudo apt install firewalld firewall-config ufw
2
3sudo firewall-cmd --zone=public --add-port=10090/tcp --permanent
4sudo firewall-cmd --zone=public --add-port=10090-10200/tcp --permanent
5sudo firewall-cmd --reload
6
7
8sudo firewall-cmd --zone=public --add-port=80/tcp --permanent
9sudo firewall-cmd --reload
10sudo firewall-cmd --zone=public --add-port=443/tcp --permanent
11sudo firewall-cmd --reload
12
13sudo ufw allow 8080
14sudo ufw allow 443
15sudo ufw allow from any to any proto tcp port 10090:10210
xxxxxxxxxx
31sudo lsof -i -P -n
2
3sudo lsof -i -P -n | grep LISTEN
xxxxxxxxxx
21sudo apt install net-tools
2netstat -nlt
xxxxxxxxxx
11telnet ADDRESS PORT
xxxxxxxxxx
11nc -l PORT
xxxxxxxxxx
31sudo apt install speedtest-cli
2
3speedtest-cli
Edit tasks
xxxxxxxxxx
11crontab -e
Format
xxxxxxxxxx
21@reboot /media/hdd/automation_cron/startup_automations_evalds_1.sh
2*/5 * * * * /media/hdd/automation_cron/run_automations_evalds_1.sh
Log output to file
xxxxxxxxxx
1159 23 * * * /home/john/bin/backup.sh > /media/hdd/automation_cron/run_automations_evalds_1.log 2>&1
Global crontab (with user names admin )
xxxxxxxxxx
11sudo vim /etc/crontab
Restart
xxxxxxxxxx
11sudo service cron restart
Logs
xxxxxxxxxx
11sudo grep CRON /var/log/syslog
xxxxxxxxxx
810: No permission
21: Execute
32: Write
43: Write and execute
54: Read
65: Read and execute
76: Read and write
87: Read, write, and execute
xxxxxxxxxx
31The owner can read, write, and execute the file.
2The group can read, write, and execute the file.
3Anyone else can read, write, and execute the file.
xxxxxxxxxx
11sudo chmod 660 /shome/file
Alternative way!
plus means add rights
minus means remove rights
Add folder write/read rights for all users
xxxxxxxxxx
11sudo chmod -R a+wr /some/folder
Remove folder write/read rights for all users
xxxxxxxxxx
11sudo chmod -R a-wr /some/folder
Make SH file executable
xxxxxxxxxx
11sudo chmod +x /some/folder
xxxxxxxxxx
31ls -ltr /path/dir
2ls -ltr /path/dir | grep "filter-text"
3
https://www.tecmint.com/sort-ls-output-by-last-modified-date-and-time/
xxxxxxxxxx
11pwd
xxxxxxxxxx
11find /dir -name "*Something*"
https://www.geeksforgeeks.org/find-command-in-linux-with-examples/
xxxxxxxxxx
11grep -i -A 5 -B 5 "string" FILE_PATTERN
https://www.thegeekstuff.com/2009/03/15-practical-unix-grep-command-examples/
xxxxxxxxxx
21kill -9 PROCES_ID
2kill -9 $(ps aux | grep 'SOME TEXT IN PROCESS' | awk '{print $2}')
Compression level 0-9
xxxxxxxxxx
11zip -X -9 -r <output_file> <folder_1>
xxxxxxxxxx
11whereis app_name
xxxxxxxxxx
31which docker
2
3# gives /snap/bin/docker
Create
xxxxxxxxxx
11ln -s /path/source/folder_or_file /path/destination
Will result in /path/destination/folder_or_file
Find source
xxxxxxxxxx
21readlink -f /path/to/syslink
2readlink -f which command
create with name
screen -S newname
List screens:
screen -ls
Attach to existing
screen -rd newname
Detach from screen ctrl+a => d
Kill screen ctrl+a => k
Rename screen
screen -S <session-id> -X sessionname <new-name>
Scroll mode
Screen shortcuts
Send commands to screen:
xxxxxxxxxx
21screen -dmS server
2screen -r server -X stuff "/media/hdd/Document/server.sh\n"
Alternative to Linux screens - tmux https://superuser.com/questions/236158/tmux-vs-screen
xxxxxxxxxx
31sudo fdisk -l
2
3sudo mkfs.ext4 /dev/sde1
xxxxxxxxxx
31tar –xvzf file.tar.gz
2
3unzip latest.zip
xxxxxxxxxx
11zip -r <output_file> <folder_1>
xxxxxxxxxx
21cd /dir/
2ls -1 | wc -l
xxxxxxxxxx
11systemctl list-units --type=service
xxxxxxxxxx
11pwd
http://share.yellowrobot.xyz/quick/2022-9-5-DF70FF8D-C119-4746-BC69-17E78082B14F.html
ncdu
xxxxxxxxxx
31cat /etc/os-release
2
3lsb_release -a
ctrl+b
then :
activates commands
:kill-session
xxxxxxxxxx
51sudo service postgresql status
2sudo service postgresql start
3
4sudo service nginx start
5sudo service nginx status
Adding user with directory
x1sudo useradd -m -d /home/username -s /bin/bash username
Setting password
x1sudo passwd username
Adding to user group
x1sudo usermod -a -G www-data username
x1sudo chown -R username:username /home/username/.ssh
2sudo chmod 770 /home/username/.ssh
3sudo chmod 770 /home/username/.ssh/authorized_keys