Установка корневого сертификата в браузере SailfishOS (sailfish-browser)
Установить nss-tools:
devel-su pkcon install nss-tools
Или с помощью zypper (если установлен):
zypper install nss-tools
Перейти в нужный каталог:
cd /home/defaultuser/.local/share/org.sailfishos/browser/.mozilla
Просмотреть установленные сертификаты:
certutil -L -d ./
Установить сертификат:
certutil -d ./ -A -t "C,," -n "MY SQIUD CA" -i ./myCA.pem
Удалить сертификат:
certutil -d ./ -D -n "MY SQIUD CA"
HOWTO use ASA Local CA certificates
Bring Up Interface in Debian/Ubuntu Without an IP
Again, this is one of those simple configs once you’ve seen it, but it is a bear to track down and find this info. Basically what I want to do here is tell the OS to bring up the interface regardless of it not having an IP assigned to it. Typically linux systems only bring up their interfaces if they have addresses configured for them. Bringing up an address free interface can be handy for network sniffing, virtualization projects, and various bridging configs.
Here’s what you need to place in /etc/network/interfaces for the interface you need to bring up (X = your interface number):
auto ethX
iface ethX inet manual
up ifconfig ethX up
(http://lastoctet.com/2009/04/12/bring-up-interface-in-debian-ubuntu-with/)
Информация о сетевых интерфейсах в PowerShell
Get-NetAdapter | Sort-Object Name | ft -Property Name, MacAddress, LinkSpeed
Latest Wireshark from Source on Debian
Установим все зависимости wireshark:
$ sudo apt-get build-dep wireshark
Установим некоторые нужные пакеты:
$ sudo apt-get install build-essential checkinstall libcurl4-openssl-dev
Распакуем архив:
$ tar xjf wireshark-*.tar.bz2
Конфигурация и установка:
$ cd wireshark-*
$ ./configure --with-ssl --enable-setcap-install --with-dumpcap-group=wireshark
$ make -j4
$ sudo checkinstall --fstrans=no
$ sudo ldconfig
Запуск без root:
$ sudo groupadd wireshark
$ sudo usermod -a -G wireshark your-user-name
$ sudo chgrp wireshark /usr/local/bin/dumpcap
$ sudo chmod 4750 /usr/local/bin/dumpcap
(https://scottlinux.com/2013/06/07/how-to-install-the-latest-wireshark-from-source-on-debian-or-ubuntu-linux/)