User Tools

Site Tools


code:linux

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
code:linux [2020/03/12 08:28]
hansek
code:linux [2023/11/11 00:39] (current)
hansek [jq]
Line 228: Line 228:
 </code> </code>
  
 +  * rc = Remove - only Configs
 +  * ii = Install - Installed
 +
 +[[https://askubuntu.com/a/18807|Vysvětlivky falgů na začátku výpisu dpkg --list]]
  
 ===== Disable / enable services from autostart ===== ===== Disable / enable services from autostart =====
Line 238: Line 242:
 ===== Postgres restore ===== ===== Postgres restore =====
  
-  * -F = `--format=c|d|t` +  * -F = ''--format=c|d|t'' 
-  * -c = `--clean` +  * -c = ''--clean'' 
-  * -O = `--no-owner` +  * -O = ''--no-owner'' 
-  * -x = `--no-privileges`+  * -x = ''--no-privileges''
   * -j5 = use 5 parallel jobs   * -j5 = use 5 parallel jobs
   * -d = database name   * -d = database name
Line 258: Line 262:
 </code> </code>
  
-Nastavení limitu pro journal v `sudo vim /etc/systemd/journald.conf`:+Nastavení limitu pro journal v ''sudo vim /etc/systemd/journald.conf'':
  
 <code bash> <code bash>
 SystemMaxUse=500M SystemMaxUse=500M
 +</code>
 +
 +
 +===== Jaký proces využívá port =====
 +
 +<code bash>
 +lsof -i :80
 +</code>
 +
 +
 +===== Certbot / Certifikáty =====
 +
 +List of existing certificates on host
 +
 +<code bash>
 +certbot certificates
 +</code>
 +
 +Certificate detailed info
 +
 +<code bash>
 +openssl x509 -text -noout -in <cert-path>
 +</code>
 +
 +nebo online
 +
 +<code bash>
 +nmap -p 443 --script ssl-cert coex.cz
 +</code>
 +
 +
 +===== CPU iowait debug =====
 +
 +Source: https://haydenjames.io/what-is-iowait-and-linux-performance/
 +
 +<code bash>
 +atop  # run it with -d option or press d to toggle the disk stats view.
 +iostat -xm 2  # try it with the -xm 2 options for extended statistics, in megabytes and in two-second intervals.
 +iotop -oPa  # – top-like I/O monitor. Try it with the -oPa options to show the accumulated I/O of active processes only.
 +ps auxf  # – use auxf, then under the “STAT” column “D” usually indicates disk iowait.
 +strace  # – view the actual operations issued by a process. Read the strace man page.
 +lsof  # – after you’ve identified the process responsible, use -p [PID] to find the specific files.
 +</code>
 +
 +
 +
 +===== jq =====
 +
 +**Inplace transform Unix timestamp to Datetime inside json log**
 +
 +<code bash>
 +docker events | TZ=Europe/Prague jq '.time |= (strflocaltime("%Y-%m-%d %H:%M:%s %Z"))' -C | less
 +</code>
 +
 +**Inplace decode all k8s secrets values**
 +
 +<code bash>
 +kubectl get secrets postgres-secrets -o json | jq '.data | map_values(@base64d)'
 </code> </code>
code/linux.1583998090.txt.gz · Last modified: 2020/03/12 08:28 by hansek