зеркало из
https://github.com/iharh/notes.git
synced 2025-10-30 05:06:05 +02:00
m
Этот коммит содержится в:
родитель
689ccc710c
Коммит
ee79d210fa
@ -1,4 +1,5 @@
|
||||
2024
|
||||
https://habr.com/ru/companies/selectel/articles/819509/
|
||||
https://habr.com/ru/companies/haulmont/articles/810151/
|
||||
https://habr.com/ru/articles/795931/
|
||||
https://habr.com/ru/companies/flant/articles/795475/
|
||||
|
||||
1
devops/cloud/google/youtube/xl-yt.txt
Обычный файл
1
devops/cloud/google/youtube/xl-yt.txt
Обычный файл
@ -0,0 +1 @@
|
||||
https://github.com/warrior0x7/xlotus
|
||||
@ -1,3 +1,5 @@
|
||||
2024
|
||||
https://habr.com/ru/articles/818147/
|
||||
2023
|
||||
https://habr.com/ru/articles/777996/
|
||||
! go impl
|
||||
|
||||
5
nontech/history/countries/ancient/shumer/books.txt
Обычный файл
5
nontech/history/countries/ancient/shumer/books.txt
Обычный файл
@ -0,0 +1,5 @@
|
||||
John Maier - Gilgamesh and Great Godness of Uruk
|
||||
https://global.wildberries.ru/product?card=102667126
|
||||
https://ozon.by/product/gilgamesh-i-velikaya-boginya-uruka-3-chasti-723248858/
|
||||
https://ozon.by/product/gilgamesh-i-velikaya-boginya-uruka-3-tt-723386365
|
||||
https://castalia.ru/product/gilgamesh-i-velikaya-boginya-uruka-3-chasti
|
||||
@ -15,9 +15,12 @@ Gekerton - 2022 - Misterious Societies of all
|
||||
2024
|
||||
Zhanna Bota - Shabanov - Results p2 0:00 of 1:36:56
|
||||
https://www.youtube.com/watch?v=O_EY2JUcA54
|
||||
Zhanna Bota - Shabanov - Results p1 World Projects 35:00 of 2:38:30
|
||||
Zhanna Bota - Shabanov - Results p1 World Projects 1:25:00 of 2:38:30
|
||||
https://www.youtube.com/watch?v=i7xMcMpjWGQ
|
||||
! SantaFe & Tavistock, Kurth Levin - Rise Up of EnSax world
|
||||
! We know 2 forms: democracy, totalitarism. Levin written about 3rd - popustitelstvo
|
||||
! Erdogan - from Sophism structures (networking structures)
|
||||
! the same structures an in Scotch (mason)
|
||||
USLawAndOrder - Dudnik - Shabanov - 05.23 of 1:13:38
|
||||
https://www.youtube.com/watch?v=7X2bZxKos2g
|
||||
https://www.youtube.com/watch?v=hd0fgUFk5yg
|
||||
|
||||
3
os/editors/neovim/plugins/pl/cpp.txt
Обычный файл
3
os/editors/neovim/plugins/pl/cpp.txt
Обычный файл
@ -0,0 +1,3 @@
|
||||
2024
|
||||
https://igorlfs.github.io/neovim-cpp-dbg
|
||||
https://github.com/igorlfs/dotfiles/blob/main/nvim/.config/nvim/lua/plugins/nvim-dap.lua
|
||||
4
os/linux/nixos/tools/cache/attic.txt
поставляемый
Обычный файл
4
os/linux/nixos/tools/cache/attic.txt
поставляемый
Обычный файл
@ -0,0 +1,4 @@
|
||||
https://docs.attic.rs/
|
||||
https://github.com/zhaofengli/attic
|
||||
|
||||
https://docs.attic.rs/tutorial.html
|
||||
@ -1,3 +1,44 @@
|
||||
2021
|
||||
https://www.tecmint.com/10-lsof-command-examples-in-linux/
|
||||
https://bookflow.ru/10-primerov-komand-lsof-v-linux/
|
||||
|
||||
*************************************************************************************************
|
||||
Утилиту lsof в дистрибутивах Linux чаще всего используют для просмотра открытых файлов. Я и сам так делаю, и много материалов на эту тему видел. Да и название у неё говорящее. Оно как раз образовано от фразы list open files.
|
||||
Тем не менее, её можно использовать не только для этого.
|
||||
|
||||
▪️ Но сначала про основную функциональность. Лично я чаще всего запускаю lsof для просмотра открытых файлов, которые удалили, но забыли закрыть файловый дескриптор. Например, наживую удалили лог nginx или docker и не перезапустили сервис. В итоге файла нет, а место он занимает. Такие файлы будет видно вот так:
|
||||
# lsof | grep '(deleted)'
|
||||
или так:
|
||||
# lsof +L1
|
||||
|
||||
▪️ Смотрим кем и что конкретно открыто из файлов в указанной директории:
|
||||
# lsof +D /var/log
|
||||
|
||||
▪️ Смотрим открытые файлы конкретного пользователя:
|
||||
# lsof -u user
|
||||
Часто бывает нужно быстро узнать, сколько файлов у него открыто, чтобы понять, если с ним проблема или нет:
|
||||
# lsof -u user | wc -l
|
||||
А теперь то же самое, только наоборот исключим открытые файлы пользователя:
|
||||
# lsof -u^user | wc -l
|
||||
Рассмотрим ситуацию, когда под пользователем плодятся процессы, которые открывают кучу файлов и нам всё это надо быстро прибить. Добавляем ключ -t к lsof, который позволяет выводить только PID процессов. И отправляем вывод в kill:
|
||||
# kill -9 `lsof -t -u user`
|
||||
|
||||
▪️ Файлы, открытые конкретным процессом, для которого указан его PID. Очень востребованная функциональность.
|
||||
# lsof -p 94169
|
||||
|
||||
▪️ А теперь немного того, что от lsof не ожидаешь. Список TCP соединений, причём очень наглядный и удобный для восприятия.
|
||||
# lsof -ni
|
||||
|
||||
▪️ Смотрим подробную информацию о том, кто открыл 80-й порт:
|
||||
# lsof -ni TCP:80
|
||||
|
||||
▪️ Список TCP соединений к конкретному IP адресу:
|
||||
# lsof -ni TCP@172.29.139.228
|
||||
|
||||
▪️ Список TCP соединений конкретного пользователя:
|
||||
# lsof -ai -u nginx
|
||||
|
||||
▪️ Помимо TCP, можно и UDP соединения смотреть:
|
||||
# lsof -iUDP
|
||||
|
||||
Публикацию имеет смысл сохранить в закладки.
|
||||
|
||||
@ -1,10 +1,12 @@
|
||||
2024
|
||||
https://www.manning.com/books/contract-testing-in-action
|
||||
https://www.manning.com/books/web-design-playground-second-edition
|
||||
2023
|
||||
https://www.manning.com/books/azure-security-2
|
||||
https://www.manning.com/books/optimization-algorithms
|
||||
https://www.manning.com/books/fluent-bit-with-kubernetes
|
||||
https://www.manning.com/books/platform-engineering-on-kubernetes
|
||||
https://www.manning.com/books/learn-ai-assisted-python-programming
|
||||
2022
|
||||
live
|
||||
https://www.manning.com/liveproject/hands-on-with-cplusplus20-ranges-coroutines-concepts-modules
|
||||
|
||||
@ -5,3 +5,7 @@ https://www.wildberries.by/product?card=142558531
|
||||
|
||||
charles-mason - secret RU notes
|
||||
https://www.wildberries.by/product?card=139511108
|
||||
|
||||
art
|
||||
Morozova - EU Artists
|
||||
https://global.wildberries.ru/product?card=44916287
|
||||
|
||||
@ -1,3 +1,9 @@
|
||||
2023
|
||||
https://habr.com/ru/companies/ru_mts/articles/819681/
|
||||
https://habr.com/ru/companies/ru_mts/articles/812905/
|
||||
https://habr.com/ru/companies/ru_mts/articles/801693/
|
||||
https://habr.com/ru/companies/ru_mts/articles/798667/
|
||||
https://habr.com/ru/companies/ru_mts/articles/786012/
|
||||
https://habr.com/ru/companies/ru_mts/articles/775970/
|
||||
https://habr.com/ru/companies/ru_mts/articles/772898/
|
||||
https://github.com/AlexanderBobryakov/flink-spring
|
||||
|
||||
@ -1,2 +1,4 @@
|
||||
2024
|
||||
https://erichaag.dev/posts/bootiful-builds-best-practices-spring-boot-gradle/
|
||||
2021
|
||||
https://melix.github.io/blog/2021/01/the-problem-with-gradle.html
|
||||
|
||||
@ -1,3 +1,4 @@
|
||||
https://devblogs.microsoft.com/java/java-on-visual-studio-code-update-may-2024/
|
||||
https://devblogs.microsoft.com/java/java-on-visual-studio-code-update-march-2024/
|
||||
https://devblogs.microsoft.com/java/java-on-visual-studio-code-update-july-2022/
|
||||
https://devblogs.microsoft.com/java/java-on-visual-studio-code-update-june-2022/
|
||||
|
||||
4
pl/go/features/aop/go-aop.txt
Обычный файл
4
pl/go/features/aop/go-aop.txt
Обычный файл
@ -0,0 +1,4 @@
|
||||
https://github.com/alnpokrovsky/go-aop
|
||||
|
||||
2024
|
||||
https://habr.com/ru/articles/819789/
|
||||
2
pl/java/libfws/spring/data/jpa/features/query/scroll.txt
Обычный файл
2
pl/java/libfws/spring/data/jpa/features/query/scroll.txt
Обычный файл
@ -0,0 +1,2 @@
|
||||
2024
|
||||
https://habr.com/ru/companies/spring_aio/articles/819193/
|
||||
9
pl/java/libfws/spring/docs/courses/spring-academy.txt
Обычный файл
9
pl/java/libfws/spring/docs/courses/spring-academy.txt
Обычный файл
@ -0,0 +1,9 @@
|
||||
https://spring.academy/courses
|
||||
https://spring.academy/guides
|
||||
https://spring.io/guides
|
||||
|
||||
2024
|
||||
https://www.infoq.com/news/2024/04/spring-academy-pro-free
|
||||
https://spring.io/blog/2024/04/10/spring-academy-pro-content-now-free-to-access
|
||||
2023
|
||||
https://spring.academy/paths/spring-certified-professional-2023
|
||||
@ -3,6 +3,9 @@ https://docs.spring.io/spring/docs/current/spring-framework-reference/core.html#
|
||||
https://docs.spring.io/spring-framework/docs/current/reference/html/core.html#expressions-ref-variables
|
||||
https://nussknacker.io/documentation/docs/scenarios_authoring/Spel/
|
||||
|
||||
2024
|
||||
SpringDeveloper - Spring Tips: the Spring Expression Language 0:00 of 38:50
|
||||
https://www.youtube.com/watch?v=0uvQQuxyAv4
|
||||
2022
|
||||
https://www.baeldung.com/spring-expression-language
|
||||
2021
|
||||
|
||||
@ -1,3 +1,5 @@
|
||||
2024
|
||||
https://habr.com/ru/articles/819589/
|
||||
2023
|
||||
https://www.atomicjar.com/2023/12/building-spring-boots-serviceconnection-for-testcontainers-wiremock/
|
||||
https://info.michael-simons.eu/2023/07/27/the-best-way-to-use-testcontainers-from-your-spring-boot-tests/
|
||||
|
||||
@ -1 +1,5 @@
|
||||
https://tokio.rs/tokio/tutorial
|
||||
|
||||
2024
|
||||
https://habr.com/ru/companies/timeweb/articles/816743/
|
||||
https://habr.com/ru/companies/timeweb/articles/815811/
|
||||
|
||||
@ -1,6 +1,8 @@
|
||||
https://github.com/linuxmint/timeshift
|
||||
https://ru.wikipedia.org/wiki/Timeshift_(%D0%BF%D1%80%D0%BE%D0%B3%D1%80%D0%B0%D0%BC%D0%BC%D0%B0)
|
||||
|
||||
2024
|
||||
https://www.reddit.com/r/Fedora/comments/1d89q69/timeshift_doesnt_work/
|
||||
2023
|
||||
https://itsfoss.com/backup-restore-linux-timeshift/
|
||||
rsync/btrfs
|
||||
|
||||
Загрузка…
x
Ссылка в новой задаче
Block a user