質問編集履歴
3
試したことの追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -29,4 +29,9 @@
|
|
29
29
|
$ curl -V
|
30
30
|
curl: error while loading shared libraries: libssl.so.1.0.0: cannot open shared object file: No such file or directory
|
31
31
|
```
|
32
|
-
シンボリックリンクを作ったのですが、上手くリンクされ
|
32
|
+
シンボリックリンクを作ったのですが、上手くリンクされていないのかと思い確認すると、
|
33
|
+
```
|
34
|
+
$ ls -l libssl.so.1.0.0
|
35
|
+
libssl.so.1.0.0 -> /lib64/libssl.so.10
|
36
|
+
```
|
37
|
+
リンク自体はされているようでした。
|
2
試したことの追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -19,4 +19,14 @@
|
|
19
19
|
$ make
|
20
20
|
$ make install
|
21
21
|
curl -V
|
22
|
-
```
|
22
|
+
```
|
23
|
+
|
24
|
+
###試したこと
|
25
|
+
```
|
26
|
+
$ ls /lib64 | grep -E "libssl.so.([0-9].)$"
|
27
|
+
libssl.so.10
|
28
|
+
$ ln -s /lib64/libssl.so.10 libssl.so.1.0.0
|
29
|
+
$ curl -V
|
30
|
+
curl: error while loading shared libraries: libssl.so.1.0.0: cannot open shared object file: No such file or directory
|
31
|
+
```
|
32
|
+
シンボリックリンクを作ったのですが、上手くリンクされませんでした
|
1
誤表記の修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -5,12 +5,9 @@
|
|
5
5
|
### 発生している問題・エラーメッセージ
|
6
6
|
|
7
7
|
```
|
8
|
-
/usr/bin/mkdir -p '/usr/local/lib'
|
9
|
-
/bin/sh ../libtool --mode=install /usr/bin/install -c libcurl.la '/usr/local/lib'
|
10
|
-
|
8
|
+
curl: error while loading shared libraries: libssl.so.1.0.0: cannot open shared object file: No such file or directory
|
11
|
-
/usr/bin/install: cannot create regular file '/usr/local/lib/libcurl.so.4.5.0': Permission denied
|
12
9
|
```
|
13
|
-
|
10
|
+
libssl.so.1.0.0のファイルが存在しないようなのですが、原因が分かりません。
|
14
11
|
どなたかご助言いただけると幸いです。
|
15
12
|
### 該当のソースコード
|
16
13
|
|
@@ -18,7 +15,8 @@
|
|
18
15
|
$ wget https://curl.haxx.se/download/curl-7.65.3.tar.gz
|
19
16
|
$ tar zxvf curl-7.65.3.tar.gz
|
20
17
|
$ cd curl-7.65.3
|
21
|
-
$ ./configure --with-ssl=$HOME/opt/ssl --
|
18
|
+
$ ./configure --with-ssl=$HOME/opt/ssl --prefix=$HOME/opt/curl
|
22
19
|
$ make
|
23
20
|
$ make install
|
21
|
+
curl -V
|
24
22
|
```
|