web-dev-qa-db-ja.com

gnome-Tweak-toolをインストールする

ターミナルにgnome-Tweak-toolをインストールしたいときに問題があります

Sudo apt-get install gnome-Tweak-tool
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following additional packages will be installed:
  gir1.2-gdesktopenums-3.0 gir1.2-gnomedesktop-3.0 gnome-settings-daemon gnome-Shell-common iio-sensor-proxy mutter-common
The following NEW packages will be installed:
  gir1.2-gdesktopenums-3.0 gir1.2-gnomedesktop-3.0 gnome-settings-daemon gnome-Shell-common gnome-Tweak-tool iio-sensor-proxy mutter-common
0 upgraded, 7 newly installed, 0 to remove and 0 not upgraded.
Need to get 633 kB/1,949 kB of archives.
After this operation, 13.2 MB of additional disk space will be used.
Do you want to continue? [Y/n] y
Get:1http://archive.ubuntu.com/ubuntu xenial/universe AMD64 gnome-Shell-common all 3.18.4-0ubuntu3 [609 kB]
Err:2 http://archive.ubuntu.com/ubuntu xenial/universe AMD64 iio-sensor-proxy AMD64 1.1-1
  400  Bad URI [IP: 91.189.88.161 80]
Fetched 609 kB in 5s (111 kB/s)
E: Failed to fetch http://archive.ubuntu.com/ubuntu/pool/universe/i/iio-sensor-proxy/iio-sensor-proxy_1.1-1_AMD64.deb  400  Bad URI [IP: 91.189.88.161 80]

E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?

私は--fix-missingをしましたが、何も動作しません...

4
user573168

まず、ユニバースリポジトリを有効にする必要があります。これを行うには、アプリケーションメニューから[ソフトウェアと更新]を開きます。リポジトリリストからすべてのユニバースリポジトリをマークします。

software and updates

[再読み込み]をクリックしてUbuntuを更新します。次に、次のコマンドを使用してGnome Tweak Toolをインストールします

 Sudo apt install gnome-Tweak-tool

出力:

$ Sudo apt install gnome-Tweak-tool
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following NEW packages will be installed:
 gnome-Tweak-tool
0 upgraded, 1 newly installed, 0 to remove and 435 not upgraded.
Need to get 205 kB of archives.
After this operation, 1,198 kB of additional disk space will be used.
Get:1 http://archive.ubuntu.com/ubuntu artful/universe AMD64 gnome-Tweak-tool all 3.26.2.1-1ubuntu1 [205 kB]
Fetched 205 kB in 1s (106 kB/s)            
Selecting previously unselected package gnome-Tweak-tool.
(Reading database ... 145771 files and directories currently installed.)
Preparing to unpack .../gnome-Tweak-tool_3.26.2.1-1ubuntu1_all.deb ...
Unpacking gnome-Tweak-tool (3.26.2.1-1ubuntu1) ...
Processing triggers for mime-support (3.60ubuntu1) ...
Processing triggers for desktop-file-utils (0.23-1ubuntu3) ...
Setting up gnome-Tweak-tool (3.26.2.1-1ubuntu1) ...
Processing triggers for gnome-menus (3.13.3-6ubuntu5) ...
Processing triggers for hicolor-icon-theme (0.17-1) ...

Gnome Tweak Toolを実行します

8
Athiban

多くの方法をテストして解決策を見つけました

  1. ターミナル内

    Sudo nano /etc/apt/sources.list
    
  2. このWebサイトを開く https://repogen.simplylinux.ch/ ソースリストを生成する

  3. ターミナルに貼り付けます
  4. ターミナルに入力

    Sudo apt-get update
    Sudo apt-get upgrade 
    

残念ながら、一部の国では、別のソースに変更するまで更新またはアップグレードできません

これが私が理解していることです。

それが正しいかどうかはわかりませんが、私にとってはうまくいきます。

0
user573168