[2021-01-12] figuring out what takes disk space docker images | awk '{print $3}' | xargs docker inspect | less
[#C] [2021-02-12] Docker compose port mapping - Stack Overflow
If you want to bind to the redis port from your nodejs container you will have to expose that port in the redis container: version: '2' services: nodejs: build: context: . dockerfile: DockerFile ports: - "4000:4000" links: - redis redis: build: context: . dockerfile: Dockerfile-redis expose: - "6379" The expose tag will let you expose ports without publishing them to the host machine, but they will be exposed to the containers networks.
[#B] [2021-04-14] apt-get clean and other strategies for keeping image size small? · Issue 35 · rocker-org/rocker
[#C] [2021-05-02] Attach and Detach from Docker Container | HowToProgram
In general, to detach from a Docker container and leave it running, we can use the CTRL-p CTRL-q key sequence.
STRT [#C] [2020-03-14] ctop - cli utility similar to htop for docker containers resource use /r/selfhosted
AssertPathExists
fails if the pass is missing or symlink is broken
sudo ss -tulpn | grep 5060 sudo ss -anpt | grep 8640
netcat -l 5559
one the other machine
echo "TEST" | netcat host 5559
Nice and verbose! From the man pages. Single port: nc -zv 127.0.0.1 80
testing if port is open
grep cron /var/log/syslog tail -f /var/log/syslog | grep cron
*:* TestJob; cron command
mind the space after colon!
- doesn’t require root!
firejail --noprofile --net=none
[#C] [2017-05-08] Gateway 0.0.0.0 means that the subnet is link-local i.e. there is no gateway involved, the packets are delivered directly to the target
#!
line).ok apparently setuid shell scripts are quite risky…
[#C] [2020-01-29] linux - How to make htop sort by PID
[#C] [2020-01-24] logs - View stdout/stderr of systemd service
Note that using the standard logging mechanism like this will not create persistent logs by default. To do that, you'll need to create /var/log/journal, and then run sudo systemctl restart systemd-journaldhttps://serverfault.com/questions/517483/how-to-read-memory-usage-in-htop
Hide user threads (shift + H) and close the process tree view (F5), t
[#D] [2020-12-04] linux - prevent system freeze/unresponsiveness due to swapping run away memory usage - Super User
If a process demands a lot of memory, the system moves all other process to the swap file. Including it seems, necessary processes like the X11 server or the terminal.
[#D] [2018-04-27] guide to XKB
whereis
command :habit:
[#C] [2021-05-08] ip - List ports a process PID is listening on (preferably using iproute2 tools)? - Unix & Linux Stack Exchange
sudo netstat -plnt