Example /etc/apt/apt.conf.d/90ipv6only
Put inside the following:
Acquire::ForceIPv4 "true";
and the do apt-get update.This works on Debian Jessie/Devuan Jessie.
Acquire::ForceIPv4 "true";
and the do apt-get update.# zcat jdk-7u71-linux-i586.tar.gz|tar xvf -Now use update-alternatives script to add it to /etc/alternatives
# mv jdk1.7.0_71 /usr/lib/jvm/java-1.7
# chown -R root:root /usr/lib/jvm/java-1.7/*
# update-alternatives --install "/usr/bin/java" "java" "/usr/lib/jvm/java-1.7/bin/java" 1Now set the new java binaries as default (choose the one with the right path):
# update-alternatives --install "/usr/bin/javaws" "javaws" "/usr/lib/jvm/java-1.7/bin/javaws" 1
# update-alternatives --install "/usr/bin/javac" "javac" "/usr/lib/jvm/java-1.7/bin/javac" 1
# update-alternatives --config java
# update-alternatives --config javac
# update-alternatives --config javaws
# mysql -u roundcubeuser -proundcubepassNow change all remained entries with the new default_host:
mysql> use roundcube
mysql> delete from users where mail_host='192.168.10.1';
Query OK, 60 rows affected (0.07 sec)
mysql> update users set mail_host='192.168.10.1' where mail_host='10.10.200.1';Now you have your addressbook back.
Query OK, 105 rows affected (0.08 sec)
Rows matched: 105 Changed: 105 Warnings: 0