답변:
Multiverse 저장소에는 라이센스 제한을 참조하여 "무료"패키지 (소프트웨어)가 포함되어 있습니다.
Multiverse 저장소에는 무료로 분류 된 소프트웨어가 포함되어 있습니다. 이 소프트웨어는 일부 관할지에서 허용되지 않을 수 있습니다. 이 저장소에서 각 패키지를 설치할 때 해당 국가의 법률에 따라 사용할 수 있는지 확인해야합니다. 또한이 소프트웨어에는 보안 업데이트가 포함되어 있지 않을 수 있습니다.
우분투 리포지토리의 철학에 대한 자세한 내용 은 기본 우분투 소프트웨어 리포지토리 개요를 참조하십시오.
명령 행에서 또는 그래픽으로 저장소를 사용할 수 있습니다.
소프트웨어 센터를 열고 상단의 "우분투 소프트웨어"탭으로 이동 한 후 다중 우주를 선택 (체크 오프)하십시오.
"재로드"버튼을 사용하여 패키지 목록을 업데이트하십시오.
/etc/apt/sources.list
아무 편집기에서나 열 수 있습니다.
# command line editor (nano)
sudo -e /etc/apt/sources.list
# graphical editor
gksu gedit /etc/apt/sources.list
행의 주석을 해제 (앞에서 # 제거) multiverse
하거나 필요한 경우 추가하여 행은 다음과 같습니다.
## 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://us.archive.ubuntu.com/ubuntu/ oneiric multiverse
#deb-src http://us.archive.ubuntu.com/ubuntu/ oneiric multiverse
deb http://us.archive.ubuntu.com/ubuntu/ oneiric-updates multiverse
#deb-src http://us.archive.ubuntu.com/ubuntu/ oneiric-updates multiverse
deb-src
소스 코드를 다운로드해야하는 경우 행의 주석을 해제하십시오 (대부분의 사용자는 소스 코드가 필요하지 않으므로 확실하지 않은 경우 비활성화하십시오).
수정 사항을 저장하고 ( nano, Ctrl+를 사용하는 경우 X입력 Y한 후 변경 사항을 저장하려면 입력 ) 패키지 목록을 업데이트하고
sudo apt-get update
sed
하여 multiverse
다음으로 끝나는 줄의 주석을 해제 할 수 있습니다 .sudo sed -i '/^#.*multiverse$/s/^# //g' /etc/apt/sources.list
sudo apt-add-repository multiverse
이 훨씬 더 좋고 현대적이기 때문에 하향 조정되었습니다 .
Ubuntu의 최신 릴리스에 사용할 수있는 또 다른 옵션 :
sudo apt-add-repository multiverse && sudo apt-get update
매뉴얼 페이지에서 :
Examples:
apt-add-repository 'deb http://myserver/path/to/repo stable myrepo'
apt-add-repository 'http://myserver/path/to/repo myrepo'
apt-add-repository 'https://packages.medibuntu.org free non-free'
apt-add-repository http://extras.ubuntu.com/ubuntu
apt-add-repository ppa:user/repository
apt-add-repository multiverse
텍스트 편집기 나 GUI를 사용하지 않고 명령 행에서 :
sudo sed -i "/^# deb.*multiverse/ s/^# //" /etc/apt/sources.list
sudo sed -i "/^# deb .* multiverse$/ s/^# //" /etc/apt/sources.list; sudo apt-get update