コマンドラインからインストールスクリプトにすべてのリポジトリとPPAのリストを取得するにはどうすればよいですか?


217

システムにインストールされているすべてのパッケージリストする方法を知っています。

しかし、すべてのリポジトリとPPAのリストを、キーを含むリポジトリセットアップを複製するために新しいマシンで実行できるスクリプトにどのように取得できますか?

私は私がに見ることができます知っている/etc/apt/sources.list/etc/apt/sources.list.d、私はする方法を探しています生成するすべて実行するスクリプトをapt-add-repository(すべてのキーを取得してソート)新しいシステム上でコマンドを。

何か案は?

回答:


106

以下を使用してすべてを表示できます。

grep ^ /etc/apt/sources.list /etc/apt/sources.list.d/*

13
egrep -v '^#|^ *$' /etc/apt/sources.list /etc/apt/sources.list.d/*コメントアウトされた行と空白行を削除するのはどうですか?

3
^after grepin の使い方を説明していただけますgrep ^ /etc/apt/sources.list /etc/apt/sources.list.d/*か?

4
@ vasa1キャレット^とドル記号$は、それぞれ行の先頭と末尾の空の文字列に一致するメタ文字です。
wojox

4
私はgrep ^ [^#]を使用します...-コメントアウトされたすべてのソースを自動的に非表示にします
ロスエイケン

13
何もフィルタで除外しない場合、実行する方が簡単ではないでしょうかcat /etc/apt/sources.list /etc/apt/sources.list.d/*
jbo5112

99

ポインタをありがとう。少し整理して、PPAをリストするスクリプトを入手しましたが、他のリポジトリはありません。

#! /bin/sh 
# listppa Script to get all the PPA installed on a system ready to share for reininstall
for APT in `find /etc/apt/ -name \*.list`; do
    grep -o "^deb http://ppa.launchpad.net/[a-z0-9\-]\+/[a-z0-9\-]\+" $APT | while read ENTRY ; do
        USER=`echo $ENTRY | cut -d/ -f4`
        PPA=`echo $ENTRY | cut -d/ -f5`
        echo sudo apt-add-repository ppa:$USER/$PPA
    done
done

listppa > installppa.shスクリプトを取得して呼び出すと、新しいマシンにコピーしてすべてのPPAを再インストールできます。

次のステップ:他のリポジトリに対してもそれを行います:

#! /bin/sh
# Script to get all the PPA installed on a system
for APT in `find /etc/apt/ -name \*.list`; do
    grep -Po "(?<=^deb\s).*?(?=#|$)" $APT | while read ENTRY ; do
        HOST=`echo $ENTRY | cut -d/ -f3`
        USER=`echo $ENTRY | cut -d/ -f4`
        PPA=`echo $ENTRY | cut -d/ -f5`
        #echo sudo apt-add-repository ppa:$USER/$PPA
        if [ "ppa.launchpad.net" = "$HOST" ]; then
            echo sudo apt-add-repository ppa:$USER/$PPA
        else
            echo sudo apt-add-repository \'${ENTRY}\'
        fi
    done
done

これでうまくいくはずです。正しい正規表現を見つけるには、スーパーユーザー質問が必要でした。


1
あなたのgrep -o例では、\` in [a-z0-9\-]は期待したことをしていません。実際にはリテラルのバックスラッシュと一致します。リストの最初または最後にあるときにエスケープする必要はありません。実際、あなたはそれをエスケープすることはできません!..この場合、(おそらく)エントリでバックスラッシュに遭遇しないので、(おそらく)問題を引き起こしません。-[]\`deb
-Peter.O

2
PPA名にはドットが含まれている可能性があることに注意してください。したがって、正規表現をhttp://ppa.launchpad.net/[a-z0-9-]\+/[a-z0-9.-]\+
-kynan

いいえ、英数字+句読点文字と一致するため、正規表現をの[[:graph:]] 代わりに変更します[a-z...blah.anything]-これがPPA名の構成要素です。
MichalH

フォームでdeb指定されていない場合は、各リポジトリ行の先頭に単語を含める必要がありますppa:$USER/$PPA
ヤルノ

@stwissel findとgrepを使用した特定の理由は何ですか?シェルが解析し、grepに渡すグロブを簡単に実行できます。grep -Po "(?<=^deb\s).*?(?=#|$)" /etc/apt/{sources.list,sources.list.d/*.list} | while read ENTRY ; do echo $ENTRY; done書かれているように、これは各エントリのファイル名を示しているため、結果の先頭から最初のコロンまでトリムを行う必要がありますが、それはカットでは難しくありません。uniq同じソースに複数のエントリが必要ない場合は、パススルーすることもできます(たとえば、Google Chrome Stable / Beta / Devがインストールされている場合)。
dragon788

23

すべての有効なバイナリソフトウェアソースを指定されたファイルと一緒に取得する最も簡単だが最も効果的な方法がまだ投稿されていないことに驚いています。

grep -r --include '*.list' '^deb ' /etc/apt/sources.list /etc/apt/sources.list.d/

処理されたすべてのファイルから、これはで始まるすべての行を印刷しdebます。これにより、コメント行とdeb-srcソースコードリポジトリを有効にする行が除外されます。

実際に*.listは、によって解析されるすべてのファイルのみを検索しますaptが、たとえば*.list.save、バックアップに使用されるファイルや不正な名前のファイルは検索されません。


短いが、おそらくすべての場合の99.9%だけで、大量のファイルを検索する可能性のある正しい出力(すべての/etc/apt/sources.list*ファイルとディレクトリ、/etc/apt/sources.listおよび/etc/apt/sources.list.d/*を含む)が必要な場合は、これを使って:

grep -r --include '*.list' '^deb ' /etc/apt/sources.list*

あるべきではないファイルがない限り、出力は同じになります。


私のマシンの出力例は次のとおりです。

/etc/apt/sources.list:deb http://ftp-stud.hs-esslingen.de/ubuntu/ wily main restricted
/etc/apt/sources.list:deb http://ftp-stud.hs-esslingen.de/ubuntu/ wily-updates main restricted
/etc/apt/sources.list:deb http://ftp-stud.hs-esslingen.de/ubuntu/ wily universe
/etc/apt/sources.list:deb http://ftp-stud.hs-esslingen.de/ubuntu/ wily-updates universe
/etc/apt/sources.list:deb http://ftp-stud.hs-esslingen.de/ubuntu/ wily multiverse
/etc/apt/sources.list:deb http://ftp-stud.hs-esslingen.de/ubuntu/ wily-updates multiverse
/etc/apt/sources.list:deb http://ftp-stud.hs-esslingen.de/ubuntu/ wily-backports main restricted universe multiverse
/etc/apt/sources.list:deb http://ftp-stud.hs-esslingen.de/ubuntu/ wily-security main restricted
/etc/apt/sources.list:deb http://ftp-stud.hs-esslingen.de/ubuntu/ wily-security universe
/etc/apt/sources.list:deb http://ftp-stud.hs-esslingen.de/ubuntu/ wily-security multiverse
/etc/apt/sources.list:deb http://archive.canonical.com/ubuntu wily partner
/etc/apt/sources.list.d/maarten-fonville-ubuntu-ppa-wily.list:deb http://ppa.launchpad.net/maarten-fonville/ppa/ubuntu wily main
/etc/apt/sources.list.d/webupd8team-ubuntu-tor-browser-wily.list:deb http://ppa.launchpad.net/webupd8team/tor-browser/ubuntu wily main
/etc/apt/sources.list.d/fossfreedom-ubuntu-indicator-sysmonitor-wily.list:deb http://ppa.launchpad.net/fossfreedom/indicator-sysmonitor/ubuntu wily main
/etc/apt/sources.list.d/getdeb.list:deb http://archive.getdeb.net/ubuntu wily-getdeb apps

よりきれいな出力が必要な場合は、パイプ処理してみましょうsed

grep -r --include '*.list' '^deb ' /etc/apt/ | sed -re 's/^\/etc\/apt\/sources\.list((\.d\/)?|(:)?)//' -e 's/(.*\.list):/\[\1\] /' -e 's/deb http:\/\/ppa.launchpad.net\/(.*?)\/ubuntu .*/ppa:\1/'

