1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

zypperでisoファイルからパッケージを導入する

Posted at

#早速本題
適宜sudoしてください。
##既存のレポジトリのバックアップ

mkdir /etc/zypp/repos.d/old
mv /etc/zypp/repos.d/*.repo /etc/zypp/repos.d/old

##isoレポ追加
前提:/path/to/iso/Tumbleweed_x86_64.isoで導入します。

zypper ar -c -t yast2 "iso:/?iso=/path/to/iso/Tumbleweed_x86_64.iso" "hogehoge"

hogehogeは任意ですが、このレポがisoだということがわかる名前に変えましょう。この名前は他のレポの名前とかぶるとエラーを履くので"今日の日付_iso"とつけるのがおすすめです。

##インストール
通常と同様
うまく行かないときはキャッシュが原因かもしれません。

##用済みになったら

mv /etc/zypp/repos.d/old/hogehoge.repo
mv /etc/zypp/repos.d/old/*.repo /etc/zypp/repos.d/ 

#参考
https://www.suse.com/communities/blog/create-iso-your-opensuse-dvd-and-add-it-installation-source-command-line/

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?