Problema ao instalar o aplicativo

0

Estou tentando instalar o Timeshift (arquivo .deb) no Raspbian 9.4 e usei

sudo apt install ./fileName.deb

que produziu

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Note, selecting 'timeshift:i386' instead of './timeshift-v18.4-i386.deb'
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:
 timeshift:i386 : Depends: libc6:i386 (>= 2.4) but it is not installable
              Depends: libcairo2:i386 (>= 1.2.4) but it is not installable
              Depends: libgdk-pixbuf2.0-0:i386 (>= 2.22.0) but it is not installable
              Depends: libgee-0.8-2:i386 (>= 0.8.3) but it is not installable
              Depends: libglib2.0-0:i386 (>= 2.35.9) but it is not installable
              Depends: libgtk-3-0:i386 (>= 3.16.2) but it is not installable
              Depends: libjson-glib-1.0-0:i386 (>= 0.13.2) but it is not installable
              Depends: libvte-2.91-0:i386 but it is not installable
E: Unable to correct problems, you have held broken packages.

O site do Timeshift diz que “talvez seja necessário instalar pacotes para as seguintes dependências libgee json-glib rsync ”. Eu suponho que esses são pacotes separados que eu preciso instalar primeiro, mas como eu faria isso? Da mesma maneira que eu tentei instalar o arquivo .deb? Muito obrigado antecipadamente.

    
por jt.j 25.05.2018 / 05:57

1 resposta

3

Suponho que você tenha baixado o pacote da página de lançamentos Timeshift . Isso fornece apenas versões binárias para amd64 e i386 , nenhuma das quais pode ser usada em seu Raspberry Pi (que é armhf ).

Você precisará criar Timeshift a partir da fonte. O Raspbian 9.4 tem todas as dependências de compilação necessárias. Você pode usar o script build-deb.sh anexado, depois de editá-lo para alterar xenial para stretch :

git clone https://github.com/teejee2008/timeshift.git
cd timeshift
sed -i s/xenial/stretch/g build-deb.sh
./build-deb.sh armhf

Isso informará quais programas instalar.

    
por 25.05.2018 / 07:25