そして、これが表示されます。

deb http://ftp-stud.hs-esslingen.de/ubuntu/ wily main restricted
deb http://ftp-stud.hs-esslingen.de/ubuntu/ wily-updates main restricted
deb http://ftp-stud.hs-esslingen.de/ubuntu/ wily universe
deb http://ftp-stud.hs-esslingen.de/ubuntu/ wily-updates universe
deb http://ftp-stud.hs-esslingen.de/ubuntu/ wily multiverse
deb http://ftp-stud.hs-esslingen.de/ubuntu/ wily-updates multiverse
deb http://ftp-stud.hs-esslingen.de/ubuntu/ wily-backports main restricted universe multiverse
deb http://ftp-stud.hs-esslingen.de/ubuntu/ wily-security main restricted
deb http://ftp-stud.hs-esslingen.de/ubuntu/ wily-security universe
deb http://ftp-stud.hs-esslingen.de/ubuntu/ wily-security multiverse
deb http://archive.canonical.com/ubuntu wily partner
[maarten-fonville-ubuntu-ppa-wily.list] ppa:maarten-fonville/ppa
[webupd8team-ubuntu-tor-browser-wily.list] ppa:webupd8team/tor-browser
[fossfreedom-ubuntu-indicator-sysmonitor-wily.list] ppa:fossfreedom/indicator-sysmonitor
[getdeb.list] deb http://archive.getdeb.net/ubuntu wily-getdeb apps

