web-dev-qa-db-ja.com

Ubuntu 18.04にXtreme Download Manager(XDM)をインストールする方法は?

Xtreme Download Managerをインストールするために、言われたことに基づいて次のコマンドを使用しました here

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

しかし、これは私が端末から取得したものであり、インストールできません:

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:~$ 

私は何をすべきか?

4

Noobslab PPAにはCosmic Cuttlefish用のXDManリリースがありません-最後の更新はXenial Xerusのものでした。私の知る限り、XDManには現時点で信頼できるPPAはありません。

Tarballを使用してインストールする

  1. here からXDManをダウンロードします
  2. OpenJDKはすでにインストールされているはずです。ターミナルで確認してください:Java --versionCommand 'Java' not foundを取得した場合は、次を使用してインストールします。

    Sudo apt-get update

    Sudo apt-get install openjdk-11-jre

    求められたらEnterを押します。

  3. 64ビットLinuxの場合はxdm-2018-x64.tar.xzを選択し、32ビットの場合はxdm-を選択します2018-x86.tar.xz

  4. ダウンロードが完了したら、ターミナルを開き、ダウンロードディレクトリにcd;例:cd ~/Downloads/Programs
  5. tar -xvf xdm-2018-x64.tar.xzまたはtar -xvf xdm-2018-x86.tar.xz(ダウンロードすることを選択したものに応じて)と入力します。

    NOTE:FileRollerまたは他のソフトウェアを使用してファイルを抽出したくない場合があります。 適切に抽出できない場合があるため

  6. cd xdm-2018-x64またはcd xdm-2018-x86と入力します(これに応じて)。

  7. タイプSudo ./install.sh

これで、Xtreme Download Managerがシステムにインストールされました。

2