Tên của các tệp trong /etc/sources.list.d
phải kết thúc bằng .list
, nếu chúng được đưa vào dưới dạng nguồn phần mềm.
Như trang man của nguồn.list nói:
SỰ MIÊU TẢ
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 #.
NGUỒN LIST.DIST.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.
Lấy một ví dụ từ trang này , giả sử bạn muốn cài đặt đầu bếp (từ opscode) , điều bạn sẽ làm là:
- Tạo và mở một tệp có tên
opscode.list
:
sudo vim /etc/apt/source.list.d/opscode.list
- Thêm dòng yêu cầu và lưu tệp:
deb http://apt.opscode.com/ chính
Các bước trên có thể được kết hợp để tạo một lệnh duy nhất:
sudo /bin/sh -c 'echo "deb http://apt.opscode.com/ onereic main" > /etc/apt/sources.list.d/opscode.list'
Lưu ý: Lệnh chứa onereic
vì tên mã của Ubuntu bạn đang sử dụng là Onereic . Nếu bạn đang sử dụng Chính xác (12.04), bạn sẽ có người viết precise
.
apt-config dump
. Nên có một dòng nóiDir::Etc::sourceparts "sources.list.d";
. Có lẽ điều này giúp điều tra thêm.