Skip to content

Tag: debian

Ethernet RTL 8168 driver on Debian

By default on Debian is used 8169 driver instead of 8168 (Realtek ethernet driver). Also, 8168 driver does not exist. ~# find /lib/modules/`uname -r`/kernel/drivers/net/ethernet/ -name *816* /lib/modules/3.16.0-4-amd64/kernel/drivers/net/ethernet/realtek/r8169.ko The network device ~# lspci |grep Ether 03:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 09) The loaded driver ~# lsmod |grep…

Installing nginx and php7 on Debian

First time, i will install nginx-extras (extended version of nginx): root@vm02:~# apt-get install nginx-extras   Adding dotdeb to apt sources list: root@vm02:~# echo “deb http://packages.dotdeb.org jessie all” >> /etc/apt/sources.list   Installing curl and adding dotdeb key for apt: root@vm02:~# apt-get install curl root@vm02:~# curl http://www.dotdeb.org/dotdeb.gpg | apt-key add – % Total % Received % Xferd…

How to install virtualbox on Debian

Installing virtualbox + phpVirtualBox for management on debian jessie using CLI: root@ips:~# echo “deb http://download.virtualbox.org/virtualbox/debian jessie contrib” >> /etc/apt/sources.list root@ips:~# wget -q -O- http://download.virtualbox.org/virtualbox/debian/oracle_vbox_2016.asc | apt-key add – root@ips:~# apt-get update root@ips:~# apt-get install virtualbox-5.0 I will configure phpVirtualBox on ‘/var/www’: root@ips:~# cd /var/www/ root@ips:/var/www# wget http://heanet.dl.sourceforge.net/project/phpvirtualbox/phpvirtualbox-5.0-5.zip root@ips:/var/www# unzip phpvirtualbox-5.0-5.zip root@ips:/var/www# mv phpvirtualbox-5.0-5 vbox root@ips:/var/www# cd…