1
受け入れられた答えを見ると、OPはPPAをppa:<user>/<project>フォームに表示することを望んでいたようです。
ムル

この質問では、実際にすべてのリポジトリをインストール/有効にするスクリプトを生成するように求められます。しかし、質問のタイトルはそれらをリストするだけです。また、2番目に高い得点の回答はそれらもリストしますが、リストが多すぎます。
バイトコマンダー

いいですね、でも私はすでに賛成していました。:D
ムル

grepの `-h`オプションを使用して、ファイル名を省略できます。
ジャーノ

11

次のコマンドを実行します。

apt-cache policy | grep http | awk '{print $2 $3}' | sort -u

ソース


バイオニックでは、これは ' mirrors.nic.funet.fi/ubuntubionic-security/main ' などの行を出力します
jarno

1
注:apt-cache policyを実行すると、リポジトリのみが表示されますapt-get update。でリポジトリを追加した場合add-apt-repositoryapt-cache policy実行するまで表示されませんapt-get update
wisbucky

@wisbuckyあたり: sudo apt update > /dev/null 2>&1 && sudo apt-cache policy | grep http | awk '{print $2 $3}' | sort -uうまくいきます。 gist.github.com/bmatthewshea/229da822f1f02157bff192a2e4a8ffd1
bshea

4

このコマンドを使用して、現在無効になっているものを含む、構成されたすべてのソフトウェアソース(リポジトリ)を一覧表示します。

