13
8

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.

Herokuのサーバーにインストールされているパッケージを調べる

Posted at

herokuでimagemagickを使えるらしいのですが、どのバージョンのimagemagickかわからなかったので調べてみました。

以下の環境で実行しました。
heroku-toolbelt/3.0.1 (universal-darwin11.0) ruby/1.8.7

  1. OS名とバージョンの確認
heroku run 'ls /etc/ | egrep "(version|release)$"'
heroku run "cat /etc/lsb-release"

Ubuntu 10.04 LTSなのがわかります。
2. インストール済みのパッケージを確認

heroku run "dpkg -l"

インストール済みのパッケージ一覧が表示されます。
パッケージ名がわかっている場合は、apt-cacheでバージョンなどを確認します。

heroku run "apt-cache show imagemagick"

よって、7:6.5.7.8-1ubuntu1のimagemagickがインストールされていることがわかります。

13
8
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
13
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?