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ビットのラップトップ上にいます
これは既知の問題です。この方法でSudoを使用すると、正しく機能しません。これは、echoコマンドがSudoとして実行されている間に、追加用の>>
が非Sudoユーザーとしてファイルターゲットを開こうとするためです。それが許可の問題です。
しかし、私の2つの部分の答えを読んでください、これはあなたに別の解決策(種類の)を与えます:
/etc/apt/sources.list.d/
には、今言っているdeb命令を含む別のファイルを使用します。ただし、ファイルを編集/作成するには、Sudoを使用する必要があります。
解決策はSudo su -c "echo 'deb http://www.duinsoft.nl/pkg debs all' >> /etc/apt/sources.list"
を実行することです。これは、システムにスーパーユーザーとして実行するように指示し、「su」コマンドの前に「Sudo」を使用してアクセスします。
su
コマンドは危険ですので、絶対に必要な場合にのみこの方法を使用してください。このコマンドを使用すると、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
このコマンドは、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
を終了します。
次のコマンドにジャンプできます...
この後、>>が機能するようになったら、単にSudoを追加します。これを試して
Sudo echo 'deb http://www.duinsoft.nl/pkg debs all' >> Sudo /etc/apt/sources.list
私は文字通り同じ問題を抱えていたので、後戻りしたくなかったので、これでうまくいきました。