web-dev-qa-db-fra.com

Comment installer Xtreme Download Manager (XDM) dans Ubuntu 18.04?

Pour installer Xtreme Download Manager, j'ai utilisé les commandes suivantes en fonction de ce qui est dit ici .

Sudo add-apt-repository ppa:noobslab/apps
Sudo apt-get update
Sudo apt-get install xdman  

Mais voici ce que je reçois du terminal et je ne parviens pas à l'installer:

sepideh@sepideh-Lenovo-ideapad-700-15ISK:~$ Sudo add-apt-repository ppa:noobslab/apps
[Sudo] password for sepideh: 
 This PPA Contains Applications for Ubuntu/Linux Mint from different sources but debianized by http://www.NoobsLab.com
 More info: https://launchpad.net/~noobslab/+archive/ubuntu/apps
Press [ENTER] to continue or Ctrl-c to cancel adding it.

Ign:1 http://dl.google.com/linux/chrome/deb stable InRelease
Get:2 http://security.ubuntu.com/ubuntu bionic-security InRelease [83.2 kB]
Ign:3 http://ppa.launchpad.net/noobslab/apps/ubuntu bionic InRelease
Hit:4 http://us.archive.ubuntu.com/ubuntu bionic InRelease
Hit:5 http://dl.google.com/linux/chrome/deb stable Release
Get:7 http://us.archive.ubuntu.com/ubuntu bionic-updates InRelease [88.7 kB]
Err:8 http://ppa.launchpad.net/noobslab/apps/ubuntu bionic Release
  404  Not Found [IP: 91.189.95.83 80]
Get:9 http://us.archive.ubuntu.com/ubuntu bionic-backports InRelease [74.6 kB]
Hit:10 https://repo.windscribe.com/ubuntu zesty InRelease
Reading package lists... Done
E: The repository 'http://ppa.launchpad.net/noobslab/apps/ubuntu bionic Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
sepideh@sepideh-Lenovo-ideapad-700-15ISK:~$ Sudo apt-get update
Ign:1 http://dl.google.com/linux/chrome/deb stable InRelease
Hit:2 http://dl.google.com/linux/chrome/deb stable Release
Get:4 http://security.ubuntu.com/ubuntu bionic-security InRelease [83.2 kB]
Hit:5 http://us.archive.ubuntu.com/ubuntu bionic InRelease
Ign:6 http://ppa.launchpad.net/noobslab/apps/ubuntu bionic InRelease
Get:7 http://us.archive.ubuntu.com/ubuntu bionic-updates InRelease [88.7 kB]
Err:8 http://ppa.launchpad.net/noobslab/apps/ubuntu bionic Release
  404  Not Found [IP: 91.189.95.83 80]
Get:9 http://us.archive.ubuntu.com/ubuntu bionic-backports InRelease [74.6 kB]
Hit:10 https://repo.windscribe.com/ubuntu zesty InRelease
Reading package lists... Done
E: The repository 'http://ppa.launchpad.net/noobslab/apps/ubuntu bionic Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
sepideh@sepideh-Lenovo-ideapad-700-15ISK:~$ Sudo apt-get install xdman
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package xdman
sepideh@sepideh-Lenovo-ideapad-700-15ISK:~$ 

Que devrais-je faire?

4
Sepideh Abadpour

Noobslab PPA n’a pas de version XDMan pour Cosmic Cuttlefish - la dernière mise à jour concerne Xenial Xerus. Pour autant que je sache, XDMan ne dispose d'aucun PPA fiable pour le moment.

Installer avec Tarball

  1. Téléchargez XDMan à partir de ici
  2. OpenJDK aurait déjà dû être installé. Vérifier sur le terminal: Java --version. Si vous obtenez Command 'Java' not found installez-le avec:

    Sudo apt-get update

    Sudo apt-get install openjdk-11-jre

    et appuyez sur Entrée si demandé.

  3. Pour Linux 64 bits, choisissez xdm-2018-x64.tar.xz et pour 32 bits, xdm- 2018-x86.tar.xz

  4. Une fois le téléchargement terminé, ouvrez Terminal et cd dans le répertoire de téléchargement; par exemple: cd ~/Downloads/Programs
  5. tapez tar -xvf xdm-2018-x64.tar.xz ou tar -xvf xdm-2018-x86.tar.xz (selon celui que vous avez choisi de télécharger).

    NOTE: Vous ne voudrez peut-être pas extraire le fichier à l'aide de FileRoller ou d'autres logiciels, car il ne sera peut-être pas extrait de manière apparente .

  6. tapez cd xdm-2018-x64 ou cd xdm-2018-x86 (encore une fois, en conséquence).

  7. tapez Sudo ./install.sh

Xtreme Download Manager est maintenant installé sur votre système.

2
Analog_Interface