home.social

Search

1000 results for “cli_ar”

  1. Eljutottam arra a szintre, hogy a #CLI ügynökök kapnak egy saját dedikált virtuális gépet, ahol #YOLO módban indulnak mindig és csinálnak amit akarnak.

    Nekem nem kell jóváhagynom minden apró hülyeséget, és az ügynökök is azt csinálnak amit akarnak. Olyanra formálják a környezetet, ami jó, telepítik ami kell, és csinálják amit kell.

    Mert megkapják a sudo jelszót és mindenhez a hozzáférést és go!

    #agent #AI #virtualpc #virtualmachine #OpenAI #Anthropic #Codex #Claude #ClaudeAI

  2. Eljutottam arra a szintre, hogy a #CLI ügynökök kapnak egy saját dedikált virtuális gépet, ahol #YOLO módban indulnak mindig és csinálnak amit akarnak.

    Nekem nem kell jóváhagynom minden apró hülyeséget, és az ügynökök is azt csinálnak amit akarnak. Olyanra formálják a környezetet, ami jó, telepítik ami kell, és csinálják amit kell.

    Mert megkapják a sudo jelszót és mindenhez a hozzáférést és go!

    #agent #AI #virtualpc #virtualmachine #OpenAI #Anthropic #Codex #Claude #ClaudeAI

  3. Arch Tip týdne: pacman jako profík

    📦 pacman umí mnohem víc než jen instalovat balíčky.
    Tady jsou dotazy, které ti pomůžou pochopit, co máš v systému.

    ═══════════════════════════════════════════
    🔍 ZÁKLADNÍ DOTAZY (-Q = QUERY)
    ═══════════════════════════════════════════

    výpis všech nainstalovaných balíčků

    pacman -Q

    kolik balíčků mám?

    pacman -Q | wc -l

    jen explicitně nainstalované (bez závislostí)

    pacman -Qe

    jen závislosti (instalované jako "side effect")

    pacman -Qd

    balíčky z AUR / mimo oficiální repo

    pacman -Qm

    balíčky JEN z oficiálních repo

    pacman -Qn

    osiřelé balíčky (závislosti, které už nikdo nepotřebuje)

    pacman -Qtdq

    odstranění osiřelých

    sudo pacman -Rns $(pacman -Qtdq)

    ═══════════════════════════════════════════
    📋 pacman -Qi → INFO O BALÍČKU
    ═══════════════════════════════════════════

    detailní info

    pacman -Qi firefox

    co uvidíš:

    - verze, popis, URL

    - licence

    - závislosti (Depends On)

    - co na něm závisí (Required By)

    - volitelné závislosti (Optional Deps)

    - velikost, datum instalace

    - důvod instalace (Explicitly installed / Dependency)

    rozšířené info (přidá Backup Files = konfiguráky chráněné při update)

    pacman -Qii firefox

    info z repa (i pro nenainstalované)

    pacman -Si firefox

    jen velikost balíčku

    pacman -Qi firefox | grep "Installed Size"

    řazení balíčků podle velikosti (potřebuje: pacman -S expac)

    expac -H M "%m\t%n" | sort -h | tail -20

    ═══════════════════════════════════════════
    📂 pacman -Ql → SEZNAM SOUBORŮ
    ═══════════════════════════════════════════

    co všechno balíček nainstaloval

    pacman -Ql firefox

    jen binárky

    pacman -Ql firefox | grep '/bin/'

    konfigurační soubory balíčku (vše v /etc)

    pacman -Ql firefox | grep '^firefox /etc'

    počet souborů v balíčku

    pacman -Ql firefox | wc -l

    soubory nenainstalovaného balíčku (z repa)

    nejdřív aktualizuj file database:

    sudo pacman -Fy
    pacman -Fl firefox

    ═══════════════════════════════════════════
    🔎 pacman -Qo → KDO VLASTNÍ TENTO SOUBOR?
    ═══════════════════════════════════════════

    který balíček nainstaloval daný soubor?

    pacman -Qo /usr/bin/firefox

    výstup:

    /usr/bin/firefox is owned by firefox 123.0-1

    najdi balíček podle příkazu v PATH

    pacman -Qo $(which nvim)

    najdi balíček, kterému patří soubor – i když ho nemáš nainstalovaný

    sudo pacman -Fy
    pacman -F /usr/bin/htop

    ═══════════════════════════════════════════
    🛠️ pacnew / pacsave – CHRÁNĚNÉ KONFIGURÁKY
    ═══════════════════════════════════════════

    Backup Files = soubory označené v balíčku jako "neredisej moji verzi"

    Když přijde update a soubor jsi upravil, pacman vytvoří .pacnew

    (nová verze z balíčku) a tvoji verzi nechá být.

    seznam backup files konkrétního balíčku

    pacman -Qii pacman | awk '/^Backup Files/,/^$/'

    najdi všechny .pacnew/.pacsave v systému (čekající na merge)

    sudo find /etc ( -name ".pacnew" -o -name ".pacsave" )

    interaktivní merge (z pacman-contrib)

    sudo pacman -S pacman-contrib
    sudo pacdiff

    ═══════════════════════════════════════════
    🌳 pactree → STROM ZÁVISLOSTÍ
    ═══════════════════════════════════════════

    instalace (pokud nemáš)

    sudo pacman -S pacman-contrib

    co všechno balíček potřebuje (závislosti)

    pactree firefox

    obrácený strom – kdo závisí NA tomto balíčku

    pactree -r glibc

    omezení hloubky

    pactree -d 1 firefox

    jen názvy, bez ozdob

    pactree -u firefox

    grafický výstup (potřebuje: pacman -S graphviz)

    pactree --graph firefox | dot -Tpng > firefox-deps.png

    ═══════════════════════════════════════════
    🔧 BONUS – DALŠÍ UŽITEČNÉ DOTAZY
    ═══════════════════════════════════════════

    hledání balíčku v repech

    pacman -Ss firefox

    hledání v nainstalovaných

    pacman -Qs firefox

    poslední full upgrade systému

    grep "starting full system upgrade" /var/log/pacman.log | tail -5

    co se naposled instalovalo/aktualizovalo

    tail -50 /var/log/pacman.log

    pretty výpis posledních akcí (expac)

    expac --timefmt='%Y-%m-%d %T' '%l\t%n' | sort -r | head -20

    změnit důvod instalace (z dependency na explicit)

    sudo pacman -D --asexplicit firefox

    označit jako závislost (půjde uklidit přes -Rns)

    sudo pacman -D --asdeps nějaký-balíček

    ═══════════════════════════════════════════
    💡 TYPICKÝ WORKFLOW
    ═══════════════════════════════════════════

    1. co mi žere místo?

    expac -H M "%m\t%n" | sort -h | tail -20

    2. co dělá tenhle balíček?

    pacman -Qi <balíček>

    3. můžu ho smazat? Co na něm závisí?

    pactree -r <balíček>

    4. odkud se vzal tenhle soubor?

    pacman -Qo /cesta/k/souboru

    5. úklid

    sudo pacman -Rns $(pacman -Qtdq)
    sudo paccache -rk2

    #archlinux #pacman #linux #cli

  4. CLI через Segger J-Link RTT на ARM Cortex-M (или однопортовая лапароскопия)

    В этом тексте я написал про то как наладить Shell по интерфейсу SWD . Посылать в прошивку команды и получать ответ. Чтобы можно было работать примерно как с UART только по SWD. Это когда прошивка в коде асинхронно получает текстовую строку от PC и отправляет текст обратно в сторону PC.

    habr.com/ru/articles/1018168/

    #rtt #JLink_RTT_Viewer #JLink #segger #stm32 #stm #arm #arm_cortex_m #arm_cortex_m4 #arm_cortexm4

  5. Un nouvel article sur mon blog qui parle d'organisation personnelle en mode texte et d'informatique minimaliste.
    Retours bienvenus 🙂

    #cli #vim #neovim #todotxt #secondbrain

    5ika.ch/posts/mon-organisation

  6. Un nouvel article sur mon blog qui parle d'organisation personnelle en mode texte et d'informatique minimaliste.
    Retours bienvenus 🙂

    #cli #vim #neovim #todotxt #secondbrain

    5ika.ch/posts/mon-organisation

  7. Un nouvel article sur mon blog qui parle d'organisation personnelle en mode texte et d'informatique minimaliste.
    Retours bienvenus 🙂

    #cli #vim #neovim #todotxt #secondbrain

    5ika.ch/posts/mon-organisation

  8. Nous cherchons des personnes #mal-voyantes ou #aveugles qui s'intéressent à la ligne de commande #bash, pour voir si elle seraient prêtes à essayer notre librairie pour son #accessibilite.

    Il y a déjà 13 commandes à tester.

    Au delà des problèmes de vue, cette librairie peut faciliter la vie d'un public plus large, puisqu'elle filtre les sorties de commandes pour les réduire à l'essentiel.

    codeberg.org/ARN/shell-a11y

    N'hésitez pas à nous contacter. 😉

    #a11y #cécité #adminsys #cli

  9. Arduino CLI for I/O Pin Testing - Need to quickly toggle or read some logic signals without the hassle of writing a quick program? [Th... - hackaday.com/2021/03/21/arduin #arduinohacks #bitbanging #debugging #arduino #cli

  10. Arcane CLI hits v1.19.2 with another round of updates for your self-hosted setup. Keeping your infrastructure tools fresh matters.

    github.com/getarcaneapp/arcane

  11. What are the fundamental CLI commands for navigating and managing files on a Linux server? #commandline #server

    askubuntu.com/q/1566897/612

  12. #GT-CLPM

    GT-CLPM-CLI هو مدير حزم سطر أوامر شامل لأنظمة جنو/لينكس، يُتيح لك تثبيت وإزالة وتحديث والبحث عن الحزم عبر أشهر مديري الحزم من خلال واجهة طرفية واحدة موحدة وسهلة الاستخدام.

    المميزات
    دعم لغات متعددة (العربية والإنجليزية)
    تثبيت/إزالة/تحديث/ترقية الحزم
    البحث عن الحزم وعرض المعلومات
    دعم أنظمة Debian/Ubuntu, Fedora, Arch, openSUSE, Solus، وغيرها
    أدوات صيانة النظام والنسخ الاحتياطي
    دعم فلاتباك وسناب (عند توفرهما)

    https://github.com/SalehGNUTUX/GT-CLPM/blob/main/README.md


    #GNUTUX #linux #gnu #package #manager #cli #terminal #مدير #حزم #لينكس #غنو #طرفية #سناب #فلاتباك #snap #flatpak #apt #pacman #dnf
  13. Auf meinem frisch installierten #ArchLinux bekomme ich seit Tagen nicht #musikcube installiert. #pikaur scheitert aufgrund eines "schwerwiegenden Fehlers", da es Datei oder Verzeichnis "asio/io_service.hpp" nicht finden kann.

    #asio ist aber mit #pacman installiert. Wo liegt also der Fehler? Ich bin ratlos.

    #Arch #Linux #music #cli

  14. Запуск I2S трансивера на Artery

    В этом тексте я написал про то, как самому написать System Software уровня HAL для ARM Cortex-M4 совместимого микроконтроллера. Как отлаживать такую работу и на что обратить внимание при запуске I2S на Artery MCU.

    habr.com/ru/articles/830184/

    #i2s #звук #Artery #HAL #System_Software #arm #MCAL #AT32F43x #C #cli

  15. Запуск I2S трансивера на Artery

    В этом тексте я написал про то, как самому написать System Software уровня HAL для ARM Cortex-M4 совместимого микроконтроллера. Как отлаживать такую работу и на что обратить внимание при запуске I2S на Artery MCU.

    habr.com/ru/articles/830184/

    #i2s #звук #Artery #HAL #System_Software #arm #MCAL #AT32F43x #C #cli

  16. Here are the CLI commands to check for the file artifacts on a #fortigate to determine if your system was affected by the vulnerability in CVE-2022-42475:
    fnsysctl ls /data/lib
    fnsysctl ls /data/var
    These were not documented in the PSIRT. You can run them directly on the fortigate, script them through a #fortimanager or through the cloud management console.
    #infosec #netsec #firewall #fortinet

  17. A series of articles/tutorials explaining the everyday useful Linux commands along with the detailed examples.
    nayab.xyz/book/linux-cli-000-i

  18. Is ani-cli safe?

    This CLI program seems to work well, but since it is a binary I can’t see what it is (presumably) streaming torrents from. It’s easy and fast and has an extensive library, which is good. I’m not good enough at coding to dig through the git repo to really determine if this is safe. So, while this tool seems to do what it describes - I can’t monitor traffic at all (if you have a way to do that on Arch, please let me know!). Most of the Megathread is safe torrent sites, so I have no idea if this is pulling from those. Again, it does work, and easily - but I have no clue what the traffic is doing.
    #archlinux #anime

  19. RT @Teknium: The new X API CLI tool is now available in Hermes Agent! Check out the PR below or use /xurl prompt to perform actions and read/search tweets on Twitter (note: this replaces the xitter skill and requires updating hermes agent!) GitHub: github.com/NousResearch/herm…

    mehr auf Arint.info

    #Agent #agent #API #APi #CLI #github #make #nitter #Twitter #arint_info

    https://x.com/Teknium/status/2045626907774136817#m

  20. The #library and #CLI alpm-buildinfo in version 0.2.0 offers many documentation and usability improvements for this #crate providing integration with the #BUILDINFO file format which is used in #ALPM based #package files. 📦

    crates.io/crates/alpm-buildinf

    For details refer to the #changelog alpm.archlinux.page/alpm-build

    #ArchLinux #RustLang #SoftwareRelease

  21. Rewriting an argparse-based CLI with . It's much cleaner:

    - less verbose
    - better contained (single module instead of using submodules for subcommands)
    - better typed (dataclasses!)
    - as reusable, or more reusable in other CLIs (classes instead of functions that modify an argparse parser)
    - much easier to use programmatically (no need to call `main` or build an `argparse.Namespace` manually)
    - better documented
    - better output (rich!)

    github.com/DanCardin/cappa

  22. ToolChain: Настройка Сборки Прошивок для Микроконтроллеров Artety из MakeFile

    Настало время освоить очередное семейство микроконтроллеров: от компании Artery Technology. Компания Artery Technology уже возвела полноценную экосистему для своих процессоров. Есть фирменные отладочные платы, программаторы, документация, исходные коды MCAL и даже кодо генераторы. В этом тексте я представил пошаговую инструкцию того как запрограммировать микроконтроллер Artery.

    habr.com/ru/articles/792590/

    #artery #AT32 #make #makefile #arm_cortexm4 #GDB #C #openocd #eclipse #CLI

  23. The #library and #CLI alpm-buildinfo in version 0.2.0 offers many documentation and usability improvements for this #crate providing integration with the #BUILDINFO file format which is used in #ALPM based #package files. 📦

    crates.io/crates/alpm-buildinf

    For details refer to the #changelog alpm.archlinux.page/alpm-build

    #ArchLinux #RustLang #SoftwareRelease

  24. The #library and #CLI alpm-buildinfo in version 0.2.0 offers many documentation and usability improvements for this #crate providing integration with the #BUILDINFO file format which is used in #ALPM based #package files. 📦

    crates.io/crates/alpm-buildinf

    For details refer to the #changelog alpm.archlinux.page/alpm-build

    #ArchLinux #RustLang #SoftwareRelease

  25. I love when I am toying around on my #mangopi MQ-pro that when I add “-r” to the #cmatrix cunning command the cpu instantly jumps to 100% utilization 🤣

    #sbc #cli

  26. For @linux 30th bday, here's my #linux story.

    30 years ago, I did not know you could install a different OS on a computer.

    In 2002, I started to try this Linux thing. Tested #Mandrake and #Fedora on my desktop. Had a friend from #RéseauCitoyen over at my house help me debug the graphic card issues, without success.

    Fell in love with a stable and beautiful system in 2004 with #Ubuntu. Never looked back.

    I miss #CrunchBang.
    Crafted my own version of it with #Arch.

    #cli :tealheart: