Last active
October 4, 2017 15:23
-
-
Save kitsuyui/04bf0cd6aa36c4e6577646ee4584f22a to your computer and use it in GitHub Desktop.
Debian 系であえて古い APT パッケージをインストールする方法 ref: http://qiita.com/kitsuyui/items/d8940e093fa41b58fe71
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ apt-cache madison openssl | |
openssl | 1.0.2g-1ubuntu4.8 | http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 Packages | |
openssl | 1.0.2g-1ubuntu4.6 | http://archive.ubuntu.com/ubuntu xenial-security/main amd64 Packages | |
openssl | 1.0.2g-1ubuntu4 | http://archive.ubuntu.com/ubuntu xenial/main amd64 Packages | |
openssl | 1.0.2g-1ubuntu4 | http://archive.ubuntu.com/ubuntu xenial/main Sources | |
openssl | 1.0.2g-1ubuntu4.8 | http://archive.ubuntu.com/ubuntu xenial-updates/main Sources | |
openssl | 1.0.2g-1ubuntu4.6 | http://archive.ubuntu.com/ubuntu xenial-security/main Sources |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ apt-cache show openssl=1.0.2g-1ubuntu4.6 | |
Package: openssl | |
Architecture: amd64 | |
Version: 1.0.2g-1ubuntu4.6 | |
Priority: standard | |
Section: utils | |
Origin: Ubuntu | |
Maintainer: Ubuntu Developers <[email protected]> | |
Original-Maintainer: Debian OpenSSL Team <[email protected]> | |
Bugs: https://bugs.launchpad.net/ubuntu/+filebug | |
Installed-Size: 934 | |
Depends: libc6 (>= 2.15), libssl1.0.0 (>= 1.0.2g) | |
Suggests: ca-certificates | |
Filename: pool/main/o/openssl/openssl_1.0.2g-1ubuntu4.6_amd64.deb | |
Size: 491668 | |
MD5sum: 5a10ca1cfbd6ebad80264e2c2106c752 | |
SHA1: 9ffe8c4291c09fd996a3afafdf85df8f5d9520ed | |
SHA256: 18f4d36f3e624be6ecfab385cd2e2fe4e5d7abc8030505dcacfa3ab243253cd1 | |
Description: Secure Sockets Layer toolkit - cryptographic utility | |
Description-md5: 9b6de2bb6e1d9016aeb0f00bcf6617bd | |
Task: standard, ubuntu-core, ubuntu-core, mythbuntu-frontend, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntu-touch-core, ubuntu-touch, ubuntu-sdk-libs-tools, ubuntu-sdk | |
Supported: 5y | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ sudo apt-get install openssl=1.0.2g-1ubuntu4.6 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ sudo apt-mark hold openssl | |
$ apt-get upgrade | |
Reading package lists... Done | |
Building dependency tree | |
Reading state information... Done | |
Calculating upgrade... Done | |
The following packages have been kept back: | |
openssl | |
. | |
. | |
. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ sudo apt-mark unhold openssl | |
$ sudo apt-get upgrade | |
(もとどおり) | |
. | |
. | |
. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment