quyền bị từ chối: /etc/apt/source.list


20

Tôi đang cố gắng cài đặt java jre, tôi thường làm như thế này

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

nhưng khi tôi làm

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

tôi hiểu rồi

quyền bị từ chối: /etc/apt/source.list

Khi tôi làm

ls -l /etc/apt/sources.list

tôi hiểu rồi

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

Khi tôi làm

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

tôi hiểu rồi

#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

và vấn đề chưa được giải quyết, tôi vẫn thấy lỗi cấp phép đó, tôi đang sử dụng máy tính xách tay 64 bit

Câu trả lời:


40

Đây là một vấn đề được biết đến, khi bạn sử dụng sudotheo cách này, nó sẽ không hoạt động đúng. Đó là bởi vì trong khi echolệnh được chạy dưới dạng sudo, phần >>bổ sung sẽ cố mở mục tiêu tệp với tư cách là sudongười không sử dụng. Đó là vấn đề cho phép.

Tuy nhiên, vui lòng đọc câu trả lời đa phần của tôi, cung cấp cho bạn một giải pháp riêng biệt có thể được coi là "an toàn" hơn các giải pháp khác mà tôi cung cấp:

1:

Sử dụng một tệp riêng trong /etc/apt/sources.list.d/đó chứa hướng dẫn gỡ lỗi mà bạn đang nói bây giờ. Tuy nhiên, bạn vẫn cần sử dụng sudođể chỉnh sửa / tạo tệp.


2:

Một giải pháp sẽ là làm sudo su -c "echo 'deb http://www.duinsoft.nl/pkg debs all' >> /etc/apt/sources.list", nó sẽ cho hệ thống chạy nó dưới dạng siêu người dùng, mà bạn có quyền truy cập bằng cách sử dụng 'sudo' trước lệnh 'su'.

XIN LƯU Ý rằng sulệnh được sử dụng bên ngoài lệnh tôi đã nêu ở đây là nguy hiểm, vì vậy bạn chỉ nên sử dụng phương pháp này nếu bạn thực sự cần nó.


Giải pháp an toàn nhất (# 3): Sử dụng echo | sudo teeVÀ riêng biệt.list

Tuy nhiên, bạn có thể đạt được điều tương tự như trên mà không bao giờ rơi vào dấu nhắc siêu người dùng. Với lệnh này:

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

Tuy nhiên, chúng ta cũng hãy tính đến tài khoản số 1 ở trên và thay vào đó hãy sử dụng một tệp mới cho nó:

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

Bằng cách này, chúng tôi để lại chính sources.list, nhưng các nguồn sẽ được thêm thông qua một tệp bao gồm xử lý cụ thể kho lưu trữ này. (Đây là cách PPA được thêm vào, nhân tiện!)


19

Điều gì xảy ra với lệnh echolà chạy dưới quyền root, nhưng không >>. Thay vào đó hãy thử các cách sau:

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

cách khác, bạn có thể làm điều đó theo hai bước:

sudo -i

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

exit

3

Những gì lệnh này làm là nối thêm deb http://www.duinsoft.nl/pkg debs allvào /etc/apt/sources.list. Hãy làm theo cách khác! Chỉ cần mở tập tin đó và nối nó bằng tay!

sudo nano /etc/apt/sources.list

Sau đó thêm deb http://www.duinsoft.nl/pkg debs allvào cuối của nó và nhấn Ctrl + Ovà sau đó ENTER để lưu các thay đổi và cuối cùng Ctrl + Xđể thoát nano.

Bạn có thể chuyển sang lệnh tiếp theo ngay bây giờ ...


1
Thật tuyệt, điều này đã giúp tôi rất nhiều!
Kirill Gusyatin

0

Chỉ cần thêm sudo một lần nữa sau >> sẽ hoạt động cho cái này. Thử đi

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

Tôi thực sự chỉ có vấn đề tương tự và không muốn quay lại và điều này làm việc cho tôi.

Khi sử dụng trang web của chúng tôi, bạn xác nhận rằng bạn đã đọc và hiểu Chính sách cookieChính sách bảo mật của chúng tôi.
Licensed under cc by-sa 3.0 with attribution required.