Questions tagged [debian-jessie]

About the 8.0 release of the Debian GNU/Linux operating system. Superseded by Debian Stretch (9.0). Long-term support was available until June 30th, 2020. QUESTIONS MUST BE PROGRAMMING RELATED.

Jessie was initially released on April 26th, 2015, superseding the previous LTS release wheezy (debian 7). It got its last update in 23th June, 2018. Since 30th June, 2020 it has no more LTS support.

Notable changes and improvements

  • New architectures: ppc64el and arm64
  • Dropped architectures: s390 (31-bit s390 replaced by s390x), sparc and ia64
  • New desktop environments: cinnamon and mate-desktop
  • More packages built by security-hardening compiler flags
  • Cross-platform binutils to ease cross-compilation
  • node.js first appearance
  • Legacy SSLv3 support dropped

References

206 questions
0
votes
1 answer

debian:jessie docker image does not install Nginx with HTTP/2 support

I have this Dockerfile: FROM debian:jessie ARG ENV_APP ARG ENV_SMF RUN apt-get update && apt-get install -y nginx ADD conf.d/nginx.conf /etc/nginx/ ADD conf.d/nginx.${ENV_SMF}.conf /etc/nginx/sites-available/symfony.conf RUN ln -s…
Ignas Damunskis
  • 1,515
  • 1
  • 17
  • 44
0
votes
0 answers

Getting weird error when trying to install packages in Dockerfile

I am running apt-get install in a Dockerfile (base image Debian:Jessie) and getting the error : rm: cannot remove '/tmp/tmp.2aQvTy9NOu': No such file or directory I am not sure what this means or what I should try.
Hmkyriacou
  • 64
  • 1
  • 8
0
votes
1 answer

How to install Debian Jessie package in Bullseye in Docker

I am trying to install libtomcat7-java in my Debian Bullseye Docker container. The problem is that it is only available in the Debian Archives for Jessie. I tried the follow code: FROM openjdk:8u312-bullseye RUN echo "deb…
Redline
  • 441
  • 8
  • 20
0
votes
1 answer

GitHub Actions mkdir doesn't do anything

I installed the GitHub Actions runner on a Debian 8 Server. I'm trying to build a .NET application and copy it to another directory. The building part works fine, but I'm unable to copy the files. I'm trying to create the directory with "sudo mkdir…
0
votes
1 answer

Problems having python installed in Docker container for GUI software

I would like to install This software called Brat on my Ubuntu-based machine except that Brat requires Debian and I didn't manage to install it on Ubuntu. I thought I could go through a Docker container, for that, I wrote the following Dockerfile…
mja
  • 13
  • 5
0
votes
1 answer

Pine script -How to write a script that detects eight similar consecutive candles

Want to write a pine script that gives an alert after 8 consecutive similar candles and gives an alert after the 8th or on the 8th candle.
Nkosi
  • 3
  • 3
0
votes
1 answer

php7.2-bcmath (Debian Jessie) - installation problem

When i try insstall this package i get: Reading package lists... Done Building dependency tree Reading state information... Done E: Unable to locate package php7.2-bcmath E: Couldn't find any package by regex 'php7.2-bcmath' In source.list i…
0
votes
1 answer

tun0: device not found

I have installed OpenVPN 2.4.7 (as client) on Debian 8 (following this) and loaded the module tun into it. Even after I start the OpenVPN I cannot see the tun0 running. In /etc/openvpn/ I have certificate (.cer), key (.key) & .ovpn files Here are…
MJ019
  • 13
  • 1
  • 5
0
votes
1 answer

Zabbix slow disk request responses

I have installed Zabbix-server 5.0 on a Docker Container, following the official guide (for postgresql): https://www.zabbix.com/documentation/current/manual/installation/containers After that, I installed a Zabbix-Agent 5.0 for Debian 8 on the…
0
votes
1 answer

log file missing messages

I have a log file I track on my own. I am running a python script on raspberry pi and printing messages at various parts/events of the code. I have the script outputs piped to a text file. Some cycles all messages are logged and other cycles hardly…
SChand
  • 51
  • 1
  • 9
0
votes
0 answers

Subversion on NAS

Our NAS got recent firmware upgrade and it broke subversion that we were using. Since repository was created using newer version of Tortoise SVN, we were unable to use the app listed in the store which is too older and not compatible with SVN files.…
0
votes
1 answer

errors with C code (reads GPIO input off a Raspberry Pi Zero W), compiles on Jessie but doesn't compile on Buster Lite

I am very new to C (had one semester class like 5 years ago). To summarize my problem, I have code written in C that compiles on Raspbian Jessie, but not Buster Lite. I'm using a Raspberry Pi Zero W + ADCs to input an analog signal, digitize it,…
Dev123
  • 21
  • 5
0
votes
1 answer

slapd unment dependency in debian 8

I want to install openLdap package from jessie repository. this is my sources.list file content : deb http://security.debian.org/ jessie/updates main contrib deb-src http://security.debian.org/ jessie/updates main contrib I run apt-get update and…
f_y
  • 73
  • 9
0
votes
0 answers

How to install Java 8 or higher on Debian 8 given the jessie-backports are no more valid?

I had tried the following two ways but no luck sudo add-apt-repository ppa:webupd8team/java sudo apt-get update sudo apt-get install oracle-java8-installer echo "deb http://ppa.launchpad.net/webupd8team/java/ubuntu trusty main" >…
Aneez Fatima
  • 33
  • 1
  • 5
0
votes
2 answers

Gitlab ist overlaying all subdomains and even my entire nginx.config

I am pretty new in those server / cloud dev things. So I rented a vServer and started playing around. First with nginx. I made my own config and all went well, getting the right html files on the right sub-/domains: server { listen…
NewOutlaw
  • 64
  • 8