Tag Archives: linux
Fixing docker does not want to update images
If you run docker pull, and you see an error like failed to register layer: Error processing tar file(exit status 2): fatal error: runtime: out of memory, there could be 2 reasons. Obvious one — not enough disk space for docker. You can fix it with
1 2 |
docker system prune -af docker volume ls -qf dangling=true |
WARNING: It will remove your unused resources like …
How to add and increase swap on CentOS
Adding a swap file without reboot If you are having a dedicated server somewhere with not that much memory, you could decide to add a swap without rebooting your server. To do so, you need to follow the routine:
1 2 3 4 |
sudo dd if=/dev/zero of=/swapfile count=1024 bs=1MiB sudo mkswap /swapfile sudo chmod 0600 /swapfile sudo swapon /swapfile |
Increasing a swap size If something goes wrong with your system, and you see that …
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.
Bash: список файлов в виде дерева
Можно поставить tree. А можно выполнить такую команду:
1 |
find . -maxdepth 3 | sed 's|[^/]*/|- |g' |
Или более красиво (с пайпами в первой колонке):
1 |
ls -R | grep ":$" | sed -e 's/:$//' -e 's/[^-][^\/]*\//--/g' -e 's/^/ /' -e 's/-/|/' |
http://stackoverflow.com/questions/3455625/linux-command-to-print-directory-structure-in-the-form-of-a-tree
Встроенные утилиты linux для слежения за системой
1 2 3 4 5 6 |
ps top vmstat strace perf netstat |
и многие, многие другие на одной схеме:
Автозапуск shell-скрипта при входе — Mac OS
Мне нужно было монтировать директорию по самбе. Всё достаточно просто: Создать файл automount в AppleScript с текстом
1 |
do shell script "mount -w -t smbfs \"//name:pass@ip/www\" /mnt/folder/" |
и сохранить как программу Системные настройки → Учётные записи → Объекты входа → Добавить плюсиком сохранённый скрипт http://www.withoutink.com/technology/howto-autostart-xampp-mac-osx/ http://jm.marino.free.fr/index.php?switch=sw_&title=AutomountMaker — визуальная тулза
Как проверить, какие порты слушаются какими программами в linux
Вывод всех портов и программ, которые их слушают:
1 |
netstat -anp | grep LISTEN |
Или
1 |
netstat -plutn |
Вот так можно посмотреть, кто слушает или обращается к определённому порту:
1 |
lsof -i :<port> |
Генерация SSH-ключей в linux
Проверяем, есть ли SSH
1 |
$ ssh -v |
Генерируем ключик
1 |
$ ssh-keygen |
Для пользователей Ubuntu для доступности ключа
1 2 3 |
chmod 644 ~/.ssh/id_rsa.pub ssh-agent bash ssh-add |
Всё) Ссылка на оригинал
Аналог TortoiseSVN под linux
Мне понравился RabbitVCS.
Статический IP в linux
По умолчанию в Ubuntu IP-адрес получается автоматически. Чтобы назначить статический IP, надо в файле /etc/network/interfaces заменить строки, где упоминается интерфейс eth0 на:
1 2 3 4 5 6 7 8 |
auto eth0 iface eth0 inet static address 192.168.1.10 netmask 255.255.255.0 network 192.168.1.0 broadcast 192.168.1.255 gateway 192.168.1.1 dns-nameservers 192.168.1.1 |