Grubカスタムプログラムをインストールしようとしているので、次のように入力します。
sudo add-apt-repository ppa:danielrichter2007/grub-customizer
出力は次のとおりです
sudo: add-apt-repository: command not found
それから(問題を解決しようとして)入りました。
apt-get install python-software-properties
出力:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package python-software-properties is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'python-software-properties' has no installation candidate
次に、(以前のエラーを修正するために)実行します。
sudo apt-get install software-properties-common
出力:
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package software-properties-common
最後に入力します。
sudo apt-get update
そして得る:
Reading package lists... Done
この問題を解決する方法がわかりません。どんな助けでも大変感謝します。ありがとう
答え1
PPAは、KaliではなくUbuntuおよびその派生製品に適用されます。 Grubのカスタムドキュメントに示すように、次のことを行う必要があります。ソースからビルド。
答え2
grub カスタムプログラムをインストールするには、次のコマンドを実行します。
apt-get install build-essential cmake libgtkmm-3.0-dev libssl-dev gettext libarchive-dev
wget https://goo.gl/qQnUhK -O grub-customizer_4.0.6.tar.gz
tar xfv grub-customi*
cd grub-customi*
cmake . && make -j3
make install