अनुमति अस्वीकृत: /etc/apt/source.list


20

मैं जावा 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/source.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, >>क्योंकि परिशिष्ट फ़ाइल लक्ष्य को गैर- sudoउपयोगकर्ता के रूप में खोलने का प्रयास करता है । यह वह जगह है जहां अनुमति मुद्दा है।

हालांकि, कृपया मेरे बहु-भाग वाले उत्तर को पढ़ें, जो आपको एक अलग समाधान देता है जिसे मेरे द्वारा प्रदान किए गए अन्य की तुलना में अधिक 'सुरक्षित' माना जा सकता है:

1:

उस अलग फ़ाइल का उपयोग करें /etc/apt/sources.list.d/जिसमें अभी आपके द्वारा कहे जा रहे निर्देश हैं। sudoफ़ाइल को संपादित / बनाने के लिए आपको अभी भी उपयोग करने की आवश्यकता होगी ।


2:

एक समाधान यह करना होगा sudo su -c "echo 'deb http://www.duinsoft.nl/pkg debs all' >> /etc/apt/sources.list", जो सिस्टम को उस सुपरसुसर के रूप में चलाने के लिए कहता है, जिसे आप 'सु' कमांड के सामने 'सुडो' का उपयोग करके प्राप्त करते हैं।

कृपया ध्यान दें कि suमेरे द्वारा यहां बताई गई कमांड के बाहर प्रयोग की जाने वाली कमांड खतरनाक है, इसलिए आपको इस विधि का उपयोग केवल तभी करना चाहिए जब आपको इसकी आवश्यकता हो।


सबसे सुरक्षित समाधान (# 3): उपयोग echo | sudo teeऔर एक अलग.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अकेला छोड़ देते हैं, लेकिन स्रोतों को एक सम्मिलित फ़ाइल के माध्यम से जोड़ा जाएगा जो विशेष रूप से इस भंडार को संभालती है। (इस तरह पीपीए जुड़ जाते हैं, वैसे!)


19

कमांड के साथ जो होता है वह echoरूट के रूप में चलाया जाता है, लेकिन नहीं >>। इसके बजाय निम्नलिखित प्रयास करें:

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

वैकल्पिक रूप से, आप इसे दो चरणों में कर सकते हैं:

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और फिर परिवर्तनों को सहेजने और अंत Ctrl + Xमें छोड़ने के लिए दर्ज करें nano

अब आप अगले कमांड पर जा सकते हैं ...


1
अच्छा लगा, इससे मुझे बहुत मदद मिली!
किरिल गुसातिन

0

बस के बाद फिर से sudo जोड़ें >> इस के लिए काम करेंगे। इसे इस्तेमाल करे

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

मैं सचमुच एक ही मुद्दा था और पीछे नहीं हटना चाहता था और यह मेरे लिए काम करता था।

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.