यदि वे सॉफ़्टवेयर स्रोतों के रूप में शामिल किए जाने हैं, तो फ़ाइलों का नाम /etc/sources.list.d
समाप्त होना चाहिए .list
।
जैसा कि source.list का मैन पेज कहता है:
विवरण
The package resource list is used to locate archives of the package
distribution system in use on the system. At this time, this manual
page documents only the packaging system used by the Debian GNU/Linux
system. This control file is /etc/apt/sources.list.
The source list is designed to support any number of active sources and
a variety of source media. The file lists one source per line, with the
most preferred source listed first. The format of each line is: type
uri args The first item, type determines the format for args. uri is a
Universal Resource Identifier (URI), which is a superset of the more
specific and well-known Universal Resource Locator, or URL. The rest of
the line can be marked as a comment by using a #.
SOURCES.LIST.D
The /etc/apt/sources.list.d directory provides a way to add
sources.list entries in separate files. The format is the same as for
the regular sources.list file. File names need to end with .list and
may only contain letters (a-z and A-Z), digits (0-9), underscore (_),
hyphen (-) and period (.) characters. Otherwise APT will print a notice
that it has ignored a file if the file doesn't match a pattern in the
Dir::Ignore-Files-Silently configuration list - in this case it will be
silently ignored.
इस पृष्ठ से एक उदाहरण लेते हुए , मान लीजिए कि आप रसोइये (opscode से) को स्थापित करना चाहते थे , आप क्या करेंगे:
- नाम से एक फ़ाइल बनाएं और खोलें
opscode.list
:
sudo vim /etc/apt/sources.list.d/opscode.list
- आवश्यक पंक्ति जोड़ें और फ़ाइल को सहेजें:
deb http://apt.opscode.com/ oneiric main
उपरोक्त चरणों को एक कमांड बनाने के लिए जोड़ा जा सकता है:
sudo /bin/sh -c 'echo "deb http://apt.opscode.com/ onereic main" > /etc/apt/sources.list.d/opscode.list'
ध्यान दें: कमांड में सम्मिलितonereic
है क्योंकि आपके द्वारा उपयोग किए जा रहे Ubuntu का कोडनेम Onereic है । यदि आप Precise (12.04) का उपयोग कर रहे थे , तो आपके पास लेखनी होगी precise
।
apt-config dump
। एक पंक्ति होनी चाहिए जो कहती हैDir::Etc::sourceparts "sources.list.d";
। शायद यह आगे की जांच के लिए मदद करता है।