cat /etc/apt/sources.list; for X in /etc/apt/sources.list.d/*; do echo; echo; echo "** $X:"; echo; cat $X; done

これは主にトラブルシューティングに使用します。これは確かにスクリプトに組み込むことができますが、現在有効なソフトウェアソースのみを取得/etc/apt/sources.list.d/*する/etc/apt/sources.list.d/*.listように絞り込みたい場合があります。


フィードバックのThx。catはファイルをそのままリストするので、手動で編集してスクリプトを生成する必要があります(質問で述べたとおり)。リポジトリの課題:/ etc / aptからファイルをコピーするだけでは、リポジトリキーを取得できません。私は私たちのためにそれらをフェッチするスクリプトをしたい理由はここにある
stwissel

2

だから、いくつかの掘りを行う、持っていAptPkg::Classます。

使用perlすると、このような簡単なことができます。

perl -MAptPkg::Cache -MData::Dumper -E'say Dumper [AptPkg::Cache->new->files()]' | less

これにより、すべてのAptPkg::Class::PkgFileパッケージのリストが取得されます。おそらくそれでapt-add-repositoryコマンドを生成できます。


2

https://repogen.simplylinux.ch/は、UbuntuのバージョンのすべてのPPAのリストを提供します。以下は、ソースファイルなしでサムスンプリンターppaなしで生成されたリストです。

#------------------------------------------------------------------------------#
#                            OFFICIAL UBUNTU REPOS                             #
#------------------------------------------------------------------------------#


###### Ubuntu Main Repos
deb http://us.archive.ubuntu.com/ubuntu/ yakkety main restricted universe multiverse 

###### Ubuntu Update Repos
deb http://us.archive.ubuntu.com/ubuntu/ yakkety-security main restricted universe multiverse 
deb http://us.archive.ubuntu.com/ubuntu/ yakkety-updates main restricted universe multiverse 
deb http://us.archive.ubuntu.com/ubuntu/ yakkety-proposed main restricted universe multiverse 
deb http://us.archive.ubuntu.com/ubuntu/ yakkety-backports main restricted universe multiverse 

###### Ubuntu Partner Repo
deb http://archive.canonical.com/ubuntu yakkety partner

#------------------------------------------------------------------------------#
#                           UNOFFICIAL UBUNTU REPOS                            #
#------------------------------------------------------------------------------#


###### 3rd Party Binary Repos

#### Flacon PPA - http://kde-apps.org/content/show.php?content=113388
## Run this command: sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys F2A61FE5
deb http://ppa.launchpad.net/flacon/ppa/ubuntu yakkety main

#### Gimp PPA - https://launchpad.net/~otto-kesselgulasch/+archive/gimp
## Run this command: sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 614C4B38
deb http://ppa.launchpad.net/otto-kesselgulasch/gimp/ubuntu yakkety main

#### Google Chrome Browser - http://www.google.com/linuxrepositories/
## Run this command: wget -q https://dl.google.com/linux/linux_signing_key.pub -O- | sudo apt-key add -
deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main

#### Google Earth - http://www.google.com/linuxrepositories/
## Run this command: wget -q https://dl.google.com/linux/linux_signing_key.pub -O- | sudo apt-key add -
deb [arch=amd64] http://dl.google.com/linux/earth/deb/ stable main

#### Highly Explosive PPA - https://launchpad.net/~dhor/+archive/myway
## Run this command: sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 93330B78
deb http://ppa.launchpad.net/dhor/myway/ubuntu yakkety main

#### JDownloader PPA - https://launchpad.net/~jd-team
## Run this command: sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 6A68F637
deb http://ppa.launchpad.net/jd-team/jdownloader/ubuntu yakkety main

#### Lazarus - http://www.lazarus.freepascal.org/
## Run this command:  gpg --keyserver hkp://pgp.mit.edu:11371 --recv-keys 6A11800F  && gpg --export --armor 0F7992B0  | sudo apt-key add -
deb http://www.hu.freepascal.org/lazarus/ lazarus-stable universe

#### LibreOffice PPA - http://www.documentfoundation.org/download/
## Run this command: sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 1378B444
deb http://ppa.launchpad.net/libreoffice/ppa/ubuntu yakkety main

#### MEGA Sync Client - https://mega.co.nz/
deb http://mega.nz/linux/MEGAsync/xUbuntu_16.10/ ./

#### MKVToolnix - http://www.bunkus.org/videotools/mkvtoolnix/
## Run this command: wget -q http://www.bunkus.org/gpg-pub-moritzbunkus.txt -O- | sudo apt-key add -
deb http://www.bunkus.org/ubuntu/yakkety/ ./

#### Mozilla Daily Build Team PPA - http://edge.launchpad.net/~ubuntu-mozilla-daily/+archive/ppa
## Run this command: sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys  247510BE
deb http://ppa.launchpad.net/ubuntu-mozilla-daily/ppa/ubuntu yakkety main

#### muCommander - http://www.mucommander.com/
## Run this command: sudo wget -O - http://apt.mucommander.com/apt.key | sudo apt-key add - 
deb http://apt.mucommander.com stable main non-free contrib  

#### Opera - http://www.opera.com/
## Run this command: sudo wget -O - http://deb.opera.com/archive.key | sudo apt-key add -
deb http://deb.opera.com/opera/ stable non-free

#### Oracle Java (JDK) Installer PPA - http://www.webupd8.org/2012/01/install-oracle-java-jdk-7-in-ubuntu-via.html
## Run this command: sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys EEA14886
deb http://ppa.launchpad.net/webupd8team/java/ubuntu yakkety main

#### PlayDeb - http://www.playdeb.net/
## Run this command: wget -O- http://archive.getdeb.net/getdeb-archive.key | sudo apt-key add -
deb http://archive.getdeb.net/ubuntu yakkety-getdeb games

#### SABnzbd PPA - http://sabnzbd.org/
## Run this command:  sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 4BB9F05F
deb http://ppa.launchpad.net/jcfp/ppa/ubuntu yakkety main

#### SimpleScreenRecorder PPA - http://www.maartenbaert.be/simplescreenrecorder/
## Run this command: sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 283EC8CD
deb http://ppa.launchpad.net/maarten-baert/simplescreenrecorder/ubuntu yakkety main

#### Steam for Linux - http://store.steampowered.com/about/
## Run this command: sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys F24AEA9FB05498B7
deb [arch=i386] http://repo.steampowered.com/steam/ precise steam

#### Syncthing - https://syncthing.net/
## Run this command: curl -s https://syncthing.net/release-key.txt | sudo apt-key add -
deb http://apt.syncthing.net/ syncthing release

#### Tor: anonymity online - https://www.torproject.org
## Run this command: sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 886DDD89
deb http://deb.torproject.org/torproject.org yakkety main

#### Unsettings PPA - http://www.florian-diesch.de/software/unsettings/
## Run this command: sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 0FEB6DD9
deb http://ppa.launchpad.net/diesch/testing/ubuntu yakkety main

#### VirtualBox - http://www.virtualbox.org
## Run this command: wget -q http://download.virtualbox.org/virtualbox/debian/oracle_vbox_2016.asc -O- | sudo apt-key add -
deb http://download.virtualbox.org/virtualbox/debian yakkety contrib

#### Webmin - http://www.webmin.com
## Run this command: wget http://www.webmin.com/jcameron-key.asc -O- | sudo apt-key add -
deb http://download.webmin.com/download/repository sarge contrib

#### WebUpd8 PPA - http://www.webupd8.org/
## Run this command: sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 4C9D234C
deb http://ppa.launchpad.net/nilarimogard/webupd8/ubuntu yakkety main

#### Xorg Edgers PPA - https://launchpad.net/~xorg-edgers
## Run this command: sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 8844C542  
deb http://ppa.launchpad.net/xorg-edgers/ppa/ubuntu yakkety main
here is a generated list without source files and no samsung printer ppa
#### Yuuguu - http://yuuguu.com
deb http://update.yuuguu.com/repositories/apt hardy multiverse

2

ここに私のスクリプト「list-apt-repositories」があります。これは、「」/etc/sources.list"と「/etc/sources.list.d/*.list」のすべてのリポジトリを一覧表示します--ppa-only。PPAのみを表示するように追加できます。ppa:USER/REPOフォーマットにます。

関連する部分は5行ですlist_sourceslist_ppa機能、残りは便利なシェルスクリプトでそれをラップするだけで定型です。

list-apt-repositories

#!/bin/sh

usage () {
  cat >&2 <<USAGE
$0 [--ppa-only]

Options:
  --ppa-only            only list PPAs
USAGE
  exit $1
}

list_sources () {
  grep -E '^deb\s' /etc/apt/sources.list /etc/apt/sources.list.d/*.list |\
    cut -f2- -d: |\
    cut -f2 -d' ' |\
    sed -re 's#http://ppa\.launchpad\.net/([^/]+)/([^/]+)(.*?)$#ppa:\1/\2#g'
}

list_ppa () {
  list_sources | grep '^ppa:'
}

generate=list_sources

while test -n "$1"
do
  case "$1" in
    -h|--help) usage 1;;
    --ppa-only) generate=list_ppa;;
    *)
      printf -- "Unknown argument '$1'\n" >&2
      usage 2
    ;;
  esac
  shift
done

$generate

また、インストールスクリプトを作成するには、別のスクリプト「make-apt-repository-install-script」にパイプします。生成されたスクリプトは、非対話型の使用のために-y/ --yes引数をサポートします(を参照add-apt-repository(1))。

make-apt-repository-install-script

#!/bin/sh

if test -n "$1"
then
  cat >&2 <<USAGE
Usage: $0 < PATH_TO_LIST_OF_REPOS
       list-apt-repositories [--ppa-only] | $0

No options recognized.

Reads list of repositories from stdin and generates a script to install them
using \`add-apt-repository(1)\`. The script is printed to stdout.

The generated script supports an optional
\`-y\` or \`--yes\` argument which causes the \`add-apt-repository\` commands
to be run with the \`--yes\` flag.
USAGE
  exit 1
fi

cat <<INSTALL_SCRIPT
#!/bin/sh
y=
case "\$1" in
  -y|--yes) y=\$1;;
  '') y=;;
  *)
    printf '%s\n' "Unknown option '\$1'" "Usage: \$0 [{-y|--yes}]" >&2
    exit 1
  ;;
esac
INSTALL_SCRIPT

xargs -d'\n' printf "add-apt-repository \$y '%s'\n"

繰り返しますが、重要な部分はxargs最後の行のコマンドで、残りは定型文です。


1

ppa.launchpad.net行をppa:$ USER / $ PPAとして追加します。* .listファイルからの完全な行で他のリポジトリを追加します。二重線はありません。

#!/ bin / bash
#My〜/ bin / mk_repositories_restore_script
mkdir -p〜/ bin 
x =〜/ bin / restore_repositories
echo \#\!/ bin / bash> $ x
chmod u + x $ x
(
 APT for $(find / etc / apt / -name \ *。list)
    do sed -n -e '/ ^ deb / {
     /ppa\.launchpad/s/\(.*\/\/[^\/]*.\)\([^ \ t] * \)\(。* $ \)/ sudo apt-add-repository ppa :\ 2 / p;
     /ppa\.launchpad/!s / \(deb [\ t] * \)\(。* $ \)/ sudo apt-add-repository \ 2 / p;
    } '$ APT
 やった
)| 並べ替え| ユニック| tee -a〜/ bin / restore_repositories

0

ありがとうボブドッズ!
誰かが興味があるなら、私はあなたのコードを少し更新しました(気にしないでください)。
このスクリプトはユーザーが追加したPPA(/etc/apt/sources.list.d)のみを入力します。

    #!/bin/bash
    # My ~/bin/mk_repositories_restore_script
    mkdir -p ~/bin
    x=~/bin/restore_repositories
    echo \#\!/bin/bash > $x
    chmod u+x $x
    (
    for APT in $( find /etc/apt/ -name \*.list )
    do sed -n -e '/^deb /{
          /ppa\.launchpad/s/\(.*\/\/[^\/]*.\)\([^ \t]*\)\(.*\/ubuntu.*$\)/ppa:\2/p;                                                                                                                                                                                       
        }' $APT
    done
    ) | sort | uniq | tee -a ~/bin/restore_repositories

0
sed -r -e '/^deb /!d' -e 's/^([^#]*).*/\1/' -e 's/deb http:\/\/ppa.launchpad.net\/(.+)\/ubuntu .*/ppa:\1/' -e "s/.*/sudo add-apt-repository '&'/" /etc/apt/sources.list /etc/apt/sources.list.d/*

ただし、可能なソースリポジトリ(deb-src)を有効にするコマンドは生成されません。


弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.