許可が拒否されました:/etc/apt/sources.list


20

私はJava jreをインストールしようとしています、私は通常このようにします

sudo echo 'deb http://www.duinsoft.nl/pkg debs all' >> /etc/apt/sources.list
sudo apt-key adv --keyserver keys.gnupg.net --recv-keys 5CB26B26
sudo apt-get update
sudo apt-get install update-sun-jre
exit

しかし、私がするとき

sudo echo 'deb http://www.duinsoft.nl/pkg debs all' >> /etc/apt/sources.list

そうですか

許可が拒否されました:/etc/apt/sources.list

私がする時

ls -l /etc/apt/sources.list

そうですか

-rw-r--r-- 1 root root 3360 Aug 26 01:45 /etc/apt/sources.list

私がする時

sudo mv /etc/apt/sources.list /etc/apt/sources.list.old
sudo cat /etc/apt/sources.list.old | sudo tee /etc/apt/sources.list

そうですか

#deb cdrom:[Ubuntu 12.04 LTS _Precise Pangolin_ - Release amd64 (20120425)]/ dists/precise/main/binary-i386/

#deb cdrom:[Ubuntu 12.04 LTS _Precise Pangolin_ - Release amd64 (20120425)]/ dists/precise/restricted/binary-i386/
#deb cdrom:[Ubuntu 12.04 LTS _Precise Pangolin_ - Release amd64 (20120425)]/ precise main restricted

# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
deb http://lb.archive.ubuntu.com/ubuntu/ precise main restricted
deb-src http://lb.archive.ubuntu.com/ubuntu/ precise main restricted

## Major bug fix updates produced after the final release of the
## distribution.
deb http://lb.archive.ubuntu.com/ubuntu/ precise-updates main restricted
deb-src http://lb.archive.ubuntu.com/ubuntu/ precise-updates main restricted

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
deb http://lb.archive.ubuntu.com/ubuntu/ precise universe
deb-src http://lb.archive.ubuntu.com/ubuntu/ precise universe
deb http://lb.archive.ubuntu.com/ubuntu/ precise-updates universe
deb-src http://lb.archive.ubuntu.com/ubuntu/ precise-updates universe

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu 
## team, and may not be under a free licence. Please satisfy yourself as to 
## your rights to use the software. Also, please note that software in 
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
deb http://lb.archive.ubuntu.com/ubuntu/ precise multiverse
deb-src http://lb.archive.ubuntu.com/ubuntu/ precise multiverse
deb http://lb.archive.ubuntu.com/ubuntu/ precise-updates multiverse
deb-src http://lb.archive.ubuntu.com/ubuntu/ precise-updates multiverse

## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
deb http://lb.archive.ubuntu.com/ubuntu/ precise-backports main restricted universe multiverse
deb-src http://lb.archive.ubuntu.com/ubuntu/ precise-backports main restricted universe multiverse

deb http://security.ubuntu.com/ubuntu precise-security main restricted
deb-src http://security.ubuntu.com/ubuntu precise-security main restricted
deb http://security.ubuntu.com/ubuntu precise-security universe
deb-src http://security.ubuntu.com/ubuntu precise-security universe
deb http://security.ubuntu.com/ubuntu precise-security multiverse
deb-src http://security.ubuntu.com/ubuntu precise-security multiverse

## Uncomment the following two lines to add software from Canonical's
## 'partner' repository.
## This software is not part of Ubuntu, but is offered by Canonical and the
## respective vendors as a service to Ubuntu users.
# deb http://archive.canonical.com/ubuntu precise partner
# deb-src http://archive.canonical.com/ubuntu precise partner

## This software is not part of Ubuntu, but is offered by third-party
## developers who want to ship their latest software.
deb http://extras.ubuntu.com/ubuntu precise main
deb-src http://extras.ubuntu.com/ubuntu precise main

そして、問題は解決しません、私はまだその許可エラーを見ます、私は64ビットのラップトップ上にいます

回答:


40

これは既知の問題ですsudo。この方法で使用すると、正しく機能しません。これは、echoコマンドがとして実行されているsudo間、>>for appendが非sudoユーザーとしてファイルターゲットを開こうとするためです。それが許可の問題です。

しかし、私のマルチパートの回答を読んでください。これは、私が提供する他のソリューションよりも「安全」と考えることができる別のソリューションを提供します。

1:

/etc/apt/sources.list.d/今言っているdeb命令を含む別のファイルを使用します。sudoただし、ファイルを編集/作成するにはを使用する必要があります。


2:

解決策はsudo su -c "echo 'deb http://www.duinsoft.nl/pkg debs all' >> /etc/apt/sources.list"、それをスーパーユーザーとして実行するようシステムに指示することです。これは、「su」コマンドの前に「sudo」を使用してアクセスできます。

PLEASE NOTEは、suあなたは絶対にそれを必要とする場合にのみ、この方法を使用する必要がありますので、私はここに述べたコマンドの外を使用するコマンドは、危険です。


最も安全なソリューション(#3):echo | sudo teeANDを個別に使用.list

ただし、スーパーユーザーのプロンプトにドロップすることなく、上記と同じことを実現できます。このコマンドで:

echo 'deb http://www.duinsoft.nl/pkg debs all' | sudo tee -a /etc/apt/sources.list

ただし、上記の#1を考慮して、代わりに新しいファイルを使用してみましょう。

sudo touch /etc/apt/sources.list.d/duinsoft.list
echo 'deb http://www.duinsoft.nl/pkg debs all' | sudo tee -a /etc/apt/sources.list.d/duinsoft.list

このように、メインはそのままにしておきsources.listますが、ソースは、このリポジトリを特に処理するインクルードファイルを介して追加されます。(ちなみに、これがPPAの追加方法です!)


19

このコマンドを使用するechoと、rootとして実行されますが、ではありません>>。代わりに次を試してください。

echo 'deb http://www.duinsoft.nl/pkg debs all' | sudo tee -a /etc/apt/sources.list

または、次の2つの手順で実行できます。

sudo -i

echo 'deb http://www.duinsoft.nl/pkg debs all' >> /etc/apt/sources.list

exit

3

このコマンドが行うことはに追加するdeb http://www.duinsoft.nl/pkg debs allこと/etc/apt/sources.listです。他の方法でやってみましょう!そのファイルを開いて、手動で追加するだけです!

sudo nano /etc/apt/sources.list

次に、deb http://www.duinsoft.nl/pkg debs all最後に追加してを押しCtrl + O、次にENTERを押して変更を保存し、最後Ctrl + Xに終了しnanoます。

次のコマンドにジャンプできます...


1
いいですね、これは私を大いに助けてくれました!
キリルグシャティン

0

この後、>>が機能するようになったら、sudoを再度追加するだけです。これを試して

sudo echo 'deb http://www.duinsoft.nl/pkg debs all' >> sudo /etc/apt/sources.list

私は文字通り同じ問題を抱えていたので、後戻りしたくなかったので、これでうまくいきました。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.