Během tradiční ceremonie k oslavě Dne vzniku samostatného československého státu (28. října) byl vyznamenán medailí Za zásluhy (o stát v oblasti hospodářské) vývojář 3D tiskáren Josef Průša. Letos byly uděleny pouze dvě medaile Za zásluhy o stát v oblasti hospodářské, druhou dostal informatik a manažer Ondřej Felix, který se zabývá digitalizací státní správy.
Tor Browser, tj. fork webového prohlížeče Mozilla Firefox s integrovaným klientem sítě Tor přednastavený tak, aby přes tuto síť bezpečně komunikoval, byl vydán ve verzi 15.0. Postaven je na Firefoxu ESR 140.
Bylo oznámeno (cs) vydání Fedora Linuxu 43. Ve finální verzi vychází šest oficiálních edic: Fedora Workstation a Fedora KDE Plasma Desktop pro desktopové, Fedora Server pro serverové, Fedora IoT pro internet věcí, Fedora Cloud pro cloudové nasazení a Fedora CoreOS pro ty, kteří preferují neměnné systémy. Vedle nich jsou k dispozici také další atomické desktopy, spiny a laby. Podrobný přehled novinek v samostatných článcích na stránkách Fedora Magazinu: Fedora Workstation, Fedora KDE Plasma Desktop, Fedora Silverblue a Fedora Atomic Desktops.
Elon Musk oznámil (𝕏) spuštění internetové encyklopedie Grokipedia (Wikipedia). Zatím ve verzi 0.1. Verze 1.0 prý bude 10x lepší, ale i ve verzi 0.1 je podle Elona Muska již lepší než Wikipedia.
PSF (Python Software Foundation) po mnoha měsících práce získala grant ve výši 1,5 milionu dolarů od americké vládní NSF (National Science Foundation) v rámci programu "Bezpečnost, ochrana a soukromí open source ekosystémů" na zvýšení bezpečnosti Pythonu a PyPI. PSF ale nesouhlasí s předloženou podmínkou grantu, že během trvání finanční podpory nebude žádným způsobem podporovat diverzitu, rovnost a inkluzi (DEI). PSF má diverzitu přímo ve svém poslání (Mission) a proto grant odmítla.
Balík nástrojů Rust Coreutils / uutils coreutils, tj. nástrojů z GNU Coreutils napsaných v programovacím jazyce Rust, byl vydán ve verzi 0.3.0. Z 634 testů kompatibility Rust Coreutils s GNU Coreutils bylo úspěšných 532, tj. 83,91 %. V Ubuntu 25.10 se již používá Rust Coreutils místo GNU Coreutils, což může přinášet problémy, viz například nefunkční automatická aktualizace.
Od 3. listopadu 2025 budou muset nová rozšíření Firefoxu specifikovat, zda shromažďují nebo sdílejí osobní údaje. Po všech rozšířeních to bude vyžadováno někdy v první polovině roku 2026. Tyto informace se zobrazí uživateli, když začne instalovat rozšíření, spolu s veškerými oprávněními, která rozšíření požaduje.
Jste nuceni pracovat s Linuxem? Chybí vám pohodlí, které vám poskytoval Microsoft, když vás špehoval a sledoval všechno, co děláte? Nebojte se. Recall for Linux vám vrátí všechny skvělé funkce Windows Recall, které vám chyběly.
Společnost Fre(i)e Software oznámila, že má budget na práci na Debianu pro tablety s cílem jeho vyžívání pro vzdělávací účely. Jako uživatelské prostředí bude použito Lomiri.
Proběhla hackerská soutěž Pwn2Own Ireland 2025. Celkově bylo vyplaceno 1 024 750 dolarů za 73 unikátních zranitelností nultého dne (0-day). Vítězný Summoning Team si odnesl 187 500 dolarů. Shrnutí po jednotlivých dnech na blogu Zero Day Initiative (1. den, 2. den a 3. den) a na YouTube.
Řešení dotazu:
man bash
pak napiš*:
/HIST
A kochej se*:
...
HISTCONTROL
A colon-separated list of values controlling how commands are saved on the history list. If the list of
values includes ignorespace, lines which begin with a space character are not saved in the history list. A
value of ignoredups causes lines matching the previous history entry to not be saved. A value of ignoreboth
is shorthand for ignorespace and ignoredups. A value of erasedups causes all previous lines matching the
current line to be removed from the history list before that line is saved. Any value not in the above list
is ignored. If HISTCONTROL is unset, or does not include a valid value, all lines read by the shell parser
are saved on the history list, subject to the value of HISTIGNORE. The second and subsequent lines of a
multi-line compound command are not tested, and are added to the history regardless of the value of HISTCON‐
TROL.
HISTFILE
The name of the file in which command history is saved (see HISTORY below). The default value is
~/.bash_history. If unset, the command history is not saved when a shell exits.
HISTFILESIZE
The maximum number of lines contained in the history file. When this variable is assigned a value, the his‐
tory file is truncated, if necessary, to contain no more than that number of lines by removing the oldest
entries. The history file is also truncated to this size after writing it when a shell exits. If the value
is 0, the history file is truncated to zero size. Non-numeric values and numeric values less than zero
inhibit truncation. The shell sets the default value to the value of HISTSIZE after reading any startup
files.
HISTIGNORE
A colon-separated list of patterns used to decide which command lines should be saved on the history list.
Each pattern is anchored at the beginning of the line and must match the complete line (no implicit `*' is
appended). Each pattern is tested against the line after the checks specified by HISTCONTROL are applied.
In addition to the normal shell pattern matching characters, `&' matches the previous history line. `&' may
be escaped using a backslash; the backslash is removed before attempting a match. The second and subsequent
lines of a multi-line compound command are not tested, and are added to the history regardless of the value
of HISTIGNORE.
HISTSIZE
The number of commands to remember in the command history (see HISTORY below). If the value is 0, commands
are not saved in the history list. Numeric values less than zero result in every command being saved on the
history list (there is no limit). The shell sets the default value to 500 after reading any startup files.
HISTTIMEFORMAT
If this variable is set and not null, its value is used as a format string for strftime(3) to print the time
stamp associated with each history entry displayed by the history builtin. If this variable is set, time
stamps are written to the history file so they may be preserved across shell sessions. This uses the his‐
tory comment character to distinguish timestamps from other history lines.
...
*) Výsledek se může lišit
# smaze historii nactenou v aktualni konzoli, na disku v ~/.bash_history ji ale nechava history -c # ulozi aktualni historii (po predchozim smazani tedy prazdnou) na disk do ~/.bash_history history -w # napoveda pro history, ktera je soucast bash a proto nelze zobrazit pres 'history --help' help history
Tiskni
Sdílej: