This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Посмотреть все установленные ревизии | |
| snap list --all | |
| # Ограничить количество хранимых версий до 2 (минимум) | |
| sudo snap set system refresh.retain=2 | |
| # Удалить старые (disabled) ревизии | |
| lang=C snap list --all | awk '/disabled/{print $1, $3}' | while read snapname revision; do sudo snap remove "$snapname" --revision="$revision"; done | |
| # Очистка кэша загрузок |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Поиск (покажет список с ID_приложения) | |
| flatpak search [название] | |
| # Установка по ID из поиска | |
| flatpak install [ID_приложения] | |
| # Запуск установленного приложения | |
| flatpak run [ID_приложения] | |
| # Пример запуска |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Section "Device" | |
| Identifier "dummy_device" | |
| Driver "dummy" | |
| VideoRam 256000 | |
| EndSection | |
| Section "Monitor" | |
| Identifier "dummy_monitor" | |
| HorizSync 28.0-80.0 | |
| VertRefresh 48.0-75.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Section "Device" | |
| Identifier "Card0" | |
| Option "NoDDC" "true" | |
| Option "IgnoreEDID" "true" | |
| Driver "dummy" | |
| VideoRam 512000 | |
| EndSection | |
| Section "Monitor" | |
| Identifier "Monitor0" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| network: | |
| version: 2 | |
| renderer: networkd | |
| ethernets: | |
| eth0: | |
| dhcp4: false | |
| dhcp6: false | |
| accept-ra: false | |
| link-local: [] | |
| addresses: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| network: | |
| version: 2 | |
| renderer: networkd | |
| wifis: | |
| wlp1s0: | |
| dhcp4: no | |
| dhcp6: no | |
| optional: true | |
| accept-ra: false | |
| link-local: [] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| network: | |
| #ethernets: | |
| #enp3s0: | |
| #dhcp4: true | |
| wifis: | |
| wlp1s0: | |
| access-points: | |
| link5: | |
| password: 12345 | |
| dhcp4: true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| network: | |
| ethernets: | |
| eth0: | |
| dhcp4: false | |
| addresses: | |
| - 192.168.0.8/24 | |
| nameservers: | |
| addresses: | |
| - 8.8.8.8 | |
| - 8.8.4.4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| network: | |
| ethernets: | |
| eth0: | |
| dhcp4: true | |
| version: 2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- Yandex.Metrika counter --> | |
| <script type="text/javascript" > | |
| (function(m,e,t,r,i,k,a){m[i]=m[i]||function(){(m[i].a=m[i].a||[]).push(arguments)}; | |
| m[i].l=1*new Date(); | |
| for (var j = 0; j < document.scripts.length; j++) {if (document.scripts[j].src === r) { return; }} | |
| k=e.createElement(t),a=e.getElementsByTagName(t)[0],k.async=1,k.src=r,a.parentNode.insertBefore(k,a)}) | |
| (window, document, "script", "https://mc.yandex.ru/metrika/tag.js", "ym"); | |
| ym(12345678, "init", { | |
| clickmap:true, |
NewerOlder