I am doing some end to end testing using SIPP on RHEL 4.2. Both my client and server machiens are running RHEL 4.2.
When I try to issue the command :
sipp -t tn -sn uac <server_vip> -i <client_ip> -m 10
on the client and :
sipp -t tn -sn uas -i 0.0.0.0 -m 10
on the server, all works well ,ie, TCP SIP works fine on port 5060. However, as soon as I remove the -t tn flag and switch to UDP, the server core dumps and produces something like this :
Warning: open file limit > FD_SETSIZE; limiting max. # of open files to FD_SETSIZE = 1024
009fa000-00a0d000 r-xp 00000000 08:02 54074376 /lib/libz.so.1.2.3
00a0d000-00a0e000 rw-p 00012000 08:02 54074376 /lib/libz.so.1.2.3
00b86000-00bb0000 r-xp 00000000 08:02 51782250 /usr/lib/libpcap.so.0.9.8
00bb0000-00bb1000 rw-p 00029000 08:02 51782250 /usr/lib/libpcap.so.0.9.8
00bb1000-00bb2000 rw-p 00bb1000 00:00 0
00dfb000-00dfd000 r-xp 00000000 08:02 51722595 /lib/libcom_err.so.2.1
00dfd000-00dfe000 rw-p 00001000 08:02 51722595 /lib/libcom_err.so.2.1
023c0000-023e1000 r-xp 00000000 08:02 51722603 /lib/libncurses.so.5.6
023e1000-023e2000 rw-p 00020000 08:02 51722603 /lib/libncurses.so.5.6
077e2000-0787f000 r-xp 00000000 08:02 51722596 /usr/lib/libkrb5.so.3.3
0787f000-07882000 rw-p 0009c000 08:02 51722596 /usr/lib/libkrb5.so.3.3
079ea000-07b21000 r-xp 00000000 08:02 51722598 /lib/libcrypto.so.0.9.8g
07b21000-07b35000 rw-p 00136000 08:02 51722598 /lib/libcrypto.so.0.9.8g
07b35000-07b38000 rw-p 07b35000 00:00 0
07b3a000-07b81000 r-xp 00000000 08:02 51722599 /lib/libssl.so.0.9.8g
07b81000-07b85000 rw-p 00046000 08:02 51722599 /lib/libssl.so.0.9.8g
07ccf000-07db6000 r-xp 00000000 08:02 60143853 /usr/lib/libstdc++.so.6.0.10
07db6000-07dba000 r--p 000e6000 08:02 60143853 /usr/lib/libstdc++.so.6.0.10
07dba000-07dbc000 rw-p 000ea000 08:02 60143853 /usr/lib/libstdc++.so.6.0.10
07dbc000-07dc1000 rw-p 07dbc000 00:00 0
07ddc000-07df2000 r-xp 00000000 08:02 54763893 /lib/libtinfo.so.5.6
07df2000-07df5000 rw-p 00015000 08:02 54763893 /lib/libtinfo.so.5.6
08048000-0809c000 r-xp 00000000 08:02 50347877 /usr/bin/sipp
0809c000-0809e000 rw-p 00053000 08:02 50347877 /usr/bin/sipp
0809e000-081f3000 rw-p 0809e000 00:00 0
086bf000-086fb000 rw-p 086bf000 00:00 0 [heap]
76cb4000-76cb5000 ---p 76cb4000 00:00 0
76cb5000-776b5000 rw-p 76cb5000 00:00 0
776b5000-776b6000 ---p 776b5000 00:00 0
776b6000-780bc000 rw-p 776b6000 00:00 0
7faba000-7facf000 rw-p 7ffeb000 00:00 0 [stack]
Aborted (core dumped)
I am running sipp-3.3. I am unsure what to make of this. By the way, my netstat shows that my server is listening to port 5060 for both tcp and udp traffic, so that rules out one problem!
Any suggestions?
Since we are dealing with an opened file descriptors limit, you might want to
ulimit -n 4096
before starting your sipp server/clients.
Related
I am trying to understand memory mapping in Linux, and wrote below program for the same.
#include <stdio.h>
#include <pthread.h>
#include <unistd.h>
#define MEM_SIZE 1*1024*1024*1024 // 1GB
#define PAGE_SIZE 4*1024
#define NO_OF_PAGES (MEM_SIZE)/(PAGE_SIZE)
// Global array of size 1 GB
int mem[MEM_SIZE/sizeof(int)] = {
0,1,2,
};
void *func(void *args)
{
while (1) {
for (int i=0; i<NO_OF_PAGES; i++) {
mem[(i*PAGE_SIZE)/sizeof(int)] = 1; // Update first 4-bytes of each page.
}
// All pages are updated.
fflush(stdout);
printf("."); // Each dot(.) represents update of all pages in global data.
}
return NULL;
}
int main() {
pthread_t t;
pthread_create(&t, NULL, func, NULL);
printf("A thread is continually updating all pages of global 1GB data. (pid : %d)\n", getpid());
pthread_join(t, NULL);
return 0;
}
It executes like this,
[ ] gcc test.c
[ ] ./a.out
A thread is continually updating all pages of global 1GB data. (pid : 4086)
.......................
Here, a thread is continually updating all pages of the global data used in this program.
Hence, this process should consume ~1GB (MEM_SIZE) in memory.
But the process memory looks like below, (I can not see 1GB of data memory being used here).
[ ]# cat /proc/4086/maps
55eac3b7c000-55eac3b7d000 r--p 00000000 08:01 1197055 /root/testing/a.out
55eac3b7d000-55eac3b7e000 r-xp 00001000 08:01 1197055 /root/testing/a.out
55eac3b7e000-55eac3b7f000 r--p 00002000 08:01 1197055 /root/testing/a.out
55eac3b7f000-55eac3b80000 r--p 00002000 08:01 1197055 /root/testing/a.out
55eac3b80000-55eb03b81000 rw-p 00003000 08:01 1197055 /root/testing/a.out
55eb047b5000-55eb047d6000 rw-p 00000000 00:00 0 [heap]
7f19c791b000-7f19c791c000 ---p 00000000 00:00 0
7f19c791c000-7f19c811e000 rw-p 00000000 00:00 0
7f19c811e000-7f19c8140000 r--p 00000000 08:01 1969450 /usr/lib/libc.so.6
7f19c8140000-7f19c829b000 r-xp 00022000 08:01 1969450 /usr/lib/libc.so.6
7f19c829b000-7f19c82f2000 r--p 0017d000 08:01 1969450 /usr/lib/libc.so.6
7f19c82f2000-7f19c82f6000 r--p 001d4000 08:01 1969450 /usr/lib/libc.so.6
7f19c82f6000-7f19c82f8000 rw-p 001d8000 08:01 1969450 /usr/lib/libc.so.6
7f19c82f8000-7f19c8307000 rw-p 00000000 00:00 0
7f19c8311000-7f19c8312000 r--p 00000000 08:01 1969441 /usr/lib/ld-linux-x86-64.so.2
7f19c8312000-7f19c8338000 r-xp 00001000 08:01 1969441 /usr/lib/ld-linux-x86-64.so.2
7f19c8338000-7f19c8342000 r--p 00027000 08:01 1969441 /usr/lib/ld-linux-x86-64.so.2
7f19c8342000-7f19c8344000 r--p 00031000 08:01 1969441 /usr/lib/ld-linux-x86-64.so.2
7f19c8344000-7f19c8346000 rw-p 00033000 08:01 1969441 /usr/lib/ld-linux-x86-64.so.2
7ffe8b517000-7ffe8b538000 rw-p 00000000 00:00 0 [stack]
7ffe8b599000-7ffe8b59d000 r--p 00000000 00:00 0 [vvar]
7ffe8b59d000-7ffe8b59f000 r-xp 00000000 00:00 0 [vdso]
ffffffffff600000-ffffffffff601000 --xp 00000000 00:00 0 [vsyscall]
[ ]#
Though, meminfo reflects the consumption of ~1GB.
Before starting this program:
[ ]# cat /proc/meminfo | grep 'MemFree\|SwapFree'
MemFree: 6740324 kB
SwapFree: 0 kB
and after starting the program:
[ ]# cat /proc/meminfo | grep 'MemFree\|SwapFree'
MemFree: 5699312 kB
SwapFree: 0 kB
In the map, we can see the following zones:
7f19c791b000-7f19c791c000 ---p 00000000 00:00 0 : Red zone to protect the stack of the thread = non RW 4KB long page (stack overflow detection)
7f19c791c000-7f19c811e000 rw-p 00000000 00:00 0 : Stack of the thread (it grows from high to low memory addresses)
55eac3b80000-55eb03b81000 rw-p 00003000 08:01 1197055 : the 1 GB memory space (mem[] table) + 4KB
You could add to your program the display of the mem[] table address:
printf("A thread is continually updating all pages of global 1GB data (mem[]#%p). (pid : %d)\n", mem, getpid());
The size command displays the size of the data segment which is ~1GB:
$ gcc test.c -l pthread
$ size a.out
text data bss dec hex filename
2571 1073742504 16 1073745091 40000cc3 a.out
Execution which shows mem[]'s address at: 0x562c48575020
$ ./a.out
A thread is continually updating all pages of global 1GB data (mem[]#0x562c48575020). (pid : 10029)
.............................................
Display of the map from another terminal where we can see the address of mem[] located in the zone 562c48575000-562c88576000:
$ cat /proc/`pidof a.out`/maps
562c48571000-562c48572000 r--p 00000000 08:05 9044419 /home/xxx/a.out
562c48572000-562c48573000 r-xp 00001000 08:05 9044419 /home/xxx/a.out
562c48573000-562c48574000 r--p 00002000 08:05 9044419 /home/xxx/a.out
562c48574000-562c48575000 r--p 00002000 08:05 9044419 /home/xxx/a.out
562c48575000-562c88576000 rw-p 00003000 08:05 9044419 /home/xxx/a.out
562c89668000-562c89689000 rw-p 00000000 00:00 0 [heap]
7f02946be000-7f02946bf000 ---p 00000000 00:00 0
7f02946bf000-7f0294ebf000 rw-p 00000000 00:00 0
7f0294ebf000-7f0294ee1000 r--p 00000000 08:05 6031519 /usr/lib/x86_64-linux-gnu/libc-2.31.so
7f0294ee1000-7f0295059000 r-xp 00022000 08:05 6031519 /usr/lib/x86_64-linux-gnu/libc-2.31.so
7f0295059000-7f02950a7000 r--p 0019a000 08:05 6031519 /usr/lib/x86_64-linux-gnu/libc-2.31.so
7f02950a7000-7f02950ab000 r--p 001e7000 08:05 6031519 /usr/lib/x86_64-linux-gnu/libc-2.31.so
7f02950ab000-7f02950ad000 rw-p 001eb000 08:05 6031519 /usr/lib/x86_64-linux-gnu/libc-2.31.so
7f02950ad000-7f02950b1000 rw-p 00000000 00:00 0
7f02950b7000-7f02950bd000 r--p 00000000 08:05 6031549 /usr/lib/x86_64-linux-gnu/libpthread-2.31.so
7f02950bd000-7f02950ce000 r-xp 00006000 08:05 6031549 /usr/lib/x86_64-linux-gnu/libpthread-2.31.so
7f02950ce000-7f02950d4000 r--p 00017000 08:05 6031549 /usr/lib/x86_64-linux-gnu/libpthread-2.31.so
7f02950d4000-7f02950d5000 r--p 0001c000 08:05 6031549 /usr/lib/x86_64-linux-gnu/libpthread-2.31.so
7f02950d5000-7f02950d6000 rw-p 0001d000 08:05 6031549 /usr/lib/x86_64-linux-gnu/libpthread-2.31.so
7f02950d6000-7f02950da000 rw-p 00000000 00:00 0
7f02950fc000-7f02950ff000 rw-p 00000000 00:00 0
7f02950ff000-7f0295100000 r--p 00000000 08:05 6031511 /usr/lib/x86_64-linux-gnu/ld-2.31.so
7f0295100000-7f0295123000 r-xp 00001000 08:05 6031511 /usr/lib/x86_64-linux-gnu/ld-2.31.so
7f0295123000-7f029512b000 r--p 00024000 08:05 6031511 /usr/lib/x86_64-linux-gnu/ld-2.31.so
7f029512c000-7f029512d000 r--p 0002c000 08:05 6031511 /usr/lib/x86_64-linux-gnu/ld-2.31.so
7f029512d000-7f029512e000 rw-p 0002d000 08:05 6031511 /usr/lib/x86_64-linux-gnu/ld-2.31.so
7f029512e000-7f029512f000 rw-p 00000000 00:00 0
7f0295131000-7f0295133000 rw-p 00000000 00:00 0
7ffcb340f000-7ffcb3430000 rw-p 00000000 00:00 0 [stack]
7ffcb35ff000-7ffcb3603000 r--p 00000000 00:00 0 [vvar]
7ffcb3603000-7ffcb3605000 r-xp 00000000 00:00 0 [vdso]
ffffffffff600000-ffffffffff601000 --xp 00000000 00:00 0 [vsyscall]
I Need to create process state replication between two processes.
I am using a simple bash script that count to infinity.
I am running it on server 1 and server 2 and making the process on server 2 always paused and i need to copy the state (memory) from the first process to the second one (the replica).
I am very familar with procfs and I know that the memory pages contains the state in memory page as follows:
root#ubuntu:/proc/41932# cat maps
7f7254d85000-7f7254f40000 r-xp 00000000 00:27 30 /lib/x86_64-linux-gnu/libc-2.19.so
7f7254f40000-7f725513f000 ---p 001bb000 00:27 30 /lib/x86_64-linux-gnu/libc-2.19.so
7f725513f000-7f7255143000 r--p 001ba000 00:27 30 /lib/x86_64-linux-gnu/libc-2.19.so
7f7255143000-7f7255145000 rw-p 001be000 00:27 30 /lib/x86_64-linux-gnu/libc-2.19.so
7f7255145000-7f725514a000 rw-p 00000000 00:00 0
7f725514a000-7f725516d000 r-xp 00000000 00:27 27 /lib/x86_64-linux-gnu/ld-2.19.so
7f7255364000-7f7255367000 rw-p 00000000 00:00 0
7f725536a000-7f725536c000 rw-p 00000000 00:00 0
7f725536c000-7f725536d000 r--p 00022000 00:27 27 /lib/x86_64-linux-gnu/ld-2.19.so
7f725536d000-7f725536e000 rw-p 00023000 00:27 27 /lib/x86_64-linux-gnu/ld-2.19.so
7f725536e000-7f725536f000 rw-p 00000000 00:00 0
7f725536f000-7f725538b000 r-xp 00000000 00:27 22 /bin/dash
7f725558a000-7f725558c000 r--p 0001b000 00:27 22 /bin/dash
7f725558c000-7f725558d000 rw-p 0001d000 00:27 22 /bin/dash
7f725558d000-7f725558f000 rw-p 00000000 00:00 0
7f7256799000-7f72567ba000 rw-p 00000000 00:00 0 [heap]
7fff06be2000-7fff06c03000 rw-p 00000000 00:00 0 [stack]
7fff06cb8000-7fff06cba000 r-xp 00000000 00:00 0 [vdso]
7fff06cba000-7fff06cbc000 r--p 00000000 00:00 0 [vvar]
ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0 [vsyscall]
root#ubuntu:/proc/41932# ls map_files/
7f7254d85000-7f7254f40000 7f725513f000-7f7255143000 7f725514a000-7f725516d000 7f725536d000-7f725536e000 7f725558a000-7f725558c000
7f7254f40000-7f725513f000 7f7255143000-7f7255145000 7f725536c000-7f725536d000 7f725536f000-7f725538b000 7f725558c000-7f725558d000
Which files i need to copy knowing that both start from the same script and how to copy this state?
an example for /proc/pid/maps
0022a000-00245000 r-xp 00000000 ca:01 11633540 /lib/ld-2.5.so
00245000-00246000 r--p 0001a000 ca:01 11633540 /lib/ld-2.5.so
00246000-00247000 rw-p 0001b000 ca:01 11633540 /lib/ld-2.5.so
00249000-003a3000 r-xp 00000000 ca:01 11633640 /lib/i686/nosegneg/libc-2.5.so
003a3000-003a5000 r--p 0015a000 ca:01 11633640 /lib/i686/nosegneg/libc-2.5.so
003a5000-003a6000 rw-p 0015c000 ca:01 11633640 /lib/i686/nosegneg/libc-2.5.so
003a6000-003a9000 rw-p 003a6000 00:00 0
00ada000-00adb000 r-xp 00ada000 00:00 0 [vdso]
08048000-08049000 r-xp 00000000 00:16 4735574 /home/yimingwa/test/Ctest/link_test/SectionMapping.elf
08049000-0804a000 rw-p 00000000 00:16 4735574 /home/yimingwa/test/Ctest/link_test/SectionMapping.elf
b7fcf000-b7fd0000 rw-p b7fcf000 00:00 0
b7fe1000-b7fe2000 rw-p b7fe1000 00:00 0
bfe82000-bfe98000 rw-p bffe8000 00:00 0 [stack]
the 4th column means “If the region was mapped from a file, this is the major and minor device number (in hex) where the file lives”
In the above, ca:01 I can find through /proc/devices /dev
Question is that what does "00:16" 00 means which major device?
We have an opencl application than runs with single nvidia C2075 (6GB Mem) in a machine with 12 GB RAM.
We had set up a new machine with 12GB RAM and an AMD W9100 GPU (16GB Mem) ( and made sure everything correct by running simple opencl apps).
Now the same opencl application crashes in the new machine. We have found that during execution some of the memory allocations fail. Increasing the system memory to 24GB made the application work.
(the application works in all single gpu machines where gpu memory > system memory. all machines are suse linux enterprise server 64bit)
How do you conclude this scenario?
I thought the GPU was mapping its whole 16GB onto the system RAM, there by causing memory starvation. But going through /proc/iomem and lspci -v, i could not see a 16GB window.
Does the GPU really map its memory to system memory?
Thanks for the help
I don't know what would happen, but I believe that a machine with more GPU memory than RAM is grossly unbalanced (and you could experiment thrashing...). RAM is quite cheap these days, so go buy some more!
You machine is probably unbalanced, since in numerical computations not everything is happenning inside the GPU. You need to do some data management (at least malloc and IO and overall computation control), and that requires the data to sometimes sit in the process memory space, which practically should mean in RAM.
How do you conclude this scenario? I thought the GPU was mapping its whole 16GB onto the system RAM, there by causing memory starvation.
Certainly not. The GPU memory is mmap(2)-ed, and this means in virtual memory, not physical one.
AFAIK, the GPU memory is seen (by software) as RAM, even if it is probably several times slower (for processor access) than ordinary RAM (because the PCI bus linking a graphics card to the motherboard is much slower than the RAM bus linking RAM to the processor)
I have a low-end NVIDIA GPU and I have 16 GbRAM and only 1 or 2 Gb of GPU memory, but:
% sudo cat /proc/$(pidof /usr/bin/X)/maps
7f18a942a000-7f18ad42a000 rw-s 00000000 00:05 76611587 /SYSV00000000 (deleted)
7f18ad42a000-7f18adae5000 rw-p 00000000 00:00 0
7f18ade6e000-7f18ae658000 rw-p 00000000 00:00 0
7f18af0f9000-7f18affce000 rw-p 00000000 00:00 0
7f18b02ce000-7f18b12ae000 rw-s 103ada000 00:06 14729 /dev/dri/card0
7f18b656e000-7f18b656f000 rw-p 00025000 08:02 2229454 /usr/lib/xorg/modules/libfb.so
7f18b65c3000-7f18b6643000 rw-s 00000000 00:05 76546049 /SYSV00000000 (deleted)
7f18b6663000-7f18b66c3000 rw-s 00000000 00:05 76742661 /SYSV00000000 (deleted)
7f18b66c3000-7f18b6743000 rw-s 00000000 00:05 76709892 /SYSV00000000 (deleted)
7f18b6743000-7f18b674f000 r-xp 00000000 08:02 534519 /usr/lib/x86_64-linux-gnu/libdrm_radeon.so.1.0.1
7f18b674f000-7f18b694e000 ---p 0000c000 08:02 534519 /usr/lib/x86_64-linux-gnu/libdrm_radeon.so.1.0.1
7f18b694e000-7f18b694f000 r--p 0000b000 08:02 534519 /usr/lib/x86_64-linux-gnu/libdrm_radeon.so.1.0.1
7f18b694f000-7f18b6950000 rw-p 0000c000 08:02 534519 /usr/lib/x86_64-linux-gnu/libdrm_radeon.so.1.0.1
7f18b6950000-7f18b6971000 r-xp 00000000 08:02 536346 /usr/lib/x86_64-linux-gnu/libdrm_intel.so.1.0.0
7f18b6971000-7f18b6b70000 ---p 00021000 08:02 536346 /usr/lib/x86_64-linux-gnu/libdrm_intel.so.1.0.0
7f18b6b70000-7f18b6b71000 r--p 00020000 08:02 536346 /usr/lib/x86_64-linux-gnu/libdrm_intel.so.1.0.0
7f18b6b71000-7f18b6b72000 rw-p 00021000 08:02 536346 /usr/lib/x86_64-linux-gnu/libdrm_intel.so.1.0.0
7f18b6b72000-7f18b6b88000 r-xp 00000000 08:02 2229443 /usr/lib/xorg/modules/libexa.so
7f18b6b88000-7f18b6d88000 ---p 00016000 08:02 2229443 /usr/lib/xorg/modules/libexa.so
7f18b6d88000-7f18b6d89000 r--p 00016000 08:02 2229443 /usr/lib/xorg/modules/libexa.so
7f18b6d89000-7f18b6d8a000 rw-p 00017000 08:02 2229443 /usr/lib/xorg/modules/libexa.so
7f18b6d8a000-7f18b6d90000 r-xp 00000000 08:02 534517 /usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0
7f18b6d90000-7f18b6f8f000 ---p 00006000 08:02 534517 /usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0
7f18b6f8f000-7f18b6f90000 r--p 00005000 08:02 534517 /usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0
7f18b6f90000-7f18b6f91000 rw-p 00006000 08:02 534517 /usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0
7f18b6f91000-7f18b6fc2000 r-xp 00000000 08:02 2232215 /usr/lib/xorg/modules/drivers/nouveau_drv.so
7f18b6fc2000-7f18b71c2000 ---p 00031000 08:02 2232215 /usr/lib/xorg/modules/drivers/nouveau_drv.so
7f18b71c2000-7f18b71c3000 r--p 00031000 08:02 2232215 /usr/lib/xorg/modules/drivers/nouveau_drv.so
7f18b71c3000-7f18b71c7000 rw-p 00032000 08:02 2232215 /usr/lib/xorg/modules/drivers/nouveau_drv.so
7f18b71c7000-7f18b71cc000 r-xp 00000000 08:02 534404 /usr/lib/x86_64-linux-gnu/libXxf86vm.so.1.0.0
7f18b71cc000-7f18b73cb000 ---p 00005000 08:02 534404 /usr/lib/x86_64-linux-gnu/libXxf86vm.so.1.0.0
7f18b73cb000-7f18b73cc000 r--p 00004000 08:02 534404 /usr/lib/x86_64-linux-gnu/libXxf86vm.so.1.0.0
7f18b73cc000-7f18b73cd000 rw-p 00005000 08:02 534404 /usr/lib/x86_64-linux-gnu/libXxf86vm.so.1.0.0
7f18b73cd000-7f18b73ee000 r-xp 00000000 08:02 530987 /usr/lib/x86_64-linux-gnu/libxcb.so.1.1.0
7f18b73ee000-7f18b75ed000 ---p 00021000 08:02 530987 /usr/lib/x86_64-linux-gnu/libxcb.so.1.1.0
7f18b75ed000-7f18b75ee000 r--p 00020000 08:02 530987 /usr/lib/x86_64-linux-gnu/libxcb.so.1.1.0
7f18b75ee000-7f18b75ef000 rw-p 00021000 08:02 530987 /usr/lib/x86_64-linux-gnu/libxcb.so.1.1.0
7f18b75ef000-7f18b75f4000 r-xp 00000000 08:02 534560 /usr/lib/x86_64-linux-gnu/libxcb-sync.so.1.0.0
7f18b75f4000-7f18b77f4000 ---p 00005000 08:02 534560 /usr/lib/x86_64-linux-gnu/libxcb-sync.so.1.0.0
7f18b77f4000-7f18b77f5000 r--p 00005000 08:02 534560 /usr/lib/x86_64-linux-gnu/libxcb-sync.so.1.0.0
7f18b77f5000-7f18b77f6000 rw-p 00006000 08:02 534560 /usr/lib/x86_64-linux-gnu/libxcb-sync.so.1.0.0
7f18b77f6000-7f18b77f8000 r-xp 00000000 08:02 534558 /usr/lib/x86_64-linux-gnu/libxcb-present.so.0.0.0
7f18b77f8000-7f18b79f7000 ---p 00002000 08:02 534558 /usr/lib/x86_64-linux-gnu/libxcb-present.so.0.0.0
7f18b79f7000-7f18b79f8000 r--p 00001000 08:02 534558 /usr/lib/x86_64-linux-gnu/libxcb-present.so.0.0.0
7f18b79f8000-7f18b79f9000 rw-p 00002000 08:02 534558 /usr/lib/x86_64-linux-gnu/libxcb-present.so.0.0.0
7f18b79f9000-7f18b79fb000 r-xp 00000000 08:02 534554 /usr/lib/x86_64-linux-gnu/libxcb-dri3.so.0.0.0
7f18b79fb000-7f18b7bfa000 ---p 00002000 08:02 534554 /usr/lib/x86_64-linux-gnu/libxcb-dri3.so.0.0.0
7f18b7bfa000-7f18b7bfb000 r--p 00001000 08:02 534554 /usr/lib/x86_64-linux-gnu/libxcb-dri3.so.0.0.0
7f18b7bfb000-7f18b7bfc000 rw-p 00002000 08:02 534554 /usr/lib/x86_64-linux-gnu/libxcb-dri3.so.0.0.0
7f18b7bfc000-7f18b7c00000 r-xp 00000000 08:02 534543 /usr/lib/x86_64-linux-gnu/libxcb-dri2.so.0.0.0
7f18b7c00000-7f18b7dff000 ---p 00004000 08:02 534543 /usr/lib/x86_64-linux-gnu/libxcb-dri2.so.0.0.0
7f18b7dff000-7f18b7e00000 r--p 00003000 08:02 534543 /usr/lib/x86_64-linux-gnu/libxcb-dri2.so.0.0.0
7f18b7e00000-7f18b7e01000 rw-p 00004000 08:02 534543 /usr/lib/x86_64-linux-gnu/libxcb-dri2.so.0.0.0
7f18b7e01000-7f18b7e18000 r-xp 00000000 08:02 534556 /usr/lib/x86_64-linux-gnu/libxcb-glx.so.0.0.0
7f18b7e18000-7f18b8017000 ---p 00017000 08:02 534556 /usr/lib/x86_64-linux-gnu/libxcb-glx.so.0.0.0
7f18b8017000-7f18b8019000 r--p 00016000 08:02 534556 /usr/lib/x86_64-linux-gnu/libxcb-glx.so.0.0.0
7f18b8019000-7f18b801a000 rw-p 00018000 08:02 534556 /usr/lib/x86_64-linux-gnu/libxcb-glx.so.0.0.0
7f18b801a000-7f18b8156000 r-xp 00000000 08:02 530991 /usr/lib/x86_64-linux-gnu/libX11.so.6.3.0
7f18b8156000-7f18b8355000 ---p 0013c000 08:02 530991 /usr/lib/x86_64-linux-gnu/libX11.so.6.3.0
7f18b8355000-7f18b8357000 r--p 0013b000 08:02 530991 /usr/lib/x86_64-linux-gnu/libX11.so.6.3.0
7f18b8357000-7f18b835c000 rw-p 0013d000 08:02 530991 /usr/lib/x86_64-linux-gnu/libX11.so.6.3.0
7f18b835c000-7f18b835d000 rw-p 00000000 00:00 0
7f18b835d000-7f18b835e000 r-xp 00000000 08:02 534541 /usr/lib/x86_64-linux-gnu/libX11-xcb.so.1.0.0
7f18b835e000-7f18b855d000 ---p 00001000 08:02 534541 /usr/lib/x86_64-linux-gnu/libX11-xcb.so.1.0.0
7f18b855d000-7f18b855e000 r--p 00000000 08:02 534541 /usr/lib/x86_64-linux-gnu/libX11-xcb.so.1.0.0
7f18b855e000-7f18b855f000 rw-p 00001000 08:02 534541 /usr/lib/x86_64-linux-gnu/libX11-xcb.so.1.0.0
7f18b855f000-7f18b8564000 r-xp 00000000 08:02 559997 /usr/lib/x86_64-linux-gnu/libXfixes.so.3.1.0
7f18b8564000-7f18b8763000 ---p 00005000 08:02 559997 /usr/lib/x86_64-linux-gnu/libXfixes.so.3.1.0
7f18b8763000-7f18b8764000 r--p 00004000 08:02 559997 /usr/lib/x86_64-linux-gnu/libXfixes.so.3.1.0
7f18b8764000-7f18b8765000 rw-p 00005000 08:02 559997 /usr/lib/x86_64-linux-gnu/libXfixes.so.3.1.0
7f18b8765000-7f18b8767000 r-xp 00000000 08:02 560382 /usr/lib/x86_64-linux-gnu/libXdamage.so.1.1.0
7f18b8767000-7f18b8966000 ---p 00002000 08:02 560382 /usr/lib/x86_64-linux-gnu/libXdamage.so.1.1.0
7f18b8966000-7f18b8967000 r--p 00001000 08:02 560382 /usr/lib/x86_64-linux-gnu/libXdamage.so.1.1.0
7f18b8967000-7f18b8968000 rw-p 00002000 08:02 560382 /usr/lib/x86_64-linux-gnu/libXdamage.so.1.1.0
7f18b8968000-7f18b8979000 r-xp 00000000 08:02 530998 /usr/lib/x86_64-linux-gnu/libXext.so.6.4.0
7f18b8979000-7f18b8b78000 ---p 00011000 08:02 530998 /usr/lib/x86_64-linux-gnu/libXext.so.6.4.0
7f18b8b78000-7f18b8b79000 r--p 00010000 08:02 530998 /usr/lib/x86_64-linux-gnu/libXext.so.6.4.0
7f18b8b79000-7f18b8b7a000 rw-p 00011000 08:02 530998 /usr/lib/x86_64-linux-gnu/libXext.so.6.4.0
7f18b8b7a000-7f18b8b9f000 r-xp 00000000 08:02 531500 /usr/lib/x86_64-linux-gnu/libglapi.so.0.0.0
7f18b8b9f000-7f18b8d9f000 ---p 00025000 08:02 531500 /usr/lib/x86_64-linux-gnu/libglapi.so.0.0.0
7f18b8d9f000-7f18b8da2000 r--p 00025000 08:02 531500 /usr/lib/x86_64-linux-gnu/libglapi.so.0.0.0
7f18b8da2000-7f18b8da3000 rw-p 00028000 08:02 531500 /usr/lib/x86_64-linux-gnu/libglapi.so.0.0.0
7f18b8da3000-7f18b8da4000 rw-p 00000000 00:00 0
7f18b8da4000-7f18b8dca000 r-xp 00000000 08:02 393404 /lib/x86_64-linux-gnu/libexpat.so.1.6.0
7f18b8dca000-7f18b8fc9000 ---p 00026000 08:02 393404 /lib/x86_64-linux-gnu/libexpat.so.1.6.0
7f18b8fc9000-7f18b8fcc000 r--p 00025000 08:02 393404 /lib/x86_64-linux-gnu/libexpat.so.1.6.0
7f18b8fcc000-7f18b8fcd000 rw-p 00028000 08:02 393404 /lib/x86_64-linux-gnu/libexpat.so.1.6.0
7f18b8fcd000-7f18b9063000 r-xp 00000000 08:02 531019 /usr/lib/x86_64-linux-gnu/libGL.so.1.2.0
7f18b9063000-7f18b9262000 ---p 00096000 08:02 531019 /usr/lib/x86_64-linux-gnu/libGL.so.1.2.0
7f18b9262000-7f18b9265000 r--p 00095000 08:02 531019 /usr/lib/x86_64-linux-gnu/libGL.so.1.2.0
7f18b9265000-7f18b9266000 rw-p 00098000 08:02 531019 /usr/lib/x86_64-linux-gnu/libGL.so.1.2.0
7f18b9266000-7f18b9267000 rw-p 00000000 00:00 0
7f18b9267000-7f18b92aa000 r-xp 00000000 08:02 2229456 /usr/lib/xorg/modules/extensions/libglx.so
7f18b92aa000-7f18b94a9000 ---p 00043000 08:02 2229456 /usr/lib/xorg/modules/extensions/libglx.so
7f18b94a9000-7f18b94ab000 r--p 00042000 08:02 2229456 /usr/lib/xorg/modules/extensions/libglx.so
7f18b94ab000-7f18b94af000 rw-p 00044000 08:02 2229456 /usr/lib/xorg/modules/extensions/libglx.so
7f18b94af000-7f18b94c5000 r-xp 00000000 08:02 393444 /lib/x86_64-linux-gnu/libgcc_s.so.1
7f18b94c5000-7f18b96c4000 ---p 00016000 08:02 393444 /lib/x86_64-linux-gnu/libgcc_s.so.1
7f18b96c4000-7f18b96c5000 rw-p 00015000 08:02 393444 /lib/x86_64-linux-gnu/libgcc_s.so.1
7f18b96c5000-7f18b96eb000 r-xp 00000000 08:02 393438 /lib/x86_64-linux-gnu/libpng12.so.0.50.0
7f18b96eb000-7f18b98ea000 ---p 00026000 08:02 393438 /lib/x86_64-linux-gnu/libpng12.so.0.50.0
7f18b98ea000-7f18b98eb000 r--p 00025000 08:02 393438 /lib/x86_64-linux-gnu/libpng12.so.0.50.0
7f18b98eb000-7f18b98ec000 rw-p 00026000 08:02 393438 /lib/x86_64-linux-gnu/libpng12.so.0.50.0
7f18b98ec000-7f18b98f2000 r-xp 00000000 08:02 528151 /usr/lib/x86_64-linux-gnu/libfontenc.so.1.0.0
7f18b98f2000-7f18b9af1000 ---p 00006000 08:02 528151 /usr/lib/x86_64-linux-gnu/libfontenc.so.1.0.0
7f18b9af1000-7f18b9af2000 r--p 00005000 08:02 528151 /usr/lib/x86_64-linux-gnu/libfontenc.so.1.0.0
7f18b9af2000-7f18b9af4000 rw-p 00006000 08:02 528151 /usr/lib/x86_64-linux-gnu/libfontenc.so.1.0.0
7f18b9af4000-7f18b9b03000 r-xp 00000000 08:02 393256 /lib/x86_64-linux-gnu/libbz2.so.1.0.4
7f18b9b03000-7f18b9d02000 ---p 0000f000 08:02 393256 /lib/x86_64-linux-gnu/libbz2.so.1.0.4
7f18b9d02000-7f18b9d03000 r--p 0000e000 08:02 393256 /lib/x86_64-linux-gnu/libbz2.so.1.0.4
7f18b9d03000-7f18b9d04000 rw-p 0000f000 08:02 393256 /lib/x86_64-linux-gnu/libbz2.so.1.0.4
7f18b9d04000-7f18b9da7000 r-xp 00000000 08:02 530811 /usr/lib/x86_64-linux-gnu/libfreetype.so.6.11.1
7f18b9da7000-7f18b9fa7000 ---p 000a3000 08:02 530811 /usr/lib/x86_64-linux-gnu/libfreetype.so.6.11.1
7f18b9fa7000-7f18b9fad000 r--p 000a3000 08:02 530811 /usr/lib/x86_64-linux-gnu/libfreetype.so.6.11.1
7f18b9fad000-7f18b9fae000 rw-p 000a9000 08:02 530811 /usr/lib/x86_64-linux-gnu/libfreetype.so.6.11.1
7f18b9fae000-7f18b9fc8000 r-xp 00000000 08:02 393316 /lib/x86_64-linux-gnu/libz.so.1.2.8
7f18b9fc8000-7f18ba1c7000 ---p 0001a000 08:02 393316 /lib/x86_64-linux-gnu/libz.so.1.2.8
7f18ba1c7000-7f18ba1c8000 r--p 00019000 08:02 393316 /lib/x86_64-linux-gnu/libz.so.1.2.8
7f18ba1c8000-7f18ba1c9000 rw-p 0001a000 08:02 393316 /lib/x86_64-linux-gnu/libz.so.1.2.8
7f18ba1c9000-7f18ba1da000 r-xp 00000000 08:02 393327 /lib/x86_64-linux-gnu/libgpg-error.so.0.13.0
7f18ba1da000-7f18ba3d9000 ---p 00011000 08:02 393327 /lib/x86_64-linux-gnu/libgpg-error.so.0.13.0
7f18ba3d9000-7f18ba3da000 r--p 00010000 08:02 393327 /lib/x86_64-linux-gnu/libgpg-error.so.0.13.0
7f18ba3da000-7f18ba3db000 rw-p 00011000 08:02 393327 /lib/x86_64-linux-gnu/libgpg-error.so.0.13.0
7f18ba3db000-7f18ba447000 r-xp 00000000 08:02 393252 /lib/x86_64-linux-gnu/libpcre.so.3.13.1
7f18ba447000-7f18ba647000 ---p 0006c000 08:02 393252 /lib/x86_64-linux-gnu/libpcre.so.3.13.1
7f18ba647000-7f18ba648000 r--p 0006c000 08:02 393252 /lib/x86_64-linux-gnu/libpcre.so.3.13.1
7f18ba648000-7f18ba649000 rw-p 0006d000 08:02 393252 /lib/x86_64-linux-gnu/libpcre.so.3.13.1
7f18ba649000-7f18ba661000 r-xp 00000000 08:02 393707 /lib/x86_64-linux-gnu/libpthread-2.19.so
7f18ba661000-7f18ba860000 ---p 00018000 08:02 393707 /lib/x86_64-linux-gnu/libpthread-2.19.so
7f18ba860000-7f18ba861000 r--p 00017000 08:02 393707 /lib/x86_64-linux-gnu/libpthread-2.19.so
7f18ba861000-7f18ba862000 rw-p 00018000 08:02 393707 /lib/x86_64-linux-gnu/libpthread-2.19.so
7f18ba862000-7f18ba866000 rw-p 00000000 00:00 0
7f18ba866000-7f18ba86d000 r-xp 00000000 08:02 393708 /lib/x86_64-linux-gnu/librt-2.19.so
7f18ba86d000-7f18baa6c000 ---p 00007000 08:02 393708 /lib/x86_64-linux-gnu/librt-2.19.so
7f18baa6c000-7f18baa6d000 r--p 00006000 08:02 393708 /lib/x86_64-linux-gnu/librt-2.19.so
7f18baa6d000-7f18baa6e000 rw-p 00007000 08:02 393708 /lib/x86_64-linux-gnu/librt-2.19.so
7f18baa6e000-7f18bac0d000 r-xp 00000000 08:02 393714 /lib/x86_64-linux-gnu/libc-2.19.so
7f18bac0d000-7f18bae0d000 ---p 0019f000 08:02 393714 /lib/x86_64-linux-gnu/libc-2.19.so
7f18bae0d000-7f18bae11000 r--p 0019f000 08:02 393714 /lib/x86_64-linux-gnu/libc-2.19.so
7f18bae11000-7f18bae13000 rw-p 001a3000 08:02 393714 /lib/x86_64-linux-gnu/libc-2.19.so
7f18bae13000-7f18bae17000 rw-p 00000000 00:00 0
7f18bae17000-7f18baf17000 r-xp 00000000 08:02 393713 /lib/x86_64-linux-gnu/libm-2.19.so
7f18baf17000-7f18bb116000 ---p 00100000 08:02 393713 /lib/x86_64-linux-gnu/libm-2.19.so
7f18bb116000-7f18bb117000 r--p 000ff000 08:02 393713 /lib/x86_64-linux-gnu/libm-2.19.so
7f18bb117000-7f18bb118000 rw-p 00100000 08:02 393713 /lib/x86_64-linux-gnu/libm-2.19.so
7f18bb118000-7f18bb132000 r-xp 00000000 08:02 393260 /lib/x86_64-linux-gnu/libaudit.so.1.0.0
7f18bb132000-7f18bb331000 ---p 0001a000 08:02 393260 /lib/x86_64-linux-gnu/libaudit.so.1.0.0
7f18bb331000-7f18bb333000 r--p 00019000 08:02 393260 /lib/x86_64-linux-gnu/libaudit.so.1.0.0
7f18bb333000-7f18bb334000 rw-p 0001b000 08:02 393260 /lib/x86_64-linux-gnu/libaudit.so.1.0.0
7f18bb334000-7f18bb33e000 rw-p 00000000 00:00 0
7f18bb33e000-7f18bb343000 r-xp 00000000 08:02 529063 /usr/lib/x86_64-linux-gnu/libXdmcp.so.6.0.0
7f18bb343000-7f18bb542000 ---p 00005000 08:02 529063 /usr/lib/x86_64-linux-gnu/libXdmcp.so.6.0.0
7f18bb542000-7f18bb543000 rw-p 00004000 08:02 529063 /usr/lib/x86_64-linux-gnu/libXdmcp.so.6.0.0
7f18bb543000-7f18bb544000 r-xp 00000000 08:02 534562 /usr/lib/x86_64-linux-gnu/libxshmfence.so.1.0.0
7f18bb544000-7f18bb743000 ---p 00001000 08:02 534562 /usr/lib/x86_64-linux-gnu/libxshmfence.so.1.0.0
7f18bb743000-7f18bb744000 r--p 00000000 08:02 534562 /usr/lib/x86_64-linux-gnu/libxshmfence.so.1.0.0
7f18bb744000-7f18bb745000 rw-p 00001000 08:02 534562 /usr/lib/x86_64-linux-gnu/libxshmfence.so.1.0.0
7f18bb745000-7f18bb748000 r-xp 00000000 08:02 530983 /usr/lib/x86_64-linux-gnu/libXau.so.6.0.0
7f18bb748000-7f18bb947000 ---p 00003000 08:02 530983 /usr/lib/x86_64-linux-gnu/libXau.so.6.0.0
7f18bb947000-7f18bb948000 r--p 00002000 08:02 530983 /usr/lib/x86_64-linux-gnu/libXau.so.6.0.0
7f18bb948000-7f18bb949000 rw-p 00003000 08:02 530983 /usr/lib/x86_64-linux-gnu/libXau.so.6.0.0
7f18bb949000-7f18bb977000 r-xp 00000000 08:02 529065 /usr/lib/x86_64-linux-gnu/libXfont.so.1.4.1
7f18bb977000-7f18bbb76000 ---p 0002e000 08:02 529065 /usr/lib/x86_64-linux-gnu/libXfont.so.1.4.1
7f18bbb76000-7f18bbb77000 r--p 0002d000 08:02 529065 /usr/lib/x86_64-linux-gnu/libXfont.so.1.4.1
7f18bbb77000-7f18bbb79000 rw-p 0002e000 08:02 529065 /usr/lib/x86_64-linux-gnu/libXfont.so.1.4.1
7f18bbb79000-7f18bbc1e000 r-xp 00000000 08:02 530981 /usr/lib/x86_64-linux-gnu/libpixman-1.so.0.32.6
7f18bbc1e000-7f18bbe1d000 ---p 000a5000 08:02 530981 /usr/lib/x86_64-linux-gnu/libpixman-1.so.0.32.6
7f18bbe1d000-7f18bbe25000 r--p 000a4000 08:02 530981 /usr/lib/x86_64-linux-gnu/libpixman-1.so.0.32.6
7f18bbe25000-7f18bbe26000 rw-p 000ac000 08:02 530981 /usr/lib/x86_64-linux-gnu/libpixman-1.so.0.32.6
7f18bbe26000-7f18bbe32000 r-xp 00000000 08:02 534514 /usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0
7f18bbe32000-7f18bc031000 ---p 0000c000 08:02 534514 /usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0
7f18bc031000-7f18bc032000 r--p 0000b000 08:02 534514 /usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0
7f18bc032000-7f18bc033000 rw-p 0000c000 08:02 534514 /usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0
7f18bc033000-7f18bc03b000 r-xp 00000000 08:02 528200 /usr/lib/x86_64-linux-gnu/libpciaccess.so.0.11.1
7f18bc03b000-7f18bc23b000 ---p 00008000 08:02 528200 /usr/lib/x86_64-linux-gnu/libpciaccess.so.0.11.1
7f18bc23b000-7f18bc23c000 r--p 00008000 08:02 528200 /usr/lib/x86_64-linux-gnu/libpciaccess.so.0.11.1
7f18bc23c000-7f18bc23d000 rw-p 00009000 08:02 528200 /usr/lib/x86_64-linux-gnu/libpciaccess.so.0.11.1
7f18bc23d000-7f18bc240000 r-xp 00000000 08:02 393673 /lib/x86_64-linux-gnu/libdl-2.19.so
7f18bc240000-7f18bc43f000 ---p 00003000 08:02 393673 /lib/x86_64-linux-gnu/libdl-2.19.so
7f18bc43f000-7f18bc440000 r--p 00002000 08:02 393673 /lib/x86_64-linux-gnu/libdl-2.19.so
7f18bc440000-7f18bc441000 rw-p 00003000 08:02 393673 /lib/x86_64-linux-gnu/libdl-2.19.so
7f18bc441000-7f18bc518000 r-xp 00000000 08:02 393392 /lib/x86_64-linux-gnu/libgcrypt.so.20.0.2
7f18bc518000-7f18bc718000 ---p 000d7000 08:02 393392 /lib/x86_64-linux-gnu/libgcrypt.so.20.0.2
7f18bc718000-7f18bc719000 r--p 000d7000 08:02 393392 /lib/x86_64-linux-gnu/libgcrypt.so.20.0.2
7f18bc719000-7f18bc722000 rw-p 000d8000 08:02 393392 /lib/x86_64-linux-gnu/libgcrypt.so.20.0.2
7f18bc722000-7f18bc743000 r-xp 00000000 08:02 393315 /lib/x86_64-linux-gnu/libselinux.so.1
7f18bc743000-7f18bc943000 ---p 00021000 08:02 393315 /lib/x86_64-linux-gnu/libselinux.so.1
7f18bc943000-7f18bc944000 r--p 00021000 08:02 393315 /lib/x86_64-linux-gnu/libselinux.so.1
7f18bc944000-7f18bc945000 rw-p 00022000 08:02 393315 /lib/x86_64-linux-gnu/libselinux.so.1
7f18bc945000-7f18bc947000 rw-p 00000000 00:00 0
7f18bc947000-7f18bc955000 r-xp 00000000 08:02 393787 /lib/x86_64-linux-gnu/libudev.so.1.5.0
7f18bc955000-7f18bcb54000 ---p 0000e000 08:02 393787 /lib/x86_64-linux-gnu/libudev.so.1.5.0
7f18bcb54000-7f18bcb55000 r--p 0000d000 08:02 393787 /lib/x86_64-linux-gnu/libudev.so.1.5.0
7f18bcb55000-7f18bcb56000 rw-p 0000e000 08:02 393787 /lib/x86_64-linux-gnu/libudev.so.1.5.0
7f18bcb56000-7f18bcb76000 r-xp 00000000 08:02 393254 /lib/x86_64-linux-gnu/ld-2.19.so
7f18bcb9b000-7f18bcbfb000 rw-s 00000000 00:05 76513280 /SYSV00000000 (deleted)
7f18bcbfb000-7f18bcc03000 rw-s 10085e000 00:06 14729 /dev/dri/card0
7f18bcc03000-7f18bcc0b000 rw-s 100856000 00:06 14729 /dev/dri/card0
7f18bcc0b000-7f18bcc13000 rw-s 10084e000 00:06 14729 /dev/dri/card0
7f18bcc13000-7f18bcc17000 rw-s 10082f000 00:06 14729 /dev/dri/card0
7f18bcc17000-7f18bcc1b000 rw-s 10082b000 00:06 14729 /dev/dri/card0
7f18bcc1b000-7f18bcc9b000 rw-s 10104c000 00:06 14729 /dev/dri/card0
7f18bcc9b000-7f18bcce7000 rw-p 00000000 00:00 0
7f18bcce7000-7f18bccef000 rw-s 100899000 00:06 14729 /dev/dri/card0
7f18bccef000-7f18bcd47000 rw-p 00000000 00:00 0
7f18bcd4a000-7f18bcd4b000 rw-s 10124c000 00:06 14729 /dev/dri/card0
7f18bcd4b000-7f18bcd53000 rw-s 100846000 00:06 14729 /dev/dri/card0
7f18bcd53000-7f18bcd73000 rw-s 100866000 00:06 14729 /dev/dri/card0
7f18bcd73000-7f18bcd76000 rw-p 00000000 00:00 0
7f18bcd76000-7f18bcd77000 r--p 00020000 08:02 393254 /lib/x86_64-linux-gnu/ld-2.19.so
7f18bcd77000-7f18bcd78000 rw-p 00021000 08:02 393254 /lib/x86_64-linux-gnu/ld-2.19.so
7f18bcd78000-7f18bcd79000 rw-p 00000000 00:00 0
7f18bcd79000-7f18bcfb4000 r-xp 00000000 08:02 533895 /usr/bin/Xorg
7f18bd1b4000-7f18bd1b6000 r--p 0023b000 08:02 533895 /usr/bin/Xorg
7f18bd1b6000-7f18bd1c3000 rw-p 0023d000 08:02 533895 /usr/bin/Xorg
7f18bd1c3000-7f18bd1d4000 rw-p 00000000 00:00 0
7f18bd52b000-7f18bfbaa000 rw-p 00000000 00:00 0 [heap]
7fff59fc8000-7fff59fe9000 rw-p 00000000 00:00 0 [stack]
7fff59fec000-7fff59fee000 r--p 00000000 00:00 0 [vvar]
7fff59fee000-7fff59ff0000 r-xp 00000000 00:00 0 [vdso]
ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0 [vsyscall]
I try install netbeans 7.4 for html5 and php develop version on Linux Mint 15 Olivia.But installer throw error wthi next message:
* Error in
`/usr/lib/jvm/java-7-openjdk-i386/jre/bin/unpack200': double free or
corruption (out): 0x089f5720 *
======= Backtrace: ========= /lib/i386-linux-gnu/libc.so.6(+0x767e2)[0xb765d7e2]
/lib/i386-linux-gnu/libc.so.6(+0x77530)[0xb765e530]
/lib/i386-linux-gnu/libz.so.1(+0xd8fb)[0xb77a88fb]
/lib/i386-linux-gnu/libz.so.1(deflateEnd+0x3c)[0xb77a01dc]
/usr/lib/jvm/java-7-openjdk-i386/jre/bin/unpack200[0x8057911]
/usr/lib/jvm/java-7-openjdk-i386/jre/bin/unpack200[0x8057ad6]
/usr/lib/jvm/java-7-openjdk-i386/jre/bin/unpack200[0x804eee0]
/usr/lib/jvm/java-7-openjdk-i386/jre/bin/unpack200[0x8058adc]
/usr/lib/jvm/java-7-openjdk-i386/jre/bin/unpack200[0x8048f87]
/lib/i386-linux-gnu/libc.so.6(__libc_start_main+0xf5)[0xb7600935]
/usr/lib/jvm/java-7-openjdk-i386/jre/bin/unpack200[0x8048fad]
======= Memory map: ======== 08048000-0805d000 r-xp 00000000 08:08 526424 /usr/lib/jvm/java-7-openjdk-i386/jre/bin/unpack200
0805d000-0805e000 r--p 00015000 08:08 526424
/usr/lib/jvm/java-7-openjdk-i386/jre/bin/unpack200 0805e000-0805f000
rw-p 00016000 08:08 526424
/usr/lib/jvm/java-7-openjdk-i386/jre/bin/unpack200 0805f000-08060000
rw-p 00000000 00:00 0 089ac000-08a16000 rw-p 00000000 00:00 0
[heap] b75ac000-b75c7000 r-xp 00000000 08:01 393963
/lib/i386-linux-gnu/libgcc_s.so.1 b75c7000-b75c8000 r--p 0001a000
08:01 393963 /lib/i386-linux-gnu/libgcc_s.so.1 b75c8000-b75c9000
rw-p 0001b000 08:01 393963 /lib/i386-linux-gnu/libgcc_s.so.1
b75e5000-b75e7000 rw-p 00000000 00:00 0 b75e7000-b7795000 r-xp
00000000 08:01 397441 /lib/i386-linux-gnu/libc-2.17.so
b7795000-b7797000 r--p 001ae000 08:01 397441
/lib/i386-linux-gnu/libc-2.17.so b7797000-b7798000 rw-p 001b0000 08:01
397441 /lib/i386-linux-gnu/libc-2.17.so b7798000-b779b000 rw-p
00000000 00:00 0 b779b000-b77b2000 r-xp 00000000 08:01 394091
/lib/i386-linux-gnu/libz.so.1.2.7 b77b2000-b77b3000 r--p 00016000
08:01 394091 /lib/i386-linux-gnu/libz.so.1.2.7 b77b3000-b77b4000
rw-p 00017000 08:01 394091 /lib/i386-linux-gnu/libz.so.1.2.7
b77cd000-b77d2000 rw-p 00000000 00:00 0 b77d2000-b77d3000 r-xp
00000000 00:00 0 [vdso] b77d3000-b77f3000 r-xp 00000000 08:01
397442 /lib/i386-linux-gnu/ld-2.17.so b77f3000-b77f4000 r--p
0001f000 08:01 397442 /lib/i386-linux-gnu/ld-2.17.so
b77f4000-b77f5000 rw-p 00020000 08:01 397442
/lib/i386-linux-gnu/ld-2.17.so bfa28000-bfa49000 rw-p 00000000 00:00 0
[stack]