abclinuxu.cz AbcLinuxu.cz itbiz.cz ITBiz.cz HDmag.cz HDmag.cz abcprace.cz AbcPráce.cz
AbcLinuxu hledá autory!
Inzerujte na AbcPráce.cz od 950 Kč
Rozšířené hledání
×
    dnes 00:22 | Komunita

    GNOME Foundation má nového výkonného ředitele. Po deseti měsících skončil dočasný výkonný ředitel Richard Littauer. Vedení nadace převzal Steven Deobald.

    Ladislav Hagara | Komentářů: 0
    10.5. 15:00 | Zajímavý článek

    Byl publikován přehled vývoje renderovacího jádra webového prohlížeče Servo (Wikipedie) za uplynulé dva měsíce. Servo zvládne už i Gmail. Zakázány jsou příspěvky generované pomocí AI.

    Ladislav Hagara | Komentářů: 6
    9.5. 17:22 | Nová verze

    Raspberry Pi Connect, tj. oficiální služba Raspberry Pi pro vzdálený přístup k jednodeskovým počítačům Raspberry Pi z webového prohlížeče, byla vydána v nové verzi 2.5. Nejedná se už o beta verzi.

    Ladislav Hagara | Komentářů: 3
    9.5. 15:22 | Komunita

    Google zveřejnil seznam 1272 projektů (vývojářů) od 185 organizací přijatých do letošního, již jednadvacátého, Google Summer of Code. Plánovaným vylepšením v grafických a multimediálních aplikacích se věnuje článek na Libre Arts.

    Ladislav Hagara | Komentářů: 0
    8.5. 19:22 | Nová verze

    Byla vydána (𝕏) dubnová aktualizace aneb nová verze 1.100 editoru zdrojových kódů Visual Studio Code (Wikipedie). Přehled novinek i s náhledy a videi v poznámkách k vydání. Ve verzi 1.100 vyjde také VSCodium, tj. komunitní sestavení Visual Studia Code bez telemetrie a licenčních podmínek Microsoftu.

    Ladislav Hagara | Komentářů: 0
    8.5. 18:00 | Nová verze

    Open source platforma Home Assistant (Demo, GitHub, Wikipedie) pro monitorování a řízení inteligentní domácnosti byla vydána v nové verzi 2025.5.

    Ladislav Hagara | Komentářů: 0
    8.5. 01:22 | Nová verze Ladislav Hagara | Komentářů: 0
    8.5. 00:55 | Zajímavý projekt

    PyXL je koncept procesora, ktorý dokáže priamo spúštat Python kód bez nutnosti prekladu ci Micropythonu. Podľa testov autora je pri 100 MHz približne 30x rýchlejší pri riadeni GPIO nez Micropython na Pyboard taktovanej na 168 MHz.

    vlk | Komentářů: 0
    7.5. 19:44 | Nová verze

    Grafana (Wikipedie), tj. open source nástroj pro vizualizaci různých metrik a s ní související dotazování, upozorňování a lepší porozumění, byla vydána ve verzi 12.0. Přehled novinek v aktualizované dokumentaci.

    Ladislav Hagara | Komentářů: 0
    7.5. 17:33 | Nová verze

    Raspberry Pi OS, oficiální operační systém pro Raspberry Pi, byl vydán v nové verzi 2025-05-06. Přehled novinek v příspěvku na blogu Raspberry Pi a poznámkách k vydání. Pravděpodobně se jedná o poslední verzi postavenou na Debianu 12 Bookworm. Následující verze by již měla být postavena na Debianu 13 Trixie.

    Ladislav Hagara | Komentářů: 0
    Jaký filesystém primárně používáte?
     (57%)
     (1%)
     (8%)
     (22%)
     (4%)
     (2%)
     (3%)
     (1%)
     (1%)
     (3%)
    Celkem 583 hlasů
     Komentářů: 26, poslední 8.5. 09:58
    Rozcestník

    Administrace komentářů

    Jste na stránce určené pro řešení chyb a problémů týkajících se diskusí a komentářů. Můžete zde našim administrátorům reportovat špatně zařazenou či duplicitní diskusi, vulgární či osočující příspěvek a podobně. Děkujeme vám za vaši pomoc, více očí více vidí, společně můžeme udržet vysokou kvalitu AbcLinuxu.cz.

    Příspěvek
    19.11.2019 20:11 Josef Kufner | skóre: 70
    Rozbalit Rozbalit vše Re: /var/log/jurnal a velikost adresáře 1.3GB -Co je to za zhovadilost??
    Viz man journald.conf:
           SystemMaxUse=, SystemKeepFree=, SystemMaxFileSize=, SystemMaxFiles=, RuntimeMaxUse=,
           RuntimeKeepFree=, RuntimeMaxFileSize=, RuntimeMaxFiles=
               Enforce size limits on the journal files stored. The options prefixed with "System" apply to
               the journal files when stored on a persistent file system, more specifically /var/log/journal.
               The options prefixed with "Runtime" apply to the journal files when stored on a volatile
               in-memory file system, more specifically /run/log/journal. The former is used only when /var is
               mounted, writable, and the directory /var/log/journal exists. Otherwise, only the latter
               applies. Note that this means that during early boot and if the administrator disabled
               persistent logging, only the latter options apply, while the former apply if persistent logging
               is enabled and the system is fully booted up.  journalctl and systemd-journald ignore all files
               with names not ending with ".journal" or ".journal~", so only such files, located in the
               appropriate directories, are taken into account when calculating current disk usage.
    
               SystemMaxUse= and RuntimeMaxUse= control how much disk space the journal may use up at most.
               SystemKeepFree= and RuntimeKeepFree= control how much disk space systemd-journald shall leave
               free for other uses.  systemd-journald will respect both limits and use the smaller of the two
               values.
    
               The first pair defaults to 10% and the second to 15% of the size of the respective file system,
               but each value is capped to 4G. If the file system is nearly full and either SystemKeepFree= or
               RuntimeKeepFree= are violated when systemd-journald is started, the limit will be raised to the
               percentage that is actually free. This means that if there was enough free space before and
               journal files were created, and subsequently something else causes the file system to fill up,
               journald will stop using more space, but it will not be removing existing files to reduce the
               footprint again, either. Also note that only archived files are deleted to reduce the space
               occupied by journal files. This means that, in effect, there might still be more space used
               than SystemMaxUse= or RuntimeMaxUse= limit after a vacuuming operation is complete.
    
               SystemMaxFileSize= and RuntimeMaxFileSize= control how large individual journal files may grow
               at most. This influences the granularity in which disk space is made available through
               rotation, i.e. deletion of historic data. Defaults to one eighth of the values configured with
               SystemMaxUse= and RuntimeMaxUse=, so that usually seven rotated journal files are kept as
               history.
    
               Specify values in bytes or use K, M, G, T, P, E as units for the specified sizes (equal to
               1024, 1024², ... bytes). Note that size limits are enforced synchronously when journal files
               are extended, and no explicit rotation step triggered by time is needed.
    
               SystemMaxFiles= and RuntimeMaxFiles= control how many individual journal files to keep at most.
               Note that only archived files are deleted to reduce the number of files until this limit is
               reached; active files will stay around. This means that, in effect, there might still be more
               journal files around in total than this limit after a vacuuming operation is complete. This
               setting defaults to 100.
    
    Hello world ! Segmentation fault (core dumped)

    V tomto formuláři můžete formulovat svou stížnost ohledně příspěvku. Nejprve vyberte typ akce, kterou navrhujete provést s diskusí či příspěvkem. Potom do textového pole napište důvody, proč by měli admini provést vaši žádost, problém nemusí být patrný na první pohled. Odkaz na příspěvek bude přidán automaticky.

    Vaše jméno
    Váš email
    Typ požadavku
    Slovní popis
    ISSN 1214-1267   www.czech-server.cz
    © 1999-2015 Nitemedia s. r. o. Všechna práva vyhrazena.