Problemas ao instalar o simplescreenrecorder no debess jessie

3

Tenho tido alguns problemas importantes ultimamente tentando instalar vários softwares compilando a partir do código-fonte ou via apt-get e aptitude.

Eu continuo recebendo dependências não satisfeitas que resultam em loops e corridas intermináveis quando tento consertar as coisas. Não há fim para isso e não sei o que fazer.

O mais recente desses problemas, ao tentar instalar simplescreenrecorder , fornece esta saída:

$ sudo apt-get install simplescreenrecorder
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.

The following information may help to resolve the situation:

The following packages have unmet dependencies:
libstdc++6 : Breaks: gnote (<= 3.16.2-1) but 3.14.0-1 is to be installed
python3-pyqt4 : Breaks: eric (< 6.0~) but 5.4.5-1 is to be installed
simplescreenrecorder :
Depends: libavcodec-ffmpeg56 (>= 7:2.4) but it is not installable
libavcodec-ffmpeg-extra56 (>= 7:2.4) but it is not installable
Depends: libavformat-ffmpeg56 (>= 7:2.4) but it is not installable
Depends: libavutil-ffmpeg54 (>= 7:2.4) but it is not installable
Depends: libswscale-ffmpeg3 (>= 7:2.4) but it is not installable
Recommends: simplescreenrecorder-lib but it is not going to be installed
E: Error, pkgProblemResolver::Resolve generated breaks,
this may be caused by held packages.

Se eu estou tendo problemas com o Cinnamon, e eles não podem ser corrigidos, então o que eu devo fazer? Aptitude quer remover todos os pacotes completamente. Isso não vai apenas confundir completamente o sistema com o inferno?

Aqui estão algumas informações. Eu não tenho ideia do que é importante ou não. (Mais uma vez, as coisas do cérebro me deixando realmente enevoada.)

$ lsb_release -a
No LSB modules are available.
Distributor ID: Debian
Description:    Debian GNU/Linux 8.6 (jessie)
Release:    8.6
Codename:   jessie

$ ps -e | grep tty7
934 tty7     00:17:43 Xorg

$ echo $DESKTOP_SESSION
lightdm-xsession

$ wmctrl -m
Name: Mutter (Muffin)
Class: N/A
PID: N/A

Modo "mostrando o desktop" do gerenciador de janelas: N / A

  • EXIBIR SERVIDOR: Xorg 1: 7.7 + 7
  • GERENCIADOR DE EXIBIÇÃO: lightdm
  • GERENCIADOR DE JANELAS: Mutter (Muffin)
  • AMBIENTE DE DESKTOP: X-Canela
  • CPU Intel (R) Core (TM) i7-2720QM a 2.20GHz
  • RAM: 8 gb

Edit: Além disso, por alguma razão o cara que me ajudou a substituir o Ubuntu neste sistema com o Debian (que eu gosto muito melhor) instalou o X86 Debian quando eu tenho o processador Intel Core i7 X86_64, que eu tenho 64 bits. A informação on-line diz um conjunto de instruções de 64 bits.

    
por Ben 24.01.2017 / 02:34

1 resposta

1

O pacote ffmpeg está disponível em jessie-backports , para instalar isso;

Edite seu sources.list adicionando a seguinte linha:

deb http://ftp.debian.org/debian jessie-backports main 

Atualize e instale ffmpeg e qt4-dev-tools :

sudo apt-get update
sudo apt-get -t jessie-backports install ffmpeg
sudo apt-get install qt4-dev-tools

Faça o download da fonte em aqui e crie seu programa:

git clone https://github.com/MaartenBaert/ssr/
cd ssr
./configure --without-pulseaudio --without-jack
make -j8
sudo make install

Executar ssr do terminal até:

simplescreenrecorder
    
por 24.01.2017 / 08:47