Category Archives: linux-desktop
Parental control for Linux Mint
Time limiter with UI — Timekpr (https://www.linuxuprising.com/2019/11/timekpr-next-is-linux-parental-control.html) Domain blocker — Mintnanny (https://www.reallinuxuser.com/how-to-setup-parental-control-in-linux-mint/), too simple.
Ubuntu — play games with joystick
I have Linux Mint, but it should fit any Ubuntu-based distributive.
How to install linux mint on hp
I’ve run into a problem — had a lot of error logging saying «PCIe Bus Error: severity=Corrected, type=Physical Layer», «AER Corrected error received», and similar. The problem is that it fills all the log space and the installation process cannot finish. You can run into it on HP laptops on monoblocks. What you can do.
Добавить/удалить пользователя в Ubuntu
добавить
1 2 |
sudo useradd -d /home/testuser -m testuser sudo passwd testuser |
удалить
1 |
userdel -r testuser |
Shutter — аналог tinygrab для Ubuntu
Установка В центре приложений найти shutter и поставить :) Настройка Параметры системы клавиатура комбинации клавиш дополнительные комбинации Добавить
1 2 |
название shutter команда shutter -s |
Затем там же (в «дополнительных комбинациях») нажать на правую часть строки, в которой написано shutter, и нажать кнопку PrtScr. Ссылки: http://shutter-project.org/faq-help/set-shutter-as-the-default-screenshot-tool/ http://shutter-project.org/wp-content/custom_html_files/shutter_090.pod.html#capture_mode_options
Встроенные утилиты linux для слежения за системой
1 2 3 4 5 6 |
ps top vmstat strace perf netstat |
и многие, многие другие на одной схеме:
Особенности работы linux с жёсткими дисками
Или как убить новый диск за полгода редким использованием: http://habrahabr.ru/post/106273/
tig для просмотра git-логов в командной строке
Установка
1 |
brew install tig |
Запускаем команду tig в директории с git-репозиторием. Ждём немного — и вот у нас уже дерево коммитов с ветками. Перемещаемся стрелками ↓↑, затем нажимаем d и смотрим diff, после чего нажимаем q для возврата в главное меню. http://jonas.nitro.dk/tig/screenshots/ http://habrahabr.ru/post/206606/
Настройка свопа и управление кэшами в Ubuntu
http://fx-files.ru/archives/704
1 |
echo 10 > /proc/sys/vm/swappiness // или sysctl -w vm.swappiness=10 |
Для сохранения настройки после перезагрузки внесите в конец файла /etc/sysctl.conf следующую строку:
1 |
vm.swappiness=10 |
Чтобы сразу применить настройку:
1 |
sysctl -p |
Git: посмотреть последние merge веток
1 |
git log -n50 | grep Merge |