-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathComandos_de_la_terminal%2Fldd.mw
73 lines (61 loc) · 2.54 KB
/
Comandos_de_la_terminal%2Fldd.mw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
__NOTOC__
* [[:#ldd | ldd]]
== ldd ==
<syntaxhighlight lang="bash">
[root@Llawyr ~]# ldd --help
Usage: ldd [OPTION]... FILE...
--help print this help and exit
--version print version information and exit
-d, --data-relocs process data relocations
-r, --function-relocs process data and function relocations
-u, --unused print unused direct dependencies
-v, --verbose print all information
For bug reporting instructions, please see:
<http://www.gnu.org/software/libc/bugs.html>.
[root@Llawyr ~]# ldd --version
ldd (GNU libc) 2.18
Copyright (C) 2013 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Written by Roland McGrath and Ulrich Drepper.
[root@Llawyr ~]# ldd /bin/bash
linux-vdso.so.1 (0x00007fff1d8ed000)
libtinfo.so.5 => /lib64/libtinfo.so.5 (0x00007f66db87f000)
libdl.so.2 => /lib64/libdl.so.2 (0x00007f66db67b000)
libc.so.6 => /lib64/libc.so.6 (0x00007f66db2c6000)
/lib64/ld-linux-x86-64.so.2 (0x00007f66dbaa9000)
[root@Llawyr ~]# ldd -u /bin/bash
Unused direct dependencies:
/lib64/libdl.so.2
[root@Llawyr ~]# ldd -v /bin/bash
linux-vdso.so.1 (0x00007fffdeed3000)
libtinfo.so.5 => /lib64/libtinfo.so.5 (0x00007fa040b2e000)
libdl.so.2 => /lib64/libdl.so.2 (0x00007fa04092a000)
libc.so.6 => /lib64/libc.so.6 (0x00007fa040575000)
/lib64/ld-linux-x86-64.so.2 (0x00007fa040d58000)
Version information:
/bin/bash:
libdl.so.2 (GLIBC_2.2.5) => /lib64/libdl.so.2
libc.so.6 (GLIBC_2.11) => /lib64/libc.so.6
libc.so.6 (GLIBC_2.8) => /lib64/libc.so.6
libc.so.6 (GLIBC_2.15) => /lib64/libc.so.6
libc.so.6 (GLIBC_2.4) => /lib64/libc.so.6
libc.so.6 (GLIBC_2.3.4) => /lib64/libc.so.6
libc.so.6 (GLIBC_2.3) => /lib64/libc.so.6
libc.so.6 (GLIBC_2.2.5) => /lib64/libc.so.6
/lib64/libtinfo.so.5:
libc.so.6 (GLIBC_2.3) => /lib64/libc.so.6
libc.so.6 (GLIBC_2.14) => /lib64/libc.so.6
libc.so.6 (GLIBC_2.15) => /lib64/libc.so.6
libc.so.6 (GLIBC_2.4) => /lib64/libc.so.6
libc.so.6 (GLIBC_2.3.4) => /lib64/libc.so.6
libc.so.6 (GLIBC_2.2.5) => /lib64/libc.so.6
/lib64/libdl.so.2:
ld-linux-x86-64.so.2 (GLIBC_PRIVATE) => /lib64/ld-linux-x86-64.so.2
libc.so.6 (GLIBC_PRIVATE) => /lib64/libc.so.6
libc.so.6 (GLIBC_2.2.5) => /lib64/libc.so.6
/lib64/libc.so.6:
ld-linux-x86-64.so.2 (GLIBC_2.3) => /lib64/ld-linux-x86-64.so.2
ld-linux-x86-64.so.2 (GLIBC_PRIVATE) => /lib64/ld-linux-x86-64.so.2
</syntaxhighlight>
[[Category:Comandos de la terminal]]