web-dev-qa-db-fra.com

Je ne peux installer aucun paquet via un terminal!

Je continue à avoir ceci:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages were automatically installed and are no longer required:
  geoip-database-extra gir1.2-ayatanaappindicator3-0.1 gir1.2-gexiv2-0.10
  libayatana-appindicator3-1 libayatana-indicator3-7 libjs-openlayers libnl-route-3-200
  libqt5multimedia5 libsmi2ldbl libwireshark-data libwireshark10 libwiretap7 libwscodecs1
  libwsutil8 python-bs4 python-certifi python-configobj python-html5lib python-httplib2
  python-lxml python-olefile python-openssl python-pil python-pycurl python-requests
  python-urllib3 python-webencodings wireshark wireshark-common wireshark-qt
Use 'Sudo apt autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 34 not upgraded.
1 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Setting up install-info (6.5.0.dfsg.1-2) ...
/usr/sbin/update-info-dir: 4: /etc/environment: Syntax error: Unterminated quoted string
dpkg: error processing package install-info (--configure):
 installed install-info package post-installation script subprocess returned error exit status 2
Errors were encountered while processing:
 install-info
E: Sub-process /usr/bin/dpkg returned an error code (1)

Sortie de cat/etc/environment:

     icebunny08@D3CRYPT3D:~$ cat /etc/environment
PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/usr/Java/jre1.8.0_171/bin"
Java_HOME="/usr/Java/jre1.8.0_171
1
icebunny08

Vous devriez éditer votre / etc/environment avec l'éditeur de texte et y ajouter le dernier guillemet (").
Par exemple avec Nano:

Sudo nano /etc/environment

changement

PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/usr/Java/jre1.8.0_171/bin"
Java_HOME="/usr/Java/jre1.8.0_171

à

PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/usr/Java/jre1.8.0_171/bin"
Java_HOME="/usr/Java/jre1.8.0_171"

Presse Ctrl+O pour sauver, alors Ctrl+X quitter.

3
N0rbert