PERC H810 на контроллере Symbios Logic MegaRAID SAS 2208 в Debian 8 Jessie

02.04.2017 / 0 comments

Работа с платой PERC H810 на контроллере Symbios Logic MegaRAID SAS 2208 в Debian 8 Jessie # apt-get install megactl megacli # megasasctl # megacli Adpallinfo -aall # megacli -LDInfo -Lall -aALL # megacli -PDlist -aall # megacli -CfgLdAdd -r1 [2:0,2:1] -a1 # megacli -LDInfo -Lall -aALL # megasasctl # lsblk Смотрим статус megasasctl Смотрим…

Read more →

Debian KVM

05.09.2015 / 0 comments

# apt-get install libvirt-bin qemu-kvm virtinst bridge-utils # cat /etc/network/interfaces auto lo iface lo inet loopback allow-hotplug eth0 auto eth0 iface eth0 inet manual auto br0 iface br0 inet static address 192.168.0.4 netmask 255.255.255.0 gateway 192.168.0.1 bridge_ports eth0 bridge_stp off bridge_fd 0 bridge_maxwait 0 # qemu-img create -f qcow2 guest0.img 150G # virt-install -r 2048…

Read more →

Минимальный OpenVPN на Debian Wheezy

28.01.2015 / 0 comments

Создание ключа openvpn —genkey —secret /etc/openvpn/mini.key Конфиг сервера /etc/openvpn/mini.conf dev tun10 ifconfig 10.0.0.1 10.0.0.2 secret /etc/openvpn/mini.key Конфиг клиента /etc/openvpn/mini.conf remote АДРЕС_СЕРВЕРА dev tun10 ifconfig 10.0.0.2 10.0.0.1 secret /etc/openvpn/mini.key