Stretch is the code name of Debian 9.0 release expected in the mid of 2017
Questions tagged [debian-stretch]
174 questions
0
votes
1 answer
IP6_tables unknown symbol, unable to initialize table 'filter'
On Debian 9, when trying to use iptables to create a set of rules, it works for IPv4 but not IPv6. With IPv6 I get the following error:
modprobe: ERROR: could not insert 'ip6_tables': Unknown symbol in module, or unknown parameter (see…

kojow7
- 431
- 5
- 14
0
votes
1 answer
Debian 9 / PHP 7.1.13 - Scripts occasionally not terminating
I've been experiencing a strange issue on Debian 9 with PHP 7.1.13. We have a number of PHP scripts setup to run via a crontab at various intervals between every 1 to 15 mins.
Most of the time these run fine and terminate successfully, however…

Steve Childs
- 101
- 3
0
votes
1 answer
How to properly chroot when using key based authentication within openssh-server
I'm running a Debian Stretch x86_64 server, with OpenSSH_7.4p1 Debian-10+deb9u3, OpenSSL 1.0.2l 25 May 2017.
I want to use chroots in combination with OpenSSH server's internal SFTP system. My current setup seems to work, unfortunately excluding…

Felix
- 101
- 1
- 6
0
votes
3 answers
Postfix + opendkim + spamassin: messages are signed twice
I've got Postfix + spamassassin working already and I'm introducing opendkim.
I'm almost there except outgoing messages are DKIM signed twice, which is not only useless but even makes them DKIM invalid.
From what I gathered, the whole thing boils…

Jérôme
- 615
- 2
- 8
- 19
0
votes
1 answer
Systemd: how to start a service after another, started by timer, finishes?
The goal
On Debian Stretch, we want to download any updates and install them immediately because we monitor the number of pending upgrades and currently get notifications for routine conditions.
Standard stretch
Standard stretch downloads updates…

catkin
- 1
- 1
- 1
0
votes
1 answer
mkinitramfs failed to determine device for /
I'm following this tutorial : Create a Custom Debian Live (it's not the first time) but this time it doesn't work when I'm trying to install linux-image-amd64 live-boot systemd-sysv in chroot environment.
Error is :
mkinitramfs: failed to…

DSX
- 385
- 1
- 4
- 18
0
votes
1 answer
Networking service timeouts every second restart
The setup
My debian server at online.net is running a dual stack ipv4/ipv6
# /etc/network/interfaces
auto lo
iface lo inet loopback
source /etc/network/interfaces.d/*
There are 2 files in /etc/network/interfaces.d/
#…

user48678
- 171
- 5
0
votes
1 answer
Autostart/restart program simply with daemontools in debian 9
For example make vlc start and play a video full screen on boot.
After working this out here it is:

Hayden Thring
- 147
- 16
0
votes
1 answer
How to access machine from multiple network interfaces/WANs
Recently, I added a second NIC to my Debian server. Another NIC is being shipped, bringing the total to 3 WAN connections.
Assume the NICs are named ens2, ens3, and ens4. "Accessing" means any network connections to the server (SSH, VNC, ping,…

Aloha
- 286
- 4
- 15
0
votes
1 answer
Exim4 autogenerated config not being generated properly on Debian Stretch
I have followed the instructions for installing mailman3 on Debian stretch here and copied the config files for exim4 from the core/assets/exim directory to /etc/exim4/conf.d/main. However, when I run update-exim4.conf I get the following…

K G
- 123
- 7
0
votes
1 answer
File which is invoked by all users for new bash sessions
I'd like to put code into a file, which when a new session is made is invoked for all users on a Debian system.
/etc/profile is only touched by login sessions.

Karl Morrison
- 1,621
- 4
- 29
- 43
0
votes
1 answer
exim refusing to handle virtual domains after upgrade to debian stretch
I have a machine that handles multiple virtual domains. Some of these include aliases defined for those specific domains (domain names will be changed from real names).
I have, for example:
$ cat /etc/exim4/virtual/alias.domain.com
hibak:…

P.Péter
- 569
- 2
- 6
- 24
0
votes
1 answer
Debian 9 Stretch nginx phpmyadmin 404 error
I installed phpmyadmin on Debian Stretch with nginx, but get 404 when navigating to http://blah.com/phpmyadmin, no errors in the logs. Here's my default file
vi /etc/nginx/sites-available/default
server {
listen 80 default_server;
listen…

batflaps
- 179
- 1
- 3
- 10
0
votes
0 answers
How to start Squid after the partition is mounted
My home server is running Squid and it used to start at boot without any trouble. But nowadays Squid does not automatically start at boot, tho it starts just fine when I log in and do systemctl start squid.
I believe the problem is simple, as…

Stefan
- 133
- 9
0
votes
0 answers
Linux firewall accepts UDP traffic even if it's not allowed
I have the following rules in INPUT chain:
-A INPUT -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
-A INPUT -m conntrack --ctstate INVALID -j DROP
-A INPUT -s 127.0.0.1/32 -j ACCEPT
-A INPUT -s 10.0.0.0/8 -j ACCEPT
-A INPUT -s 172.16.0.0/12 -j…

Nikša Baldun
- 141
- 5