[libvirt-users] no connection driver available for No connection for URI xen:///

Su Zhang westlifezs at gmail.com
Fri Mar 16 04:12:41 UTC 2012


Alex,

I changed the symbolic link to "/usr/local/lib/libvirt.so.0.9.10". Here is
the running script:

[root at XenTester libvirt-0.9.10]# rm /usr/lib64/libvirt.so.0
rm: remove symbolic link `/usr/lib64/libvirt.so.0'? yes
[root at XenTester libvirt-0.9.10]# ln -s /usr/local/lib/libvirt.so.0.9.10
/usr/lib64/libvirt.so.0


I run "strace -o strace.txt virt-install --connect=xen:/// -p" once again,
and the following error came out:

ERROR    Error in network device parameters: Virtual network 'default' does
not exist: this function is not supported by the connection driver:
virNetworkLookupByName
the  strace.txt is attached.

Are there any other places I need to change in order to let the system know
I am running libvirt.so.0.9.10?


Thanks,

On Thu, Mar 15, 2012 at 10:54 PM, Su Zhang <westlifezs at gmail.com> wrote:

> Here it is:
>
> # ll /usr/lib64/libvirt.so.0
> lrwxrwxrwx. 1 root root 16 Mar 12 21:19 /usr/lib64/libvirt.so.0 ->
> libvirt.so.0.9.4
>
> So you meant that I used a wrong libvirt.so? How can I correct this?
>
>
> On Thu, Mar 15, 2012 at 10:52 PM, Alex Jia <ajia at redhat.com> wrote:
>
>> **
>> On 03/16/2012 11:41 AM, Su Zhang wrote:
>>
>>
>>
>> On Thu, Mar 15, 2012 at 10:20 PM, Alex Jia <ajia at redhat.com> wrote:
>>
>>>   On 03/16/2012 11:02 AM, Su Zhang wrote:
>>>
>>>
>>>
>>> On Thu, Mar 15, 2012 at 9:45 PM, Alex Jia <ajia at redhat.com> wrote:
>>>
>>>>  On 03/16/2012 05:33 AM, Su Zhang wrote:
>>>>
>>>>
>>>>
>>>> On Thu, Mar 15, 2012 at 4:20 PM, Eric Blake <eblake at redhat.com> wrote:
>>>>
>>>>> On 03/15/2012 02:57 PM, Su Zhang wrote:
>>>>> > Hi all,
>>>>> >
>>>>> > I am trying to use virt-install to install domU image. However, I
>>>>> > encountered the following issue. It seems that a connection driver is
>>>>> > needed for Xen.
>>>>> > I am new to both libvirt and Xen. Anyone have any ideas on what's
>>>>> wrong
>>>>> > with the following error ?
>>>>> >
>>>>> >
>>>>> >
>>>>> > # virt-install --connect=xen:/// -p -d
>>>>> > Thu, 15 Mar 2012 10:17:55 DEBUG    Launched with command line:
>>>>> > /usr/bin/virt-install --connect=xen:/// -p -d
>>>>> > Thu, 15 Mar 2012 10:17:55 DEBUG    Requesting libvirt URI xen:///
>>>>> > Thu, 15 Mar 2012 10:17:55 ERROR    no connection driver available
>>>>> for No
>>>>> > connection for URI xen:///
>>>>>
>>>>>  This probably means that your copy of libvirt.so and libvirtd was
>>>>> built
>>>>> without xen support.  What does
>>>>>
>>>>> virsh --version=long
>>>>>
>>>>> say?  Also, are you sure libvirtd is running?
>>>>>
>>>>   In addition, I want to know your libvirt.so, libvirtd, xend
>>>> location, for example,
>>>> # which libvirtd
>>>> # which xend
>>>> # locate libvirt.so
>>>>
>>>> Please also make sure xend service is running:
>>>> # service xend status
>>>>
>>>>
>>>>> --
>>>>> Eric Blake   eblake at redhat.com    +1-919-301-3266
>>>>> Libvirt virtualization library http://libvirt.org
>>>>>
>>>>>
>>>> Eric,
>>>>
>>>> Here is the output:
>>>> # virsh --version=long
>>>> Virsh command line tool of libvirt 0.9.10
>>>> See web site at http://libvirt.org/
>>>>
>>>> Compiled with support for:
>>>>  Hypervisors: Xen QEmu/KVM UML OpenVZ VirtualBox LXC Test
>>>>  Networking: Remote Daemon Network Bridging Nwfilter VirtualPort
>>>>  Storage: Dir Filesystem SCSI Multipath iSCSI LVM
>>>>  Miscellaneous: SELinux Secrets Debug
>>>>
>>>> It seems that it does support Xen.
>>>>
>>>>  Yeah, Xen indeed appears in Hypervisors line.
>>>>
>>>>
>>>> I am not sure if libvirtd is running so I use the following command to
>>>> start it:
>>>>
>>>> [root at XenTester srv]# /etc/rc.d/init.d/libvirtd start
>>>>
>>>>  Right, you may also use service libvirtd start, and check it by
>>>> service libvirtd status or ps -ef|grep libvirtd.
>>>>
>>>>
>>>> But the same error is still there.
>>>>
>>>> Am I using the right way to start libvirtd service? Are there any other
>>>> possible reasons of this error?
>>>>
>>>>
>>>> Thanks,
>>>>
>>>> --
>>>> Su Zhang
>>>> Ph.D Candidate
>>>> Computing and Information Sciences
>>>> Kansas State University
>>>>
>>>>
>>>> _______________________________________________
>>>> libvirt-users mailing listlibvirt-users at redhat.comhttps://www.redhat.com/mailman/listinfo/libvirt-users
>>>>
>>>>
>>>>   Alex,
>>>
>>> Here is some information:
>>>
>>> # /etc/init.d/xencommons start
>>> Starting xenstored...
>>> Setting domain 0 name...
>>> Starting xenconsoled...
>>> [root at XenTester su]# /etc/init.d/xend start
>>> [root at XenTester su]# which libvirtd
>>> /usr/local/sbin/libvirtd
>>> [root at XenTester su]# which xend
>>> /usr/sbin/xend
>>> [root at XenTester su]# locate libvirt.so
>>> /usr/lib64/libvirt.so.0
>>> /usr/lib64/libvirt.so.0.9.4
>>> /usr/local/lib/libvirt.so
>>> /usr/local/lib/libvirt.so.0
>>> /usr/local/lib/libvirt.so.0.9.10
>>>
>>>  You have 2 different libvirt versions 0.9.4 and 0.9.10, and your
>>> 0.9.10 is put under the
>>> /usr/local/lib directory, so I guess you haven't used ./configure with
>>> --prefix=/usr option
>>> or directly use ./autogen.sh --system when you configure and compile
>>> libvirt.
>>>
>>> And also please yum install strace -y if you haven't installed strace
>>> rpm, then run the following operation:
>>>
>>> # strace -o strace.txt virt-install --connect=xen:/// -p
>>>
>>> Then attach strace.txt as a attachment.
>>>
>>> Thanks,
>>> Alex
>>>
>>>
>> Alex,
>>
>> Thanks. I have run ./autogen.sh --system. And "make" and "make install"
>> the libvirt once again.
>> I encountered one type of errors while running "make install", it seems
>> that the installer is looking for a bunch of HTML files under
>> /usr/bin/install. here is the error info:
>>
>> /usr/bin/install: cannot stat `./api.html': No such file or directory
>> /usr/bin/install: cannot stat `./api_extension.html': No such file or
>> directory
>> /usr/bin/install: cannot stat `./apps.html': No such file or directory
>> /usr/bin/install: cannot stat `./archdomain.html': No such file or
>> directory
>> /usr/bin/install: cannot stat `./architecture.html': No such file or
>> directory
>> /usr/bin/install: cannot stat `./archnetwork.html': No such file or
>> directory
>> /usr/bin/install: cannot stat `./archnode.html': No such file or directory
>> (there are still tens of HTML files missing)
>> ....
>>
>> It's not important for our issues.
>>
>>
>> Do you think this type of errors will affect the functionality of libvirt?
>> Also, I checked and it seems that I've the latest strace package
>> installed. So I run "strace -o strace.txt virt-install --connect=xen:///
>> -p".
>> Please find strace.txt attached.
>>
>> I saw virt-install is opening /usr/lib64/libvirt.so.0 in strace.txt:
>>
>> open("/usr/lib64/libvirt.so.0", O_RDONLY) = 7
>>
>>
>> I want to confirm whether you're using compiling libvirt 0.9.10,
>> ll /usr/lib64/libvirt.so.0 say what?
>>
>> Thanks,
>> Alex
>>
>>
>> Thanks,
>>
>>>  [root at XenTester su]# service xend status
>>> [root at XenTester su]# ps -ef|grep libvirtd
>>> root      2242     1  0 21:52 ?        00:00:00 libvirtd --daemon
>>> root      3295  3112  0 21:59 pts/0    00:00:00 grep libvirtd
>>>
>>> Can you see if it is normal here?
>>>
>>> Thanks,
>>>
>>>
>>> --
>>> Su Zhang
>>> Ph.D Candidate
>>> Computing and Information Sciences
>>> Kansas State University
>>>
>>>
>>>
>>
>>
>> --
>> Su Zhang
>> Ph.D Candidate
>> Computing and Information Sciences
>> Kansas State University
>>
>>
>>
>
>
> --
> Su Zhang
> Ph.D Candidate
> Computing and Information Sciences
> Kansas State University
>



-- 
Su Zhang
Ph.D Candidate
Computing and Information Sciences
Kansas State University
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://listman.redhat.com/archives/libvirt-users/attachments/20120315/80af2772/attachment.htm>
-------------- next part --------------
execve("/usr/bin/virt-install", ["virt-install", "--connect=xen:///", "-p"], [/* 46 vars */]) = 0
brk(0)                                  = 0x2333000
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d6000
access("/etc/ld.so.preload", R_OK)      = -1 ENOENT (No such file or directory)
open("/etc/ld.so.cache", O_RDONLY)      = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=81064, ...}) = 0
mmap(NULL, 81064, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fb9912c2000
close(3)                                = 0
open("/usr/lib64/libpython2.6.so.1.0", O_RDONLY) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\200\306C\0252\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0555, st_size=1751360, ...}) = 0
mmap(0x3215400000, 3901776, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x3215400000
mprotect(0x3215570000, 2093056, PROT_NONE) = 0
mmap(0x321576f000, 245760, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x16f000) = 0x321576f000
mmap(0x32157ab000, 55632, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x32157ab000
close(3)                                = 0
open("/lib64/libpthread.so.0", O_RDONLY) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 \\\300\0102\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=141576, ...}) = 0
mmap(0x3208c00000, 2208672, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x3208c00000
mprotect(0x3208c17000, 2093056, PROT_NONE) = 0
mmap(0x3208e16000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x16000) = 0x3208e16000
mmap(0x3208e18000, 13216, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x3208e18000
close(3)                                = 0
open("/lib64/libdl.so.2", O_RDONLY)     = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\340\r@\0102\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=22536, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912c1000
mmap(0x3208400000, 2109696, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x3208400000
mprotect(0x3208402000, 2097152, PROT_NONE) = 0
mmap(0x3208602000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x3208602000
close(3)                                = 0
open("/lib64/libutil.so.1", O_RDONLY)   = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20\16\300\0262\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=17520, ...}) = 0
mmap(0x3216c00000, 2105600, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x3216c00000
mprotect(0x3216c02000, 2093056, PROT_NONE) = 0
mmap(0x3216e01000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x3216e01000
close(3)                                = 0
open("/lib64/libm.so.6", O_RDONLY)      = 3
read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\240>\0\t2\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=598800, ...}) = 0
mmap(0x3209000000, 2633944, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x3209000000
mprotect(0x3209083000, 2093056, PROT_NONE) = 0
mmap(0x3209282000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x82000) = 0x3209282000
close(3)                                = 0
open("/lib64/libc.so.6", O_RDONLY)      = 3
read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360\355\201\0102\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=1979000, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912c0000
mmap(0x3208800000, 3803304, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x3208800000
mprotect(0x3208997000, 2097152, PROT_NONE) = 0
mmap(0x3208b97000, 20480, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x197000) = 0x3208b97000
mmap(0x3208b9c000, 18600, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x3208b9c000
close(3)                                = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912bf000
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912be000
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912bd000
arch_prctl(ARCH_SET_FS, 0x7fb9912be700) = 0
mprotect(0x3208e16000, 4096, PROT_READ) = 0
mprotect(0x3208602000, 4096, PROT_READ) = 0
mprotect(0x3216e01000, 4096, PROT_READ) = 0
mprotect(0x3209282000, 4096, PROT_READ) = 0
mprotect(0x3208b97000, 16384, PROT_READ) = 0
mprotect(0x320821f000, 4096, PROT_READ) = 0
munmap(0x7fb9912c2000, 81064)           = 0
set_tid_address(0x7fb9912be9d0)         = 30687
set_robust_list(0x7fb9912be9e0, 0x18)   = 0
futex(0x7fffe41fc7fc, FUTEX_WAKE_PRIVATE, 1) = 0
futex(0x7fffe41fc7fc, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 1, NULL, 7fb9912be700) = -1 EAGAIN (Resource temporarily unavailable)
rt_sigaction(SIGRTMIN, {0x3208c05aa0, [], SA_RESTORER|SA_SIGINFO, 0x3208c0f4a0}, NULL, 8) = 0
rt_sigaction(SIGRT_1, {0x3208c05b30, [], SA_RESTORER|SA_RESTART|SA_SIGINFO, 0x3208c0f4a0}, NULL, 8) = 0
rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0
getrlimit(RLIMIT_STACK, {rlim_cur=8192*1024, rlim_max=RLIM_INFINITY}) = 0
ioctl(0, SNDCTL_TMR_TIMEBASE or TCGETS, {B38400 opost isig icanon echo ...}) = 0
brk(0)                                  = 0x2333000
brk(0x2354000)                          = 0x2354000
mmap(NULL, 266240, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb99127c000
open("/proc/meminfo", O_RDONLY)         = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(3, "MemTotal:        2314144 kB\nMemF"..., 1024) = 1024
close(3)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
brk(0x237d000)                          = 0x237d000
fstat(0, {st_mode=S_IFCHR|0620, st_rdev=makedev(136, 0), ...}) = 0
fstat(0, {st_mode=S_IFCHR|0620, st_rdev=makedev(136, 0), ...}) = 0
fstat(1, {st_mode=S_IFCHR|0620, st_rdev=makedev(136, 0), ...}) = 0
fstat(2, {st_mode=S_IFCHR|0620, st_rdev=makedev(136, 0), ...}) = 0
readlink("/usr/bin/python", 0x7fffe41f94d0, 4096) = -1 EINVAL (Invalid argument)
stat("/usr/bin/Modules/Setup", 0x7fffe41f9390) = -1 ENOENT (No such file or directory)
stat("/usr/bin/lib64/python2.6/os.py", 0x7fffe41f9380) = -1 ENOENT (No such file or directory)
stat("/usr/bin/lib64/python2.6/os.pyc", 0x7fffe41f9380) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/os.py", {st_mode=S_IFREG|0644, st_size=26338, ...}) = 0
stat("/usr/bin/Modules/Setup", 0x7fffe41f9390) = -1 ENOENT (No such file or directory)
stat("/usr/bin/lib64/python2.6/lib-dynload", 0x7fffe41f9440) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
mmap(NULL, 266240, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb99123b000
rt_sigaction(SIGPIPE, {SIG_IGN, [], SA_RESTORER, 0x3208c0f4a0}, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGXFSZ, {SIG_IGN, [], SA_RESTORER, 0x3208c0f4a0}, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGHUP, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGINT, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGQUIT, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGILL, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGTRAP, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGABRT, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGBUS, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGFPE, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGKILL, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGUSR1, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGSEGV, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGUSR2, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGPIPE, NULL, {SIG_IGN, [], SA_RESTORER, 0x3208c0f4a0}, 8) = 0
rt_sigaction(SIGALRM, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGTERM, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGSTKFLT, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGCHLD, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGCONT, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGSTOP, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGTSTP, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGTTIN, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGTTOU, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGURG, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGXCPU, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGXFSZ, NULL, {SIG_IGN, [], SA_RESTORER, 0x3208c0f4a0}, 8) = 0
rt_sigaction(SIGVTALRM, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGPROF, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGWINCH, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGIO, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGPWR, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGSYS, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_2, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_3, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_4, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_5, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_6, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_7, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_8, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_9, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_10, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_11, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_12, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_13, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_14, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_15, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_16, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_17, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_18, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_19, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_20, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_21, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_22, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_23, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_24, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_25, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_26, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_27, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_28, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_29, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_30, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_31, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_32, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGINT, {0x321550d410, [], SA_RESTORER, 0x3208c0f4a0}, {SIG_DFL, [], 0}, 8) = 0
stat("/usr/lib64/python26.zip", 0x7fffe41f4d60) = -1 ENOENT (No such file or directory)
stat("/usr/lib64", {st_mode=S_IFDIR|0755, st_size=65536, ...}) = 0
stat("/usr/lib64/python26.zip", 0x7fffe41f7de0) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/", {st_mode=S_IFDIR|0755, st_size=20480, ...}) = 0
stat("/usr/lib64/python2.6/", {st_mode=S_IFDIR|0755, st_size=20480, ...}) = 0
stat("/usr/lib64/python2.6/site", 0x7fffe41f8160) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/sitemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site.py", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=19187, ...}) = 0
open("/usr/lib64/python2.6/site.pyc", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=18825, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb99123a000
read(4, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\6\0\0\0@\0\0\0sT\1\0\0d\0"..., 4096) = 4096
fstat(4, {st_mode=S_IFREG|0644, st_size=18825, ...}) = 0
read(4, ".3st\20\0\0\0gettotalrefcounts\10\0\0\0-py"..., 12288) = 12288
read(4, "v for traceback(\t\0\0\0t\r\0\0\0usercus"..., 4096) = 2441
read(4, "", 4096)                       = 0
close(4)                                = 0
munmap(0x7fb99123a000, 4096)            = 0
stat("/usr/lib64/python2.6/os", 0x7fffe41f4b50) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/os.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/osmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/os.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=26338, ...}) = 0
open("/usr/lib64/python2.6/os.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=26411, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb99123a000
read(5, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\36\0\0\0@\0\0\0sH\7\0\0d\0"..., 4096) = 4096
fstat(5, {st_mode=S_IFREG|0644, st_size=26411, ...}) = 0
read(5, "y intermediate path segment (not"..., 20480) = 20480
read(5, "64/python2.6/os.pyt\24\0\0\0_make_sta"..., 4096) = 1835
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7fb99123a000, 4096)            = 0
brk(0x239e000)                          = 0x239e000
stat("/usr/lib64/python2.6/posixpath", 0x7fffe41f1540) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/posixpath.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/posixpathmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/posixpath.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=13119, ...}) = 0
open("/usr/lib64/python2.6/posixpath.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=11188, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb99123a000
read(6, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0+\0\0\0@\0\0\0s\320\1\0\0d\0"..., 4096) = 4096
fstat(6, {st_mode=S_IFREG|0644, st_size=11188, ...}) = 0
read(6, "\0\0True(\2\0\0\0R0\0\0\0RB\0\0\0(\0\0\0\0(\0\0\0\0s"..., 4096) = 4096
read(6, "\0i\2\0d\3\0\203\1\0}\3\0|\3\0o+\0\1|\0\0i\2\0d\6\0\203\1\0"..., 4096) = 2996
read(6, "", 4096)                       = 0
close(6)                                = 0
munmap(0x7fb99123a000, 4096)            = 0
stat("/usr/lib64/python2.6/stat", 0x7fffe41edf30) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/stat.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/statmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/stat.py", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=1718, ...}) = 0
open("/usr/lib64/python2.6/stat.pyc", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=2703, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb99123a000
read(7, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\1\0\0\0@\0\0\0so\1\0\0d\0"..., 4096) = 2703
fstat(7, {st_mode=S_IFREG|0644, st_size=2703, ...}) = 0
read(7, "", 4096)                       = 0
close(7)                                = 0
munmap(0x7fb99123a000, 4096)            = 0
close(6)                                = 0
stat("/usr/lib64/python2.6/genericpath", 0x7fffe41edf30) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/genericpath.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/genericpathmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/genericpath.py", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=3020, ...}) = 0
open("/usr/lib64/python2.6/genericpath.pyc", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=3292, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb99123a000
read(7, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\n\0\0\0@\0\0\0s\221\0\0\0d\0"..., 4096) = 3292
fstat(7, {st_mode=S_IFREG|0644, st_size=3292, ...}) = 0
read(7, "", 4096)                       = 0
close(7)                                = 0
munmap(0x7fb99123a000, 4096)            = 0
close(6)                                = 0
stat("/usr/lib64/python2.6/warnings", 0x7fffe41edf30) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/warnings.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/warningsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/warnings.py", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=14172, ...}) = 0
open("/usr/lib64/python2.6/warnings.pyc", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=13042, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb99123a000
read(7, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\r\0\0\0@\0\0\0s3\2\0\0d\0"..., 4096) = 4096
fstat(7, {st_mode=S_IFREG|0644, st_size=13042, ...}) = 0
read(7, "\0\1Wq\7\0\4t\1\0j\n\0o\34\0\1\1}\2\0\1t\2\0i\3\0\4d\1\0"..., 8192) = 8192
read(7, "\0\0\0__exit__i\1\0\0s\10\0\0\0\0\1\n\1\24\1\17\1N(\t\0"..., 4096) = 754
read(7, "", 4096)                       = 0
mmap(NULL, 200704, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb991209000
close(7)                                = 0
munmap(0x7fb99123a000, 4096)            = 0
stat("/usr/lib64/python2.6/linecache", 0x7fffe41ea920) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/linecache.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/linecachemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/linecache.py", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=4128, ...}) = 0
open("/usr/lib64/python2.6/linecache.pyc", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=3268, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb99123a000
read(8, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\5\0\0\0@\0\0\0sp\0\0\0d\0"..., 4096) = 3268
fstat(8, {st_mode=S_IFREG|0644, st_size=3268, ...}) = 0
read(8, "", 4096)                       = 0
close(8)                                = 0
munmap(0x7fb99123a000, 4096)            = 0
close(7)                                = 0
stat("/usr/lib64/python2.6/types", 0x7fffe41ea920) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/types.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/typesmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/types.py", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=2323, ...}) = 0
open("/usr/lib64/python2.6/types.pyc", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=2620, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb99123a000
read(8, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\17\0\0\0@\0\0\0so\2\0\0d\0"..., 4096) = 2620
fstat(8, {st_mode=S_IFREG|0644, st_size=2620, ...}) = 0
read(8, "", 4096)                       = 0
close(8)                                = 0
munmap(0x7fb99123a000, 4096)            = 0
close(7)                                = 0
close(6)                                = 0
close(5)                                = 0
stat("/usr/lib64/python2.6/UserDict", 0x7fffe41f1540) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/UserDict.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/UserDictmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/UserDict.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=5778, ...}) = 0
open("/usr/lib64/python2.6/UserDict.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=8892, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb99123a000
read(6, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\4\0\0\0@\0\0\0sb\0\0\0d\0"..., 4096) = 4096
fstat(6, {st_mode=S_IFREG|0644, st_size=8892, ...}) = 0
read(6, "\0\0(\0\0\0\0(\0\0\0\0s \0\0\0/usr/lib64/pyth"..., 4096) = 4096
read(6, "|\1\0t\2\0\203\2\0o\26\0\1t\3\0|\1\0i\4\0\203\0\0\203\1\0}\1\0n"..., 4096) = 700
read(6, "", 4096)                       = 0
close(6)                                = 0
munmap(0x7fb99123a000, 4096)            = 0
stat("/usr/lib64/python2.6/_abcoll", 0x7fffe41edf30) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_abcoll.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_abcollmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_abcoll.py", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=13913, ...}) = 0
open("/usr/lib64/python2.6/_abcoll.pyc", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=21300, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb99123a000
read(7, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\22\0\0\0@\0\0\0sI\2\0\0d\0"..., 4096) = 4096
fstat(7, {st_mode=S_IFREG|0644, st_size=21300, ...}) = 0
read(7, "ll.pyt\f\0\0\0__contains__l\0\0\0s\2\0\0\0\0"..., 16384) = 16384
read(7, "\2\0\0\0\2\0\0\0\3\0\0\0C\0\0\0s\24\0\0\0|\0\0|\0\0i\0\0|\1"..., 4096) = 820
read(7, "", 4096)                       = 0
mmap(NULL, 266240, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9911c8000
close(7)                                = 0
munmap(0x7fb99123a000, 4096)            = 0
stat("/usr/lib64/python2.6/abc", 0x7fffe41ea920) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/abc.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/abcmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/abc.py", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=7034, ...}) = 0
open("/usr/lib64/python2.6/abc.pyc", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=6071, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb99123a000
read(8, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0sa\0\0\0d\0"..., 4096) = 4096
fstat(8, {st_mode=S_IFREG|0644, st_size=6071, ...}) = 0
read(8, "\0\4d\1\0|\0\0i\0\0|\0\0i\1\0f\2\0\26\2IJ|\1\0\4d\2\0t"..., 4096) = 1975
read(8, "", 4096)                       = 0
close(8)                                = 0
munmap(0x7fb99123a000, 4096)            = 0
close(7)                                = 0
close(6)                                = 0
close(5)                                = 0
brk(0x23bf000)                          = 0x23bf000
stat("/usr/lib64/python2.6/copy_reg", 0x7fffe41f1540) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/copy_reg.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/copy_regmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/copy_reg.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=6800, ...}) = 0
open("/usr/lib64/python2.6/copy_reg.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=5178, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb99123a000
read(6, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\10\0\0\0@\0\0\0s\330\0\0\0d\0"..., 4096) = 4096
fstat(6, {st_mode=S_IFREG|0644, st_size=5178, ...}) = 0
read(6, "already registered with code %ss"..., 4096) = 1082
read(6, "", 4096)                       = 0
close(6)                                = 0
munmap(0x7fb99123a000, 4096)            = 0
close(5)                                = 0
close(4)                                = 0
geteuid()                               = 0
getuid()                                = 0
getegid()                               = 0
getgid()                                = 0
stat("/root/.local/lib/python2.6/site-packages", 0x7fffe41f89c0) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
open("/usr/lib64/python2.6/site-packages", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 4
fcntl(4, F_GETFD)                       = 0x1 (flags FD_CLOEXEC)
getdents(4, /* 135 entries */, 32768)   = 4880
getdents(4, /* 0 entries */, 32768)     = 0
close(4)                                = 0
open("/usr/lib64/python2.6/site-packages/pygst.pth", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=9, ...}) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=9, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb99123a000
read(4, "gst-0.10\n", 8192)             = 9
read(4, "", 4096)                       = 0
stat("/usr/lib64/python2.6/site-packages/gst-0.10", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
read(4, "", 8192)                       = 0
close(4)                                = 0
munmap(0x7fb99123a000, 4096)            = 0
open("/usr/lib64/python2.6/site-packages/pygtk.pth", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=8, ...}) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=8, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb99123a000
read(4, "gtk-2.0\n", 8192)              = 8
read(4, "", 4096)                       = 0
stat("/usr/lib64/python2.6/site-packages/gtk-2.0", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
read(4, "", 8192)                       = 0
close(4)                                = 0
munmap(0x7fb99123a000, 4096)            = 0
open("/usr/lib64/python2.6/site-packages/webkit-1.0.pth", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=11, ...}) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=11, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb99123a000
read(4, "webkit-1.0\n", 8192)           = 11
read(4, "", 4096)                       = 0
stat("/usr/lib64/python2.6/site-packages/webkit-1.0", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
read(4, "", 8192)                       = 0
close(4)                                = 0
munmap(0x7fb99123a000, 4096)            = 0
stat("/usr/lib/python2.6/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
open("/usr/lib/python2.6/site-packages", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 4
getdents(4, /* 77 entries */, 32768)    = 3048
getdents(4, /* 0 entries */, 32768)     = 0
close(4)                                = 0
open("/usr/lib/python2.6/site-packages/abrt.pth", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=30, ...}) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=30, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb99123a000
read(4, "import abrt_exception_handler\n", 8192) = 30
read(4, "", 4096)                       = 0
brk(0x23e0000)                          = 0x23e0000
brk(0x23d8000)                          = 0x23d8000
brk(0x23d7000)                          = 0x23d7000
stat("/usr/lib64/python2.6", {st_mode=S_IFDIR|0755, st_size=20480, ...}) = 0
stat("/usr/lib64/python2.6", {st_mode=S_IFDIR|0755, st_size=20480, ...}) = 0
stat("/usr/lib64/python2.6/abrt_exception_handler", 0x7fffe41f4160) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/abrt_exception_handler.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/abrt_exception_handlermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/abrt_exception_handler.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/abrt_exception_handler.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python2.6/plat-linux2", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python2.6/plat-linux2/abrt_exception_handler", 0x7fffe41f4160) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/abrt_exception_handler.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/abrt_exception_handlermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/abrt_exception_handler.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/abrt_exception_handler.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-tk", 0x7fffe41f0d60) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6", {st_mode=S_IFDIR|0755, st_size=20480, ...}) = 0
stat("/usr/lib64/python2.6/lib-tk", 0x7fffe41f3de0) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-old", 0x7fffe41f0d60) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6", {st_mode=S_IFDIR|0755, st_size=20480, ...}) = 0
stat("/usr/lib64/python2.6/lib-old", 0x7fffe41f3de0) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python2.6/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python2.6/lib-dynload/abrt_exception_handler", 0x7fffe41f4160) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/abrt_exception_handler.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/abrt_exception_handlermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/abrt_exception_handler.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/abrt_exception_handler.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python2.6/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python2.6/site-packages/abrt_exception_handler", 0x7fffe41f4160) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/abrt_exception_handler.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/abrt_exception_handlermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/abrt_exception_handler.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/abrt_exception_handler.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/gst-0.10", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python2.6/site-packages/gst-0.10", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python2.6/site-packages/gst-0.10/abrt_exception_handler", 0x7fffe41f4160) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/abrt_exception_handler.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/abrt_exception_handlermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/abrt_exception_handler.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/abrt_exception_handler.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/gtk-2.0", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python2.6/site-packages/gtk-2.0", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python2.6/site-packages/gtk-2.0/abrt_exception_handler", 0x7fffe41f4160) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/abrt_exception_handler.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/abrt_exception_handlermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/abrt_exception_handler.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/abrt_exception_handler.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/webkit-1.0", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python2.6/site-packages/webkit-1.0", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python2.6/site-packages/webkit-1.0/abrt_exception_handler", 0x7fffe41f4160) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/abrt_exception_handler.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/abrt_exception_handlermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/abrt_exception_handler.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/abrt_exception_handler.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python2.6/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python2.6/site-packages/abrt_exception_handler", 0x7fffe41f4160) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/abrt_exception_handler.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/abrt_exception_handlermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/abrt_exception_handler.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=5680, ...}) = 0
open("/usr/lib/python2.6/site-packages/abrt_exception_handler.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=3727, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(6, "\321\362\r\n\36\35\350Nc\0\0\0\0\0\0\0\0\10\0\0\0@\0\0\0s\232\0\0\0d\0"..., 4096) = 3727
fstat(6, {st_mode=S_IFREG|0644, st_size=3727, ...}) = 0
read(6, "", 4096)                       = 0
close(6)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/lib64/python2.6/socket", 0x7fffe41f0b50) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/socket.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/socketmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/socket.py", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=20149, ...}) = 0
open("/usr/lib64/python2.6/socket.pyc", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=16129, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(7, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0!\0\0\0@\0\0\0sS\3\0\0d\0"..., 4096) = 4096
fstat(7, {st_mode=S_IFREG|0644, st_size=16129, ...}) = 0
read(7, "o\7\0\1\1\1\1n;\0\1X|\2\0i\4\0d\2\0|\1\0\203\2\0\1x&\0|"..., 8192) = 8192
read(7, "\0\1t\6\0\203\0\0|\0\0_\0\0|\0\0i\0\0i\7\0|\2\0i\10\0\203\0\0"..., 4096) = 3841
read(7, "", 4096)                       = 0
close(7)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/lib64/python2.6/_socket", 0x7fffe41ed540) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_socket.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_socketmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_socket.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_socket.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/_socket", 0x7fffe41ed540) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_socket.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_socketmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_socket.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_socket.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/_socket", 0x7fffe41ed540) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/_socket.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/_socketmodule.so", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0555, st_size=60752, ...}) = 0
futex(0x32086030ec, FUTEX_WAKE_PRIVATE, 2147483647) = 0
open("/usr/lib64/python2.6/lib-dynload/_socketmodule.so", O_RDONLY) = 8
read(8, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0201\0\0\0\0\0\0"..., 832) = 832
fstat(8, {st_mode=S_IFREG|0555, st_size=60752, ...}) = 0
mmap(NULL, 2155960, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x7fb990fb9000
mprotect(0x7fb990fc4000, 2097152, PROT_NONE) = 0
mmap(0x7fb9911c4000, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0xb000) = 0x7fb9911c4000
close(8)                                = 0
close(7)                                = 0
stat("/usr/lib64/python2.6/_ssl", 0x7fffe41ed540) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_ssl.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_sslmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_ssl.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_ssl.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/_ssl", 0x7fffe41ed540) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_ssl.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_sslmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_ssl.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_ssl.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/_ssl", 0x7fffe41ed540) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/_ssl.so", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0555, st_size=33216, ...}) = 0
open("/usr/lib64/python2.6/lib-dynload/_ssl.so", O_RDONLY) = 8
read(8, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\2000\0\0\0\0\0\0"..., 832) = 832
fstat(8, {st_mode=S_IFREG|0555, st_size=33216, ...}) = 0
mmap(NULL, 2128440, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x7fb990db1000
mprotect(0x7fb990db8000, 2093056, PROT_NONE) = 0
mmap(0x7fb990fb7000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x6000) = 0x7fb990fb7000
close(8)                                = 0
open("/etc/ld.so.cache", O_RDONLY)      = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=81064, ...}) = 0
mmap(NULL, 81064, PROT_READ, MAP_PRIVATE, 8, 0) = 0x7fb9912c2000
close(8)                                = 0
open("/usr/lib64/libssl.so.10", O_RDONLY) = 8
read(8, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0pE\301\0272\0\0\0"..., 832) = 832
fstat(8, {st_mode=S_IFREG|0755, st_size=375352, ...}) = 0
mmap(0x3217c00000, 2467888, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x3217c00000
mprotect(0x3217c53000, 2097152, PROT_NONE) = 0
mmap(0x3217e53000, 32768, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x53000) = 0x3217e53000
close(8)                                = 0
open("/usr/lib64/libcrypto.so.10", O_RDONLY) = 8
read(8, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\312E\0252\0\0\0"..., 832) = 832
fstat(8, {st_mode=S_IFREG|0755, st_size=1661232, ...}) = 0
mmap(0x3215400000, 3769480, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x7fb990a18000
mprotect(0x7fb990b8b000, 2093056, PROT_NONE) = 0
mmap(0x7fb990d8a000, 143360, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x172000) = 0x7fb990d8a000
mmap(0x7fb990dad000, 13448, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fb990dad000
close(8)                                = 0
open("/lib64/libgssapi_krb5.so.2", O_RDONLY) = 8
read(8, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\200\235\0\0262\0\0\0"..., 832) = 832
fstat(8, {st_mode=S_IFREG|0755, st_size=272360, ...}) = 0
mmap(0x3216000000, 2365152, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x3216000000
mprotect(0x321603f000, 2097152, PROT_NONE) = 0
mmap(0x321623f000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x3f000) = 0x321623f000
close(8)                                = 0
open("/lib64/libkrb5.so.3", O_RDONLY)   = 8
read(8, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20\246\301\0242\0\0\0"..., 832) = 832
fstat(8, {st_mode=S_IFREG|0755, st_size=915736, ...}) = 0
mmap(0x3214c00000, 3008864, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x3214c00000
mprotect(0x3214cd4000, 2097152, PROT_NONE) = 0
mmap(0x3214ed4000, 45056, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0xd4000) = 0x3214ed4000
close(8)                                = 0
open("/lib64/libcom_err.so.2", O_RDONLY) = 8
read(8, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360\23\200\0232\0\0\0"..., 832) = 832
fstat(8, {st_mode=S_IFREG|0755, st_size=17256, ...}) = 0
mmap(0x3213800000, 2109872, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x3213800000
mprotect(0x3213803000, 2093056, PROT_NONE) = 0
mmap(0x3213a02000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x2000) = 0x3213a02000
close(8)                                = 0
open("/lib64/libk5crypto.so.3", O_RDONLY) = 8
read(8, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\300G@\0242\0\0\0"..., 832) = 832
fstat(8, {st_mode=S_IFREG|0755, st_size=181632, ...}) = 0
mmap(0x3214400000, 2275296, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x3214400000
mprotect(0x321442a000, 2093056, PROT_NONE) = 0
mmap(0x3214629000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x29000) = 0x3214629000
close(8)                                = 0
open("/lib64/libz.so.1", O_RDONLY)      = 8
read(8, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000\37\200\t2\0\0\0"..., 832) = 832
fstat(8, {st_mode=S_IFREG|0755, st_size=90952, ...}) = 0
mmap(0x3209800000, 2183696, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x3209800000
mprotect(0x3209815000, 2093056, PROT_NONE) = 0
mmap(0x3209a14000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x14000) = 0x3209a14000
close(8)                                = 0
open("/lib64/libkrb5support.so.0", O_RDONLY) = 8
read(8, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0@(\200\0252\0\0\0"..., 832) = 832
fstat(8, {st_mode=S_IFREG|0755, st_size=46336, ...}) = 0
mmap(0x3215800000, 2139184, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x3215800000
mprotect(0x321580a000, 2093056, PROT_NONE) = 0
mmap(0x3215a09000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x9000) = 0x3215a09000
close(8)                                = 0
open("/lib64/libkeyutils.so.1", O_RDONLY) = 8
read(8, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360\v\0\0242\0\0\0"..., 832) = 832
fstat(8, {st_mode=S_IFREG|0755, st_size=12592, ...}) = 0
mmap(0x3214000000, 2105424, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x3214000000
mprotect(0x3214002000, 2093056, PROT_NONE) = 0
mmap(0x3214201000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x1000) = 0x3214201000
close(8)                                = 0
open("/lib64/libresolv.so.2", O_RDONLY) = 8
read(8, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\00009@\n2\0\0\0"..., 832) = 832
fstat(8, {st_mode=S_IFREG|0755, st_size=113952, ...}) = 0
mmap(0x320a400000, 2202248, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x320a400000
mprotect(0x320a416000, 2097152, PROT_NONE) = 0
mmap(0x320a616000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x16000) = 0x320a616000
mmap(0x320a618000, 6792, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x320a618000
close(8)                                = 0
open("/lib64/libselinux.so.1", O_RDONLY) = 8
read(8, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0PX\0\n2\0\0\0"..., 832) = 832
fstat(8, {st_mode=S_IFREG|0755, st_size=124624, ...}) = 0
mmap(0x320a000000, 2221912, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x320a000000
mprotect(0x320a01d000, 2093056, PROT_NONE) = 0
mmap(0x320a21c000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x1c000) = 0x320a21c000
mmap(0x320a21e000, 1880, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x320a21e000
close(8)                                = 0
mprotect(0x320a21c000, 4096, PROT_READ) = 0
mprotect(0x320a616000, 4096, PROT_READ) = 0
mprotect(0x3214201000, 4096, PROT_READ) = 0
mprotect(0x3215a09000, 4096, PROT_READ) = 0
mprotect(0x3209a14000, 4096, PROT_READ) = 0
mprotect(0x3214629000, 8192, PROT_READ) = 0
mprotect(0x3213a02000, 4096, PROT_READ) = 0
mprotect(0x3214ed4000, 36864, PROT_READ) = 0
mprotect(0x321623f000, 4096, PROT_READ) = 0
mprotect(0x7fb990d8a000, 102400, PROT_READ) = 0
mprotect(0x3217e53000, 12288, PROT_READ) = 0
statfs("/selinux", {f_type=0xf97cff8c, f_bsize=4096, f_blocks=0, f_bfree=0, f_bavail=0, f_files=0, f_ffree=0, f_fsid={0, 0}, f_namelen=255, f_frsize=4096}) = 0
munmap(0x7fb9912c2000, 81064)           = 0
brk(0x23f8000)                          = 0x23f8000
open("/proc/sys/crypto/fips_enabled", O_RDONLY) = -1 ENOENT (No such file or directory)
close(7)                                = 0
stat("/usr/lib64/python2.6/cStringIO", 0x7fffe41ed540) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/cStringIO.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/cStringIOmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/cStringIO.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/cStringIO.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/cStringIO", 0x7fffe41ed540) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/cStringIO.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/cStringIOmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/cStringIO.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/cStringIO.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/cStringIO", 0x7fffe41ed540) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/cStringIO.so", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0555, st_size=20112, ...}) = 0
open("/usr/lib64/python2.6/lib-dynload/cStringIO.so", O_RDONLY) = 8
read(8, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\240\32\0\0\0\0\0\0"..., 832) = 832
fstat(8, {st_mode=S_IFREG|0555, st_size=20112, ...}) = 0
mmap(NULL, 2115288, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x7fb990813000
mprotect(0x7fb990817000, 2093056, PROT_NONE) = 0
mmap(0x7fb990a16000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x3000) = 0x7fb990a16000
close(8)                                = 0
close(7)                                = 0
brk(0x241a000)                          = 0x241a000
brk(0x2411000)                          = 0x2411000
close(6)                                = 0
close(5)                                = 0
read(4, "", 8192)                       = 0
close(4)                                = 0
munmap(0x7fb99123a000, 4096)            = 0
stat("/usr/lib/site-python", 0x7fffe41f89c0) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/sitecustomize", 0x7fffe41f4870) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/sitecustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/sitecustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/sitecustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/sitecustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/sitecustomize", 0x7fffe41f4870) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/sitecustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/sitecustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/sitecustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/sitecustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/sitecustomize", 0x7fffe41f4870) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/sitecustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/sitecustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/sitecustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/sitecustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/sitecustomize", 0x7fffe41f4870) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/sitecustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/sitecustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/sitecustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/sitecustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/gst-0.10/sitecustomize", 0x7fffe41f4870) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/sitecustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/sitecustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/sitecustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/sitecustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/gtk-2.0/sitecustomize", 0x7fffe41f4870) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/sitecustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/sitecustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/sitecustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/sitecustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/webkit-1.0/sitecustomize", 0x7fffe41f4870) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/sitecustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/sitecustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/sitecustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/sitecustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/sitecustomize", 0x7fffe41f4870) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/sitecustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/sitecustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/sitecustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/sitecustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/usercustomize", 0x7fffe41f4870) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/usercustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/usercustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/usercustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/usercustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/usercustomize", 0x7fffe41f4870) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/usercustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/usercustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/usercustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/usercustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/usercustomize", 0x7fffe41f4870) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/usercustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/usercustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/usercustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/usercustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/usercustomize", 0x7fffe41f4870) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/usercustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/usercustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/usercustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/usercustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/gst-0.10/usercustomize", 0x7fffe41f4870) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/usercustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/usercustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/usercustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/usercustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/gtk-2.0/usercustomize", 0x7fffe41f4870) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/usercustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/usercustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/usercustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/usercustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/webkit-1.0/usercustomize", 0x7fffe41f4870) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/usercustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/usercustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/usercustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/usercustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/usercustomize", 0x7fffe41f4870) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/usercustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/usercustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/usercustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/usercustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
close(3)                                = 0
open("/usr/lib/locale/locale-archive", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=99158704, ...}) = 0
mmap(NULL, 99158704, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fb98a982000
close(3)                                = 0
stat("/usr/lib64/python2.6/encodings", {st_mode=S_IFDIR|0755, st_size=16384, ...}) = 0
stat("/usr/lib64/python2.6/encodings/__init__.py", {st_mode=S_IFREG|0644, st_size=5638, ...}) = 0
stat("/usr/lib64/python2.6/encodings/__init__", 0x7fffe41f7260) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/__init__.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/__init__module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/__init__.py", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=5638, ...}) = 0
open("/usr/lib64/python2.6/encodings/__init__.pyc", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=4416, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(4, "\321\362\r\n!\321\337Nc\0\0\0\0\0\0\0\0\6\0\0\0@\0\0\0s\216\0\0\0d\0"..., 4096) = 4096
fstat(4, {st_mode=S_IFREG|0644, st_size=4416, ...}) = 0
read(4, "\3\23\1\r\1\16\1\5\2\5\2\6\2\3\1\r\1\16\2\v\2\r\2\n\1\5\3\t\1\23\1$"..., 4096) = 320
read(4, "", 4096)                       = 0
close(4)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/lib64/python2.6/encodings", {st_mode=S_IFDIR|0755, st_size=16384, ...}) = 0
stat("/usr/lib64/python2.6/encodings", {st_mode=S_IFDIR|0755, st_size=16384, ...}) = 0
stat("/usr/lib64/python2.6/encodings/codecs", 0x7fffe41f3c50) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/codecs.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/codecsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/codecs.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/codecs.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/codecs", 0x7fffe41f3c50) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/codecs.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/codecsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/codecs.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=35266, ...}) = 0
open("/usr/lib64/python2.6/codecs.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=36721, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(5, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\36\0\0\0@\0\0\0sA\3\0\0d\0"..., 4096) = 4096
fstat(5, {st_mode=S_IFREG|0644, st_size=36721, ...}) = 0
read(5, "\0\0\0C\0\0\0s\n\0\0\0t\0\0\202\1\0d\1\0S(\2\0\0\0s\372\2\0\0"..., 28672) = 28672
read(5, " incremental encoder.\n\n    N(\4\0\0"..., 4096) = 3953
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
close(4)                                = 0
stat("/usr/lib64/python2.6/encodings/encodings", 0x7fffe41f3c50) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/encodings.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/encodingsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/encodings.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/encodings.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/encodings/aliases", 0x7fffe41f3c40) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/aliases.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/aliasesmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/aliases.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=14721, ...}) = 0
open("/usr/lib64/python2.6/encodings/aliases.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=8701, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(5, "\321\362\r\n!\321\337Nc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0s`\10\0\0d\0"..., 4096) = 4096
fstat(5, {st_mode=S_IFREG|0644, st_size=8701, ...}) = 0
read(5, "ibm861t\5\0\0\0cp862t\3\0\0\000862t\22\0\0\0csp"..., 4096) = 4096
read(5, "\1\7\3\7\1\7\1\7\1\7\3\7\1\7\1\7\3\7\1\7\1\7\1\7\1\7\3\7\1\7\1\7"..., 4096) = 509
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
close(4)                                = 0
stat("/usr/lib64/python2.6/encodings/__builtin__", 0x7fffe41f3c50) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/__builtin__.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/__builtin__module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/__builtin__.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/__builtin__.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
close(3)                                = 0
stat("/usr/lib64/python2.6/encodings/utf_8", 0x7fffe41f7f80) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/utf_8.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/utf_8module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/utf_8.py", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1005, ...}) = 0
open("/usr/lib64/python2.6/encodings/utf_8.pyc", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=1966, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(4, "\321\362\r\n\"\321\337Nc\0\0\0\0\0\0\0\0\4\0\0\0@\0\0\0s\230\0\0\0d\0"..., 4096) = 1966
fstat(4, {st_mode=S_IFREG|0644, st_size=1966, ...}) = 0
read(4, "", 4096)                       = 0
close(4)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
close(3)                                = 0
ioctl(0, SNDCTL_TMR_TIMEBASE or TCGETS, {B38400 opost isig icanon echo ...}) = 0
ioctl(1, SNDCTL_TMR_TIMEBASE or TCGETS, {B38400 opost isig icanon echo ...}) = 0
ioctl(2, SNDCTL_TMR_TIMEBASE or TCGETS, {B38400 opost isig icanon echo ...}) = 0
readlink("/usr/bin/virt-install", 0x7fffe41fa630, 4096) = -1 EINVAL (Invalid argument)
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=69632, ...}) = 0
lstat("/usr/bin/virt-install", {st_mode=S_IFREG|0755, st_size=36737, ...}) = 0
stat("/usr/bin/virt-install", {st_mode=S_IFREG|0755, st_size=36737, ...}) = 0
open("/usr/bin/virt-install", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0755, st_size=36737, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
fstat(3, {st_mode=S_IFREG|0755, st_size=36737, ...}) = 0
lseek(3, 32768, SEEK_SET)               = 32768
read(3, "apic\",\n                    defau"..., 3947) = 3947
read(3, "\n        fail(main_e)\n", 4096) = 22
close(3)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/bin/virt-install", {st_mode=S_IFREG|0755, st_size=36737, ...}) = 0
open("/usr/bin/virt-install", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0755, st_size=36737, ...}) = 0
ioctl(3, SNDCTL_TMR_TIMEBASE or TCGETS, 0x7fffe41fc5c0) = -1 ENOTTY (Inappropriate ioctl for device)
fstat(3, {st_mode=S_IFREG|0755, st_size=36737, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
lseek(3, 0, SEEK_CUR)                   = 0
read(3, "#!/usr/bin/python -tt\n#\n# Script"..., 4096) = 4096
lseek(3, 4096, SEEK_SET)                = 4096
mmap(NULL, 266240, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb98a941000
read(3, "esystem device parameters: %s\") "..., 4096) = 4096
brk(0x2432000)                          = 0x2432000
mmap(NULL, 266240, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb98a900000
read(3, "thod '%s', hv type '%s'.\" %\n    "..., 4096) = 4096
read(3, "lse) and\n        options.diskopt"..., 4096) = 4096
mmap(NULL, 266240, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb98a8bf000
read(3, "ions.filesystems, guest)\n    cli"..., 4096) = 4096
mmap(NULL, 266240, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb98a87e000
read(3, " wait_on_install\n\n    # --wait 0"..., 4096) = 4096
read(3, "ception, e:\n                rais"..., 4096) = 4096
mmap(NULL, 266240, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb98a83d000
read(3, " a Live CD\"))\n    insg.add_optio"..., 4096) = 4096
mmap(NULL, 266240, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb98a7fc000
read(3, "apic\",\n                    defau"..., 4096) = 3969
read(3, "", 4096)                       = 0
brk(0x2453000)                          = 0x2453000
brk(0x2477000)                          = 0x2477000
munmap(0x7fb98a83d000, 266240)          = 0
munmap(0x7fb98a87e000, 266240)          = 0
munmap(0x7fb98a8bf000, 266240)          = 0
munmap(0x7fb98a900000, 266240)          = 0
munmap(0x7fb98a941000, 266240)          = 0
close(3)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=69632, ...}) = 0
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=69632, ...}) = 0
stat("/usr/bin/time", {st_mode=S_IFREG|0755, st_size=17944, ...}) = 0
open("/usr/bin/time.so", O_RDONLY)      = -1 ENOENT (No such file or directory)
open("/usr/bin/timemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/time.py", O_RDONLY)      = -1 ENOENT (No such file or directory)
open("/usr/bin/time.pyc", O_RDONLY)     = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/time", 0x7fffe41f7fa0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/time.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/timemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/time.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/time.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/time", 0x7fffe41f7fa0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/time.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/timemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/time.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/time.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/time", 0x7fffe41f7fa0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/time.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/timemodule.so", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0555, st_size=20328, ...}) = 0
open("/usr/lib64/python2.6/lib-dynload/timemodule.so", O_RDONLY) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320\30\0\0\0\0\0\0"..., 832) = 832
fstat(4, {st_mode=S_IFREG|0555, st_size=20328, ...}) = 0
mmap(NULL, 2115944, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7fb98a5f7000
mprotect(0x7fb98a5fa000, 2097152, PROT_NONE) = 0
mmap(0x7fb98a7fa000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x3000) = 0x7fb98a7fa000
close(4)                                = 0
time(NULL)                              = 1331870690
open("/etc/localtime", O_RDONLY)        = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=3543, ...}) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=3543, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(4, "TZif2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\5\0\0\0\5\0\0\0\0"..., 4096) = 3543
lseek(4, -2264, SEEK_CUR)               = 1279
read(4, "TZif2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0\0\6\0\0\0\0"..., 4096) = 2264
close(4)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3543, ...}) = 0
close(3)                                = 0
stat("/usr/bin/re", 0x7fffe41f7fa0)     = -1 ENOENT (No such file or directory)
open("/usr/bin/re.so", O_RDONLY)        = -1 ENOENT (No such file or directory)
open("/usr/bin/remodule.so", O_RDONLY)  = -1 ENOENT (No such file or directory)
open("/usr/bin/re.py", O_RDONLY)        = -1 ENOENT (No such file or directory)
open("/usr/bin/re.pyc", O_RDONLY)       = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/re", 0x7fffe41f7fa0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/re.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/remodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/re.py", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=12966, ...}) = 0
open("/usr/lib64/python2.6/re.pyc", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=13164, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(4, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\32\0\0\0@\0\0\0s8\2\0\0d\0"..., 4096) = 4096
fstat(4, {st_mode=S_IFREG|0644, st_size=13164, ...}) = 0
read(4, "ions:\n    match    Match a regul"..., 8192) = 8192
read(4, "\0\0\0mt\1\0\0\0jRR\0\0\0(\0\0\0\0(\0\0\0\0s\32\0\0\0/u"..., 4096) = 876
read(4, "", 4096)                       = 0
close(4)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/bin/sre_compile", 0x7fffe41f4990) = -1 ENOENT (No such file or directory)
open("/usr/bin/sre_compile.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/sre_compilemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/sre_compile.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/sre_compile.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/sre_compile", 0x7fffe41f4990) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/sre_compile.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/sre_compilemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/sre_compile.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=16507, ...}) = 0
open("/usr/lib64/python2.6/sre_compile.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=11483, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(5, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\v\0\0\0@\0\0\0sz\1\0\0d\0"..., 4096) = 4096
fstat(5, {st_mode=S_IFREG|0644, st_size=11483, ...}) = 0
read(5, "pt\2\0\0\0lot\2\0\0\0hit\4\0\0\0tailt\n\0\0\0tai"..., 4096) = 4096
read(5, "yR\37\0\0\0h\1\0\0s\10\0\0\0\0\2\26\1\32\1\r\1c\3\0\0\0\24\0\0\0"..., 4096) = 3291
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/bin/sre_parse", 0x7fffe41f1380) = -1 ENOENT (No such file or directory)
open("/usr/bin/sre_parse.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/sre_parsemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/sre_parse.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/sre_parse.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/sre_parse", 0x7fffe41f1380) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/sre_parse.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/sre_parsemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/sre_parse.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=26878, ...}) = 0
open("/usr/lib64/python2.6/sre_parse.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=19696, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(6, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\6\0\0\0@\0\0\0s\323\2\0\0d\0"..., 4096) = 4096
fstat(6, {st_mode=S_IFREG|0644, st_size=19696, ...}) = 0
read(6, "\0\0R6\0\0\0(\0\0\0\0(\0\0\0\0s!\0\0\0/usr/lib64"..., 12288) = 12288
read(6, "\0t\3\0\0\0strR\211\0\0\0R\26\0\0\0R\27\0\0\0t\16\0\0\0SRE"..., 4096) = 3312
read(6, "", 4096)                       = 0
close(6)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/bin/sre_constants", 0x7fffe41edd70) = -1 ENOENT (No such file or directory)
open("/usr/bin/sre_constants.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/sre_constantsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/sre_constants.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/sre_constants.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/sre_constants", 0x7fffe41edd70) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/sre_constants.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/sre_constantsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/sre_constants.py", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=7137, ...}) = 0
open("/usr/lib64/python2.6/sre_constants.pyc", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=6093, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(7, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0 \0\0\0@\0\0\0s\361\4\0\0d\0"..., 4096) = 4096
fstat(7, {st_mode=S_IFREG|0644, st_size=6093, ...}) = 0
read(7, "d\nt\4\0\0\0doneN(`\0\0\0t\7\0\0\0__doc__t\5\0"..., 4096) = 1997
read(7, "", 4096)                       = 0
close(7)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
close(6)                                = 0
close(5)                                = 0
close(4)                                = 0
close(3)                                = 0
stat("/usr/bin/logging", 0x7fffe41f7fa0) = -1 ENOENT (No such file or directory)
open("/usr/bin/logging.so", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/loggingmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/logging.py", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/logging.pyc", O_RDONLY)  = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/logging", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python2.6/logging/__init__.py", {st_mode=S_IFREG|0644, st_size=53688, ...}) = 0
stat("/usr/lib64/python2.6/logging/__init__", 0x7fffe41f6f40) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/__init__.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/__init__module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/__init__.py", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=53688, ...}) = 0
open("/usr/lib64/python2.6/logging/__init__.pyc", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=51971, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(4, "\321\362\r\n\"\321\337Nc\0\0\0\0\0\0\0\0#\0\0\0@\0\0\0s\3\5\0\0d\0"..., 4096) = 4096
fstat(4, {st_mode=S_IFREG|0644, st_size=51971, ...}) = 0
read(4, " acquired by calling _acquireLoc"..., 45056) = 45056
read(4, "\0\3\0\0\0O\0\0\0s<\0\0\0t\0\0t\1\0i\2\0\203\1\0d\1\0j\2\0"..., 4096) = 2819
read(4, "", 4096)                       = 0
close(4)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/lib64/python2.6/logging", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python2.6/logging", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python2.6/logging/sys", 0x7fffe41f3930) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/sys.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/sysmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/sys.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/sys.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/logging/os", 0x7fffe41f3930) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/os.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/osmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/os.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/os.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/logging/types", 0x7fffe41f3930) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/types.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/typesmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/types.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/types.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/logging/time", 0x7fffe41f3930) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/time.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/timemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/time.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/time.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/logging/string", 0x7fffe41f3930) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/string.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/stringmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/string.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/string.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/bin/string", 0x7fffe41f3930) = -1 ENOENT (No such file or directory)
open("/usr/bin/string.so", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/stringmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/string.py", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/string.pyc", O_RDONLY)   = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/string", 0x7fffe41f3930) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/string.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/stringmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/string.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=20745, ...}) = 0
open("/usr/lib64/python2.6/string.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=20066, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(5, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\10\0\0\0@\0\0\0s\230\2\0\0d\0"..., 4096) = 4096
fstat(5, {st_mode=S_IFREG|0644, st_size=20066, ...}) = 0
read(5, "\0\0s/\1\0\0\n    %(delim)s(?:\n      ("..., 12288) = 12288
read(5, " of string str with all occurren"..., 4096) = 3682
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
brk(0x24d1000)                          = 0x24d1000
stat("/usr/bin/strop", 0x7fffe41f0320)  = -1 ENOENT (No such file or directory)
open("/usr/bin/strop.so", O_RDONLY)     = -1 ENOENT (No such file or directory)
open("/usr/bin/stropmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/strop.py", O_RDONLY)     = -1 ENOENT (No such file or directory)
open("/usr/bin/strop.pyc", O_RDONLY)    = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/strop", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/strop.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/stropmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/strop.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/strop.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/strop", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/strop.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/stropmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/strop.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/strop.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/strop", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/strop.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/stropmodule.so", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0555, st_size=25448, ...}) = 0
open("/usr/lib64/python2.6/lib-dynload/stropmodule.so", O_RDONLY) = 6
read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\26\0\0\0\0\0\0"..., 832) = 832
fstat(6, {st_mode=S_IFREG|0555, st_size=25448, ...}) = 0
mmap(NULL, 2120624, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x7fb98a3f1000
mprotect(0x7fb98a3f6000, 2093056, PROT_NONE) = 0
mmap(0x7fb98a5f5000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x4000) = 0x7fb98a5f5000
close(6)                                = 0
close(5)                                = 0
close(4)                                = 0
stat("/usr/lib64/python2.6/logging/cStringIO", 0x7fffe41f3930) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/cStringIO.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/cStringIOmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/cStringIO.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/cStringIO.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/logging/traceback", 0x7fffe41f3930) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/traceback.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/tracebackmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/traceback.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/traceback.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/bin/traceback", 0x7fffe41f3930) = -1 ENOENT (No such file or directory)
open("/usr/bin/traceback.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/tracebackmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/traceback.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/traceback.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/traceback", 0x7fffe41f3930) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/traceback.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/tracebackmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/traceback.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=11211, ...}) = 0
open("/usr/lib64/python2.6/traceback.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=11677, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(5, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\21\0\0\0@\0\0\0sB\1\0\0d\0"..., 4096) = 4096
fstat(5, {st_mode=S_IFREG|0644, st_size=11677, ...}) = 0
read(5, "source is not\n    available it i"..., 4096) = 4096
read(5, "\0\0\1\3\1\16\1\16\1\5\1\3\1\f\1\24\1\16\1\5\1c\2\0\0\0\5\0\0\0\t\0"..., 4096) = 3485
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
close(4)                                = 0
stat("/usr/lib64/python2.6/logging/codecs", 0x7fffe41f3930) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/codecs.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/codecsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/codecs.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/codecs.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/logging/thread", 0x7fffe41f3930) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/thread.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/threadmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/thread.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/thread.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/logging/threading", 0x7fffe41f3930) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/threading.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/threadingmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/threading.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/threading.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/bin/threading", 0x7fffe41f3930) = -1 ENOENT (No such file or directory)
open("/usr/bin/threading.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/threadingmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/threading.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/threading.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/threading", 0x7fffe41f3930) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/threading.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/threadingmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/threading.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=31808, ...}) = 0
open("/usr/lib64/python2.6/threading.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=28152, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(5, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\33\0\0\0@\0\0\0s6\3\0\0d\0"..., 4096) = 4096
fstat(5, {st_mode=S_IFREG|0644, st_size=28152, ...}) = 0
read(5, "ading.pyt\10\0\0\0__exit__\225\0\0\0s\2\0\0\0\0\1"..., 20480) = 20480
read(5, "\0\1d\0\0S(\r\0\0\0Nt\f\0\0\0BoundedQueuec\0\0"..., 4096) = 3576
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/bin/functools", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/bin/functools.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/functoolsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/functools.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/functools.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/functools", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/functools.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/functoolsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/functools.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=2162, ...}) = 0
open("/usr/lib64/python2.6/functools.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=1927, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(6, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\4\0\0\0@\0\0\0sJ\0\0\0d\0"..., 4096) = 1927
fstat(6, {st_mode=S_IFREG|0644, st_size=1927, ...}) = 0
read(6, "", 4096)                       = 0
close(6)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/bin/_functools", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/bin/_functools.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/_functoolsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/_functools.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/_functools.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/_functools", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_functools.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_functoolsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_functools.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_functools.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/_functools", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_functools.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_functoolsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_functools.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_functools.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/_functools", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/_functools.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/_functoolsmodule.so", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0555, st_size=12256, ...}) = 0
open("/usr/lib64/python2.6/lib-dynload/_functoolsmodule.so", O_RDONLY) = 7
read(7, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\300\16\0\0\0\0\0\0"..., 832) = 832
fstat(7, {st_mode=S_IFREG|0555, st_size=12256, ...}) = 0
mmap(NULL, 2107424, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x7fb98a1ee000
mprotect(0x7fb98a1f0000, 2097152, PROT_NONE) = 0
mmap(0x7fb98a3f0000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0x2000) = 0x7fb98a3f0000
close(7)                                = 0
close(6)                                = 0
close(5)                                = 0
stat("/usr/bin/collections", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/bin/collections.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/collectionsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/collections.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/collections.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/collections", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/collections.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/collectionsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/collections.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=6150, ...}) = 0
open("/usr/lib64/python2.6/collections.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=6631, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(6, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\r\0\0\0@\0\0\0s\306\1\0\0d\0"..., 4096) = 4096
fstat(6, {st_mode=S_IFREG|0644, st_size=6631, ...}) = 0
read(6, " kwds.keys())\n            return"..., 4096) = 2535
read(6, "", 4096)                       = 0
close(6)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/bin/_collections", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/bin/_collections.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/_collectionsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/_collections.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/_collections.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/_collections", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_collections.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_collectionsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_collections.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_collections.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/_collections", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_collections.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_collectionsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_collections.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_collections.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/_collections", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/_collections.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/_collectionsmodule.so", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0555, st_size=30352, ...}) = 0
open("/usr/lib64/python2.6/lib-dynload/_collectionsmodule.so", O_RDONLY) = 7
read(7, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0@!\0\0\0\0\0\0"..., 832) = 832
fstat(7, {st_mode=S_IFREG|0555, st_size=30352, ...}) = 0
mmap(NULL, 2125648, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x7fb989fe7000
mprotect(0x7fb989fed000, 2093056, PROT_NONE) = 0
mmap(0x7fb98a1ec000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0x5000) = 0x7fb98a1ec000
close(7)                                = 0
close(6)                                = 0
stat("/usr/bin/operator", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/bin/operator.so", O_RDONLY)  = -1 ENOENT (No such file or directory)
open("/usr/bin/operatormodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/operator.py", O_RDONLY)  = -1 ENOENT (No such file or directory)
open("/usr/bin/operator.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/operator", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/operator.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/operatormodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/operator.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/operator.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/operator", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/operator.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/operatormodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/operator.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/operator.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/operator", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/operator.so", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0555, st_size=41936, ...}) = 0
open("/usr/lib64/python2.6/lib-dynload/operator.so", O_RDONLY) = 7
read(7, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260>\0\0\0\0\0\0"..., 832) = 832
fstat(7, {st_mode=S_IFREG|0555, st_size=41936, ...}) = 0
mmap(NULL, 2137112, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x7fb989ddd000
mprotect(0x7fb989de5000, 2097152, PROT_NONE) = 0
mmap(0x7fb989fe5000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0x8000) = 0x7fb989fe5000
close(7)                                = 0
close(6)                                = 0
stat("/usr/bin/keyword", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/bin/keyword.so", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/keywordmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/keyword.py", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/keyword.pyc", O_RDONLY)  = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/keyword", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/keyword.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/keywordmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/keyword.py", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0755, st_size=1997, ...}) = 0
open("/usr/lib64/python2.6/keyword.pyc", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=2117, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(7, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\37\0\0\0@\0\0\0s\251\0\0\0d\0"..., 4096) = 2117
fstat(7, {st_mode=S_IFREG|0644, st_size=2117, ...}) = 0
read(7, "", 4096)                       = 0
close(7)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
close(6)                                = 0
close(5)                                = 0
close(4)                                = 0
gettimeofday({1331870690, 502034}, NULL) = 0
stat("/usr/lib64/python2.6/logging/atexit", 0x7fffe41f3930) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/atexit.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/atexitmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/atexit.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/atexit.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/bin/atexit", 0x7fffe41f3930) = -1 ENOENT (No such file or directory)
open("/usr/bin/atexit.so", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/atexitmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/atexit.py", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/atexit.pyc", O_RDONLY)   = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/atexit", 0x7fffe41f3930) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/atexit.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/atexitmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/atexit.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=1705, ...}) = 0
open("/usr/lib64/python2.6/atexit.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=2215, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(5, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\5\0\0\0@\0\0\0s\304\0\0\0d\0"..., 4096) = 2215
fstat(5, {st_mode=S_IFREG|0644, st_size=2215, ...}) = 0
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
close(4)                                = 0
close(3)                                = 0
stat("/usr/bin/optparse", 0x7fffe41f7fa0) = -1 ENOENT (No such file or directory)
open("/usr/bin/optparse.so", O_RDONLY)  = -1 ENOENT (No such file or directory)
open("/usr/bin/optparsemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/optparse.py", O_RDONLY)  = -1 ENOENT (No such file or directory)
open("/usr/bin/optparse.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/optparse", 0x7fffe41f7fa0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/optparse.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/optparsemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/optparse.py", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=60849, ...}) = 0
open("/usr/lib64/python2.6/optparse.pyc", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=54239, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(4, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\20\0\0\0@\0\0\0s\304\2\0\0d\0"..., 4096) = 4096
fstat(4, {st_mode=S_IFREG|0644, st_size=54239, ...}) = 0
brk(0x24f8000)                          = 0x24f8000
read(4, "d\0\0Z\2\0d\1\0\204\0\0Z\3\0d\2\0\204\0\0Z\4\0RS(\3\0\0\0s"..., 49152) = 49152
read(4, "\4\0t\2\0|\4\0\203\1\0d\1\0j\2\0o\t\0\1|\4\0d\2\0\31S\1|\4"..., 4096) = 991
read(4, "", 4096)                       = 0
close(4)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/bin/textwrap", 0x7fffe41f4990) = -1 ENOENT (No such file or directory)
open("/usr/bin/textwrap.so", O_RDONLY)  = -1 ENOENT (No such file or directory)
open("/usr/bin/textwrapmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/textwrap.py", O_RDONLY)  = -1 ENOENT (No such file or directory)
open("/usr/bin/textwrap.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/textwrap", 0x7fffe41f4990) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/textwrap.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/textwrapmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/textwrap.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=16889, ...}) = 0
open("/usr/lib64/python2.6/textwrap.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=11792, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(5, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\6\0\0\0@\0\0\0s\272\0\0\0d\0"..., 4096) = 4096
fstat(5, {st_mode=S_IFREG|0644, st_size=11792, ...}) = 0
read(5, "\0\0|\1\0t\1\0\203\2\0o$\0\1|\0\0i\2\0o\r\0\1|\0\0i\3\0}"..., 4096) = 4096
read(5, "wline) are\n        converted to "..., 4096) = 3600
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
brk(0x253c000)                          = 0x253c000
close(4)                                = 0
stat("/usr/bin/gettext", {st_mode=S_IFREG|0755, st_size=33512, ...}) = 0
open("/usr/bin/gettext.so", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/gettextmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/gettext.py", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/gettext.pyc", O_RDONLY)  = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/gettext", 0x7fffe41f4990) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/gettext.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/gettextmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/gettext.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=19968, ...}) = 0
open("/usr/lib64/python2.6/gettext.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=15760, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(5, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\23\0\0\0@\0\0\0s\264\1\0\0d\0"..., 4096) = 4096
fstat(5, {st_mode=S_IFREG|0644, st_size=15760, ...}) = 0
read(5, "Z\10\0d\6\0\204\0\0Z\t\0d\7\0\204\0\0Z\n\0d\10\0\204\0\0Z\v\0d\t"..., 8192) = 8192
read(5, "\1\r\1\5\1\37\1\23\1\7\1\21\2\f\1c\6\0\0\0\v\0\0\0\7\0\0\0C\0\0\0"..., 4096) = 3472
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/bin/locale", {st_mode=S_IFREG|0755, st_size=41368, ...}) = 0
open("/usr/bin/locale.so", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/localemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/locale.py", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/locale.pyc", O_RDONLY)   = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/locale", 0x7fffe41f1380) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/locale.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/localemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/locale.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=82674, ...}) = 0
open("/usr/lib64/python2.6/locale.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=46676, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(6, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\33\0\0\0@\0\0\0s&\36\0\0d\0"..., 4096) = 4096
fstat(6, {st_mode=S_IFREG|0644, st_size=46676, ...}) = 0
read(6, "6d\341\2d\361\0026d\341\2d\362\0026d\341\2d\363\0026d\341\2d\364\0026d\341\2"..., 40960) = 40960
read(6, "\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1"..., 4096) = 1620
read(6, "", 4096)                       = 0
close(6)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/bin/_locale", 0x7fffe41edd70) = -1 ENOENT (No such file or directory)
open("/usr/bin/_locale.so", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/_localemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/_locale.py", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/_locale.pyc", O_RDONLY)  = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/_locale", 0x7fffe41edd70) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_locale.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_localemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_locale.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_locale.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/_locale", 0x7fffe41edd70) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_locale.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_localemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_locale.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_locale.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/_locale", 0x7fffe41edd70) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/_locale.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/_localemodule.so", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0555, st_size=21608, ...}) = 0
open("/usr/lib64/python2.6/lib-dynload/_localemodule.so", O_RDONLY) = 7
read(7, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 \32\0\0\0\0\0\0"..., 832) = 832
fstat(7, {st_mode=S_IFREG|0555, st_size=21608, ...}) = 0
mmap(NULL, 2116792, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x7fb989bd8000
mprotect(0x7fb989bdc000, 2097152, PROT_NONE) = 0
mmap(0x7fb989ddc000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0x4000) = 0x7fb989ddc000
close(7)                                = 0
close(6)                                = 0
brk(0x2568000)                          = 0x2568000
close(5)                                = 0
stat("/usr/bin/copy", 0x7fffe41f1380)   = -1 ENOENT (No such file or directory)
open("/usr/bin/copy.so", O_RDONLY)      = -1 ENOENT (No such file or directory)
open("/usr/bin/copymodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/copy.py", O_RDONLY)      = -1 ENOENT (No such file or directory)
open("/usr/bin/copy.pyc", O_RDONLY)     = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/copy", 0x7fffe41f1380) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/copy.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/copymodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/copy.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=10996, ...}) = 0
open("/usr/lib64/python2.6/copy.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=11419, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(6, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\30\0\0\0@\0\0\0sv\3\0\0d\0"..., 4096) = 4096
fstat(6, {st_mode=S_IFREG|0644, st_size=11419, ...}) = 0
read(6, "\0\1|\0\0i\2\0\203\0\0}\1\0|\0\0i\3\0|\1\0\214\0\0}\2\0n\26\0"..., 4096) = 4096
read(6, "Wq\216\2\1n\1\0\1|\n\0S(\7\0\0\0Ni\2\0\0\0i\3\0\0\0i\4\0"..., 4096) = 3227
read(6, "", 4096)                       = 0
close(6)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/bin/org", 0x7fffe41edd70)    = -1 ENOENT (No such file or directory)
open("/usr/bin/org.so", O_RDONLY)       = -1 ENOENT (No such file or directory)
open("/usr/bin/orgmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/org.py", O_RDONLY)       = -1 ENOENT (No such file or directory)
open("/usr/bin/org.pyc", O_RDONLY)      = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/org", 0x7fffe41edd70) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/org.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/orgmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/org.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/org.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/org", 0x7fffe41edd70) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/org.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/orgmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/org.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/org.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/org", 0x7fffe41edd70) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/org.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/orgmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/org.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/org.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/org", 0x7fffe41edd70) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/org.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/orgmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/org.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/org.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/gst-0.10/org", 0x7fffe41edd70) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/org.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/orgmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/org.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/org.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/gtk-2.0/org", 0x7fffe41edd70) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/org.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/orgmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/org.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/org.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/webkit-1.0/org", 0x7fffe41edd70) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/org.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/orgmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/org.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/org.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/org", 0x7fffe41edd70) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/org.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/orgmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/org.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/org.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
close(5)                                = 0
stat("/usr/bin/struct", 0x7fffe41f1380) = -1 ENOENT (No such file or directory)
open("/usr/bin/struct.so", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/structmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/struct.py", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/struct.pyc", O_RDONLY)   = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/struct", 0x7fffe41f1380) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/struct.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/structmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/struct.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=82, ...}) = 0
open("/usr/lib64/python2.6/struct.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=239, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(6, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\5\0\0\0@\0\0\0s.\0\0\0d\0"..., 4096) = 239
fstat(6, {st_mode=S_IFREG|0644, st_size=239, ...}) = 0
read(6, "", 4096)                       = 0
close(6)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/bin/_struct", 0x7fffe41edd70) = -1 ENOENT (No such file or directory)
open("/usr/bin/_struct.so", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/_structmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/_struct.py", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/_struct.pyc", O_RDONLY)  = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/_struct", 0x7fffe41edd70) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_struct.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_structmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_struct.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_struct.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/_struct", 0x7fffe41edd70) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_struct.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_structmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_struct.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_struct.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/_struct", 0x7fffe41edd70) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/_struct.so", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0555, st_size=37872, ...}) = 0
open("/usr/lib64/python2.6/lib-dynload/_struct.so", O_RDONLY) = 7
read(7, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 (\0\0\0\0\0\0"..., 832) = 832
fstat(7, {st_mode=S_IFREG|0555, st_size=37872, ...}) = 0
mmap(NULL, 2133080, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x7fb9899cf000
mprotect(0x7fb9899d6000, 2097152, PROT_NONE) = 0
mmap(0x7fb989bd6000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0x7000) = 0x7fb989bd6000
close(7)                                = 0
close(6)                                = 0
close(5)                                = 0
close(4)                                = 0
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/messages.mo", 0x7fffe41f83c0) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/messages.mo", 0x7fffe41f83c0) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/messages.mo", 0x7fffe41f83c0) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/messages.mo", 0x7fffe41f83c0) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/messages.mo", 0x7fffe41f83c0) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/messages.mo", 0x7fffe41f83c0) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/messages.mo", 0x7fffe41f83c0) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/messages.mo", 0x7fffe41f83c0) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/messages.mo", 0x7fffe41f83c0) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/messages.mo", 0x7fffe41f83c0) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/messages.mo", 0x7fffe41f83c0) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/messages.mo", 0x7fffe41f83c0) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/messages.mo", 0x7fffe41f83c0) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/messages.mo", 0x7fffe41f83c0) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/messages.mo", 0x7fffe41f83c0) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/messages.mo", 0x7fffe41f83c0) = -1 ENOENT (No such file or directory)
close(3)                                = 0
stat("/usr/bin/urlgrabber", {st_mode=S_IFREG|0755, st_size=12437, ...}) = 0
open("/usr/bin/urlgrabber.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/urlgrabbermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/urlgrabber.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/urlgrabber.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/urlgrabber", 0x7fffe41f7fa0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/urlgrabber.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/urlgrabbermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/urlgrabber.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/urlgrabber.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/urlgrabber", 0x7fffe41f7fa0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/urlgrabber.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/urlgrabbermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/urlgrabber.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/urlgrabber.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/urlgrabber", 0x7fffe41f7fa0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/urlgrabber.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/urlgrabbermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/urlgrabber.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/urlgrabber.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/urlgrabber", 0x7fffe41f7fa0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/urlgrabber.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/urlgrabbermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/urlgrabber.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/urlgrabber.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/gst-0.10/urlgrabber", 0x7fffe41f7fa0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/urlgrabber.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/urlgrabbermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/urlgrabber.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/urlgrabber.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/gtk-2.0/urlgrabber", 0x7fffe41f7fa0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/urlgrabber.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/urlgrabbermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/urlgrabber.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/urlgrabber.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/webkit-1.0/urlgrabber", 0x7fffe41f7fa0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/urlgrabber.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/urlgrabbermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/urlgrabber.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/urlgrabber.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/urlgrabber", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python2.6/site-packages/urlgrabber/__init__.py", {st_mode=S_IFREG|0644, st_size=2323, ...}) = 0
stat("/usr/lib/python2.6/site-packages/urlgrabber/__init__", 0x7fffe41f6f40) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/__init__.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/__init__module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/__init__.py", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=2323, ...}) = 0
open("/usr/lib/python2.6/site-packages/urlgrabber/__init__.pyc", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=1703, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(4, "\321\362\r\n\10\367\274Jc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0s>\0\0\0d\0"..., 4096) = 1703
fstat(4, {st_mode=S_IFREG|0644, st_size=1703, ...}) = 0
read(4, "", 4096)                       = 0
close(4)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/lib/python2.6/site-packages/urlgrabber", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python2.6/site-packages/urlgrabber", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python2.6/site-packages/urlgrabber/grabber", 0x7fffe41f3930) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/grabber.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/grabbermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/grabber.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=68026, ...}) = 0
open("/usr/lib/python2.6/site-packages/urlgrabber/grabber.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=60729, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(5, "\321\362\r\n\243\274%Nc\0\0\0\0\0\0\0\0%\0\0\0@\0\0\0s\f\3\0\0d\0"..., 4096) = 4096
fstat(5, {st_mode=S_IFREG|0644, st_size=60729, ...}) = 0
read(5, "0 bytes into the requested file."..., 53248) = 53248
read(5, "\20\0\5\1\r\2\3\0\34\1\20\0\n\1c\0\0\0\0\n\0\0\0\22\0\0\0C\0\0\0s"..., 4096) = 3385
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/lib/python2.6/site-packages/urlgrabber/os", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/os.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/osmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/os.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/os.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/urlgrabber/sys", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/sys.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/sysmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/sys.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/sys.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/urlgrabber/urlparse", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/urlparse.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/urlparsemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/urlparse.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/urlparse.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/bin/urlparse", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/bin/urlparse.so", O_RDONLY)  = -1 ENOENT (No such file or directory)
open("/usr/bin/urlparsemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/urlparse.py", O_RDONLY)  = -1 ENOENT (No such file or directory)
open("/usr/bin/urlparse.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/urlparse", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/urlparse.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/urlparsemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/urlparse.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=13618, ...}) = 0
open("/usr/lib64/python2.6/urlparse.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=13478, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(6, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\27\0\0\0@\0\0\0ss\2\0\0d\0"..., 4096) = 4096
fstat(6, {st_mode=S_IFREG|0644, st_size=13478, ...}) = 0
read(6, ".pyR9\0\0\0k\0\0\0s\4\0\0\0\6\2\6\2t\v\0\0\0ParseR"..., 8192) = 8192
read(6, "ues in\n        URL encoded queri"..., 4096) = 1190
read(6, "", 4096)                       = 0
brk(0x25c1000)                          = 0x25c1000
close(6)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
close(5)                                = 0
stat("/usr/lib/python2.6/site-packages/urlgrabber/time", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/time.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/timemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/time.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/time.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/urlgrabber/string", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/string.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/stringmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/string.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/string.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/urlgrabber/urllib", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/urllib.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/urllibmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/urllib.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/urllib.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/bin/urllib", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/bin/urllib.so", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/urllibmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/urllib.py", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/urllib.pyc", O_RDONLY)   = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/urllib", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/urllib.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/urllibmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/urllib.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=58663, ...}) = 0
open("/usr/lib64/python2.6/urllib.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=51270, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(6, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\"\0\0\0@\0\0\0s\241\4\0\0d\0"..., 4096) = 4096
fstat(6, {st_mode=S_IFREG|0644, st_size=51270, ...}) = 0
read(6, "4/python2.6/urllib.pyR\5\0\0\0^\0\0\0s\10"..., 45056) = 45056
read(6, "GHWd\0\0t\f\0\203\0\0\1Xd\0\0S(\23\0\0\0Ns\v\0\0\0/et"..., 4096) = 2118
read(6, "", 4096)                       = 0
close(6)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/bin/ssl", 0x7fffe41ecd10)    = -1 ENOENT (No such file or directory)
open("/usr/bin/ssl.so", O_RDONLY)       = -1 ENOENT (No such file or directory)
open("/usr/bin/sslmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/ssl.py", O_RDONLY)       = -1 ENOENT (No such file or directory)
open("/usr/bin/ssl.pyc", O_RDONLY)      = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/ssl", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/ssl.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/sslmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/ssl.py", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=14688, ...}) = 0
open("/usr/lib64/python2.6/ssl.pyc", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=13601, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(7, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\25\0\0\0@\0\0\0s\245\1\0\0d\0"..., 4096) = 4096
fstat(7, {st_mode=S_IFREG|0644, st_size=13601, ...}) = 0
read(7, "h string on EOF.i\0\0\0\0t\0\0\0\0N(\6\0\0\0"..., 8192) = 8192
read(7, "d\0\0\0R\24\0\0\0RY\0\0\0R=\0\0\0RA\0\0\0RX\0\0\0Rt\0"..., 4096) = 1313
read(7, "", 4096)                       = 0
mmap(NULL, 790528, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb98a8c1000
munmap(0x7fb991209000, 200704)          = 0
close(7)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/bin/base64", {st_mode=S_IFREG|0755, st_size=32848, ...}) = 0
open("/usr/bin/base64.so", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/base64module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/base64.py", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/base64.pyc", O_RDONLY)   = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/base64", 0x7fffe41e9700) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/base64.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/base64module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/base64.py", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0755, st_size=11335, ...}) = 0
open("/usr/lib64/python2.6/base64.pyc", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=11003, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(8, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\21\0\0\0@\0\0\0s\307\2\0\0d\0"..., 4096) = 4096
fstat(8, {st_mode=S_IFREG|0644, st_size=11003, ...}) = 0
read(8, "4.pyR\r\0\0\0g\0\0\0s\2\0\0\0\0\tt\1\0\0\0Ai\0\0\0\0t"..., 4096) = 4096
read(8, "\0R\34\0\0\0R_\0\0\0(\2\0\0\0R\24\0\0\0R`\0\0\0(\0\0\0\0("..., 4096) = 2811
read(8, "", 4096)                       = 0
close(8)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/bin/binascii", 0x7fffe41e60f0) = -1 ENOENT (No such file or directory)
open("/usr/bin/binascii.so", O_RDONLY)  = -1 ENOENT (No such file or directory)
open("/usr/bin/binasciimodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/binascii.py", O_RDONLY)  = -1 ENOENT (No such file or directory)
open("/usr/bin/binascii.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/binascii", 0x7fffe41e60f0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/binascii.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/binasciimodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/binascii.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/binascii.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/binascii", 0x7fffe41e60f0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/binascii.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/binasciimodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/binascii.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/binascii.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/binascii", 0x7fffe41e60f0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/binascii.so", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0555, st_size=21232, ...}) = 0
open("/usr/lib64/python2.6/lib-dynload/binascii.so", O_RDONLY) = 9
read(9, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\300\20\0\0\0\0\0\0"..., 832) = 832
fstat(9, {st_mode=S_IFREG|0555, st_size=21232, ...}) = 0
mmap(NULL, 2116424, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 9, 0) = 0x7fb9897ca000
mprotect(0x7fb9897cf000, 2093056, PROT_NONE) = 0
mmap(0x7fb9899ce000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 9, 0x4000) = 0x7fb9899ce000
close(9)                                = 0
close(8)                                = 0
close(7)                                = 0
close(6)                                = 0
brk(0x25e6000)                          = 0x25e6000
close(5)                                = 0
stat("/usr/lib/python2.6/site-packages/urlgrabber/urllib2", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/urllib2.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/urllib2module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/urllib2.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/urllib2.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/bin/urllib2", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/bin/urllib2.so", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/urllib2module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/urllib2.py", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/urllib2.pyc", O_RDONLY)  = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/urllib2", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/urllib2.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/urllib2module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/urllib2.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=50572, ...}) = 0
open("/usr/lib64/python2.6/urllib2.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=45814, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(6, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\27\0\0\0@\0\0\0s\376\3\0\0d\0"..., 4096) = 4096
fstat(6, {st_mode=S_IFREG|0644, st_size=45814, ...}) = 0
read(6, "litvalue(\4\0\0\0t\t\0\0\0localhostt\f\0\0\0"..., 40960) = 40960
read(6, "\1\t\1(\7\0\0\0R!\0\0\0R\"\0\0\0R\37\0\0\0R\311\1\0\0R\312\1\0"..., 4096) = 758
read(6, "", 4096)                       = 0
brk(0x2632000)                          = 0x2632000
close(6)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/bin/hashlib", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/bin/hashlib.so", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/hashlibmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/hashlib.py", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/hashlib.pyc", O_RDONLY)  = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/hashlib", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/hashlib.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/hashlibmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/hashlib.py", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=4427, ...}) = 0
open("/usr/lib64/python2.6/hashlib.pyc", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=3981, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(7, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\f\0\0\0@\0\0\0s\311\0\0\0d\0"..., 4096) = 3981
fstat(7, {st_mode=S_IFREG|0644, st_size=3981, ...}) = 0
read(7, "", 4096)                       = 0
close(7)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/bin/_hashlib", 0x7fffe41e9700) = -1 ENOENT (No such file or directory)
open("/usr/bin/_hashlib.so", O_RDONLY)  = -1 ENOENT (No such file or directory)
open("/usr/bin/_hashlibmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/_hashlib.py", O_RDONLY)  = -1 ENOENT (No such file or directory)
open("/usr/bin/_hashlib.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/_hashlib", 0x7fffe41e9700) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_hashlib.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_hashlibmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_hashlib.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_hashlib.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/_hashlib", 0x7fffe41e9700) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_hashlib.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_hashlibmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_hashlib.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_hashlib.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/_hashlib", 0x7fffe41e9700) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/_hashlib.so", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0755, st_size=15368, ...}) = 0
open("/usr/lib64/python2.6/lib-dynload/_hashlib.so", O_RDONLY) = 8
read(8, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0@\25\0\0\0\0\0\0"..., 832) = 832
fstat(8, {st_mode=S_IFREG|0755, st_size=15368, ...}) = 0
mmap(NULL, 2111496, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x7fb9895c6000
mprotect(0x7fb9895c9000, 2093056, PROT_NONE) = 0
mmap(0x7fb9897c8000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x2000) = 0x7fb9897c8000
close(8)                                = 0
close(7)                                = 0
close(6)                                = 0
stat("/usr/bin/httplib", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/bin/httplib.so", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/httplibmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/httplib.py", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/httplib.pyc", O_RDONLY)  = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/httplib", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/httplib.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/httplibmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/httplib.py", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=45486, ...}) = 0
open("/usr/lib64/python2.6/httplib.pyc", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=35681, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(7, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\36\0\0\0@\0\0\0s~\5\0\0d\0"..., 4096) = 4096
fstat(7, {st_mode=S_IFREG|0644, st_size=35681, ...}) = 0
read(7, "een removed(\1\0\0\0t\10\0\0\0StringIOt\4\0"..., 28672) = 28672
read(7, "\1n\323\0\1Xx\316\0d\24\0D]\306\0\\\2\0}\7\0}\10\0d\22\0|\7\0|"..., 4096) = 2913
read(7, "", 4096)                       = 0
close(7)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/bin/array", 0x7fffe41e9700)  = -1 ENOENT (No such file or directory)
open("/usr/bin/array.so", O_RDONLY)     = -1 ENOENT (No such file or directory)
open("/usr/bin/arraymodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/array.py", O_RDONLY)     = -1 ENOENT (No such file or directory)
open("/usr/bin/array.pyc", O_RDONLY)    = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/array", 0x7fffe41e9700) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/array.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/arraymodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/array.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/array.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/array", 0x7fffe41e9700) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/array.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/arraymodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/array.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/array.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/array", 0x7fffe41e9700) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/array.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/arraymodule.so", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0555, st_size=42304, ...}) = 0
open("/usr/lib64/python2.6/lib-dynload/arraymodule.so", O_RDONLY) = 8
read(8, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000*\0\0\0\0\0\0"..., 832) = 832
fstat(8, {st_mode=S_IFREG|0555, st_size=42304, ...}) = 0
mmap(NULL, 2137536, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x7fb9893bc000
mprotect(0x7fb9893c4000, 2093056, PROT_NONE) = 0
mmap(0x7fb9895c3000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x7000) = 0x7fb9895c3000
close(8)                                = 0
close(7)                                = 0
stat("/usr/bin/mimetools", 0x7fffe41e9700) = -1 ENOENT (No such file or directory)
open("/usr/bin/mimetools.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/mimetoolsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/mimetools.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/mimetools.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/mimetools", 0x7fffe41e9700) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/mimetools.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/mimetoolsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/mimetools.py", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=7168, ...}) = 0
open("/usr/lib64/python2.6/mimetools.pyc", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=8320, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(8, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\20\0\0\0@\0\0\0s\325\1\0\0d\0"..., 4096) = 4096
fstat(8, {st_mode=S_IFREG|0644, st_size=8320, ...}) = 0
read(8, "python2.6/mimetools.pyt\21\0\0\0_get_"..., 4096) = 4096
read(8, "2.6/mimetools.pyt\10\0\0\0<module>\1\0\0"..., 4096) = 128
read(8, "", 4096)                       = 0
close(8)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/bin/tempfile", 0x7fffe41e60f0) = -1 ENOENT (No such file or directory)
open("/usr/bin/tempfile.so", O_RDONLY)  = -1 ENOENT (No such file or directory)
open("/usr/bin/tempfilemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/tempfile.py", O_RDONLY)  = -1 ENOENT (No such file or directory)
open("/usr/bin/tempfile.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/tempfile", 0x7fffe41e60f0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/tempfile.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/tempfilemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/tempfile.py", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=17774, ...}) = 0
open("/usr/lib64/python2.6/tempfile.pyc", O_RDONLY) = 9
fstat(9, {st_mode=S_IFREG|0644, st_size=19571, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(9, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\26\0\0\0@\0\0\0s\25\3\0\0d\0"..., 4096) = 4096
fstat(9, {st_mode=S_IFREG|0644, st_size=19571, ...}) = 0
read(9, "\0\10\0\0\0C\0\0\0s\6\1\0\0g\0\0}\0\0x5\0d\16\0D]-\0}\1"..., 12288) = 12288
read(9, "(\2\0\0\0R\216\0\0\0t\5\0\0\0flush(\1\0\0\0R/\0\0\0(\0"..., 4096) = 3187
read(9, "", 4096)                       = 0
close(9)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/bin/random", 0x7fffe41e2ae0) = -1 ENOENT (No such file or directory)
open("/usr/bin/random.so", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/randommodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/random.py", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/random.pyc", O_RDONLY)   = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/random", 0x7fffe41e2ae0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/random.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/randommodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/random.py", O_RDONLY) = 9
fstat(9, {st_mode=S_IFREG|0644, st_size=31966, ...}) = 0
open("/usr/lib64/python2.6/random.pyc", O_RDONLY) = 10
fstat(10, {st_mode=S_IFREG|0644, st_size=25106, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(10, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0 \0\0\0@ \0\0s\231\2\0\0d\0"..., 4096) = 4096
fstat(10, {st_mode=S_IFREG|0644, st_size=25106, ...}) = 0
read(10, "if available.\n\n        If a is n"..., 20480) = 20480
read(10, "\0R\3\0\0\0R\226\0\0\0t\4\0\0\0mathR\4\0\0\0RP\0\0\0R\5"..., 4096) = 530
read(10, "", 4096)                      = 0
close(10)                               = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/bin/__future__", 0x7fffe41df4d0) = -1 ENOENT (No such file or directory)
open("/usr/bin/__future__.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/__future__module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/__future__.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/__future__.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/__future__", 0x7fffe41df4d0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/__future__.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/__future__module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/__future__.py", O_RDONLY) = 10
fstat(10, {st_mode=S_IFREG|0644, st_size=4380, ...}) = 0
open("/usr/lib64/python2.6/__future__.pyc", O_RDONLY) = 11
fstat(11, {st_mode=S_IFREG|0644, st_size=4233, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(11, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\7\0\0\0@\0\0\0s\355\0\0\0d\0"..., 4096) = 4096
fstat(11, {st_mode=S_IFREG|0644, st_size=4233, ...}) = 0
read(11, "\0\0s\"\0\0\0/usr/lib64/python2.6/__fu"..., 4096) = 137
read(11, "", 4096)                      = 0
close(11)                               = 0
munmap(0x7fb9912d5000, 4096)            = 0
close(10)                               = 0
stat("/usr/bin/math", 0x7fffe41df4d0)   = -1 ENOENT (No such file or directory)
open("/usr/bin/math.so", O_RDONLY)      = -1 ENOENT (No such file or directory)
open("/usr/bin/mathmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/math.py", O_RDONLY)      = -1 ENOENT (No such file or directory)
open("/usr/bin/math.pyc", O_RDONLY)     = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/math", 0x7fffe41df4d0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/math.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/mathmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/math.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/math.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/math", 0x7fffe41df4d0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/math.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/mathmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/math.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/math.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/math", 0x7fffe41df4d0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/math.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/mathmodule.so", O_RDONLY) = 10
fstat(10, {st_mode=S_IFREG|0555, st_size=27816, ...}) = 0
open("/usr/lib64/python2.6/lib-dynload/mathmodule.so", O_RDONLY) = 11
read(11, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\200 \0\0\0\0\0\0"..., 832) = 832
fstat(11, {st_mode=S_IFREG|0555, st_size=27816, ...}) = 0
mmap(NULL, 2122992, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 11, 0) = 0x7fb9891b5000
mprotect(0x7fb9891ba000, 2097152, PROT_NONE) = 0
mmap(0x7fb9893ba000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 11, 0x5000) = 0x7fb9893ba000
close(11)                               = 0
close(10)                               = 0
stat("/usr/bin/_random", 0x7fffe41df4d0) = -1 ENOENT (No such file or directory)
open("/usr/bin/_random.so", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/_randommodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/_random.py", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/_random.pyc", O_RDONLY)  = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/_random", 0x7fffe41df4d0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_random.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_randommodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_random.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_random.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/_random", 0x7fffe41df4d0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_random.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_randommodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_random.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_random.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/_random", 0x7fffe41df4d0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/_random.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/_randommodule.so", O_RDONLY) = 10
fstat(10, {st_mode=S_IFREG|0555, st_size=12904, ...}) = 0
open("/usr/lib64/python2.6/lib-dynload/_randommodule.so", O_RDONLY) = 11
read(11, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\300\21\0\0\0\0\0\0"..., 832) = 832
fstat(11, {st_mode=S_IFREG|0555, st_size=12904, ...}) = 0
mmap(NULL, 2108080, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 11, 0) = 0x7fb988fb2000
mprotect(0x7fb988fb5000, 2093056, PROT_NONE) = 0
mmap(0x7fb9891b4000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 11, 0x2000) = 0x7fb9891b4000
close(11)                               = 0
close(10)                               = 0
time([1331870690])                      = 1331870690
open("/dev/urandom", O_RDONLY)          = 10
read(10, "\255cES\203\337t\317\3103\304|\260\344\260\243", 16) = 16
close(10)                               = 0
close(9)                                = 0
stat("/usr/bin/fcntl", 0x7fffe41e2ae0)  = -1 ENOENT (No such file or directory)
open("/usr/bin/fcntl.so", O_RDONLY)     = -1 ENOENT (No such file or directory)
open("/usr/bin/fcntlmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/fcntl.py", O_RDONLY)     = -1 ENOENT (No such file or directory)
open("/usr/bin/fcntl.pyc", O_RDONLY)    = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/fcntl", 0x7fffe41e2ae0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/fcntl.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/fcntlmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/fcntl.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/fcntl.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/fcntl", 0x7fffe41e2ae0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/fcntl.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/fcntlmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/fcntl.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/fcntl.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/fcntl", 0x7fffe41e2ae0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/fcntl.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/fcntlmodule.so", O_RDONLY) = 9
fstat(9, {st_mode=S_IFREG|0555, st_size=14632, ...}) = 0
open("/usr/lib64/python2.6/lib-dynload/fcntlmodule.so", O_RDONLY) = 10
read(10, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20\r\0\0\0\0\0\0"..., 832) = 832
fstat(10, {st_mode=S_IFREG|0555, st_size=14632, ...}) = 0
mmap(NULL, 2109808, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 10, 0) = 0x7fb988dae000
mprotect(0x7fb988db0000, 2097152, PROT_NONE) = 0
mmap(0x7fb988fb0000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 10, 0x2000) = 0x7fb988fb0000
close(10)                               = 0
close(9)                                = 0
close(8)                                = 0
stat("/usr/bin/rfc822", 0x7fffe41e60f0) = -1 ENOENT (No such file or directory)
open("/usr/bin/rfc822.so", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/rfc822module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/rfc822.py", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/rfc822.pyc", O_RDONLY)   = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/rfc822", 0x7fffe41e60f0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/rfc822.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/rfc822module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/rfc822.py", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=33295, ...}) = 0
open("/usr/lib64/python2.6/rfc822.pyc", O_RDONLY) = 9
fstat(9, {st_mode=S_IFREG|0644, st_size=32110, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(9, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\32\0\0\0@\0\0\0s\307\3\0\0d\0"..., 4096) = 4096
fstat(9, {st_mode=S_IFREG|0644, st_size=32110, ...}) = 0
read(9, "\0d\1\0d\2\0\204\1\0Z\3\0d\3\0\204\0\0Z\4\0d\4\0\204\0\0Z\5\0d"..., 24576) = 24576
read(9, "\21\0\1|\10\0|\6\0\2}\6\0}\10\0n\1\0\1|\7\0d\2\0\31d\3\0j\2"..., 4096) = 3438
read(9, "", 4096)                       = 0
brk(0x268d000)                          = 0x268d000
close(9)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
close(8)                                = 0
close(7)                                = 0
close(6)                                = 0
stat("/usr/bin/bisect", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/bin/bisect.so", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/bisectmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/bisect.py", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/bisect.pyc", O_RDONLY)   = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/bisect", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/bisect.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/bisectmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/bisect.py", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=2662, ...}) = 0
open("/usr/lib64/python2.6/bisect.pyc", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=3173, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(7, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\6\0\0\0@\0\0\0s\232\0\0\0d\0"..., 4096) = 3173
fstat(7, {st_mode=S_IFREG|0644, st_size=3173, ...}) = 0
read(7, "", 4096)                       = 0
close(7)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/bin/_bisect", 0x7fffe41e9700) = -1 ENOENT (No such file or directory)
open("/usr/bin/_bisect.so", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/_bisectmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/_bisect.py", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/_bisect.pyc", O_RDONLY)  = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/_bisect", 0x7fffe41e9700) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_bisect.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_bisectmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_bisect.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_bisect.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/_bisect", 0x7fffe41e9700) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_bisect.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_bisectmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_bisect.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_bisect.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/_bisect", 0x7fffe41e9700) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/_bisect.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/_bisectmodule.so", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0555, st_size=9872, ...}) = 0
open("/usr/lib64/python2.6/lib-dynload/_bisectmodule.so", O_RDONLY) = 8
read(8, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0p\v\0\0\0\0\0\0"..., 832) = 832
fstat(8, {st_mode=S_IFREG|0555, st_size=9872, ...}) = 0
mmap(NULL, 2105048, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x7fb988bac000
mprotect(0x7fb988bae000, 2093056, PROT_NONE) = 0
mmap(0x7fb988dad000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x1000) = 0x7fb988dad000
close(8)                                = 0
close(7)                                = 0
close(6)                                = 0
close(5)                                = 0
stat("/usr/lib/python2.6/site-packages/urlgrabber/mimetools", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/mimetools.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/mimetoolsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/mimetools.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/mimetools.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/urlgrabber/thread", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/thread.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/threadmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/thread.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/thread.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/urlgrabber/types", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/types.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/typesmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/types.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/types.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/urlgrabber/stat", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/stat.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/statmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/stat.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/stat.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/urlgrabber/pycurl", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/pycurl.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/pycurlmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/pycurl.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/pycurl.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/bin/pycurl", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/bin/pycurl.so", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/pycurlmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/pycurl.py", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/pycurl.pyc", O_RDONLY)   = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/pycurl", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/pycurl.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/pycurlmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/pycurl.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/pycurl.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/pycurl", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/pycurl.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/pycurlmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/pycurl.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/pycurl.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/pycurl", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/pycurl.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/pycurlmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/pycurl.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/pycurl.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/pycurl", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/pycurl.so", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0755, st_size=69504, ...}) = 0
open("/usr/lib64/python2.6/site-packages/pycurl.so", O_RDONLY) = 6
read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\3600\0\0\0\0\0\0"..., 832) = 832
fstat(6, {st_mode=S_IFREG|0755, st_size=69504, ...}) = 0
mmap(NULL, 2164744, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x7fb98899b000
mprotect(0x7fb9889aa000, 2097152, PROT_NONE) = 0
mmap(0x7fb988baa000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0xf000) = 0x7fb988baa000
close(6)                                = 0
open("/etc/ld.so.cache", O_RDONLY)      = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=81064, ...}) = 0
mmap(NULL, 81064, PROT_READ, MAP_PRIVATE, 6, 0) = 0x7fb9912c2000
close(6)                                = 0
open("/usr/lib64/libcurl.so.4", O_RDONLY) = 6
read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260\333\200\0312\0\0\0"..., 832) = 832
fstat(6, {st_mode=S_IFREG|0755, st_size=343608, ...}) = 0
mmap(0x3219800000, 2436200, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x3219800000
mprotect(0x3219851000, 2093056, PROT_NONE) = 0
mmap(0x3219a50000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x50000) = 0x3219a50000
close(6)                                = 0
open("/lib64/libidn.so.11", O_RDONLY)   = 6
read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0/\200\0222\0\0\0"..., 832) = 832
fstat(6, {st_mode=S_IFREG|0755, st_size=209120, ...}) = 0
mmap(0x3212800000, 2301768, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x3212800000
mprotect(0x3212832000, 2093056, PROT_NONE) = 0
mmap(0x3212a31000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x31000) = 0x3212a31000
close(6)                                = 0
open("/lib64/libldap-2.4.so.2", O_RDONLY) = 6
read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0p\340\300\0342\0\0\0"..., 832) = 832
fstat(6, {st_mode=S_IFREG|0755, st_size=308912, ...}) = 0
mmap(0x321cc00000, 2401240, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x321cc00000
mprotect(0x321cc48000, 2097152, PROT_NONE) = 0
mmap(0x321ce48000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x48000) = 0x321ce48000
close(6)                                = 0
open("/lib64/librt.so.1", O_RDONLY)     = 6
read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0@!@\t2\0\0\0"..., 832) = 832
fstat(6, {st_mode=S_IFREG|0755, st_size=47064, ...}) = 0
mmap(0x3209400000, 2128816, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x3209400000
mprotect(0x3209407000, 2093056, PROT_NONE) = 0
mmap(0x3209606000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x6000) = 0x3209606000
close(6)                                = 0
open("/usr/lib64/libssl3.so", O_RDONLY) = 6
read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000\223\200\0302\0\0\0"..., 832) = 832
fstat(6, {st_mode=S_IFREG|0755, st_size=240680, ...}) = 0
mmap(0x3218800000, 2334816, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x3218800000
mprotect(0x3218837000, 2097152, PROT_NONE) = 0
mmap(0x3218a37000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x37000) = 0x3218a37000
mmap(0x3218a3a000, 96, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x3218a3a000
close(6)                                = 0
open("/usr/lib64/libsmime3.so", O_RDONLY) = 6
read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260\233\300\0302\0\0\0"..., 832) = 832
fstat(6, {st_mode=S_IFREG|0755, st_size=183864, ...}) = 0
mmap(0x3218c00000, 2276416, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x3218c00000
mprotect(0x3218c28000, 2097152, PROT_NONE) = 0
mmap(0x3218e28000, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x28000) = 0x3218e28000
close(6)                                = 0
open("/usr/lib64/libnss3.so", O_RDONLY) = 6
read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\240\212A\0302\0\0\0"..., 832) = 832
fstat(6, {st_mode=S_IFREG|0755, st_size=1286584, ...}) = 0
mmap(0x3218400000, 3385000, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x3218400000
mprotect(0x3218533000, 2093056, PROT_NONE) = 0
mmap(0x3218732000, 28672, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x132000) = 0x3218732000
mmap(0x3218739000, 5800, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x3218739000
close(6)                                = 0
open("/usr/lib64/libnssutil3.so", O_RDONLY) = 6
read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\251\0\0302\0\0\0"..., 832) = 832
fstat(6, {st_mode=S_IFREG|0755, st_size=157056, ...}) = 0
mmap(0x3218000000, 2251040, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x3218000000
mprotect(0x3218020000, 2093056, PROT_NONE) = 0
mmap(0x321821f000, 28672, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x1f000) = 0x321821f000
close(6)                                = 0
open("/lib64/libplds4.so", O_RDONLY)    = 6
read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\340\16@\0272\0\0\0"..., 832) = 832
fstat(6, {st_mode=S_IFREG|0755, st_size=17096, ...}) = 0
mmap(0x3217400000, 2109776, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x3217400000
mprotect(0x3217403000, 2093056, PROT_NONE) = 0
mmap(0x3217602000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x2000) = 0x3217602000
close(6)                                = 0
open("/lib64/libplc4.so", O_RDONLY)     = 6
read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20\24\0\0272\0\0\0"..., 832) = 832
fstat(6, {st_mode=S_IFREG|0755, st_size=21256, ...}) = 0
mmap(0x3217000000, 2113912, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x3217000000
mprotect(0x3217004000, 2093056, PROT_NONE) = 0
mmap(0x3217203000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x3000) = 0x3217203000
close(6)                                = 0
open("/lib64/libnspr4.so", O_RDONLY)    = 6
read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320\320\200\0272\0\0\0"..., 832) = 832
fstat(6, {st_mode=S_IFREG|0755, st_size=243096, ...}) = 0
mmap(0x3217800000, 2346304, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x3217800000
mprotect(0x3217839000, 2093056, PROT_NONE) = 0
mmap(0x3217a38000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x38000) = 0x3217a38000
mmap(0x3217a3b000, 7488, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x3217a3b000
close(6)                                = 0
open("/usr/lib64/libssh2.so.1", O_RDONLY) = 6
read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0pG@\0232\0\0\0"..., 832) = 832
fstat(6, {st_mode=S_IFREG|0755, st_size=160312, ...}) = 0
mmap(0x3213400000, 2252760, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x3213400000
mprotect(0x3213426000, 2093056, PROT_NONE) = 0
mmap(0x3213625000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x25000) = 0x3213625000
close(6)                                = 0
open("/lib64/liblber-2.4.so.2", O_RDONLY) = 6
read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\3005@\0312\0\0\0"..., 832) = 832
fstat(6, {st_mode=S_IFREG|0755, st_size=63304, ...}) = 0
mmap(0x3219400000, 2155816, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x3219400000
mprotect(0x321940e000, 2093056, PROT_NONE) = 0
mmap(0x321960d000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0xd000) = 0x321960d000
close(6)                                = 0
open("/usr/lib64/libsasl2.so.2", O_RDONLY) = 6
read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\340F\0\0332\0\0\0"..., 832) = 832
fstat(6, {st_mode=S_IFREG|0755, st_size=108728, ...}) = 0
mmap(0x321b000000, 2201520, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x321b000000
mprotect(0x321b019000, 2093056, PROT_NONE) = 0
mmap(0x321b218000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x18000) = 0x321b218000
close(6)                                = 0
open("/lib64/libcrypt.so.1", O_RDONLY)  = 6
read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\f\200\0242\0\0\0"..., 832) = 832
fstat(6, {st_mode=S_IFREG|0755, st_size=43392, ...}) = 0
mmap(0x3214800000, 2318816, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x3214800000
mprotect(0x3214807000, 2097152, PROT_NONE) = 0
mmap(0x3214a07000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x7000) = 0x3214a07000
mmap(0x3214a09000, 184800, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x3214a09000
close(6)                                = 0
open("/lib64/libfreebl3.so", O_RDONLY)  = 6
read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\2602\0\0252\0\0\0"..., 832) = 832
fstat(6, {st_mode=S_IFREG|0755, st_size=386040, ...}) = 0
mmap(0x3215000000, 2496224, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x3215000000
mprotect(0x321505d000, 2093056, PROT_NONE) = 0
mmap(0x321525c000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x5c000) = 0x321525c000
mmap(0x321525e000, 14048, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x321525e000
close(6)                                = 0
mprotect(0x321525c000, 4096, PROT_READ) = 0
mprotect(0x3214a07000, 4096, PROT_READ) = 0
mprotect(0x321b218000, 4096, PROT_READ) = 0
mprotect(0x321960d000, 4096, PROT_READ) = 0
mprotect(0x3217a38000, 4096, PROT_READ) = 0
mprotect(0x3217203000, 4096, PROT_READ) = 0
mprotect(0x3217602000, 4096, PROT_READ) = 0
mprotect(0x321821f000, 24576, PROT_READ) = 0
mprotect(0x3218732000, 20480, PROT_READ) = 0
mprotect(0x3218e28000, 12288, PROT_READ) = 0
mprotect(0x3218a37000, 8192, PROT_READ) = 0
mprotect(0x3209606000, 4096, PROT_READ) = 0
mprotect(0x321ce48000, 4096, PROT_READ) = 0
munmap(0x7fb9912c2000, 81064)           = 0
brk(0x26b2000)                          = 0x26b2000
close(5)                                = 0
stat("/usr/lib/python2.6/site-packages/urlgrabber/ftplib", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/ftplib.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/ftplibmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/ftplib.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/ftplib.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/bin/ftplib", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/bin/ftplib.so", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/ftplibmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/ftplib.py", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/ftplib.pyc", O_RDONLY)   = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/ftplib", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/ftplib.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/ftplibmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/ftplib.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=28739, ...}) = 0
open("/usr/lib64/python2.6/ftplib.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=28138, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(6, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\v\0\0\0@\0\0\0s\263\1\0\0d\0"..., 4096) = 4096
fstat(6, {st_mode=S_IFREG|0644, st_size=28138, ...}) = 0
read(6, "|\3\0|\0\0_\2\0n\1\0\1t\3\0i\4\0|\0\0i\0\0|\0\0i\1\0f"..., 20480) = 20480
read(6, "\1d\0\0S(\r\0\0\0Nt\4\0\0\0HOMEs\6\0\0\0.netrcs"..., 4096) = 3562
read(6, "", 4096)                       = 0
close(6)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/bin/SOCKS", 0x7fffe41ecd10)  = -1 ENOENT (No such file or directory)
open("/usr/bin/SOCKS.so", O_RDONLY)     = -1 ENOENT (No such file or directory)
open("/usr/bin/SOCKSmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/SOCKS.py", O_RDONLY)     = -1 ENOENT (No such file or directory)
open("/usr/bin/SOCKS.pyc", O_RDONLY)    = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/SOCKS", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/SOCKS.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/SOCKSmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/SOCKS.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/SOCKS.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/SOCKS", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/SOCKS.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/SOCKSmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/SOCKS.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/SOCKS.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/SOCKS", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/SOCKS.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/SOCKSmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/SOCKS.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/SOCKS.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/SOCKS", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/SOCKS.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/SOCKSmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/SOCKS.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/SOCKS.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/gst-0.10/SOCKS", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/SOCKS.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/SOCKSmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/SOCKS.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/SOCKS.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/gtk-2.0/SOCKS", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/SOCKS.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/SOCKSmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/SOCKS.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/SOCKS.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/webkit-1.0/SOCKS", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/SOCKS.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/SOCKSmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/SOCKS.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/SOCKS.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/SOCKS", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/SOCKS.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/SOCKSmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/SOCKS.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/SOCKS.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
close(5)                                = 0
stat("/usr/lib/python2.6/site-packages/urlgrabber/StringIO", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/StringIO.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/StringIOmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/StringIO.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/StringIO.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/bin/StringIO", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/bin/StringIO.so", O_RDONLY)  = -1 ENOENT (No such file or directory)
open("/usr/bin/StringIOmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/StringIO.py", O_RDONLY)  = -1 ENOENT (No such file or directory)
open("/usr/bin/StringIO.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/StringIO", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/StringIO.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/StringIOmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/StringIO.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=10621, ...}) = 0
open("/usr/lib64/python2.6/StringIO.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=11532, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(6, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\7\0\0\0@\0\0\0s\200\0\0\0d\0"..., 4096) = 4096
fstat(6, {st_mode=S_IFREG|0644, st_size=11532, ...}) = 0
read(6, "osition.\n\n        The mode argum"..., 4096) = 4096
read(6, "S(\4\0\0\0sG\0\0\0Write a string to the"..., 4096) = 3340
read(6, "", 4096)                       = 0
close(6)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
close(5)                                = 0
stat("/usr/lib/python2.6/site-packages/urlgrabber/httplib", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/httplib.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/httplibmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/httplib.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/httplib.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/urlgrabber/socket", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/socket.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/socketmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/socket.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/socket.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/urlgrabber/byterange", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/byterange.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/byterangemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/byterange.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=17124, ...}) = 0
open("/usr/lib/python2.6/site-packages/urlgrabber/byterange.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=16544, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(6, "\321\362\r\n\233\345\274Jc\0\0\0\0\0\0\0\0\22\0\0\0@\0\0\0s\266\1\0\0d\0"..., 4096) = 4096
fstat(6, {st_mode=S_IFREG|0644, st_size=16544, ...}) = 0
read(6, "\n        rangetup -- a (firstbyt"..., 12288) = 12288
read(6, "R\234\0\0\0R\27\0\0\0(\0\0\0\0(\0\0\0\0(\0\0\0\0s8\0\0\0/u"..., 4096) = 160
read(6, "", 4096)                       = 0
close(6)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/lib/python2.6/site-packages/urlgrabber/rfc822", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/rfc822.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/rfc822module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/rfc822.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/rfc822.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/urlgrabber/cStringIO", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/cStringIO.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/cStringIOmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/cStringIO.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/cStringIO.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/urlgrabber/mimetypes", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/mimetypes.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/mimetypesmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/mimetypes.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/mimetypes.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/bin/mimetypes", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/bin/mimetypes.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/mimetypesmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/mimetypes.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/mimetypes.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/mimetypes", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/mimetypes.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/mimetypesmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/mimetypes.py", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=18822, ...}) = 0
open("/usr/lib64/python2.6/mimetypes.pyc", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=16872, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(7, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\17\0\0\0@\0\0\0sW\2\0\0d\0"..., 4096) = 4096
fstat(7, {st_mode=S_IFREG|0644, st_size=16872, ...}) = 0
read(7, "name of\n        the program used"..., 12288) = 12288
read(7, "\0\0\0-hs\6\0\0\0--help(\2\0\0\0s\2\0\0\0-ls\t\0\0"..., 4096) = 488
read(7, "", 4096)                       = 0
close(7)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
close(6)                                = 0
close(5)                                = 0
brk(0x26d4000)                          = 0x26d4000
stat("/usr/lib/python2.6/site-packages/urlgrabber/urlgrabber", 0x7fffe41f0050) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/urlgrabber.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/urlgrabbermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/urlgrabber.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/urlgrabber.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/urlgrabber/i18n", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/i18n.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/i18nmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/i18n.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/i18n.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/bin/i18n", 0x7fffe41f0320)   = -1 ENOENT (No such file or directory)
open("/usr/bin/i18n.so", O_RDONLY)      = -1 ENOENT (No such file or directory)
open("/usr/bin/i18nmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/i18n.py", O_RDONLY)      = -1 ENOENT (No such file or directory)
open("/usr/bin/i18n.pyc", O_RDONLY)     = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/i18n", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/i18n.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/i18nmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/i18n.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/i18n.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/i18n", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/i18n.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/i18nmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/i18n.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/i18n.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/i18n", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/i18n.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/i18nmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/i18n.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/i18n.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/i18n", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/i18n.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/i18nmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/i18n.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/i18n.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/gst-0.10/i18n", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/i18n.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/i18nmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/i18n.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/i18n.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/gtk-2.0/i18n", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/i18n.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/i18nmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/i18n.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/i18n.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/webkit-1.0/i18n", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/i18n.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/i18nmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/i18n.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/i18n.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/i18n", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/i18n.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/i18nmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/i18n.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/i18n.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
sched_get_priority_min(SCHED_OTHER)     = 0
sched_get_priority_max(SCHED_OTHER)     = 0
sched_getparam(30687, { 0 })            = 0
sched_getscheduler(30687)               = 0 (SCHED_OTHER)
sched_setscheduler(30687, SCHED_OTHER, { 0 }) = 0
rt_sigaction(SIGPIPE, {SIG_IGN, [], SA_RESTORER, 0x3208c0f4a0}, NULL, 8) = 0
time(NULL)                              = 1331870690
close(4)                                = 0
close(3)                                = 0
stat("/usr/lib/python2.6/site-packages/urlgrabber/progress", 0x7fffe41f7fa0) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/progress.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/progressmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/progress.py", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=27081, ...}) = 0
open("/usr/lib/python2.6/site-packages/urlgrabber/progress.pyc", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=26148, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(4, "\321\362\r\n\243\274%Nc\0\0\0\0\0\0\0\0!\0\0\0@\0\0\0s\362\2\0\0d\0"..., 4096) = 4096
fstat(4, {st_mode=S_IFREG|0644, st_size=26148, ...}) = 0
read(4, "|\1\0|\0\0_\0\0|\2\0|\0\0_\1\0|\3\0|\0\0_\2\0|\6\0|\0"..., 20480) = 20480
read(4, "i\5\0\0\0i!\241\7\0s2\0\0\0large-file-name-F"..., 4096) = 1572
read(4, "", 4096)                       = 0
close(4)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/lib/python2.6/site-packages/urlgrabber/math", 0x7fffe41f4990) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/math.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/mathmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/math.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/math.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/urlgrabber/fcntl", 0x7fffe41f4990) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/fcntl.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/fcntlmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/fcntl.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/fcntl.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/urlgrabber/struct", 0x7fffe41f4990) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/struct.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/structmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/struct.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/struct.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/urlgrabber/termios", 0x7fffe41f4990) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/termios.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/termiosmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/termios.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/termios.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/bin/termios", 0x7fffe41f4990) = -1 ENOENT (No such file or directory)
open("/usr/bin/termios.so", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/termiosmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/termios.py", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/termios.pyc", O_RDONLY)  = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/termios", 0x7fffe41f4990) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/termios.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/termiosmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/termios.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/termios.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/termios", 0x7fffe41f4990) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/termios.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/termiosmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/termios.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/termios.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/termios", 0x7fffe41f4990) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/termios.so", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0555, st_size=25160, ...}) = 0
open("/usr/lib64/python2.6/lib-dynload/termios.so", O_RDONLY) = 5
read(5, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0%\0\0\0\0\0\0"..., 832) = 832
fstat(5, {st_mode=S_IFREG|0555, st_size=25160, ...}) = 0
mmap(NULL, 2120344, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 5, 0) = 0x7fb988795000
mprotect(0x7fb988799000, 2097152, PROT_NONE) = 0
mmap(0x7fb988999000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 5, 0x4000) = 0x7fb988999000
close(5)                                = 0
close(4)                                = 0
close(3)                                = 0
stat("/usr/bin/virtinst", 0x7fffe41f7fa0) = -1 ENOENT (No such file or directory)
open("/usr/bin/virtinst.so", O_RDONLY)  = -1 ENOENT (No such file or directory)
open("/usr/bin/virtinstmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/virtinst.py", O_RDONLY)  = -1 ENOENT (No such file or directory)
open("/usr/bin/virtinst.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/virtinst", 0x7fffe41f7fa0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/virtinst.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/virtinstmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/virtinst.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/virtinst.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/virtinst", 0x7fffe41f7fa0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/virtinst.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/virtinstmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/virtinst.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/virtinst.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/virtinst", 0x7fffe41f7fa0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/virtinst.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/virtinstmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/virtinst.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/virtinst.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/virtinst", 0x7fffe41f7fa0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/virtinst.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/virtinstmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/virtinst.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/virtinst.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/gst-0.10/virtinst", 0x7fffe41f7fa0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/virtinst.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/virtinstmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/virtinst.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/virtinst.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/gtk-2.0/virtinst", 0x7fffe41f7fa0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/virtinst.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/virtinstmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/virtinst.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/virtinst.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/webkit-1.0/virtinst", 0x7fffe41f7fa0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/virtinst.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/virtinstmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/virtinst.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/virtinst.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/virtinst", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python2.6/site-packages/virtinst/__init__.py", {st_mode=S_IFREG|0644, st_size=3362, ...}) = 0
stat("/usr/lib/python2.6/site-packages/virtinst/__init__", 0x7fffe41f6f40) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/__init__.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/__init__module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/__init__.py", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=3362, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/__init__.pyc", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=2715, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(4, "\321\362\r\n\300W-Nc\0\0\0\0\0\0\0\0I\0\0\0@\0\0\0s\r\3\0\0d\0"..., 4096) = 2715
fstat(4, {st_mode=S_IFREG|0644, st_size=2715, ...}) = 0
read(4, "", 4096)                       = 0
close(4)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/lib/python2.6/site-packages/virtinst", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python2.6/site-packages/virtinst", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python2.6/site-packages/virtinst/gettext", 0x7fffe41f3930) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/gettext.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/gettextmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/gettext.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/gettext.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/virtinst/sys", 0x7fffe41f3930) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/sys.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/sysmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/sys.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/sys.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/virtinst/_config", 0x7fffe41f3930) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/_config.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/_configmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/_config.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=121, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/_config.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=347, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(5, "\321\362\r\n\316\350\337Nc\0\0\0\0\0\0\0\0\6\0\0\0@\0\0\0sL\0\0\0d\0"..., 4096) = 347
fstat(5, {st_mode=S_IFREG|0644, st_size=347, ...}) = 0
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
close(4)                                = 0
stat("/usr/lib/python2.6/site-packages/virtinst/Storage", 0x7fffe41f3930) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/Storage.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/Storagemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/Storage.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=49879, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/Storage.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=52005, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(5, "\321\362\r\n\316\350\337Nc\0\0\0\0\0\0\0\0\f\0\0\0@\0\0\0s\4\2\0\0d\0"..., 4096) = 4096
fstat(5, {st_mode=S_IFREG|0644, st_size=52005, ...}) = 0
read(5, "t\17\0\0\0get_object_type\213\0\0\0s\2\0\0\0\0\2c"..., 45056) = 45056
read(5, "\0\0\6\0\0\0B\0\0\0sS\0\0\0e\0\0Z\1\0d\0\0Z\2\0e\3\0Z\4"..., 4096) = 2853
read(5, "", 4096)                       = 0
brk(0x272e000)                          = 0x272e000
close(5)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/lib/python2.6/site-packages/virtinst/libvirt", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/libvirt.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/libvirtmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/libvirt.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/libvirt.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/bin/libvirt", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/bin/libvirt.so", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/libvirtmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/libvirt.py", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/libvirt.pyc", O_RDONLY)  = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/libvirt", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/libvirt.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/libvirtmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/libvirt.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/libvirt.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/libvirt", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/libvirt.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/libvirtmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/libvirt.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/libvirt.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/libvirt", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/libvirt.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/libvirtmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/libvirt.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/libvirt.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/libvirt", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/libvirt.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/libvirtmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/libvirt.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=179408, ...}) = 0
open("/usr/lib64/python2.6/site-packages/libvirt.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=208478, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(6, "\321\362\r\n\10KOOc\0\0\0\0\0\0\0\0\10\0\0\0@\0\0\0s\361\n\0\0y\20"..., 4096) = 4096
fstat(6, {st_mode=S_IFREG|0644, st_size=208478, ...}) = 0
brk(0x2764000)                          = 0x2764000
read(6, "\20\1\5\1c\1\0\0\0\1\0\0\0\2\0\0\0C\0\0\0s \0\0\0|\0\0i\0\0"..., 200704) = 200704
read(6, "AIN_EVENT_STOPPED_FAILEDt&\0\0\0VIR"..., 4096) = 3678
read(6, "", 4096)                       = 0
brk(0x27a6000)                          = 0x27a6000
close(6)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/bin/libvirtmod", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/bin/libvirtmod.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/libvirtmodmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/libvirtmod.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/libvirtmod.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/libvirtmod", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/libvirtmod.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/libvirtmodmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/libvirtmod.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/libvirtmod.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/libvirtmod", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/libvirtmod.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/libvirtmodmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/libvirtmod.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/libvirtmod.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/libvirtmod", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/libvirtmod.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/libvirtmodmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/libvirtmod.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/libvirtmod.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/libvirtmod", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/libvirtmod.so", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0755, st_size=172168, ...}) = 0
open("/usr/lib64/python2.6/site-packages/libvirtmod.so", O_RDONLY) = 7
read(7, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\200\332\0\0\0\0\0\0"..., 832) = 832
fstat(7, {st_mode=S_IFREG|0755, st_size=172168, ...}) = 0
mmap(NULL, 2267488, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x7fb98856b000
mprotect(0x7fb988592000, 2093056, PROT_NONE) = 0
mmap(0x7fb988791000, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0x26000) = 0x7fb988791000
close(7)                                = 0
open("/etc/ld.so.cache", O_RDONLY)      = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=81064, ...}) = 0
mmap(NULL, 81064, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7fb9912c2000
close(7)                                = 0
open("/usr/lib64/libvirt.so.0", O_RDONLY) = 7
read(7, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\220\353\3\0\0\0\0\0"..., 832) = 832
fstat(7, {st_mode=S_IFREG|0755, st_size=9634604, ...}) = 0
mmap(NULL, 4807616, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x7fb9880d5000
mprotect(0x7fb988354000, 2093056, PROT_NONE) = 0
mmap(0x7fb988553000, 90112, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0x27e000) = 0x7fb988553000
mmap(0x7fb988569000, 7104, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fb988569000
close(7)                                = 0
open("/lib64/libcap-ng.so.0", O_RDONLY) = 7
read(7, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0p\22\340\254;\0\0\0"..., 832) = 832
fstat(7, {st_mode=S_IFREG|0755, st_size=21160, ...}) = 0
mmap(0x3bace00000, 2113840, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x3bace00000
mprotect(0x3bace04000, 2093056, PROT_NONE) = 0
mmap(0x3bad003000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0x3000) = 0x3bad003000
close(7)                                = 0
open("/usr/lib64/libyajl.so.1", O_RDONLY) = 7
read(7, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\200\23 \254;\0\0\0"..., 832) = 832
fstat(7, {st_mode=S_IFREG|0755, st_size=31352, ...}) = 0
mmap(0x3bac200000, 2124280, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x3bac200000
mprotect(0x3bac207000, 2093056, PROT_NONE) = 0
mmap(0x3bac406000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0x6000) = 0x3bac406000
close(7)                                = 0
open("/lib64/libnl.so.1", O_RDONLY)     = 7
read(7, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0T\301\v2\0\0\0"..., 832) = 832
fstat(7, {st_mode=S_IFREG|0755, st_size=340072, ...}) = 0
mmap(0x320bc00000, 2432904, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x320bc00000
mprotect(0x320bc4d000, 2097152, PROT_NONE) = 0
mmap(0x320be4d000, 20480, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0x4d000) = 0x320be4d000
close(7)                                = 0
open("/lib64/libaudit.so.1", O_RDONLY)  = 7
read(7, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0%\300\0252\0\0\0"..., 832) = 832
fstat(7, {st_mode=S_IFREG|0755, st_size=99112, ...}) = 0
mmap(0x3215c00000, 2191888, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x3215c00000
mprotect(0x3215c16000, 2097152, PROT_NONE) = 0
mmap(0x3215e16000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0x16000) = 0x3215e16000
close(7)                                = 0
open("/lib64/libdevmapper.so.1.02", O_RDONLY) = 7
read(7, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0T`\254;\0\0\0"..., 832) = 832
fstat(7, {st_mode=S_IFREG|0755, st_size=171360, ...}) = 0
mmap(0x3bac600000, 2264016, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x3bac600000
mprotect(0x3bac627000, 2097152, PROT_NONE) = 0
mmap(0x3bac827000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0x27000) = 0x3bac827000
close(7)                                = 0
open("/usr/lib64/libnuma.so.1", O_RDONLY) = 7
read(7, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320&\340\253;\0\0\0"..., 832) = 832
fstat(7, {st_mode=S_IFREG|0755, st_size=35752, ...}) = 0
mmap(0x3babe00000, 2129248, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x3babe00000
mprotect(0x3babe08000, 2093056, PROT_NONE) = 0
mmap(0x3bac007000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0x7000) = 0x3bac007000
close(7)                                = 0
open("/usr/lib64/libgnutls.so.26", O_RDONLY) = 7
read(7, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\200]\1\0352\0\0\0"..., 832) = 832
fstat(7, {st_mode=S_IFREG|0755, st_size=662656, ...}) = 0
mmap(0x321d000000, 2755272, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x321d000000
mprotect(0x321d09b000, 2093056, PROT_NONE) = 0
mmap(0x321d29a000, 28672, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0x9a000) = 0x321d29a000
close(7)                                = 0
open("/lib64/libgcrypt.so.11", O_RDONLY) = 7
read(7, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0n@\0322\0\0\0"..., 832) = 832
fstat(7, {st_mode=S_IFREG|0755, st_size=481064, ...}) = 0
mmap(0x321a400000, 2574912, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x321a400000
mprotect(0x321a472000, 2093056, PROT_NONE) = 0
mmap(0x321a671000, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0x71000) = 0x321a671000
close(7)                                = 0
open("/usr/lib64/libnetcf.so.1", O_RDONLY) = 7
read(7, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 at A \257;\0\0\0"..., 832) = 832
fstat(7, {st_mode=S_IFREG|0755, st_size=61256, ...}) = 0
mmap(0x3baf200000, 2153608, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x3baf200000
mprotect(0x3baf20e000, 2093056, PROT_NONE) = 0
mmap(0x3baf40d000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0xd000) = 0x3baf40d000
close(7)                                = 0
open("/usr/lib64/libpcap.so.1", O_RDONLY) = 7
read(7, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0l\240\255;\0\0\0"..., 832) = 832
fstat(7, {st_mode=S_IFREG|0755, st_size=225808, ...}) = 0
mmap(0x3bada00000, 2321824, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x3bada00000
mprotect(0x3bada35000, 2093056, PROT_NONE) = 0
mmap(0x3badc34000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0x34000) = 0x3badc34000
close(7)                                = 0
open("/usr/lib64/libxml2.so.2", O_RDONLY) = 7
read(7, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360\306b\255;\0\0\0"..., 832) = 832
fstat(7, {st_mode=S_IFREG|0755, st_size=1379240, ...}) = 0
mmap(0x3bad600000, 3477176, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x3bad600000
mprotect(0x3bad747000, 2093056, PROT_NONE) = 0
mmap(0x3bad946000, 40960, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0x146000) = 0x3bad946000
mmap(0x3bad950000, 3768, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x3bad950000
close(7)                                = 0
open("/usr/lib64/libxenstore.so.3.0", O_RDONLY) = 7
read(7, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 \35 \254;\0\0\0"..., 832) = 832
fstat(7, {st_mode=S_IFREG|0755, st_size=32324, ...}) = 0
mmap(0x3bac200000, 2131176, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x7fb987ecc000
mprotect(0x7fb987ed1000, 2097152, PROT_NONE) = 0
mmap(0x7fb9880d1000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0x5000) = 0x7fb9880d1000
mmap(0x7fb9880d2000, 9448, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fb9880d2000
close(7)                                = 0
open("/lib64/libsepol.so.1", O_RDONLY)  = 7
read(7, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\200>\240\254;\0\0\0"..., 832) = 832
fstat(7, {st_mode=S_IFREG|0755, st_size=251112, ...}) = 0
mmap(0x3baca00000, 2345600, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x3baca00000
mprotect(0x3baca3b000, 2097152, PROT_NONE) = 0
mmap(0x3bacc3b000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0x3b000) = 0x3bacc3b000
close(7)                                = 0
open("/lib64/libudev.so.0", O_RDONLY)   = 7
read(7, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\300( \255;\0\0\0"..., 832) = 832
fstat(7, {st_mode=S_IFREG|0755, st_size=61504, ...}) = 0
mmap(0x3bad200000, 2156608, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x3bad200000
mprotect(0x3bad20e000, 2093056, PROT_NONE) = 0
mmap(0x3bad40d000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0xd000) = 0x3bad40d000
mmap(0x3bad40e000, 2112, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x3bad40e000
close(7)                                = 0
open("/usr/lib64/libtasn1.so.3", O_RDONLY) = 7
read(7, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0P\32\200\0342\0\0\0"..., 832) = 832
fstat(7, {st_mode=S_IFREG|0755, st_size=68544, ...}) = 0
mmap(0x321c800000, 2161832, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x321c800000
mprotect(0x321c810000, 2093056, PROT_NONE) = 0
mmap(0x321ca0f000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0xf000) = 0x321ca0f000
close(7)                                = 0
open("/lib64/libgpg-error.so.0", O_RDONLY) = 7
read(7, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 \10\300\0312\0\0\0"..., 832) = 832
fstat(7, {st_mode=S_IFREG|0755, st_size=16656, ...}) = 0
mmap(0x3219c00000, 2109528, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x3219c00000
mprotect(0x3219c03000, 2093056, PROT_NONE) = 0
mmap(0x3219e02000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0x2000) = 0x3219e02000
close(7)                                = 0
open("/usr/lib64/libaugeas.so.0", O_RDONLY) = 7
read(7, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\300L\340\255;\0\0\0"..., 832) = 832
fstat(7, {st_mode=S_IFREG|0755, st_size=276704, ...}) = 0
mmap(0x3bade00000, 2371504, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x3bade00000
mprotect(0x3bade41000, 2097152, PROT_NONE) = 0
mmap(0x3bae041000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0x41000) = 0x3bae041000
close(7)                                = 0
open("/usr/lib64/libexslt.so.0", O_RDONLY) = 7
read(7, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0:`\256;\0\0\0"..., 832) = 832
fstat(7, {st_mode=S_IFREG|0755, st_size=84296, ...}) = 0
mmap(0x3bae600000, 2176864, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x3bae600000
mprotect(0x3bae613000, 2097152, PROT_NONE) = 0
mmap(0x3bae813000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0x13000) = 0x3bae813000
close(7)                                = 0
open("/usr/lib64/libxslt.so.1", O_RDONLY) = 7
read(7, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\340\251`\257;\0\0\0"..., 832) = 832
fstat(7, {st_mode=S_IFREG|0755, st_size=248720, ...}) = 0
mmap(0x3baf600000, 2341432, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x3baf600000
mprotect(0x3baf63b000, 2093056, PROT_NONE) = 0
mmap(0x3baf83a000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0x3a000) = 0x3baf83a000
close(7)                                = 0
open("/usr/lib64/libfa.so.1", O_RDONLY) = 7
read(7, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0@\26\340\256;\0\0\0"..., 832) = 832
fstat(7, {st_mode=S_IFREG|0755, st_size=71752, ...}) = 0
mmap(0x3baee00000, 2166576, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x3baee00000
mprotect(0x3baee11000, 2093056, PROT_NONE) = 0
mmap(0x3baf010000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0x10000) = 0x3baf010000
close(7)                                = 0
mprotect(0x3219e02000, 4096, PROT_READ) = 0
mprotect(0x3bad40d000, 4096, PROT_READ) = 0
mprotect(0x3bacc3b000, 4096, PROT_READ) = 0
mprotect(0x321a671000, 4096, PROT_READ) = 0
mprotect(0x3215e16000, 4096, PROT_READ) = 0
mprotect(0x3bad003000, 4096, PROT_READ) = 0
open("/sys/devices/system/node", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 7
getdents(7, /* 7 entries */, 32768)     = 216
getdents(7, /* 0 entries */, 32768)     = 0
close(7)                                = 0
open("/proc/self/status", O_RDONLY)     = 7
fstat(7, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb99123a000
read(7, "Name:\tvirt-install\nState:\tR (run"..., 1024) = 1024
close(7)                                = 0
munmap(0x7fb99123a000, 4096)            = 0
sched_getaffinity(0, 512,  { 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }) = 512
open("/sys/devices/system/cpu", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 7
getdents(7, /* 13 entries */, 32768)    = 400
getdents(7, /* 0 entries */, 32768)     = 0
close(7)                                = 0
open("/sys/devices/system/cpu", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 7
getdents(7, /* 13 entries */, 32768)    = 400
getdents(7, /* 0 entries */, 32768)     = 0
close(7)                                = 0
open("/proc/self/status", O_RDONLY)     = 7
fstat(7, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb99123a000
read(7, "Name:\tvirt-install\nState:\tR (run"..., 1024) = 1024
read(7, "switches:\t2\n", 1024)         = 12
read(7, "", 1024)                       = 0
close(7)                                = 0
munmap(0x7fb99123a000, 4096)            = 0
open("/proc/net/psched", O_RDONLY)      = 7
fstat(7, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb99123a000
read(7, "000003e8 00000040 000f4240 3b9ac"..., 1024) = 36
close(7)                                = 0
munmap(0x7fb99123a000, 4096)            = 0
munmap(0x7fb9912c2000, 81064)           = 0
time(NULL)                              = 1331870690
access("/etc/gcrypt/fips_enabled", F_OK) = -1 ENOENT (No such file or directory)
open("/proc/sys/crypto/fips_enabled", O_RDONLY) = -1 ENOENT (No such file or directory)
access("/dev/random", R_OK)             = 0
access("/dev/urandom", R_OK)            = 0
time(NULL)                              = 1331870690
open("/dev/urandom", O_RDONLY)          = 7
fcntl(7, F_GETFD)                       = 0
fcntl(7, F_SETFD, FD_CLOEXEC)           = 0
select(8, [7], NULL, NULL, {3, 0})      = 1 (in [7], left {2, 999997})
read(7, "E; i\200\22$\237\322%\210\27\215\302]\376\320\33\373p81\232\227\212\37K\356\32pK\10"..., 120) = 120
select(8, [7], NULL, NULL, {3, 0})      = 1 (in [7], left {2, 999998})
read(7, "(\240\217e\31\367\207~(JTSy\3044j\25\302kut\271\f\361\1\243\315e\244\256\221\1"..., 120) = 120
select(8, [7], NULL, NULL, {3, 0})      = 1 (in [7], left {2, 999998})
read(7, "F\347u\321)R\3[M@\326\0>\320\325\25\320\350s\215\232t\30\220UJ\316)H\206Ro"..., 120) = 120
select(8, [7], NULL, NULL, {3, 0})      = 1 (in [7], left {2, 999998})
read(7, "$R\277}\306\365\345\206\352\246\330Z\361\3454\0\351$\210\0306m\224\302\300\277Y\357\246\324\0275"..., 120) = 120
select(8, [7], NULL, NULL, {3, 0})      = 1 (in [7], left {2, 999998})
read(7, "\324P\326\231\315\311\263\236\223zI^\274\241XS\5\"\326\f>k\223\201Tm\335\275O\351\206\347"..., 120) = 120
select(8, [7], NULL, NULL, {3, 0})      = 1 (in [7], left {2, 999998})
read(7, "K\f\227\320\223\325\300Jhnw\204\364\237\3\35\320\177b\325\351\215.\0\222&\321\211x\307\321F"..., 120) = 120
select(8, [7], NULL, NULL, {3, 0})      = 1 (in [7], left {2, 999998})
read(7, "\364_\316\\\327\200\375\335\305\261 ?\0055\214\37\0_\205\305\22I5\4\213\177W\242\205kW\365"..., 120) = 120
select(8, [7], NULL, NULL, {3, 0})      = 1 (in [7], left {2, 999998})
read(7, "\346\3033n\312e\36\20~\363\252\310`\305s\21\305J\2075\366\262\3\tJp\374Z\26\322&Y"..., 120) = 120
select(8, [7], NULL, NULL, {3, 0})      = 1 (in [7], left {2, 999998})
read(7, "a\325\"\vwRd\177x\227j\357\340Q<Y\213\312D\5\331\254A\275\313fvv\2379\351\373"..., 120) = 120
select(8, [7], NULL, NULL, {3, 0})      = 1 (in [7], left {2, 999998})
read(7, "wq\373\0050\23\221\203}\265\307\25\323y\211M+\4#T\2\226l\245\356\357\265\215\313\203{\250"..., 120) = 120
select(8, [7], NULL, NULL, {3, 0})      = 1 (in [7], left {2, 999998})
read(7, "\333\37'u\337\276dYd>\224\227pdGC\0C\362\36\363\n\217\300\2271\31\344\21M#\302"..., 120) = 120
select(8, [7], NULL, NULL, {3, 0})      = 1 (in [7], left {2, 999998})
read(7, "}+\272\224\355E\365I\300?<s\253\323\201\202\212\3123\340\2\361\336IJ\37\224v\363y_\244"..., 120) = 120
select(8, [7], NULL, NULL, {3, 0})      = 1 (in [7], left {2, 999998})
read(7, "\2104@\225C\v\202\304\267.\2\5Pih\t\357\304\375\335!\275j\222\206\225$\33\232\340\225\375"..., 120) = 120
select(8, [7], NULL, NULL, {3, 0})      = 1 (in [7], left {2, 999998})
read(7, "\10\324;9P}fY\6\321\335\345\253\233\177\262\373Q\263\v\304\331\335\276\321AY\233\272\200\363\370"..., 120) = 120
select(8, [7], NULL, NULL, {3, 0})      = 1 (in [7], left {2, 999998})
read(7, "h\315\304oU\231pm\302\307\303\366-\220\276\17a@\221\212\242\262\272\220\226]=We\226\360\315"..., 120) = 120
select(8, [7], NULL, NULL, {3, 0})      = 1 (in [7], left {2, 999998})
read(7, "\36xsz(\371P\10X\16k\177\265\314D\372x#\315\220\355\223\374\223\365%\20\177\237\236\261}"..., 120) = 120
select(8, [7], NULL, NULL, {3, 0})      = 1 (in [7], left {2, 999998})
read(7, "\260u\3317\252g\215\352\364\331M\247H6\2:\257\314>\233\312G\366bN\37\316LX\251\0\247"..., 120) = 120
select(8, [7], NULL, NULL, {3, 0})      = 1 (in [7], left {2, 999998})
read(7, "\36iT\346Ju\207\267J(\r\2215\363PG9\266\353\22Pw\10\315\237\220\346\201\367\376G\5"..., 120) = 120
select(8, [7], NULL, NULL, {3, 0})      = 1 (in [7], left {2, 999998})
read(7, "v\254v\372$Q!\220\7X r\373B\351xv\376\371{\270.\37\242-TE\264]\342(\210"..., 120) = 120
select(8, [7], NULL, NULL, {3, 0})      = 1 (in [7], left {2, 999998})
read(7, "\10\255\340\276_\354\212\251_T\263m2K\237\276\347\365[\276\34\223\241\21\344\313\237p\6%\24r"..., 120) = 120
select(8, [7], NULL, NULL, {3, 0})      = 1 (in [7], left {2, 999998})
read(7, "0\241D!\206rt\251V\215m\235]\322\3763\323\255o\330\212\311 \25\352\233\330D\333!\253M"..., 120) = 120
select(8, [7], NULL, NULL, {3, 0})      = 1 (in [7], left {2, 999998})
read(7, "\7\16\356\273U\327\243\365\213\330\303\30!b\fj\334:\306M\23\205om\355\206\204\312\214\256\334\5"..., 120) = 120
select(8, [7], NULL, NULL, {3, 0})      = 1 (in [7], left {2, 999998})
read(7, "\236\342\340\221\261Ex\214\24gt\272~`4\10j_?\333r`\206s\352\\t\277SG5A"..., 120) = 120
select(8, [7], NULL, NULL, {3, 0})      = 1 (in [7], left {2, 999998})
read(7, "\304\373\350m\276\366\340\355\210\372F[\322m\336\301\242\223\34^\243\210\331[\310\n\5Pc\341\344c"..., 120) = 120
select(8, [7], NULL, NULL, {3, 0})      = 1 (in [7], left {2, 999998})
read(7, "\27\360\n\372Q\355m\3\2629\327\367\3\325\31\23\347\241\360/@\235\302\23\333;YZG\24b\211"..., 120) = 120
gettimeofday({1331870690, 762814}, NULL) = 0
getrusage(RUSAGE_SELF, {ru_utime={0, 87986}, ru_stime={0, 122981}, ...}) = 0
time(NULL)                              = 1331870690
times({tms_utime=8, tms_stime=12, tms_cutime=0, tms_cstime=0}) = 429837300
gettimeofday({1331870690, 763324}, NULL) = 0
getrusage(RUSAGE_SELF, {ru_utime={0, 87986}, ru_stime={0, 123981}, ...}) = 0
time(NULL)                              = 1331870690
times({tms_utime=8, tms_stime=12, tms_cutime=0, tms_cstime=0}) = 429837300
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870690, 763985747}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870690, 764212213}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870690, 764420485}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870690, 764622430}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870690, 764816364}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870690, 765021012}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870690, 765214776}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870690, 765436758}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870690, 765638278}) = 0
open("/proc/xen/privcmd", O_RDWR)       = 8
ioctl(8, SNDCTL_DSP_RESET, 0x7fffe41eecf0) = 262145
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870690, 767339063}) = 0
mlock(0x7fffe41eec60, 72)               = 0
mlock(0x7fffe41eeb50, 136)              = 0
ioctl(8, SNDCTL_DSP_RESET, 0x7fffe41ee9d0) = -1 EACCES (Permission denied)
munlock(0x7fffe41eeb50, 136)            = 0
munlock(0x7fffe41eec60, 72)             = 0
mlock(0x7fffe41eec60, 72)               = 0
mlock(0x7fffe41eeb50, 136)              = 0
ioctl(8, SNDCTL_DSP_RESET, 0x7fffe41ee9d0) = -1 EACCES (Permission denied)
munlock(0x7fffe41eeb50, 136)            = 0
munlock(0x7fffe41eec60, 72)             = 0
mlock(0x7fffe41eec60, 72)               = 0
mlock(0x7fffe41eeb50, 136)              = 0
ioctl(8, SNDCTL_DSP_RESET, 0x7fffe41ee9d0) = -1 EACCES (Permission denied)
munlock(0x7fffe41eeb50, 136)            = 0
munlock(0x7fffe41eec60, 72)             = 0
mlock(0x7fffe41eec60, 72)               = 0
mlock(0x7fffe41eeb50, 136)              = 0
ioctl(8, SNDCTL_DSP_RESET, 0x7fffe41ee9d0) = -1 EACCES (Permission denied)
munlock(0x7fffe41eeb50, 136)            = 0
munlock(0x7fffe41eec60, 72)             = 0
mlock(0x7fffe41eec60, 72)               = 0
mlock(0x7fffe41eeb50, 136)              = 0
ioctl(8, SNDCTL_DSP_RESET, 0x7fffe41ee9d0) = -1 EACCES (Permission denied)
munlock(0x7fffe41eeb50, 136)            = 0
munlock(0x7fffe41eec60, 72)             = 0
mlock(0x7fffe41eec60, 72)               = 0
mlock(0x7fffe41eeb50, 136)              = 0
ioctl(8, SNDCTL_DSP_RESET, 0x7fffe41ee9d0) = 0
munlock(0x7fffe41eeb50, 136)            = 0
munlock(0x7fffe41eec60, 72)             = 0
mlock(0x7fffe41eea50, 136)              = 0
ioctl(8, SNDCTL_DSP_RESET, 0x7fffe41ee9e0) = 0
munlock(0x7fffe41eea50, 136)            = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870690, 771020692}) = 0
close(8)                                = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870690, 771322983}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870690, 771516515}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870690, 771725110}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870690, 771918491}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870690, 772120173}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870690, 772327617}) = 0
access("/usr/lib/virtualbox/VBoxXPCOMC.so", F_OK) = -1 ENOENT (No such file or directory)
access("/usr/lib/virtualbox-ose/VBoxXPCOMC.so", F_OK) = -1 ENOENT (No such file or directory)
access("/usr/lib64/virtualbox/VBoxXPCOMC.so", F_OK) = -1 ENOENT (No such file or directory)
access("/usr/lib64/virtualbox-ose/VBoxXPCOMC.so", F_OK) = -1 ENOENT (No such file or directory)
access("/usr/lib/VirtualBox/VBoxXPCOMC.so", F_OK) = -1 ENOENT (No such file or directory)
access("/opt/virtualbox/VBoxXPCOMC.so", F_OK) = -1 ENOENT (No such file or directory)
access("/opt/VirtualBox/VBoxXPCOMC.so", F_OK) = -1 ENOENT (No such file or directory)
access("/opt/virtualbox/i386/VBoxXPCOMC.so", F_OK) = -1 ENOENT (No such file or directory)
access("/opt/VirtualBox/i386/VBoxXPCOMC.so", F_OK) = -1 ENOENT (No such file or directory)
access("/opt/virtualbox/amd64/VBoxXPCOMC.so", F_OK) = -1 ENOENT (No such file or directory)
access("/opt/VirtualBox/amd64/VBoxXPCOMC.so", F_OK) = -1 ENOENT (No such file or directory)
access("/usr/local/lib/virtualbox/VBoxXPCOMC.so", F_OK) = -1 ENOENT (No such file or directory)
access("/usr/local/lib/VirtualBox/VBoxXPCOMC.so", F_OK) = -1 ENOENT (No such file or directory)
access("/Applications/VirtualBox.app/Contents/MacOS/VBoxXPCOMC.so", F_OK) = -1 ENOENT (No such file or directory)
open("/etc/ld.so.cache", O_RDONLY)      = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=81064, ...}) = 0
mmap(NULL, 81064, PROT_READ, MAP_PRIVATE, 8, 0) = 0x7fb9912c2000
close(8)                                = 0
open("/lib64/tls/x86_64/VBoxXPCOMC.so", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/lib64/tls/x86_64", 0x7fffe41ee3e0) = -1 ENOENT (No such file or directory)
open("/lib64/tls/VBoxXPCOMC.so", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/lib64/tls", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
open("/lib64/x86_64/VBoxXPCOMC.so", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/lib64/x86_64", 0x7fffe41ee3e0)   = -1 ENOENT (No such file or directory)
open("/lib64/VBoxXPCOMC.so", O_RDONLY)  = -1 ENOENT (No such file or directory)
stat("/lib64", {st_mode=S_IFDIR|0555, st_size=12288, ...}) = 0
open("/usr/lib64/tls/x86_64/VBoxXPCOMC.so", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/tls/x86_64", 0x7fffe41ee3e0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/tls/VBoxXPCOMC.so", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/tls", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
open("/usr/lib64/x86_64/VBoxXPCOMC.so", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/x86_64", 0x7fffe41ee3e0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/VBoxXPCOMC.so", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64", {st_mode=S_IFDIR|0755, st_size=65536, ...}) = 0
munmap(0x7fb9912c2000, 81064)           = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870690, 802310177}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870690, 802507276}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870690, 802701188}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870690, 802895174}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870690, 803090746}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870690, 803315145}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870690, 803508459}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870690, 803709784}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870690, 803902852}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870690, 804095245}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870690, 804300867}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870690, 804493695}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870690, 804698038}) = 0
close(6)                                = 0
brk(0x27c8000)                          = 0x27c8000
close(5)                                = 0
stat("/usr/lib/python2.6/site-packages/virtinst/threading", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/threading.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/threadingmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/threading.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/threading.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/virtinst/time", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/time.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/timemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/time.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/time.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/virtinst/os", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/os.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/osmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/os.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/os.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/virtinst/logging", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/logging.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/loggingmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/logging.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/logging.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/virtinst/_util", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/_util.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/_utilmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/_util.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=16442, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/_util.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=17985, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(6, "\321\362\r\n_\254-Nc\0\0\0\0\0\0\0\0\27\0\0\0@\0\0\0s\r\3\0\0d\0"..., 4096) = 4096
fstat(6, {st_mode=S_IFREG|0644, st_size=17985, ...}) = 0
read(6, "XXXX or may omit hyphens altoget"..., 12288) = 12288
read(6, "\1\0D]$\0}\2\0t\2\0|\2\0\203\1\0}\3\0|\3\0d\2\0j\3\0o\5"..., 4096) = 1601
read(6, "", 4096)                       = 0
brk(0x2818000)                          = 0x2818000
close(6)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/lib/python2.6/site-packages/virtinst/stat", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/stat.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/statmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/stat.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/stat.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/virtinst/re", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/re.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/remodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/re.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/re.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/virtinst/commands", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/commands.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/commandsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/commands.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/commands.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/bin/commands", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/bin/commands.so", O_RDONLY)  = -1 ENOENT (No such file or directory)
open("/usr/bin/commandsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/commands.py", O_RDONLY)  = -1 ENOENT (No such file or directory)
open("/usr/bin/commands.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/commands", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/commands.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/commandsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/commands.py", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=2543, ...}) = 0
open("/usr/lib64/python2.6/commands.pyc", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=2489, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(8, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0sF\0\0\0d\0"..., 4096) = 2489
fstat(8, {st_mode=S_IFREG|0644, st_size=2489, ...}) = 0
read(8, "", 4096)                       = 0
close(8)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
close(6)                                = 0
stat("/usr/lib/python2.6/site-packages/virtinst/traceback", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/traceback.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/tracebackmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/traceback.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/traceback.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/virtinst/platform", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/platform.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/platformmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/platform.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/platform.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/bin/platform", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/bin/platform.so", O_RDONLY)  = -1 ENOENT (No such file or directory)
open("/usr/bin/platformmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/platform.py", O_RDONLY)  = -1 ENOENT (No such file or directory)
open("/usr/bin/platform.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/platform", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/platform.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/platformmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/platform.py", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0755, st_size=52619, ...}) = 0
open("/usr/lib64/python2.6/platform.pyc", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=38781, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(8, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\21\0\0\0@\0\0\0s\313\3\0\0d\0"..., 4096) = 4096
fstat(8, {st_mode=S_IFREG|0644, st_size=38781, ...}) = 0
read(8, "i\1\0i\2\0d\7\0\203\1\0oo\0\1t\3\0d\7\0\203\1\0i\4\0\203\0\0}"..., 32768) = 32768
read(8, "       If \"aliased\" is true, the"..., 4096) = 1917
read(8, "", 4096)                       = 0
close(8)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
close(6)                                = 0
stat("/usr/lib/python2.6/site-packages/virtinst/subprocess", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/subprocess.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/subprocessmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/subprocess.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/subprocess.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/bin/subprocess", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/bin/subprocess.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/subprocessmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/subprocess.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/subprocess.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/subprocess", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/subprocess.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/subprocessmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/subprocess.py", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=57049, ...}) = 0
open("/usr/lib64/python2.6/subprocess.pyc", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=40779, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(8, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\22\0\0\0@\0\0\0s3\2\0\0d\0"..., 4096) = 4096
fstat(8, {st_mode=S_IFREG|0644, st_size=40779, ...}) = 0
read(8, "convention or\n'\\r\\n', the Window"..., 32768) = 32768
read(8, "\\\3\0}\6\0}\7\0}\10\0Wn9\0\4t\r\0i\16\0j\n\0o*\0\1\1}"..., 4096) = 3915
read(8, "", 4096)                       = 0
close(8)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/bin/select", 0x7fffe41e9700) = -1 ENOENT (No such file or directory)
open("/usr/bin/select.so", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/selectmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/select.py", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/select.pyc", O_RDONLY)   = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/select", 0x7fffe41e9700) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/select.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/selectmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/select.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/select.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/select", 0x7fffe41e9700) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/select.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/selectmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/select.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/select.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/select", 0x7fffe41e9700) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/select.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/selectmodule.so", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0555, st_size=24432, ...}) = 0
open("/usr/lib64/python2.6/lib-dynload/selectmodule.so", O_RDONLY) = 9
read(9, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\340\33\0\0\0\0\0\0"..., 832) = 832
fstat(9, {st_mode=S_IFREG|0555, st_size=24432, ...}) = 0
mmap(NULL, 2119616, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 9, 0) = 0x7fb987cc6000
mprotect(0x7fb987cca000, 2097152, PROT_NONE) = 0
mmap(0x7fb987eca000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 9, 0x4000) = 0x7fb987eca000
close(9)                                = 0
close(8)                                = 0
stat("/usr/bin/pickle", 0x7fffe41e9700) = -1 ENOENT (No such file or directory)
open("/usr/bin/pickle.so", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/picklemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/pickle.py", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/pickle.pyc", O_RDONLY)   = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/pickle", 0x7fffe41e9700) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/pickle.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/picklemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/pickle.py", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=44811, ...}) = 0
open("/usr/lib64/python2.6/pickle.pyc", O_RDONLY) = 9
fstat(9, {st_mode=S_IFREG|0644, st_size=38645, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(9, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\27\0\0\0@\0\0\0s\2\4\0\0d\0"..., 4096) = 4096
fstat(9, {st_mode=S_IFREG|0644, st_size=38645, ...}) = 0
read(9, "\4\0S(\5\0\0\0s8\4\0\0This takes a file-l"..., 32768) = 32768
read(9, "\1\17\1\21\1\26\1(\1\0\0\0t\10\0\0\0StringIOc\3\0\0\0\3\0"..., 4096) = 1781
read(9, "", 4096)                       = 0
close(9)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/bin/org", 0x7fffe41e60f0)    = -1 ENOENT (No such file or directory)
open("/usr/bin/org.so", O_RDONLY)       = -1 ENOENT (No such file or directory)
open("/usr/bin/orgmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/org.py", O_RDONLY)       = -1 ENOENT (No such file or directory)
open("/usr/bin/org.pyc", O_RDONLY)      = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/org", 0x7fffe41e60f0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/org.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/orgmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/org.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/org.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/org", 0x7fffe41e60f0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/org.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/orgmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/org.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/org.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/org", 0x7fffe41e60f0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/org.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/orgmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/org.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/org.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/org", 0x7fffe41e60f0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/org.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/orgmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/org.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/org.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/gst-0.10/org", 0x7fffe41e60f0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/org.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/orgmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/org.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/org.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/gtk-2.0/org", 0x7fffe41e60f0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/org.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/orgmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/org.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/org.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/webkit-1.0/org", 0x7fffe41e60f0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/org.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/orgmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/org.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/org.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/org", 0x7fffe41e60f0) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/org.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/orgmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/org.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/org.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
close(8)                                = 0
getrlimit(RLIMIT_NOFILE, {rlim_cur=1024, rlim_max=4*1024}) = 0
close(6)                                = 0
stat("/usr/lib/python2.6/site-packages/virtinst/libxml2", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/libxml2.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/libxml2module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/libxml2.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/libxml2.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/bin/libxml2", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/bin/libxml2.so", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/libxml2module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/libxml2.py", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/libxml2.pyc", O_RDONLY)  = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/libxml2", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/libxml2.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/libxml2module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/libxml2.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/libxml2.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/libxml2", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/libxml2.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/libxml2module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/libxml2.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/libxml2.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/libxml2", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/libxml2.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/libxml2module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/libxml2.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/libxml2.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/libxml2", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/libxml2.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/libxml2module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/libxml2.py", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=339776, ...}) = 0
open("/usr/lib64/python2.6/site-packages/libxml2.pyc", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=444924, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(8, "\321\362\r\n\347\323DOc\0\0\0\0\0\0\0\0\6\0\0\0@\0\0\0se-\0\0d\0"..., 4096) = 4096
fstat(8, {st_mode=S_IFREG|0644, st_size=444924, ...}) = 0
read(8, "\0\0\203\0\0YZ\233\1d\270\1e\213\1f\1\0d\271\1\204\0\0\203\0\0YZ\234\1d"..., 4096) = 4096
read(8, "\353\3Z/\4d\354\3Z0\4d\355\3Z1\4d\356\3Z2\4d\357\3Z3\4d\360\3"..., 4096) = 4096
read(8, "\0S(\1\0\0\0N(\1\0\0\0R\n\0\0\0(\1\0\0\0R\v\0\0\0(\0\0\0"..., 4096) = 4096
read(8, "NR!\0\0\0s\26\0\0\0write io from a strin"..., 4096) = 4096
read(8, "\4c\4\0\0\0\4\0\0\0\1\0\0\0C\0\0\0s\4\0\0\0d\1\0S(\2\0\0\0"..., 4096) = 4096
read(8, "packages/libxml2.pyt\10\0\0\0__hash__"..., 4096) = 4096
read(8, "\1\0\0\0S\0\0\0s\7\0\0\0|\0\0i\0\0S(\0\0\0\0(\1\0\0\0R\24"..., 4096) = 4096
brk(0x2877000)                          = 0x2877000
read(8, "(\0\0\0\0s-\0\0\0/usr/lib64/python2.6/s"..., 4096) = 4096
read(8, "\0\0\0\0\1c\4\0\0\0\4\0\0\0\5\0\0\0C\0\0\0s\35\0\0\0t\0\0i\1"..., 4096) = 4096
read(8, "tted\n       tags. (\2\0\0\0R\"\0\0\0t\25\0\0"..., 4096) = 4096
read(8, "/python2.6/site-packages/libxml2"..., 4096) = 4096
read(8, "log initialization should prefer"..., 4096) = 4096
read(8, ". Use xmlIsExtender_ch or\n      "..., 4096) = 4096
read(8, "\0(\0\0\0\0(\0\0\0\0s-\0\0\0/usr/lib64/pytho"..., 4096) = 4096
read(8, "\n      finding the protocol host"..., 4096) = 4096
read(8, "l2.pyt\10\0\0\0parseDTD\346\4\0\0s\10\0\0\0\0\2\22\1\r"..., 4096) = 4096
read(8, "\0\0R\t\0\0\0Rs\0\0\0(\2\0\0\0R\357\0\0\0RX\0\0\0(\0\0\0\0"..., 4096) = 4096
read(8, "\r\0\20\1c\2\0\0\0\3\0\0\0\3\0\0\0C\0\0\0s<\0\0\0t\0\0i\1\0"..., 4096) = 4096
read(8, "/python2.6/site-packages/libxml2"..., 4096) = 4096
read(8, "\0\0\1\0\0\0C\0\0\0s\20\0\0\0t\0\0i\1\0\203\0\0}\0\0|\0\0S("..., 4096) = 4096
read(8, "\0\4\0\0\0\4\0\0\0C\0\0\0s\31\0\0\0t\0\0i\1\0|\0\0|\1\0|\2"..., 4096) = 4096
read(8, "\0\0\0s6\0\0\0t\0\0i\1\0\203\0\0}\0\0|\0\0d\3\0j\10\0o\20\0"..., 4096) = 4096
read(8, "(\0\0\0\0(\0\0\0\0(\0\0\0\0s-\0\0\0/usr/lib64/p"..., 4096) = 4096
read(8, "erCtxtR\23\0\0\0R\16\0\0\0t\20\0\0\0SchemaParse"..., 4096) = 4096
read(8, "(\0\0\0\0s-\0\0\0/usr/lib64/python2.6/s"..., 4096) = 4096
read(8, "\1\0\0\0s7\0\0\0Check whether the chara"..., 4096) = 4096
read(8, "(\0\0\0\0s-\0\0\0/usr/lib64/python2.6/s"..., 4096) = 4096
read(8, "\0\2\17\1c\1\0\0\0\2\0\0\0\2\0\0\0C\0\0\0s\23\0\0\0t\0\0i\1\0"..., 4096) = 4096
read(8, "ther the character is part of\n  "..., 4096) = 4096
read(8, "s\4\0\0\0\0\2\17\1c\1\0\0\0\2\0\0\0\2\0\0\0C\0\0\0s\23\0\0\0t"..., 4096) = 4096
brk(0x28b8000)                          = 0x28b8000
read(8, "vateUseSurrogates(\2\0\0\0R\214\2\0\0RX\0\0\0"..., 4096) = 4096
read(8, "uCSIsLatinExtendedAdditional*\n\0\0"..., 4096) = 4096
read(8, "\0\0i\1\0|\0\0\203\1\0}\1\0|\1\0S(\1\0\0\0s;\0\0\0Chec"..., 4096) = 4096
read(8, "\0s\23\0\0\0t\0\0i\1\0|\0\0\203\1\0}\1\0|\1\0S(\1\0\0\0sO"..., 4096) = 4096
read(8, "s\23\0\0\0t\0\0i\1\0|\0\0\203\1\0}\1\0|\1\0S(\1\0\0\0s8\0"..., 4096) = 4096
read(8, "\0\0ZD\0dB\0\204\0\0ZE\0dC\0\204\0\0ZF\0dD\0\204\0\0ZG\0"..., 4096) = 4096
read(8, "S(\2\0\0\0s\357\0\0\0Append the extra subs"..., 4096) = 4096
read(8, "\2\0i\3\0|\0\0i\1\0|\2\0\203\2\0}\3\0|\3\0d\3\0j\10\0o\20\0"..., 4096) = 4096
read(8, "s-\0\0\0/usr/lib64/python2.6/site-p"..., 4096) = 4096
read(8, "ml2.pyt\r\0\0\0listGetString\275\f\0\0s\n\0\0"..., 4096) = 4096
read(8, "   is different than in the W3C "..., 4096) = 4096
read(8, "\364\3\0\0RX\0\0\0R\342\3\0\0(\0\0\0\0(\0\0\0\0s-\0\0\0/us"..., 4096) = 4096
read(8, "te-packages/libxml2.pyt\t\0\0\0setNs"..., 4096) = 4096
read(8, " trailing\n          space (#x20)"..., 4096) = 4096
read(8, "the same as with the parent axis"..., 4096) = 4096
read(8, " the context\n          node; the"..., 4096) = 4096
read(8, "\4\0\0\0R\v\0\0\0t\3\0\0\0endt\6\0\0\0end__oRX\0\0"..., 4096) = 4096
read(8, "\0i\1\0}\4\0t\2\0i\3\0|\4\0|\0\0i\1\0|\2\0|\3\0\203\4\0\1"..., 4096) = 4096
read(8, "\0i\2\0\203\2\0\1d\1\0S(\2\0\0\0s9\0\0\0Dumps debu"..., 4096) = 4096
read(8, "ityR\24\0\0\0R\23\0\0\0R\t\0\0\0R\262\0\0\0(\10\0\0\0R\v\0\0"..., 4096) = 4096
read(8, "\0\0\0\0s-\0\0\0/usr/lib64/python2.6/si"..., 4096) = 4096
read(8, "\0\0xmlNewDocNode() failedR\25\0\0\0N(\6"..., 4096) = 4096
read(8, "\0\0\0\10\0\0\0\7\0\0\0C\0\0\0sc\0\0\0|\1\0d\1\0j\10\0o\n\0"..., 4096) = 4096
read(8, "ote that @format = 1 provide nod"..., 4096) = 4096
read(8, "arse the value string and build "..., 4096) = 4096
read(8, "hon2.6/site-packages/libxml2.pyR"..., 4096) = 4096
read(8, " does the following checks as de"..., 4096) = 4096
read(8, "mlSchemaNewDocParserCtxtR\24\0\0\0R\23\0"..., 4096) = 4096
read(8, "nt node from an xpathContext (\3\0"..., 4096) = 4096
read(8, "\0C\0\0\0s\34\0\0\0t\0\0i\1\0|\0\0i\2\0|\1\0|\2\0\203\3\0}"..., 4096) = 4096
brk(0x28ff000)                          = 0x28ff000
read(8, "further process the normalized\n "..., 4096) = 4096
read(8, "\0\0s\\\0\0\0|\1\0d\1\0j\10\0o\n\0\1d\1\0}\3\0n\n\0\1|\1"..., 4096) = 4096
read(8, "\0\1\0\0\0\5\0\0\0C\0\0\0s\35\0\0\0d\1\0|\0\0i\0\0t\1\0t\2"..., 4096) = 4096
read(8, " number of attributes of the cur"..., 4096) = 4096
read(8, "\0|\0\0i\2\0|\1\0|\2\0\203\3\0}\3\0|\3\0S(\1\0\0\0s.\0\0"..., 4096) = 4096
read(8, "xtReaderMoveToAttributeR\24\0\0\0(\3\0\0"..., 4096) = 4096
read(8, "ml2.pyt\t\0\0\0NewMemoryp\25\0\0s\4\0\0\0\0\5!"..., 4096) = 4096
read(8, "\0RX\0\0\0(\0\0\0\0(\0\0\0\0s-\0\0\0/usr/lib64/"..., 4096) = 4096
read(8, "\0\0i\2\0|\1\0\203\2\0}\2\0|\2\0S(\1\0\0\0si\0\0\0Get "..., 4096) = 4096
read(8, "\0\0\0R\"\0\0\0t\25\0\0\0xmlConvertSGMLCatal"..., 4096) = 4096
read(8, "n schema s\37\0\0\0xmlRelaxNGNewValid"..., 4096) = 4096
read(8, "kages/libxml2.pyt\4\0\0\0line\f\27\0\0s\4\0"..., 4096) = 4096
read(8, "\0S(\4\0\0\0s0\0\0\0Get the xpathContext"..., 4096) = 4096
read(8, "ng the number function. N(\3\0\0\0R\""..., 4096) = 4096
read(8, "n2.6/site-packages/libxml2.pyt\21\0"..., 4096) = 4096
read(8, "\2\0i\3\0|\0\0i\1\0|\2\0\203\2\0}\3\0|\3\0d\3\0j\10\0o\20\0"..., 4096) = 4096
read(8, "\0Traversal function for the \"pre"..., 4096) = 4096
read(8, "\0\0\2\0\0\0\2\0\0\0C\0\0\0s\26\0\0\0t\0\0i\1\0|\0\0i\2\0\203"..., 4096) = 4096
read(8, "niquely distinguish the\n        "..., 4096) = 4096
read(8, " and addition used for the above"..., 4096) = 4096
read(8, "\0d\6\0\204\0\0Z\t\0d\7\0\204\0\0Z\n\0d\10\0\204\0\0Z\v\0d\t\0\204"..., 4096) = 4096
read(8, "\5\0d\2\0|\4\0\203\0\1}\5\0|\5\0S(\4\0\0\0so\0\0\0pars"..., 4096) = 4096
read(8, "reuses the existing @ctxt parser"..., 4096) = 4096
read(8, " | CharRef\n            [69] PERe"..., 4096) = 4096
read(8, "content.  [18] CDSect ::= CDStar"..., 4096) = 4096
read(8, "\0\0\0C\0\0\0s\24\0\0\0t\0\0i\1\0|\0\0i\2\0\203\1\0\1d\1\0S"..., 4096) = 4096
read(8, "\0\0\0xmlParseMiscR\24\0\0\0(\1\0\0\0R\v\0\0\0(\0"..., 4096) = 4096
read(8, "s\225\0\0\0Parse and return a string b"..., 4096) = 4096
read(8, "\0s\4\0\0\0\0\3\22\1c\1\0\0\0\1\0\0\0\2\0\0\0C\0\0\0s\24\0\0\0"..., 4096) = 4096
read(8, "rence ::= EntityRef |\n          "..., 4096) = 4096
read(8, "\0\0\0N(\6\0\0\0R\"\0\0\0t\25\0\0\0xmlGetDtdQEle"..., 4096) = 4096
read(8, "upposed to\n          be a piece "..., 4096) = 4096
read(8, "on2.6/site-packages/libxml2.pyRs"..., 4096) = 4096
brk(0x294c000)                          = 0x294c000
read(8, "t\17\0\0\0xmlRelaxNGParseR\24\0\0\0R\23\0\0\0R\16"..., 4096) = 4096
read(8, "18N transcoding from internal\n  "..., 4096) = 4096
read(8, "  the SAX streamable validation "..., 4096) = 4096
read(8, "(\2\0\0\0R\v\0\0\0RX\0\0\0(\0\0\0\0(\0\0\0\0s-\0\0\0/u"..., 4096) = 4096
read(8, "\0\0i[\0\0\0i\\\0\0\0i]\0\0\0i^\0\0\0i_\0\0\0i`\0\0\0"..., 4096) = 4096
read(8, "R\252\1\0\0R\254\1\0\0R\256\1\0\0R\260\1\0\0R\262\1\0\0R\264\1\0\0R\266"..., 4096) = 4096
read(8, "XML_ERR_DOCUMENT_ENDt\33\0\0\0XML_ERR"..., 4096) = 4096
read(8, "NE_WHITE_SPACEt\31\0\0\0XML_DTD_UNKNO"..., 4096) = 4096
read(8, "RT_LITERAL_ERRORt\34\0\0\0XML_XPATH_V"..., 4096) = 4096
read(8, "\0\0\0XML_SCHEMAP_UNKNOWN_FACET_TYP"..., 4096) = 4096
read(8, "L_SCHEMAV_CVC_ATTRIBUTE_2t\33\0\0\0XM"..., 4096) = 4096
read(8, "_POINTLESS_PROHt\34\0\0\0XML_SCHEMAP_"..., 4096) = 4096
read(8, "RY_ERRORt\21\0\0\0XPTR_SYNTAX_ERRORt\23"..., 4096) = 4096
read(8, "_CONTENT_ANYt\25\0\0\0XML_SCHEMA_TYPE"..., 4096) = 4096
read(8, "\t\5\t\6\t\5\t\5\t\5\t\5\t\5\t\5\t\6\t\6\t\6\t\5\t\5\t\n\t\t\t\7"..., 4096) = 2556
close(8)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/bin/libxml2mod", 0x7fffe41e9700) = -1 ENOENT (No such file or directory)
open("/usr/bin/libxml2mod.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/libxml2modmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/libxml2mod.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/libxml2mod.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/libxml2mod", 0x7fffe41e9700) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/libxml2mod.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/libxml2modmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/libxml2mod.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/libxml2mod.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/libxml2mod", 0x7fffe41e9700) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/libxml2mod.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/libxml2modmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/libxml2mod.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/libxml2mod.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/libxml2mod", 0x7fffe41e9700) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/libxml2mod.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/libxml2modmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/libxml2mod.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/libxml2mod.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/libxml2mod", 0x7fffe41e9700) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/libxml2mod.so", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0755, st_size=367976, ...}) = 0
open("/usr/lib64/python2.6/site-packages/libxml2mod.so", O_RDONLY) = 9
read(9, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\216\2\0\0\0\0\0"..., 832) = 832
fstat(9, {st_mode=S_IFREG|0755, st_size=367976, ...}) = 0
mmap(NULL, 2463272, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 9, 0) = 0x7fb987a6c000
mprotect(0x7fb987abc000, 2097152, PROT_NONE) = 0
mmap(0x7fb987cbc000, 40960, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 9, 0x50000) = 0x7fb987cbc000
close(9)                                = 0
futex(0x3bad950b60, FUTEX_WAKE_PRIVATE, 2147483647) = 0
brk(0x296e000)                          = 0x296e000
close(8)                                = 0
brk(0x29b3000)                          = 0x29b3000
brk(0x29fd000)                          = 0x29fd000
close(6)                                = 0
stat("/usr/lib/python2.6/site-packages/virtinst/virtinst", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/virtinst.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/virtinstmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/virtinst.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/virtinst.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/virtinst/util", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/util.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/utilmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/util.py", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=16533, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/util.pyc", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=18243, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(8, "\321\362\r\n\300W-Nc\0\0\0\0\0\0\0\0\20\0\0\0@\0\0\0s\36\2\0\0d\0"..., 4096) = 4096
fstat(8, {st_mode=S_IFREG|0644, st_size=18243, ...}) = 0
read(8, "c\0\0\0\0\0\0\0\0\2\0\0\0C\0\0\0s\20\0\0\0t\0\0i\1\0i\2\0d"..., 12288) = 12288
read(8, "(\3\0\0\0Ni\0\0\0\0s\21\0\0\0/pool/target/pat"..., 4096) = 1859
read(8, "", 4096)                       = 0
close(8)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/lib/python2.6/site-packages/virtinst/random", 0x7fffe41e9700) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/random.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/randommodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/random.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/random.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/virtinst/CapabilitiesParser", 0x7fffe41e9700) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/CapabilitiesParser.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/CapabilitiesParsermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/CapabilitiesParser.py", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=23164, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/CapabilitiesParser.pyc", O_RDONLY) = 9
fstat(9, {st_mode=S_IFREG|0644, st_size=25712, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(9, "\321\362\r\n\277W-Nc\0\0\0\0\0\0\0\0\n\0\0\0@\0\0\0s\262\1\0\0d\0"..., 4096) = 4096
fstat(9, {st_mode=S_IFREG|0644, st_size=25712, ...}) = 0
read(9, "\0\0\0o\0\0\0s\16\0\0\0\0\1\t\1\7\1\n\1\22\2\f\1\6\1c\2\0\0\0\4"..., 20480) = 20480
read(9, "n type '%s's\32\0\0\0any virtualizati"..., 4096) = 1136
read(9, "", 4096)                       = 0
close(9)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
close(8)                                = 0
stat("/usr/lib/python2.6/site-packages/virtinst/User", 0x7fffe41e9700) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/User.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/Usermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/User.py", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=2720, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/User.pyc", O_RDONLY) = 9
fstat(9, {st_mode=S_IFREG|0644, st_size=2384, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(9, "\321\362\r\n\344\322)Nc\0\0\0\0\0\0\0\0\6\0\0\0@\0\0\0s>\0\0\0d\0"..., 4096) = 2384
fstat(9, {st_mode=S_IFREG|0644, st_size=2384, ...}) = 0
read(9, "", 4096)                       = 0
close(9)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
close(8)                                = 0
stat("/usr/lib/python2.6/site-packages/virtinst/support", 0x7fffe41e9700) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/support.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/supportmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/support.py", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=17599, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/support.pyc", O_RDONLY) = 9
fstat(9, {st_mode=S_IFREG|0644, st_size=12012, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(9, "\321\362\r\nO\257-Nc\0\0\0\0\0\0\0\0\n\0\0\0@\0\0\0s}\4\0\0d\0"..., 4096) = 4096
fstat(9, {st_mode=S_IFREG|0644, st_size=12012, ...}) = 0
read(9, "i_remoteR0\0\0\0R#\0\0\0R.\0\0\0R\37\0\0\0R1\0\0"..., 4096) = 4096
read(9, "d from command call\n    @returns"..., 4096) = 3820
read(9, "", 4096)                       = 0
close(9)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
close(8)                                = 0
close(6)                                = 0
stat("/usr/lib/python2.6/site-packages/virtinst/selinux", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/selinux.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/selinuxmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/selinux.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/selinux.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/bin/selinux", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/bin/selinux.so", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/selinuxmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/selinux.py", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/selinux.pyc", O_RDONLY)  = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/selinux", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/selinux.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/selinuxmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/selinux.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/selinux.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/selinux", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/selinux.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/selinuxmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/selinux.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/selinux.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/selinux", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/selinux.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/selinuxmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/selinux.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/selinux.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/selinux", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python2.6/site-packages/selinux/__init__.py", {st_mode=S_IFREG|0644, st_size=110535, ...}) = 0
stat("/usr/lib64/python2.6/site-packages/selinux/__init__", 0x7fffe41ebcb0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/selinux/__init__.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/selinux/__init__module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/selinux/__init__.py", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=110535, ...}) = 0
open("/usr/lib64/python2.6/site-packages/selinux/__init__.pyc", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=104195, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(8, "\321\362\r\n\253\3\340Nc\0\0\0\0\0\0\0\0\16\0\0\0@\0\0\0s\2259\0\0d\0"..., 4096) = 4096
fstat(8, {st_mode=S_IFREG|0644, st_size=104195, ...}) = 0
read(8, "Z\223\1e\3\0i\224\1Z\224\1e\3\0i\225\1Z\225\1e\3\0i\226\1Z\226\1e\3"..., 98304) = 98304
read(8, "\1\t\1\t\1\t\1\t\1\t\1\t\1\t\1\t\1\t\1\t\1\t\1\t\1\t\1\t\1\t\1\t"..., 4096) = 1795
read(8, "", 4096)                       = 0
brk(0x2a56000)                          = 0x2a56000
close(8)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/lib64/python2.6/site-packages/selinux", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python2.6/site-packages/selinux", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python2.6/site-packages/selinux/sys", 0x7fffe41e86a0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/selinux/sys.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/selinux/sysmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/selinux/sys.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/selinux/sys.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/selinux/os", 0x7fffe41e8530) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/selinux/os.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/selinux/osmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/selinux/os.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/selinux/os.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/selinux/imp", 0x7fffe41e8530) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/selinux/imp.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/selinux/impmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/selinux/imp.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/selinux/imp.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/selinux/_selinux", 0x7fffe41e9710) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/selinux/_selinux.so", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0755, st_size=270792, ...}) = 0
fstat(8, {st_mode=S_IFREG|0755, st_size=270792, ...}) = 0
open("/usr/lib64/python2.6/site-packages/selinux/_selinux.so", O_RDONLY) = 9
read(9, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\340\250\0\0\0\0\0\0"..., 832) = 832
fstat(9, {st_mode=S_IFREG|0755, st_size=270792, ...}) = 0
mmap(NULL, 2367256, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 9, 0) = 0x7fb98782a000
mprotect(0x7fb987868000, 2093056, PROT_NONE) = 0
mmap(0x7fb987a67000, 20480, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 9, 0x3d000) = 0x7fb987a67000
close(9)                                = 0
stat("/usr/bin/swig_runtime_data4", 0x7fffe41e82d0) = -1 ENOENT (No such file or directory)
open("/usr/bin/swig_runtime_data4.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/swig_runtime_data4module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/swig_runtime_data4.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/swig_runtime_data4.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/swig_runtime_data4", 0x7fffe41e82d0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/swig_runtime_data4.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/swig_runtime_data4module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/swig_runtime_data4.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/swig_runtime_data4.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/swig_runtime_data4", 0x7fffe41e82d0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/swig_runtime_data4.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/swig_runtime_data4module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/swig_runtime_data4.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/swig_runtime_data4.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/swig_runtime_data4", 0x7fffe41e82d0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/swig_runtime_data4.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/swig_runtime_data4module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/swig_runtime_data4.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/swig_runtime_data4.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/swig_runtime_data4", 0x7fffe41e82d0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/swig_runtime_data4.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/swig_runtime_data4module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/swig_runtime_data4.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/swig_runtime_data4.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/gst-0.10/swig_runtime_data4", 0x7fffe41e82d0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/swig_runtime_data4.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/swig_runtime_data4module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/swig_runtime_data4.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/swig_runtime_data4.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/gtk-2.0/swig_runtime_data4", 0x7fffe41e82d0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/swig_runtime_data4.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/swig_runtime_data4module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/swig_runtime_data4.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/swig_runtime_data4.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/webkit-1.0/swig_runtime_data4", 0x7fffe41e82d0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/swig_runtime_data4.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/swig_runtime_data4module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/swig_runtime_data4.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/swig_runtime_data4.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/swig_runtime_data4", 0x7fffe41e82d0) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/swig_runtime_data4.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/swig_runtime_data4module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/swig_runtime_data4.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/swig_runtime_data4.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
brk(0x2a86000)                          = 0x2a86000
close(8)                                = 0
stat("/usr/lib64/python2.6/site-packages/selinux/shutil", 0x7fffe41e86a0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/selinux/shutil.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/selinux/shutilmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/selinux/shutil.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/selinux/shutil.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/bin/shutil", 0x7fffe41e86a0) = -1 ENOENT (No such file or directory)
open("/usr/bin/shutil.so", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/shutilmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/shutil.py", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/shutil.pyc", O_RDONLY)   = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/shutil", 0x7fffe41e86a0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/shutil.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/shutilmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/shutil.py", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=8632, ...}) = 0
open("/usr/lib64/python2.6/shutil.pyc", O_RDONLY) = 9
fstat(9, {st_mode=S_IFREG|0644, st_size=9555, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(9, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\20\0\0\0@\0\0\0s8\1\0\0d\0"..., 4096) = 4096
fstat(9, {st_mode=S_IFREG|0644, st_size=9555, ...}) = 0
read(9, "!\1}\7\0|\7\0|\5\0j\6\0o\7\0\1qR\0n\1\0\1t\0\0i\5\0i"..., 4096) = 4096
read(9, "n path must not already\n    exis"..., 4096) = 1363
read(9, "", 4096)                       = 0
close(9)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/bin/fnmatch", 0x7fffe41e5090) = -1 ENOENT (No such file or directory)
open("/usr/bin/fnmatch.so", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/fnmatchmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/fnmatch.py", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/fnmatch.pyc", O_RDONLY)  = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/fnmatch", 0x7fffe41e5090) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/fnmatch.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/fnmatchmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/fnmatch.py", O_RDONLY) = 9
fstat(9, {st_mode=S_IFREG|0644, st_size=3239, ...}) = 0
open("/usr/lib64/python2.6/fnmatch.pyc", O_RDONLY) = 10
fstat(10, {st_mode=S_IFREG|0644, st_size=3579, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(10, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\5\0\0\0@\0\0\0sa\0\0\0d\0"..., 4096) = 3579
fstat(10, {st_mode=S_IFREG|0644, st_size=3579, ...}) = 0
read(10, "", 4096)                      = 0
close(10)                               = 0
munmap(0x7fb9912d5000, 4096)            = 0
close(9)                                = 0
close(8)                                = 0
stat("/usr/lib64/python2.6/site-packages/selinux/stat", 0x7fffe41e86a0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/selinux/stat.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/selinux/statmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/selinux/stat.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/selinux/stat.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
brk(0x2aaa000)                          = 0x2aaa000
brk(0x2ada000)                          = 0x2ada000
close(6)                                = 0
close(5)                                = 0
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
close(4)                                = 0
stat("/usr/lib/python2.6/site-packages/virtinst/Interface", 0x7fffe41f3930) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/Interface.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/Interfacemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/Interface.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=23836, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/Interface.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=30153, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(5, "\321\362\r\n\277W-Nc\0\0\0\0\0\0\0\0\10\0\0\0@\0\0\0s<\1\0\0d\0"..., 4096) = 4096
fstat(5, {st_mode=S_IFREG|0644, st_size=30153, ...}) = 0
read(5, "_name}\0\0\0s\6\0\0\0\0\1\26\2\r\1s\36\0\0\0Name fo"..., 24576) = 24576
read(5, "\3\0\0\0R*\0\0\0t\7\0\0\0addressR\35\0\0\0(\0\0\0\0("..., 4096) = 1481
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
brk(0x2b1a000)                          = 0x2b1a000
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
close(4)                                = 0
stat("/usr/lib/python2.6/site-packages/virtinst/Guest", 0x7fffe41f3930) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/Guest.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/Guestmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/Guest.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=54469, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/Guest.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=50105, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(5, "\321\362\r\n\316\350\337Nc\0\0\0\0\0\0\0\0\35\0\0\0@\0\0\0s\237\1\0\0d\0"..., 4096) = 4096
fstat(5, {st_mode=S_IFREG|0644, st_size=50105, ...}) = 0
read(5, "\0\0\0C\0\0\0s\17\0\0\0t\0\0i\1\0|\0\0\31d\1\0\31S(\2\0\0\0"..., 45056) = 45056
read(5, "\t\3\17\3\t\5\t2\17\4\t\2\t\2\17\3\t\2\t\2\17\3\t\2\t\2\17\3\t\2\f\3"..., 4096) = 953
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/lib/python2.6/site-packages/virtinst/signal", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/signal.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/signalmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/signal.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/signal.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/virtinst/urlgrabber", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/urlgrabber.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/urlgrabbermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/urlgrabber.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/urlgrabber.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/virtinst/VirtualGraphics", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/VirtualGraphics.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/VirtualGraphicsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/VirtualGraphics.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=11402, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/VirtualGraphics.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=12374, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(6, "\321\362\r\n\300W-Nc\0\0\0\0\0\0\0\0\n\0\0\0@\0\0\0s\202\0\0\0d\0"..., 4096) = 4096
fstat(6, {st_mode=S_IFREG|0644, st_size=12374, ...}) = 0
read(6, "ics.pyt\10\0\0\0set_type\211\0\0\0s\6\0\0\0\0\1\20\1"..., 8192) = 8192
read(6, "hon2.6/site-packages/virtinst/Vi"..., 4096) = 86
read(6, "", 4096)                       = 0
close(6)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/lib/python2.6/site-packages/virtinst/VirtualDevice", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/VirtualDevice.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/VirtualDevicemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/VirtualDevice.py", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=7889, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/VirtualDevice.pyc", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=8581, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(8, "\321\362\r\n\316\350\337Nc\0\0\0\0\0\0\0\0\5\0\0\0@\0\0\0sl\0\0\0d\0"..., 4096) = 4096
fstat(8, {st_mode=S_IFREG|0644, st_size=8581, ...}) = 0
read(8, "e\7\0d\10\0d\t\0\203\2\1Z\t\0d\n\0\204\0\0Z\n\0d\v\0\204\0\0Z\v"..., 4096) = 4096
read(8, "Z\0\0\0t\10\0\0\0functionR[\0\0\0R\\\0\0\0R\17\0\0\0"..., 4096) = 389
read(8, "", 4096)                       = 0
close(8)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/lib/python2.6/site-packages/virtinst/XMLBuilderDomain", 0x7fffe41e9700) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/XMLBuilderDomain.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/XMLBuilderDomainmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/XMLBuilderDomain.py", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=15082, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/XMLBuilderDomain.pyc", O_RDONLY) = 9
fstat(9, {st_mode=S_IFREG|0644, st_size=15467, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(9, "\321\362\r\n,\241-Nc\0\0\0\0\0\0\0\0\24\0\0\0@\0\0\0s\333\0\0\0d\0"..., 4096) = 4096
fstat(9, {st_mode=S_IFREG|0644, st_size=15467, ...}) = 0
read(9, "\6\0\0\0rsplitR\1\0\0\0R\"\0\0\0R\32\0\0\0t\n\0\0\0pr"..., 8192) = 8192
read(9, ".pyt\v\0\0\0_check_bool\261\1\0\0s\4\0\0\0\0\1\23\1"..., 4096) = 3179
read(9, "", 4096)                       = 0
close(9)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/lib/python2.6/site-packages/virtinst/copy", 0x7fffe41e60f0) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/copy.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/copymodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/copy.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/copy.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
close(8)                                = 0
close(6)                                = 0
close(5)                                = 0
stat("/usr/lib/python2.6/site-packages/virtinst/DistroInstaller", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/DistroInstaller.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/DistroInstallermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/DistroInstaller.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=15895, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/DistroInstaller.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=13184, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(6, "\321\362\r\n\316\350\337Nc\0\0\0\0\0\0\0\0\21\0\0\0@\0\0\0s\365\0\0\0d\0"..., 4096) = 4096
fstat(6, {st_mode=S_IFREG|0644, st_size=13184, ...}) = 0
read(6, "selft\4\0\0\0typet\10\0\0\0locationt\4\0\0\0b"..., 8192) = 8192
read(6, "\0\0\0sP\0\0\0y\"\0t\0\0i\1\0d\1\0|\0\0i\2\0d\2\0|\0\0"..., 4096) = 896
read(6, "", 4096)                       = 0
close(6)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/lib/python2.6/site-packages/virtinst/shutil", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/shutil.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/shutilmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/shutil.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/shutil.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/virtinst/tempfile", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/tempfile.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/tempfilemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/tempfile.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/tempfile.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/virtinst/Installer", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/Installer.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/Installermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/Installer.py", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=17285, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/Installer.pyc", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=18160, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(8, "\321\362\r\n;\256-Nc\0\0\0\0\0\0\0\0\21\0\0\0@\0\0\0s\7\1\0\0d\0"..., 4096) = 4096
fstat(8, {st_mode=S_IFREG|0644, st_size=18160, ...}) = 0
read(8, "nuxR\6\0\0\0(\1\0\0\0R\20\0\0\0(\2\0\0\0R%\0\0\0R,\0\0"..., 12288) = 12288
read(8, "\0\0\0virtinstt\5\0\0\0Guestt\10\0\0\0emulat"..., 4096) = 1776
read(8, "", 4096)                       = 0
brk(0x2b5f000)                          = 0x2b5f000
close(8)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/lib/python2.6/site-packages/virtinst/errno", 0x7fffe41e9700) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/errno.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/errnomodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/errno.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/errno.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/virtinst/struct", 0x7fffe41e9700) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/struct.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/structmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/struct.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/struct.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/virtinst/VirtualDisk", 0x7fffe41e9700) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/VirtualDisk.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/VirtualDiskmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/VirtualDisk.py", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=60853, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/VirtualDisk.pyc", O_RDONLY) = 9
fstat(9, {st_mode=S_IFREG|0644, st_size=52652, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(9, "\321\362\r\n\316\350\337Nc\0\0\0\0\0\0\0\0\22\0\0\0@\0\0\0sA\1\0\0d\0"..., 4096) = 4096
fstat(9, {st_mode=S_IFREG|0644, st_size=52652, ...}) = 0
read(9, "\207\1\0f\2\0d\2\0\206\0\0}\6\0|\5\0\203\0\0d\3\0\31}\2\0|\2\0p"..., 45056) = 45056
read(9, " from\n        the passed paramet"..., 4096) = 3500
read(9, "", 4096)                       = 0
close(9)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/lib/python2.6/site-packages/virtinst/pwd", 0x7fffe41e60f0) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/pwd.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/pwdmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/pwd.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/pwd.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/virtinst/statvfs", 0x7fffe41e60f0) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/statvfs.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/statvfsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/statvfs.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/statvfs.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/bin/statvfs", 0x7fffe41e60f0) = -1 ENOENT (No such file or directory)
open("/usr/bin/statvfs.so", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/statvfsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/statvfs.py", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/statvfs.pyc", O_RDONLY)  = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/statvfs", 0x7fffe41e60f0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/statvfs.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/statvfsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/statvfs.py", O_RDONLY) = 9
fstat(9, {st_mode=S_IFREG|0644, st_size=898, ...}) = 0
open("/usr/lib64/python2.6/statvfs.pyc", O_RDONLY) = 10
fstat(10, {st_mode=S_IFREG|0644, st_size=620, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(10, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\5\0\0\0@\0\0\0si\0\0\0d\0"..., 4096) = 620
fstat(10, {st_mode=S_IFREG|0644, st_size=620, ...}) = 0
read(10, "", 4096)                      = 0
close(10)                               = 0
munmap(0x7fb9912d5000, 4096)            = 0
close(9)                                = 0
close(8)                                = 0
stat("/usr/lib/python2.6/site-packages/virtinst/Boot", 0x7fffe41e9700) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/Boot.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/Bootmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/Boot.py", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=4377, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/Boot.pyc", O_RDONLY) = 9
fstat(9, {st_mode=S_IFREG|0644, st_size=4711, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(9, "\321\362\r\n\343\322)Nc\0\0\0\0\0\0\0\0\6\0\0\0@\0\0\0sE\0\0\0d\0"..., 4096) = 4096
fstat(9, {st_mode=S_IFREG|0644, st_size=4711, ...}) = 0
read(9, "_config`\0\0\0s$\0\0\0\0\1\6\2\n\1\f\1\26\1\n\1\f\1\32\1"..., 4096) = 615
read(9, "", 4096)                       = 0
close(9)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
close(8)                                = 0
close(6)                                = 0
stat("/usr/lib/python2.6/site-packages/virtinst/OSDistro", 0x7fffe41ecd10) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/OSDistro.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/OSDistromodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/OSDistro.py", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=42831, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/OSDistro.pyc", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=35224, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(8, "\321\362\r\n\277W-Nc\0\0\0\0\0\0\0\0\22\0\0\0@\0\0\0s\225\2\0\0d\0"..., 4096) = 4096
fstat(8, {st_mode=S_IFREG|0644, st_size=35224, ...}) = 0
read(8, "python2.6/site-packages/virtinst"..., 28672) = 28672
read(8, "(\0\0\0\0s5\0\0\0/usr/lib/python2.6/sit"..., 4096) = 2456
read(8, "", 4096)                       = 0
close(8)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/lib/python2.6/site-packages/virtinst/gzip", 0x7fffe41e9700) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/gzip.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/gzipmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/gzip.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/gzip.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/bin/gzip", {st_mode=S_IFREG|0755, st_size=68664, ...}) = 0
open("/usr/bin/gzip.so", O_RDONLY)      = -1 ENOENT (No such file or directory)
open("/usr/bin/gzipmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/gzip.py", O_RDONLY)      = -1 ENOENT (No such file or directory)
open("/usr/bin/gzip.pyc", O_RDONLY)     = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/gzip", 0x7fffe41e9700) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/gzip.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/gzipmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/gzip.py", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=16754, ...}) = 0
open("/usr/lib64/python2.6/gzip.pyc", O_RDONLY) = 9
fstat(9, {st_mode=S_IFREG|0644, st_size=14386, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(9, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\n\0\0\0@\0\0\0s\335\0\0\0d\0"..., 4096) = 4096
fstat(9, {st_mode=S_IFREG|0644, st_size=14386, ...}) = 0
read(9, "\3\0t\4\0j\2\0o \0\1|\0\0i\5\0d\4\0\37d\5\0j\3\0o\f\0\1"..., 8192) = 8192
read(9, "\0d\2\0j\2\0o\5\0\1Pn\1\0\1|\2\0i\3\0|\3\0\203\1\0\1|\1\0"..., 4096) = 2098
read(9, "", 4096)                       = 0
brk(0x2bb1000)                          = 0x2bb1000
close(9)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/bin/zlib", 0x7fffe41e60f0)   = -1 ENOENT (No such file or directory)
open("/usr/bin/zlib.so", O_RDONLY)      = -1 ENOENT (No such file or directory)
open("/usr/bin/zlibmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/zlib.py", O_RDONLY)      = -1 ENOENT (No such file or directory)
open("/usr/bin/zlib.pyc", O_RDONLY)     = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/zlib", 0x7fffe41e60f0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/zlib.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/zlibmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/zlib.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/zlib.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/zlib", 0x7fffe41e60f0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/zlib.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/zlibmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/zlib.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/zlib.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/zlib", 0x7fffe41e60f0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/zlib.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/zlibmodule.so", O_RDONLY) = 9
fstat(9, {st_mode=S_IFREG|0555, st_size=23752, ...}) = 0
open("/usr/lib64/python2.6/lib-dynload/zlibmodule.so", O_RDONLY) = 10
read(10, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260\23\0\0\0\0\0\0"..., 832) = 832
fstat(10, {st_mode=S_IFREG|0555, st_size=23752, ...}) = 0
mmap(NULL, 2118944, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 10, 0) = 0x7fb987624000
mprotect(0x7fb987629000, 2093056, PROT_NONE) = 0
mmap(0x7fb987828000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 10, 0x4000) = 0x7fb987828000
close(10)                               = 0
close(9)                                = 0
close(8)                                = 0
stat("/usr/lib/python2.6/site-packages/virtinst/socket", 0x7fffe41e9700) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/socket.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/socketmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/socket.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/socket.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/virtinst/ConfigParser", 0x7fffe41e9700) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/ConfigParser.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/ConfigParsermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/ConfigParser.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/ConfigParser.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/bin/ConfigParser", 0x7fffe41e9700) = -1 ENOENT (No such file or directory)
open("/usr/bin/ConfigParser.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/ConfigParsermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/ConfigParser.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/ConfigParser.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/ConfigParser", 0x7fffe41e9700) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/ConfigParser.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/ConfigParsermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/ConfigParser.py", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=24509, ...}) = 0
open("/usr/lib64/python2.6/ConfigParser.pyc", O_RDONLY) = 9
fstat(9, {st_mode=S_IFREG|0644, st_size=23342, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(9, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\16\0\0\0@\0\0\0sj\1\0\0d\0"..., 4096) = 4096
fstat(9, {st_mode=S_IFREG|0644, st_size=23342, ...}) = 0
read(9, "age(\1\0\0\0t\4\0\0\0self(\0\0\0\0(\0\0\0\0s$\0\0\0"..., 16384) = 16384
read(9, "\2\0|\1\0|\3\0|\7\0i\6\0d\3\0\31\203\4\0\202\1\0q\214\0\1Xq\17\0"..., 4096) = 2862
read(9, "", 4096)                       = 0
close(9)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
close(8)                                = 0
stat("/usr/lib/python2.6/site-packages/virtinst/osdict", 0x7fffe41e9700) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/osdict.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/osdictmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/osdict.py", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=16804, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/osdict.pyc", O_RDONLY) = 9
fstat(9, {st_mode=S_IFREG|0644, st_size=9562, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(9, "\321\362\r\n'P/Nc\0\0\0\0\0\0\0\0\v\0\0\0@\0\0\0sM\v\0\0d\0"..., 4096) = 4096
fstat(9, {st_mode=S_IFREG|0644, st_size=9562, ...}) = 0
read(9, "osdict.pyt\v\0\0\0sort_helpert\0\0\0sJ\0"..., 4096) = 4096
read(9, "ware 5t\10\0\0\0netware5s\20\0\0\0Novell N"..., 4096) = 1370
read(9, "", 4096)                       = 0
close(9)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
close(8)                                = 0
stat("/usr/lib/python2.6/site-packages/virtinst/ImageFetcher", 0x7fffe41e9700) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/ImageFetcher.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/ImageFetchermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/ImageFetcher.py", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=6895, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/ImageFetcher.pyc", O_RDONLY) = 9
fstat(9, {st_mode=S_IFREG|0644, st_size=8205, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(9, "\321\362\r\n\277W-Nc\0\0\0\0\0\0\0\0\r\0\0\0@\0\0\0s\32\1\0\0d\0"..., 4096) = 4096
fstat(9, {st_mode=S_IFREG|0644, st_size=8205, ...}) = 0
read(9, "ages/virtinst/ImageFetcher.pyR6\0"..., 4096) = 4096
read(9, "\4\23F\26\n\26\r\26\36\26\20\26*", 4096) = 13
read(9, "", 4096)                       = 0
close(9)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/lib/python2.6/site-packages/virtinst/urllib2", 0x7fffe41e60f0) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/urllib2.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/urllib2module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/urllib2.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/urllib2.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/virtinst/urlparse", 0x7fffe41e60f0) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/urlparse.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/urlparsemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/urlparse.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/urlparse.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/virtinst/ftplib", 0x7fffe41e60f0) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/ftplib.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/ftplibmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/ftplib.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/ftplib.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
close(8)                                = 0
close(6)                                = 0
close(5)                                = 0
stat("/usr/lib/python2.6/site-packages/virtinst/VirtualInputDevice", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/VirtualInputDevice.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/VirtualInputDevicemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/VirtualInputDevice.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=2868, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/VirtualInputDevice.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=3071, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(6, "\321\362\r\n\300W-Nc\0\0\0\0\0\0\0\0\6\0\0\0@\0\0\0sI\0\0\0d\0"..., 4096) = 3071
fstat(6, {st_mode=S_IFREG|0644, st_size=3071, ...}) = 0
read(6, "", 4096)                       = 0
close(6)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
close(5)                                = 0
stat("/usr/lib/python2.6/site-packages/virtinst/VirtualCharDevice", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/VirtualCharDevice.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/VirtualCharDevicemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/VirtualCharDevice.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=23664, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/VirtualCharDevice.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=22509, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(6, "\321\362\r\n\277W-Nc\0\0\0\0\0\0\0\0\7\0\0\0@\0\0\0sa\1\0\0d\0"..., 4096) = 4096
fstat(6, {st_mode=S_IFREG|0644, st_size=22509, ...}) = 0
read(6, "lCharDevDeviceR!\0\0\0t\25\0\0\0VirtualC"..., 16384) = 16384
read(6, "\0\0e\10\0d\1\0\203\1\0\203\2\1Z\t\0e\5\0e\2\0i\n\0e\2\0i\v\0"..., 4096) = 2029
read(6, "", 4096)                       = 0
close(6)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
brk(0x2bd2000)                          = 0x2bd2000
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f0520) = -1 ENOENT (No such file or directory)
close(5)                                = 0
stat("/usr/lib/python2.6/site-packages/virtinst/Clock", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/Clock.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/Clockmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/Clock.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=1909, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/Clock.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=1681, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(6, "\321\362\r\n\316\350\337Nc\0\0\0\0\0\0\0\0\5\0\0\0@\0\0\0s9\0\0\0d\0"..., 4096) = 1681
fstat(6, {st_mode=S_IFREG|0644, st_size=1681, ...}) = 0
read(6, "", 4096)                       = 0
close(6)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
close(5)                                = 0
stat("/usr/lib/python2.6/site-packages/virtinst/Seclabel", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/Seclabel.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/Seclabelmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/Seclabel.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=3990, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/Seclabel.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=4035, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(6, "\321\362\r\n\344\322)Nc\0\0\0\0\0\0\0\0\5\0\0\0@\0\0\0s9\0\0\0d\0"..., 4096) = 4035
fstat(6, {st_mode=S_IFREG|0644, st_size=4035, ...}) = 0
read(6, "", 4096)                       = 0
close(6)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
close(5)                                = 0
stat("/usr/lib/python2.6/site-packages/virtinst/CPU", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/CPU.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/CPUmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/CPU.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=8604, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/CPU.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=10082, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(6, "\321\362\r\n\343\322)Nc\0\0\0\0\0\0\0\0\6\0\0\0@\0\0\0sg\0\0\0d\0"..., 4096) = 4096
fstat(6, {st_mode=S_IFREG|0644, st_size=10082, ...}) = 0
read(6, "\0|\1\0\203\1\0\1d\0\0S(\1\0\0\0N(\5\0\0\0R\17\0\0\0R*\0\0"..., 4096) = 4096
read(6, "unt if\n        required\n        "..., 4096) = 1890
read(6, "", 4096)                       = 0
close(6)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
close(5)                                = 0
stat("/usr/lib/python2.6/site-packages/virtinst/DomainNumatune", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/DomainNumatune.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/DomainNumatunemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/DomainNumatune.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=4429, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/DomainNumatune.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=4290, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(6, "\321\362\r\n\26A/Nc\0\0\0\0\0\0\0\0\10\0\0\0@\0\0\0sa\0\0\0d\0"..., 4096) = 4096
fstat(6, {st_mode=S_IFREG|0644, st_size=4290, ...}) = 0
read(6, "\17\25\6\2\17\2\22\t\t\2\t\2\6\1\6\1\t\2\t\2\t\2\6\1\6\1\t\2\t\f(\10"..., 4096) = 194
read(6, "", 4096)                       = 0
close(6)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
close(5)                                = 0
stat("/usr/lib/python2.6/site-packages/virtinst/DomainFeatures", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/DomainFeatures.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/DomainFeaturesmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/DomainFeatures.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=2905, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/DomainFeatures.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=3594, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(6, "\321\362\r\n\343\322)Nc\0\0\0\0\0\0\0\0\5\0\0\0@\0\0\0sB\0\0\0d\0"..., 4096) = 3594
fstat(6, {st_mode=S_IFREG|0644, st_size=3594, ...}) = 0
read(6, "", 4096)                       = 0
close(6)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
close(5)                                = 0
brk(0x2c18000)                          = 0x2c18000
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f3b30) = -1 ENOENT (No such file or directory)
close(4)                                = 0
stat("/usr/lib/python2.6/site-packages/virtinst/VirtualNetworkInterface", 0x7fffe41f3930) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/VirtualNetworkInterface.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/VirtualNetworkInterfacemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/VirtualNetworkInterface.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=13655, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/VirtualNetworkInterface.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=15723, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(5, "\321\362\r\n\300W-Nc\0\0\0\0\0\0\0\0\n\0\0\0@\0\0\0s\261\0\0\0d\0"..., 4096) = 4096
fstat(5, {st_mode=S_IFREG|0644, st_size=15723, ...}) = 0
read(5, "\t\2\t\2\t\2\f\1\t\2\t\2\t\2\f\1\t\2\t\2\t\2\f\1\t\2t\27\0\0\0V"..., 8192) = 8192
read(5, "net: determines if mac conflicts"..., 4096) = 3435
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
close(4)                                = 0
stat("/usr/lib/python2.6/site-packages/virtinst/VirtualAudio", 0x7fffe41f3930) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/VirtualAudio.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/VirtualAudiomodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/VirtualAudio.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=2198, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/VirtualAudio.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=2010, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(5, "\321\362\r\n\277W-Nc\0\0\0\0\0\0\0\0\6\0\0\0@\0\0\0sI\0\0\0d\0"..., 4096) = 2010
fstat(5, {st_mode=S_IFREG|0644, st_size=2010, ...}) = 0
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
close(4)                                = 0
stat("/usr/lib/python2.6/site-packages/virtinst/VirtualHostDevice", 0x7fffe41f3930) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/VirtualHostDevice.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/VirtualHostDevicemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/VirtualHostDevice.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=9030, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/VirtualHostDevice.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=11459, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(5, "\321\362\r\n\316\350\337Nc\0\0\0\0\0\0\0\0\n\0\0\0@\0\0\0s\251\0\0\0d\0"..., 4096) = 4096
fstat(5, {st_mode=S_IFREG|0644, st_size=11459, ...}) = 0
read(5, "\203\1\0|\0\0_\1\0d\0\0S(\1\0\0\0N(\2\0\0\0t\4\0\0\0boo"..., 4096) = 4096
read(5, "device_typeR\33\0\0\0R\21\0\0\0t\f\0\0\0static"..., 4096) = 3267
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/lib/python2.6/site-packages/virtinst/NodeDeviceParser", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/NodeDeviceParser.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/NodeDeviceParsermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/NodeDeviceParser.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=17407, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/NodeDeviceParser.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=18767, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(6, "\321\362\r\n\277W-Nc\0\0\0\0\0\0\0\0\10\0\0\0@\0\0\0s\213\1\0\0d\0"..., 4096) = 4096
fstat(6, {st_mode=S_IFREG|0644, st_size=18767, ...}) = 0
read(6, "eviceParser.pyR$\0\0\0X\0\0\0s\6\0\0\0\6\1\t\16"..., 12288) = 12288
read(6, "1234:0x5678 for a usb device\n   "..., 4096) = 2383
read(6, "", 4096)                       = 0
close(6)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
close(5)                                = 0
close(4)                                = 0
stat("/usr/lib/python2.6/site-packages/virtinst/VirtualVideoDevice", 0x7fffe41f3930) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/VirtualVideoDevice.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/VirtualVideoDevicemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/VirtualVideoDevice.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=2821, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/VirtualVideoDevice.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=3084, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(5, "\321\362\r\n\344\322)Nc\0\0\0\0\0\0\0\0\5\0\0\0@\0\0\0s9\0\0\0d\0"..., 4096) = 3084
fstat(5, {st_mode=S_IFREG|0644, st_size=3084, ...}) = 0
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
close(4)                                = 0
stat("/usr/lib/python2.6/site-packages/virtinst/VirtualController", 0x7fffe41f3930) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/VirtualController.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/VirtualControllermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/VirtualController.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=4832, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/VirtualController.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=5442, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(5, "\321\362\r\n\277W-Nc\0\0\0\0\0\0\0\0\5\0\0\0@\0\0\0s\247\0\0\0d\0"..., 4096) = 4096
fstat(5, {st_mode=S_IFREG|0644, st_size=5442, ...}) = 0
read(5, "\0\0Z\1\0e\2\0i\3\0Z\4\0RS(\0\0\0\0(\5\0\0\0R7\0\0\0R"..., 4096) = 1346
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
close(4)                                = 0
stat("/usr/lib/python2.6/site-packages/virtinst/VirtualWatchdog", 0x7fffe41f3930) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/VirtualWatchdog.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/VirtualWatchdogmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/VirtualWatchdog.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=3701, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/VirtualWatchdog.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=3481, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(5, "\321\362\r\n\300W-Nc\0\0\0\0\0\0\0\0\6\0\0\0@\0\0\0sI\0\0\0d\0"..., 4096) = 3481
fstat(5, {st_mode=S_IFREG|0644, st_size=3481, ...}) = 0
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
close(4)                                = 0
stat("/usr/lib/python2.6/site-packages/virtinst/VirtualFilesystem", 0x7fffe41f3930) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/VirtualFilesystem.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/VirtualFilesystemmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/VirtualFilesystem.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=5154, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/VirtualFilesystem.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=5510, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(5, "\321\362\r\n\277W-Nc\0\0\0\0\0\0\0\0\7\0\0\0@\0\0\0sU\0\0\0d\0"..., 4096) = 4096
fstat(5, {st_mode=S_IFREG|0644, st_size=5510, ...}) = 0
read(5, "\0\0\0s\10\0\0\0\0\1\23\1\f\1\16\1s\r\0\0\0./target/@d"..., 4096) = 1414
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
close(4)                                = 0
stat("/usr/lib/python2.6/site-packages/virtinst/VirtualSmartCardDevice", 0x7fffe41f3930) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/VirtualSmartCardDevice.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/VirtualSmartCardDevicemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/VirtualSmartCardDevice.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=2750, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/VirtualSmartCardDevice.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=3046, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(5, "\321\362\r\n\300W-Nc\0\0\0\0\0\0\0\0\6\0\0\0@\0\0\0sI\0\0\0d\0"..., 4096) = 3046
fstat(5, {st_mode=S_IFREG|0644, st_size=3046, ...}) = 0
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
close(4)                                = 0
stat("/usr/lib/python2.6/site-packages/virtinst/FullVirtGuest", 0x7fffe41f3930) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/FullVirtGuest.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/FullVirtGuestmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/FullVirtGuest.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=1594, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/FullVirtGuest.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=1295, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(5, "\321\362\r\n\277W-Nc\0\0\0\0\0\0\0\0\4\0\0\0@\0\0\0s*\0\0\0d\0"..., 4096) = 1295
fstat(5, {st_mode=S_IFREG|0644, st_size=1295, ...}) = 0
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
close(4)                                = 0
stat("/usr/lib/python2.6/site-packages/virtinst/ParaVirtGuest", 0x7fffe41f3930) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/ParaVirtGuest.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/ParaVirtGuestmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/ParaVirtGuest.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=899, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/ParaVirtGuest.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=430, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(5, "\321\362\r\n\344\322)Nc\0\0\0\0\0\0\0\0\4\0\0\0@\0\0\0s*\0\0\0d\0"..., 4096) = 430
fstat(5, {st_mode=S_IFREG|0644, st_size=430, ...}) = 0
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
close(4)                                = 0
stat("/usr/lib/python2.6/site-packages/virtinst/PXEInstaller", 0x7fffe41f3930) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/PXEInstaller.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/PXEInstallermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/PXEInstaller.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=1314, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/PXEInstaller.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=1090, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(5, "\321\362\r\n\344\322)Nc\0\0\0\0\0\0\0\0\4\0\0\0@\0\0\0s)\0\0\0d\0"..., 4096) = 1090
fstat(5, {st_mode=S_IFREG|0644, st_size=1090, ...}) = 0
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
close(4)                                = 0
stat("/usr/lib/python2.6/site-packages/virtinst/LiveCDInstaller", 0x7fffe41f3930) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/LiveCDInstaller.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/LiveCDInstallermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/LiveCDInstaller.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=2425, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/LiveCDInstaller.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=2829, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(5, "\321\362\r\n\277W-Nc\0\0\0\0\0\0\0\0\6\0\0\0@\0\0\0s_\0\0\0d\0"..., 4096) = 2829
fstat(5, {st_mode=S_IFREG|0644, st_size=2829, ...}) = 0
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
close(4)                                = 0
stat("/usr/lib/python2.6/site-packages/virtinst/ImportInstaller", 0x7fffe41f3930) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/ImportInstaller.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/ImportInstallermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/ImportInstaller.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=2044, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/ImportInstaller.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=2027, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(5, "\321\362\r\n\343\322)Nc\0\0\0\0\0\0\0\0\5\0\0\0@\0\0\0s9\0\0\0d\0"..., 4096) = 2027
fstat(5, {st_mode=S_IFREG|0644, st_size=2027, ...}) = 0
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
close(4)                                = 0
stat("/usr/lib/python2.6/site-packages/virtinst/ImageInstaller", 0x7fffe41f3930) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/ImageInstaller.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/ImageInstallermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/ImageInstaller.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=5720, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/ImageInstaller.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=5815, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(5, "\321\362\r\n\277W-Nc\0\0\0\0\0\0\0\0\t\0\0\0@\0\0\0s\242\0\0\0d\0"..., 4096) = 4096
fstat(5, {st_mode=S_IFREG|0644, st_size=5815, ...}) = 0
read(5, "loatt\3\0\0\0uset\v\0\0\0ImageParsert\4\0\0"..., 4096) = 1719
read(5, "", 4096)                       = 0
brk(0x2c6e000)                          = 0x2c6e000
close(5)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/lib/python2.6/site-packages/virtinst/ImageParser", 0x7fffe41f0320) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/ImageParser.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/ImageParsermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/ImageParser.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=11612, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/ImageParser.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=12607, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(6, "\321\362\r\n\277W-Nc\0\0\0\0\0\0\0\0\t\0\0\0@\0\0\0s\5\1\0\0d\0"..., 4096) = 4096
fstat(6, {st_mode=S_IFREG|0644, st_size=12607, ...}) = 0
read(6, "\0\0\0\\\0\0\0s\6\0\0\0\6\1\6\1\f\tt\r\0\0\0ImageFeat"..., 8192) = 8192
read(6, "\0\0parse_fileG\1\0\0s\10\0\0\0\0\1\17\1\f\1\n\1(\0\0"..., 4096) = 319
read(6, "", 4096)                       = 0
close(6)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
close(5)                                = 0
close(4)                                = 0
stat("/usr/lib/python2.6/site-packages/virtinst/CloneManager", 0x7fffe41f3930) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/CloneManager.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/CloneManagermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/CloneManager.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=26537, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/CloneManager.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=23582, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(5, "\321\362\r\n\277W-Nc\0\0\0\0\0\0\0\0\17\0\0\0@\0\0\0s\366\0\0\0d\0"..., 4096) = 4096
fstat(5, {st_mode=S_IFREG|0644, st_size=23582, ...}) = 0
read(5, "\0_original_guestt\r\0\0\0_original_d"..., 16384) = 16384
read(5, "\0\203\1\0\202\1\0n\1\0\1|\5\0|\0\0i\3\0j\6\0o\5\0\1d\7\0S\1"..., 4096) = 3102
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
close(4)                                = 0
close(3)                                = 0
stat("/usr/lib/python2.6/site-packages/virtinst/cli", 0x7fffe41f7fa0) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/cli.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/climodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/cli.py", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=57199, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/cli.pyc", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=57027, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(4, "\321\362\r\n\316\350\337Nc\0\0\0\0\0\0\0\0\37\0\0\0@\0\0\0s)\5\0\0d\0"..., 4096) = 4096
fstat(4, {st_mode=S_IFREG|0644, st_size=57027, ...}) = 0
read(4, "on(\3\0\0\0R\25\0\0\0t\6\0\0\0optiont\3\0\0\0ret("..., 49152) = 49152
read(4, "S\1\210\2\0i\2\0|\0\0\203\1\0p/\0\1t\3\0t\4\0d\1\0\203\1\0h\3"..., 4096) = 3779
read(4, "", 4096)                       = 0
close(4)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/lib64/python2.6/logging/handlers", 0x7fffe41f4990) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/handlers.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/handlersmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/handlers.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=44638, ...}) = 0
open("/usr/lib64/python2.6/logging/handlers.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=38352, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(5, "\321\362\r\n\"\321\337Nc\0\0\0\0\0\0\0\0\24\0\0\0@\0\0\0s&\2\0\0d\0"..., 4096) = 4096
fstat(5, {st_mode=S_IFREG|0644, st_size=38352, ...}) = 0
read(5, "\203\0\0|\0\0_\0\0d\7\0S(\10\0\0\0s<\0\0\0\n        "..., 32768) = 32768
read(5, "\0\0s\4\0\0\0\0\4\31\1c\2\0\0\0\2\0\0\0\2\0\0\0C\0\0\0s\r\0\0"..., 4096) = 1488
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/lib64/python2.6/logging/logging", 0x7fffe41f1380) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/logging.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/loggingmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/logging.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/logging.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/logging/socket", 0x7fffe41f1380) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/socket.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/socketmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/socket.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/socket.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/logging/cPickle", 0x7fffe41f1380) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/cPickle.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/cPicklemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/cPickle.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/cPickle.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/bin/cPickle", 0x7fffe41f1380) = -1 ENOENT (No such file or directory)
open("/usr/bin/cPickle.so", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/cPicklemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/cPickle.py", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/cPickle.pyc", O_RDONLY)  = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/cPickle", 0x7fffe41f1380) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/cPickle.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/cPicklemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/cPickle.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/cPickle.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/cPickle", 0x7fffe41f1380) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/cPickle.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/cPicklemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/cPickle.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/cPickle.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/cPickle", 0x7fffe41f1380) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/cPickle.so", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0555, st_size=76464, ...}) = 0
open("/usr/lib64/python2.6/lib-dynload/cPickle.so", O_RDONLY) = 6
read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\2008\0\0\0\0\0\0"..., 832) = 832
fstat(6, {st_mode=S_IFREG|0555, st_size=76464, ...}) = 0
mmap(NULL, 2171848, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x7fb987411000
mprotect(0x7fb987423000, 2093056, PROT_NONE) = 0
mmap(0x7fb987622000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x11000) = 0x7fb987622000
close(6)                                = 0
brk(0x2c90000)                          = 0x2c90000
brk(0x2cd0000)                          = 0x2cd0000
close(5)                                = 0
stat("/usr/lib64/python2.6/logging/struct", 0x7fffe41f1380) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/struct.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/structmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/struct.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/struct.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/logging/re", 0x7fffe41f1380) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/re.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/remodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/re.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/re.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/logging/stat", 0x7fffe41f1380) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/stat.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/statmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/stat.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/stat.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
close(4)                                = 0
stat("/usr/lib/python2.6/site-packages/virtinst/locale", 0x7fffe41f4990) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/locale.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/localemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/locale.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/locale.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/virtinst/difflib", 0x7fffe41f4990) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/difflib.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/difflibmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/difflib.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/difflib.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/bin/difflib", 0x7fffe41f4990) = -1 ENOENT (No such file or directory)
open("/usr/bin/difflib.so", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/difflibmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/difflib.py", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/difflib.pyc", O_RDONLY)  = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/difflib", 0x7fffe41f4990) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/difflib.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/difflibmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/difflib.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=81080, ...}) = 0
open("/usr/lib64/python2.6/difflib.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=61193, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(5, "\321\362\r\n*\321\337Nc\0\0\0\0\0\0\0\0\v\0\0\0@\0\0\0s\225\1\0\0d\0"..., 4096) = 4096
fstat(5, {st_mode=S_IFREG|0644, st_size=61193, ...}) = 0
read(5, "or 8 elements\n    a[8] and b[17]"..., 53248) = 53248
read(5, "\6\1\7\1\t\1\n\2\21\2\v\1\22\2\16\2c\7\0\0\0\23\0\0\0\v\0\0\0C\0\0"..., 4096) = 3849
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/bin/heapq", 0x7fffe41f1380)  = -1 ENOENT (No such file or directory)
open("/usr/bin/heapq.so", O_RDONLY)     = -1 ENOENT (No such file or directory)
open("/usr/bin/heapqmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/heapq.py", O_RDONLY)     = -1 ENOENT (No such file or directory)
open("/usr/bin/heapq.pyc", O_RDONLY)    = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/heapq", 0x7fffe41f1380) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/heapq.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/heapqmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/heapq.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=15995, ...}) = 0
open("/usr/lib64/python2.6/heapq.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=12694, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(6, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\21\0\0\0@\0\0\0s\346\1\0\0d\0"..., 4096) = 4096
fstat(6, {st_mode=S_IFREG|0644, st_size=12694, ...}) = 0
read(6, "od structure for implementing sc"..., 8192) = 8192
read(6, "doc__t\t\0\0\0__about__t\7\0\0\0__all__t"..., 4096) = 406
read(6, "", 4096)                       = 0
close(6)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
stat("/usr/bin/itertools", 0x7fffe41edd70) = -1 ENOENT (No such file or directory)
open("/usr/bin/itertools.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/itertoolsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/itertools.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/itertools.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/itertools", 0x7fffe41edd70) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/itertools.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/itertoolsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/itertools.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/itertools.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/itertools", 0x7fffe41edd70) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/itertools.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/itertoolsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/itertools.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/itertools.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/itertools", 0x7fffe41edd70) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/itertools.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/itertoolsmodule.so", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0555, st_size=54992, ...}) = 0
open("/usr/lib64/python2.6/lib-dynload/itertoolsmodule.so", O_RDONLY) = 8
read(8, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260+\0\0\0\0\0\0"..., 832) = 832
fstat(8, {st_mode=S_IFREG|0555, st_size=54992, ...}) = 0
mmap(NULL, 2150168, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x7fb987204000
mprotect(0x7fb98720e000, 2093056, PROT_NONE) = 0
mmap(0x7fb98740d000, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x9000) = 0x7fb98740d000
close(8)                                = 0
close(6)                                = 0
stat("/usr/bin/_heapq", 0x7fffe41edd70) = -1 ENOENT (No such file or directory)
open("/usr/bin/_heapq.so", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/_heapqmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/_heapq.py", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/_heapq.pyc", O_RDONLY)   = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/_heapq", 0x7fffe41edd70) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_heapq.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_heapqmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_heapq.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_heapq.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/_heapq", 0x7fffe41edd70) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_heapq.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_heapqmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_heapq.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_heapq.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/_heapq", 0x7fffe41edd70) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/_heapq.so", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0755, st_size=22240, ...}) = 0
open("/usr/lib64/python2.6/lib-dynload/_heapq.so", O_RDONLY) = 8
read(8, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0p\f\0\0\0\0\0\0"..., 832) = 832
fstat(8, {st_mode=S_IFREG|0755, st_size=22240, ...}) = 0
mmap(NULL, 2117432, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x7fb986fff000
mprotect(0x7fb987002000, 2097152, PROT_NONE) = 0
mmap(0x7fb987202000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x3000) = 0x7fb987202000
close(8)                                = 0
close(6)                                = 0
close(5)                                = 0
close(4)                                = 0
stat("/usr/lib/python2.6/site-packages/virtinst/optparse", 0x7fffe41f4990) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/optparse.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/optparsemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/optparse.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/optparse.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/virtinst/shlex", 0x7fffe41f4990) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/shlex.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/shlexmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/shlex.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/shlex.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/bin/shlex", 0x7fffe41f4990)  = -1 ENOENT (No such file or directory)
open("/usr/bin/shlex.so", O_RDONLY)     = -1 ENOENT (No such file or directory)
open("/usr/bin/shlexmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/shlex.py", O_RDONLY)     = -1 ENOENT (No such file or directory)
open("/usr/bin/shlex.pyc", O_RDONLY)    = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/shlex", 0x7fffe41f4990) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/shlex.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/shlexmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/shlex.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=11137, ...}) = 0
open("/usr/lib64/python2.6/shlex.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=7710, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(5, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\n\0\0\0@\0\0\0s\35\1\0\0d\0"..., 4096) = 4096
fstat(5, {st_mode=S_IFREG|0644, st_size=7710, ...}) = 0
read(5, "\0i\t\0p\21\0\1|\0\0i\v\0o\f\0\1|\1\0o\5\0\1Pq^\5\1q\17"..., 4096) = 3614
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
close(4)                                = 0
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f83c0) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f83c0) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f83c0) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f83c0) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f83c0) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41f83c0) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41f83c0) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41f83c0) = -1 ENOENT (No such file or directory)
close(3)                                = 0
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41fb920) = -1 ENOENT (No such file or directory)
open("/usr/share/locale/locale.alias", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=2512, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
read(3, "# Locale name alias data base.\n#"..., 4096) = 2512
read(3, "", 4096)                       = 0
close(3)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
open("/usr/share/locale/en_US.utf8/LC_MESSAGES/libc.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/locale/en_US/LC_MESSAGES/libc.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/locale/en.utf8/LC_MESSAGES/libc.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/locale/en/LC_MESSAGES/libc.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41fb920) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41fb920) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41fb920) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/messages.mo", 0x7fffe41fab10) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/messages.mo", 0x7fffe41fab10) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/messages.mo", 0x7fffe41fab10) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/messages.mo", 0x7fffe41fab10) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/messages.mo", 0x7fffe41fab10) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/messages.mo", 0x7fffe41fab10) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/messages.mo", 0x7fffe41fab10) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/messages.mo", 0x7fffe41fab10) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41fb4d0) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41fb4d0) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41fb4d0) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41fb4d0) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41fb4d0) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41fb4d0) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41fb4d0) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41fb4d0) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41fb4d0) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41fb4d0) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41fb4d0) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41fb4d0) = -1 ENOENT (No such file or directory)
brk(0x2cf1000)                          = 0x2cf1000
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41fb410) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41fb410) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41fb410) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41fb410) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41fb410) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41fb410) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41fb410) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41fb410) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
access("/root/.virtinst", W_OK)         = 0
open("/root/.virtinst/virt-install.log", O_WRONLY|O_CREAT|O_APPEND, 0666) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=33450, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d5000
fstat(3, {st_mode=S_IFREG|0644, st_size=33450, ...}) = 0
lseek(3, 33450, SEEK_SET)               = 33450
fstat(3, {st_mode=S_IFREG|0644, st_size=33450, ...}) = 0
gettimeofday({1331870691, 143938}, NULL) = 0
stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3543, ...}) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=33450, ...}) = 0
lseek(3, 33450, SEEK_SET)               = 33450
stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3543, ...}) = 0
write(3, "[Thu, 15 Mar 2012 23:04:51 virt-"..., 134) = 134
geteuid()                               = 0
uname({sys="Linux", node="XenTester", ...}) = 0
pipe2([4, 5], O_CLOEXEC)                = 0
clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7fb9912be9d0) = 30688
close(5)                                = 0
fcntl(4, F_SETFD, 0)                    = 0
fstat(4, {st_mode=S_IFIFO|0600, st_size=0, ...}) = 0
fstat(4, {st_mode=S_IFIFO|0600, st_size=0, ...}) = 0
lseek(4, 0, SEEK_CUR)                   = -1 ESPIPE (Illegal seek)
fstat(4, {st_mode=S_IFIFO|0600, st_size=0, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d4000
read(4, "x86_64\n", 4096)               = 7
read(4, "", 4096)                       = 0
close(4)                                = 0
wait4(30688, [{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0, NULL) = 30688
--- SIGCHLD (Child exited) @ 0 (0) ---
munmap(0x7fb9912d4000, 4096)            = 0
gettimeofday({1331870691, 166206}, NULL) = 0
stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3543, ...}) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=33584, ...}) = 0
lseek(3, 33584, SEEK_SET)               = 33584
stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3543, ...}) = 0
write(3, "[Thu, 15 Mar 2012 23:04:51 virt-"..., 94) = 94
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 167987313}) = 0
geteuid()                               = 0
access("/usr/local/etc/libvirt/libvirt.conf", F_OK) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 169147528}) = 0
open("/usr/local/etc/libvirt/libvirt.conf", O_RDONLY) = 4
read(4, "#\n# This can be used to setup UR"..., 8192) = 373
read(4, "", 7819)                       = 0
close(4)                                = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 170029696}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 170245848}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 170482115}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 170691390}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 170972968}) = 0
open("/dev/null", O_RDWR|O_CLOEXEC)     = 4
pipe2([5, 6], O_CLOEXEC)                = 0
pipe2([8, 9], O_CLOEXEC)                = 0
rt_sigprocmask(SIG_SETMASK, ~[RTMIN RT_1], [], 8) = 0
clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7fb9912be9d0) = 30690
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
close(4)                                = 0
close(6)                                = 0
close(9)                                = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 180876650}) = 0
poll([{fd=5, events=POLLIN}, {fd=8, events=POLLIN}], 2, -1) = 1 ([{fd=5, revents=POLLHUP}])
read(5, "", 1024)                       = 0
poll([{fd=8, events=POLLIN}], 1, -1)    = 1 ([{fd=8, revents=POLLHUP}])
read(8, "", 1024)                       = 0
wait4(30690, [{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0, NULL) = 30690
--- SIGCHLD (Child exited) @ 0 (0) ---
open("/usr/local/share/locale/en_US.utf8/LC_MESSAGES/libvirt.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/local/share/locale/en_US/LC_MESSAGES/libvirt.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/local/share/locale/en.utf8/LC_MESSAGES/libvirt.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/local/share/locale/en/LC_MESSAGES/libvirt.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 684228805}) = 0
close(5)                                = 0
close(8)                                = 0
access("/proc/xen/privcmd", R_OK)       = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 684852519}) = 0
open("/proc/xen/privcmd", O_RDWR)       = 4
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 685195215}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 685424730}) = 0
socket(PF_FILE, SOCK_STREAM, 0)         = 5
setsockopt(5, SOL_TCP, TCP_NODELAY, [1], 4) = -1 EOPNOTSUPP (Operation not supported)
connect(5, {sa_family=AF_FILE, path="/var/lib/xend/xend-socket"}, 110) = -1 ENOENT (No such file or directory)
close(5)                                = 0
access("/proc/xen/privcmd", R_OK)       = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 686933882}) = 0
socket(PF_NETLINK, SOCK_RAW, 0)         = 5
bind(5, {sa_family=AF_NETLINK, pid=0, groups=00000000}, 12) = 0
getsockname(5, {sa_family=AF_NETLINK, pid=30687, groups=00000000}, [12]) = 0
time(NULL)                              = 1331870691
sendto(5, "\24\0\0\0\26\0\1\3\343\273bO\0\0\0\0\0\0\0\0", 20, 0, {sa_family=AF_NETLINK, pid=0, groups=00000000}, 12) = 20
recvmsg(5, {msg_name(12)={sa_family=AF_NETLINK, pid=0, groups=00000000}, msg_iov(1)=[{"0\0\0\0\24\0\2\0\343\273bO\337w\0\0\2\10\200\376\1\0\0\0\10\0\1\0\177\0\0\1"..., 4096}], msg_controllen=0, msg_flags=0}, 0) = 168
recvmsg(5, {msg_name(12)={sa_family=AF_NETLINK, pid=0, groups=00000000}, msg_iov(1)=[{"@\0\0\0\24\0\2\0\343\273bO\337w\0\0\n\200\200\376\1\0\0\0\24\0\1\0\0\0\0\0"..., 4096}], msg_controllen=0, msg_flags=0}, 0) = 128
recvmsg(5, {msg_name(12)={sa_family=AF_NETLINK, pid=0, groups=00000000}, msg_iov(1)=[{"\24\0\0\0\3\0\2\0\343\273bO\337w\0\0\0\0\0\0\1\0\0\0\24\0\1\0\0\0\0\0"..., 4096}], msg_controllen=0, msg_flags=0}, 0) = 20
close(5)                                = 0
socket(PF_FILE, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0) = 5
connect(5, {sa_family=AF_FILE, path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory)
close(5)                                = 0
socket(PF_FILE, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0) = 5
connect(5, {sa_family=AF_FILE, path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory)
close(5)                                = 0
open("/etc/nsswitch.conf", O_RDONLY)    = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=1688, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d4000
read(5, "#\n# /etc/nsswitch.conf\n#\n# An ex"..., 4096) = 1688
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7fb9912d4000, 4096)            = 0
open("/etc/host.conf", O_RDONLY)        = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=9, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d4000
read(5, "multi on\n", 4096)             = 9
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7fb9912d4000, 4096)            = 0
futex(0x3208b9f384, FUTEX_WAKE_PRIVATE, 2147483647) = 0
open("/etc/resolv.conf", O_RDONLY)      = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=110, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d4000
read(5, "# Generated by NetworkManager\ndo"..., 4096) = 110
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7fb9912d4000, 4096)            = 0
open("/etc/ld.so.cache", O_RDONLY)      = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=81064, ...}) = 0
mmap(NULL, 81064, PROT_READ, MAP_PRIVATE, 5, 0) = 0x7fb991227000
close(5)                                = 0
open("/lib64/libnss_files.so.2", O_RDONLY) = 5
read(5, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360!\0\0\0\0\0\0"..., 832) = 832
fstat(5, {st_mode=S_IFREG|0755, st_size=65928, ...}) = 0
mmap(NULL, 2151824, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 5, 0) = 0x7fb986df1000
mprotect(0x7fb986dfd000, 2097152, PROT_NONE) = 0
mmap(0x7fb986ffd000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 5, 0xc000) = 0x7fb986ffd000
close(5)                                = 0
mprotect(0x7fb986ffd000, 4096, PROT_READ) = 0
munmap(0x7fb991227000, 81064)           = 0
open("/etc/hosts", O_RDONLY|O_CLOEXEC)  = 5
fcntl(5, F_GETFD)                       = 0x1 (flags FD_CLOEXEC)
fstat(5, {st_mode=S_IFREG|0644, st_size=158, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d4000
read(5, "127.0.0.1   localhost localhost."..., 4096) = 158
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7fb9912d4000, 4096)            = 0
open("/etc/gai.conf", O_RDONLY)         = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
fstat(5, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d4000
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7fb9912d4000, 4096)            = 0
futex(0x3208b9df04, FUTEX_WAKE_PRIVATE, 2147483647) = 0
socket(PF_INET, SOCK_DGRAM, IPPROTO_IP) = 5
connect(5, {sa_family=AF_INET, sin_port=htons(8000), sin_addr=inet_addr("127.0.0.1")}, 16) = 0
getsockname(5, {sa_family=AF_INET, sin_port=htons(45775), sin_addr=inet_addr("127.0.0.1")}, [16]) = 0
close(5)                                = 0
socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP) = 5
connect(5, {sa_family=AF_INET6, sin6_port=htons(8000), inet_pton(AF_INET6, "::1", &sin6_addr), sin6_flowinfo=0, sin6_scope_id=0}, 28) = 0
getsockname(5, {sa_family=AF_INET6, sin6_port=htons(35659), inet_pton(AF_INET6, "::1", &sin6_addr), sin6_flowinfo=0, sin6_scope_id=0}, [28]) = 0
close(5)                                = 0
socket(PF_INET6, SOCK_STREAM, IPPROTO_TCP) = 5
connect(5, {sa_family=AF_INET6, sin6_port=htons(8000), inet_pton(AF_INET6, "::1", &sin6_addr), sin6_flowinfo=0, sin6_scope_id=0}, 28) = -1 ECONNREFUSED (Connection refused)
close(5)                                = 0
socket(PF_INET, SOCK_STREAM, IPPROTO_TCP) = 5
connect(5, {sa_family=AF_INET, sin_port=htons(8000), sin_addr=inet_addr("127.0.0.1")}, 16) = 0
close(5)                                = 0
socket(PF_INET, SOCK_STREAM, IPPROTO_TCP) = 5
setsockopt(5, SOL_TCP, TCP_NODELAY, [1], 4) = 0
connect(5, {sa_family=AF_INET, sin_port=htons(8000), sin_addr=inet_addr("127.0.0.1")}, 16) = 0
write(5, "GET ", 4)                     = 4
write(5, "/xend/node/", 11)             = 11
write(5, " HTTP/1.1\r\n", 11)           = 11
write(5, "Host: localhost:8000\r\nAccept-Enc"..., 100) = 100
read(5, "H", 1)                         = 1
read(5, "T", 1)                         = 1
read(5, "T", 1)                         = 1
read(5, "P", 1)                         = 1
read(5, "/", 1)                         = 1
read(5, "1", 1)                         = 1
read(5, ".", 1)                         = 1
read(5, "1", 1)                         = 1
read(5, " ", 1)                         = 1
read(5, "2", 1)                         = 1
read(5, "0", 1)                         = 1
read(5, "0", 1)                         = 1
read(5, " ", 1)                         = 1
read(5, "O", 1)                         = 1
read(5, "K", 1)                         = 1
read(5, "\r", 1)                        = 1
read(5, "\n", 1)                        = 1
read(5, "C", 1)                         = 1
read(5, "o", 1)                         = 1
read(5, "n", 1)                         = 1
read(5, "t", 1)                         = 1
read(5, "e", 1)                         = 1
read(5, "n", 1)                         = 1
read(5, "t", 1)                         = 1
read(5, "-", 1)                         = 1
read(5, "l", 1)                         = 1
read(5, "e", 1)                         = 1
read(5, "n", 1)                         = 1
read(5, "g", 1)                         = 1
read(5, "t", 1)                         = 1
read(5, "h", 1)                         = 1
read(5, ":", 1)                         = 1
read(5, " ", 1)                         = 1
read(5, "9", 1)                         = 1
read(5, "5", 1)                         = 1
read(5, "5", 1)                         = 1
read(5, "\r", 1)                        = 1
read(5, "\n", 1)                        = 1
read(5, "E", 1)                         = 1
read(5, "x", 1)                         = 1
read(5, "p", 1)                         = 1
read(5, "i", 1)                         = 1
read(5, "r", 1)                         = 1
read(5, "e", 1)                         = 1
read(5, "s", 1)                         = 1
read(5, ":", 1)                         = 1
read(5, " ", 1)                         = 1
read(5, "-", 1)                         = 1
read(5, "1", 1)                         = 1
read(5, "\r", 1)                        = 1
read(5, "\n", 1)                        = 1
read(5, "C", 1)                         = 1
read(5, "o", 1)                         = 1
read(5, "n", 1)                         = 1
read(5, "t", 1)                         = 1
read(5, "e", 1)                         = 1
read(5, "n", 1)                         = 1
read(5, "t", 1)                         = 1
read(5, "-", 1)                         = 1
read(5, "t", 1)                         = 1
read(5, "y", 1)                         = 1
read(5, "p", 1)                         = 1
read(5, "e", 1)                         = 1
read(5, ":", 1)                         = 1
read(5, " ", 1)                         = 1
read(5, "a", 1)                         = 1
read(5, "p", 1)                         = 1
read(5, "p", 1)                         = 1
read(5, "l", 1)                         = 1
read(5, "i", 1)                         = 1
read(5, "c", 1)                         = 1
read(5, "a", 1)                         = 1
read(5, "t", 1)                         = 1
read(5, "i", 1)                         = 1
read(5, "o", 1)                         = 1
read(5, "n", 1)                         = 1
read(5, "/", 1)                         = 1
read(5, "s", 1)                         = 1
read(5, "x", 1)                         = 1
read(5, "p", 1)                         = 1
read(5, "\r", 1)                        = 1
read(5, "\n", 1)                        = 1
read(5, "P", 1)                         = 1
read(5, "r", 1)                         = 1
read(5, "a", 1)                         = 1
read(5, "g", 1)                         = 1
read(5, "m", 1)                         = 1
read(5, "a", 1)                         = 1
read(5, ":", 1)                         = 1
read(5, " ", 1)                         = 1
read(5, "n", 1)                         = 1
read(5, "o", 1)                         = 1
read(5, "-", 1)                         = 1
read(5, "c", 1)                         = 1
read(5, "a", 1)                         = 1
read(5, "c", 1)                         = 1
read(5, "h", 1)                         = 1
read(5, "e", 1)                         = 1
read(5, "\r", 1)                        = 1
read(5, "\n", 1)                        = 1
read(5, "C", 1)                         = 1
read(5, "a", 1)                         = 1
read(5, "c", 1)                         = 1
read(5, "h", 1)                         = 1
read(5, "e", 1)                         = 1
read(5, "-", 1)                         = 1
read(5, "c", 1)                         = 1
read(5, "o", 1)                         = 1
read(5, "n", 1)                         = 1
read(5, "t", 1)                         = 1
read(5, "r", 1)                         = 1
read(5, "o", 1)                         = 1
read(5, "l", 1)                         = 1
read(5, ":", 1)                         = 1
read(5, " ", 1)                         = 1
read(5, "n", 1)                         = 1
read(5, "o", 1)                         = 1
read(5, "-", 1)                         = 1
read(5, "c", 1)                         = 1
read(5, "a", 1)                         = 1
read(5, "c", 1)                         = 1
read(5, "h", 1)                         = 1
read(5, "e", 1)                         = 1
read(5, "\r", 1)                        = 1
read(5, "\n", 1)                        = 1
read(5, "\r", 1)                        = 1
read(5, "\n", 1)                        = 1
read(5, "(node (system Linux) (host XenTe"..., 955) = 955
close(5)                                = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 715432509}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 715638003}) = 0
stat("/var/run/xenstored/socket", {st_mode=S_IFSOCK|0600, st_size=0, ...}) = 0
socket(PF_FILE, SOCK_STREAM, 0)         = 5
fcntl(5, F_GETFD)                       = 0
fcntl(5, F_SETFD, FD_CLOEXEC)           = 0
connect(5, {sa_family=AF_FILE, path="/var/run/xenstored/socket"}, 110) = 0
mmap(NULL, 8392704, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x7fb9865f0000
mprotect(0x7fb9865f0000, 4096, PROT_NONE) = 0
clone(child_stack=0x7fb986defff0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7fb986df09d0, tls=0x7fb986df0700, child_tidptr=0x7fb986df09d0) = 30708
rt_sigaction(SIGPIPE, {SIG_IGN, [], SA_RESTORER, 0x3208c0f4a0}, {SIG_IGN, [], SA_RESTORER, 0x3208c0f4a0}, 8) = 0
write(5, "\4\0\0\0\0\0\0\0\0\0\0\0\35\0\0\0", 16) = 16
write(5, "@releaseDomain\0", 15)        = 15
write(5, "releaseDomain\0", 14)         = 14
rt_sigaction(SIGPIPE, {SIG_IGN, [], SA_RESTORER, 0x3208c0f4a0}, NULL, 8) = 0
rt_sigaction(SIGPIPE, {SIG_IGN, [], SA_RESTORER, 0x3208c0f4a0}, {SIG_IGN, [], SA_RESTORER, 0x3208c0f4a0}, 8) = 0
write(5, "\4\0\0\0\0\0\0\0\0\0\0\0!\0\0\0", 16) = 16
write(5, "@introduceDomain\0", 17)      = 17
write(5, "introduceDomain\0", 16)       = 16
rt_sigaction(SIGPIPE, {SIG_IGN, [], SA_RESTORER, 0x3208c0f4a0}, NULL, 8) = 0
pipe([6, 8])                            = 0
write(8, "\0", 1)                       = 1
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 720181542}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 720391268}) = 0
socket(PF_INET, SOCK_STREAM, IPPROTO_TCP) = 9
setsockopt(9, SOL_TCP, TCP_NODELAY, [1], 4) = 0
connect(9, {sa_family=AF_INET, sin_port=htons(8000), sin_addr=inet_addr("127.0.0.1")}, 16) = 0
write(9, "GET ", 4)                     = 4
write(9, "/xend/node/", 11)             = 11
write(9, " HTTP/1.1\r\n", 11)           = 11
write(9, "Host: localhost:8000\r\nAccept-Enc"..., 100) = 100
read(9, "H", 1)                         = 1
read(9, "T", 1)                         = 1
read(9, "T", 1)                         = 1
read(9, "P", 1)                         = 1
read(9, "/", 1)                         = 1
read(9, "1", 1)                         = 1
read(9, ".", 1)                         = 1
read(9, "1", 1)                         = 1
read(9, " ", 1)                         = 1
read(9, "2", 1)                         = 1
read(9, "0", 1)                         = 1
read(9, "0", 1)                         = 1
read(9, " ", 1)                         = 1
read(9, "O", 1)                         = 1
read(9, "K", 1)                         = 1
read(9, "\r", 1)                        = 1
read(9, "\n", 1)                        = 1
read(9, "C", 1)                         = 1
read(9, "o", 1)                         = 1
read(9, "n", 1)                         = 1
read(9, "t", 1)                         = 1
read(9, "e", 1)                         = 1
read(9, "n", 1)                         = 1
read(9, "t", 1)                         = 1
read(9, "-", 1)                         = 1
read(9, "l", 1)                         = 1
read(9, "e", 1)                         = 1
read(9, "n", 1)                         = 1
read(9, "g", 1)                         = 1
read(9, "t", 1)                         = 1
read(9, "h", 1)                         = 1
read(9, ":", 1)                         = 1
read(9, " ", 1)                         = 1
read(9, "9", 1)                         = 1
read(9, "5", 1)                         = 1
read(9, "5", 1)                         = 1
read(9, "\r", 1)                        = 1
read(9, "\n", 1)                        = 1
read(9, "E", 1)                         = 1
read(9, "x", 1)                         = 1
read(9, "p", 1)                         = 1
read(9, "i", 1)                         = 1
read(9, "r", 1)                         = 1
read(9, "e", 1)                         = 1
read(9, "s", 1)                         = 1
read(9, ":", 1)                         = 1
read(9, " ", 1)                         = 1
read(9, "-", 1)                         = 1
read(9, "1", 1)                         = 1
read(9, "\r", 1)                        = 1
read(9, "\n", 1)                        = 1
read(9, "C", 1)                         = 1
read(9, "o", 1)                         = 1
read(9, "n", 1)                         = 1
read(9, "t", 1)                         = 1
read(9, "e", 1)                         = 1
read(9, "n", 1)                         = 1
read(9, "t", 1)                         = 1
read(9, "-", 1)                         = 1
read(9, "t", 1)                         = 1
read(9, "y", 1)                         = 1
read(9, "p", 1)                         = 1
read(9, "e", 1)                         = 1
read(9, ":", 1)                         = 1
read(9, " ", 1)                         = 1
read(9, "a", 1)                         = 1
read(9, "p", 1)                         = 1
read(9, "p", 1)                         = 1
read(9, "l", 1)                         = 1
read(9, "i", 1)                         = 1
read(9, "c", 1)                         = 1
read(9, "a", 1)                         = 1
read(9, "t", 1)                         = 1
read(9, "i", 1)                         = 1
read(9, "o", 1)                         = 1
read(9, "n", 1)                         = 1
read(9, "/", 1)                         = 1
read(9, "s", 1)                         = 1
read(9, "x", 1)                         = 1
read(9, "p", 1)                         = 1
read(9, "\r", 1)                        = 1
read(9, "\n", 1)                        = 1
read(9, "P", 1)                         = 1
read(9, "r", 1)                         = 1
read(9, "a", 1)                         = 1
read(9, "g", 1)                         = 1
read(9, "m", 1)                         = 1
read(9, "a", 1)                         = 1
read(9, ":", 1)                         = 1
read(9, " ", 1)                         = 1
read(9, "n", 1)                         = 1
read(9, "o", 1)                         = 1
read(9, "-", 1)                         = 1
read(9, "c", 1)                         = 1
read(9, "a", 1)                         = 1
read(9, "c", 1)                         = 1
read(9, "h", 1)                         = 1
read(9, "e", 1)                         = 1
read(9, "\r", 1)                        = 1
read(9, "\n", 1)                        = 1
read(9, "C", 1)                         = 1
read(9, "a", 1)                         = 1
read(9, "c", 1)                         = 1
read(9, "h", 1)                         = 1
read(9, "e", 1)                         = 1
read(9, "-", 1)                         = 1
read(9, "c", 1)                         = 1
read(9, "o", 1)                         = 1
read(9, "n", 1)                         = 1
read(9, "t", 1)                         = 1
read(9, "r", 1)                         = 1
read(9, "o", 1)                         = 1
read(9, "l", 1)                         = 1
read(9, ":", 1)                         = 1
read(9, " ", 1)                         = 1
read(9, "n", 1)                         = 1
read(9, "o", 1)                         = 1
read(9, "-", 1)                         = 1
read(9, "c", 1)                         = 1
read(9, "a", 1)                         = 1
read(9, "c", 1)                         = 1
read(9, "h", 1)                         = 1
read(9, "e", 1)                         = 1
read(9, "\r", 1)                        = 1
read(9, "\n", 1)                        = 1
read(9, "\r", 1)                        = 1
read(9, "\n", 1)                        = 1
read(9, "(node (system Linux) (host XenTe"..., 955) = 955
close(9)                                = 0
uname({sys="Linux", node="XenTester", ...}) = 0
open("/proc/cpuinfo", O_RDONLY)         = 9
open("/sys/hypervisor/properties/capabilities", O_RDONLY) = 10
fstat(9, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d4000
read(9, "processor\t: 0\nvendor_id\t: Genuin"..., 1024) = 1024
brk(0x2d12000)                          = 0x2d12000
read(9, "ress sizes\t: 36 bits physical, 4"..., 1024) = 66
read(9, "", 1024)                       = 0
fstat(10, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912d3000
read(10, "xen-3.0-x86_64 xen-3.0-x86_32p h"..., 4096) = 78
socket(PF_INET, SOCK_STREAM, IPPROTO_TCP) = 11
setsockopt(11, SOL_TCP, TCP_NODELAY, [1], 4) = 0
connect(11, {sa_family=AF_INET, sin_port=htons(8000), sin_addr=inet_addr("127.0.0.1")}, 16) = 0
write(11, "GET ", 4)                    = 4
write(11, "/xend/node/", 11)            = 11
write(11, " HTTP/1.1\r\n", 11)          = 11
write(11, "Host: localhost:8000\r\nAccept-Enc"..., 100) = 100
read(11, "H", 1)                        = 1
read(11, "T", 1)                        = 1
read(11, "T", 1)                        = 1
read(11, "P", 1)                        = 1
read(11, "/", 1)                        = 1
read(11, "1", 1)                        = 1
read(11, ".", 1)                        = 1
read(11, "1", 1)                        = 1
read(11, " ", 1)                        = 1
read(11, "2", 1)                        = 1
read(11, "0", 1)                        = 1
read(11, "0", 1)                        = 1
read(11, " ", 1)                        = 1
read(11, "O", 1)                        = 1
read(11, "K", 1)                        = 1
read(11, "\r", 1)                       = 1
read(11, "\n", 1)                       = 1
read(11, "C", 1)                        = 1
read(11, "o", 1)                        = 1
read(11, "n", 1)                        = 1
read(11, "t", 1)                        = 1
read(11, "e", 1)                        = 1
read(11, "n", 1)                        = 1
read(11, "t", 1)                        = 1
read(11, "-", 1)                        = 1
read(11, "l", 1)                        = 1
read(11, "e", 1)                        = 1
read(11, "n", 1)                        = 1
read(11, "g", 1)                        = 1
read(11, "t", 1)                        = 1
read(11, "h", 1)                        = 1
read(11, ":", 1)                        = 1
read(11, " ", 1)                        = 1
read(11, "9", 1)                        = 1
read(11, "5", 1)                        = 1
read(11, "5", 1)                        = 1
read(11, "\r", 1)                       = 1
read(11, "\n", 1)                       = 1
read(11, "E", 1)                        = 1
read(11, "x", 1)                        = 1
read(11, "p", 1)                        = 1
read(11, "i", 1)                        = 1
read(11, "r", 1)                        = 1
read(11, "e", 1)                        = 1
read(11, "s", 1)                        = 1
read(11, ":", 1)                        = 1
read(11, " ", 1)                        = 1
read(11, "-", 1)                        = 1
read(11, "1", 1)                        = 1
read(11, "\r", 1)                       = 1
read(11, "\n", 1)                       = 1
read(11, "C", 1)                        = 1
read(11, "o", 1)                        = 1
read(11, "n", 1)                        = 1
read(11, "t", 1)                        = 1
read(11, "e", 1)                        = 1
read(11, "n", 1)                        = 1
read(11, "t", 1)                        = 1
read(11, "-", 1)                        = 1
read(11, "t", 1)                        = 1
read(11, "y", 1)                        = 1
read(11, "p", 1)                        = 1
read(11, "e", 1)                        = 1
read(11, ":", 1)                        = 1
read(11, " ", 1)                        = 1
read(11, "a", 1)                        = 1
read(11, "p", 1)                        = 1
read(11, "p", 1)                        = 1
read(11, "l", 1)                        = 1
read(11, "i", 1)                        = 1
read(11, "c", 1)                        = 1
read(11, "a", 1)                        = 1
read(11, "t", 1)                        = 1
read(11, "i", 1)                        = 1
read(11, "o", 1)                        = 1
read(11, "n", 1)                        = 1
read(11, "/", 1)                        = 1
read(11, "s", 1)                        = 1
read(11, "x", 1)                        = 1
read(11, "p", 1)                        = 1
read(11, "\r", 1)                       = 1
read(11, "\n", 1)                       = 1
read(11, "P", 1)                        = 1
read(11, "r", 1)                        = 1
read(11, "a", 1)                        = 1
read(11, "g", 1)                        = 1
read(11, "m", 1)                        = 1
read(11, "a", 1)                        = 1
read(11, ":", 1)                        = 1
read(11, " ", 1)                        = 1
read(11, "n", 1)                        = 1
read(11, "o", 1)                        = 1
read(11, "-", 1)                        = 1
read(11, "c", 1)                        = 1
read(11, "a", 1)                        = 1
read(11, "c", 1)                        = 1
read(11, "h", 1)                        = 1
read(11, "e", 1)                        = 1
read(11, "\r", 1)                       = 1
read(11, "\n", 1)                       = 1
read(11, "C", 1)                        = 1
read(11, "a", 1)                        = 1
read(11, "c", 1)                        = 1
read(11, "h", 1)                        = 1
read(11, "e", 1)                        = 1
read(11, "-", 1)                        = 1
read(11, "c", 1)                        = 1
read(11, "o", 1)                        = 1
read(11, "n", 1)                        = 1
read(11, "t", 1)                        = 1
read(11, "r", 1)                        = 1
read(11, "o", 1)                        = 1
read(11, "l", 1)                        = 1
read(11, ":", 1)                        = 1
read(11, " ", 1)                        = 1
read(11, "n", 1)                        = 1
read(11, "o", 1)                        = 1
read(11, "-", 1)                        = 1
read(11, "c", 1)                        = 1
read(11, "a", 1)                        = 1
read(11, "c", 1)                        = 1
read(11, "h", 1)                        = 1
read(11, "e", 1)                        = 1
read(11, "\r", 1)                       = 1
read(11, "\n", 1)                       = 1
read(11, "\r", 1)                       = 1
read(11, "\n", 1)                       = 1
read(11, "(node (system Linux) (host XenTe"..., 955) = 955
close(11)                               = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 756090290}) = 0
stat("/usr/lib64/qt-3.3/bin/pm-is-supported", 0x7fffe41faf90) = -1 ENOENT (No such file or directory)
stat("/usr/local/bin/pm-is-supported", 0x7fffe41faf90) = -1 ENOENT (No such file or directory)
stat("/usr/bin/pm-is-supported", {st_mode=S_IFREG|0755, st_size=983, ...}) = 0
open("/dev/null", O_RDWR|O_CLOEXEC)     = 11
pipe2([12, 13], O_CLOEXEC)              = 0
pipe2([14, 15], O_CLOEXEC)              = 0
rt_sigprocmask(SIG_SETMASK, ~[RTMIN RT_1], [], 8) = 0
clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7fb9912be9d0) = 30711
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
close(11)                               = 0
close(13)                               = 0
close(15)                               = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 766405190}) = 0
poll([{fd=12, events=POLLIN}, {fd=14, events=POLLIN}], 2, -1) = 2 ([{fd=12, revents=POLLHUP}, {fd=14, revents=POLLHUP}])
--- SIGCHLD (Child exited) @ 0 (0) ---
read(12, "", 1024)                      = 0
read(14, "", 1024)                      = 0
wait4(30711, [{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0, NULL) = 30711
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 818105539}) = 0
close(12)                               = 0
close(14)                               = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 818638770}) = 0
stat("/usr/lib64/qt-3.3/bin/pm-is-supported", 0x7fffe41faf90) = -1 ENOENT (No such file or directory)
stat("/usr/local/bin/pm-is-supported", 0x7fffe41faf90) = -1 ENOENT (No such file or directory)
stat("/usr/bin/pm-is-supported", {st_mode=S_IFREG|0755, st_size=983, ...}) = 0
open("/dev/null", O_RDWR|O_CLOEXEC)     = 11
pipe2([12, 13], O_CLOEXEC)              = 0
pipe2([14, 15], O_CLOEXEC)              = 0
rt_sigprocmask(SIG_SETMASK, ~[RTMIN RT_1], [], 8) = 0
clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7fb9912be9d0) = 30719
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
close(11)                               = 0
close(13)                               = 0
close(15)                               = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 828940869}) = 0
poll([{fd=12, events=POLLIN}, {fd=14, events=POLLIN}], 2, -1) = 2 ([{fd=12, revents=POLLHUP}, {fd=14, revents=POLLHUP}])
--- SIGCHLD (Child exited) @ 0 (0) ---
read(12, "", 1024)                      = 0
read(14, "", 1024)                      = 0
wait4(30719, [{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0, NULL) = 30719
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 873448101}) = 0
close(12)                               = 0
close(14)                               = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 873951111}) = 0
stat("/usr/lib64/qt-3.3/bin/pm-is-supported", 0x7fffe41faf90) = -1 ENOENT (No such file or directory)
stat("/usr/local/bin/pm-is-supported", 0x7fffe41faf90) = -1 ENOENT (No such file or directory)
stat("/usr/bin/pm-is-supported", {st_mode=S_IFREG|0755, st_size=983, ...}) = 0
open("/dev/null", O_RDWR|O_CLOEXEC)     = 11
pipe2([12, 13], O_CLOEXEC)              = 0
pipe2([14, 15], O_CLOEXEC)              = 0
rt_sigprocmask(SIG_SETMASK, ~[RTMIN RT_1], [], 8) = 0
clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7fb9912be9d0) = 30727
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
close(11)                               = 0
close(13)                               = 0
close(15)                               = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 884550772}) = 0
poll([{fd=12, events=POLLIN}, {fd=14, events=POLLIN}], 2, -1) = 2 ([{fd=12, revents=POLLHUP}, {fd=14, revents=POLLHUP}])
--- SIGCHLD (Child exited) @ 0 (0) ---
read(12, "", 1024)                      = 0
read(14, "", 1024)                      = 0
wait4(30727, [{WIFEXITED(s) && WEXITSTATUS(s) == 1}], 0, NULL) = 30727
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 925132413}) = 0
close(12)                               = 0
close(14)                               = 0
lseek(9, 0, SEEK_CUR)                   = 1090
close(9)                                = 0
munmap(0x7fb9912d4000, 4096)            = 0
lseek(10, 0, SEEK_CUR)                  = 78
close(10)                               = 0
munmap(0x7fb9912d3000, 4096)            = 0
access("/proc/xen/privcmd", R_OK)       = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 926694068}) = 0
open("/var/lib/xend/domains", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 9
getdents(9, /* 2 entries */, 32768)     = 48
getdents(9, /* 0 entries */, 32768)     = 0
close(9)                                = 0
inotify_init()                          = 9
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 927623817}) = 0
inotify_add_watch(9, "/var/lib/xend/domains", IN_CLOSE_WRITE|IN_MOVED_FROM|IN_MOVED_TO|IN_CREATE|IN_DELETE) = 1
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 927972438}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 928186010}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 928428059}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 928632909}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 928849376}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 929070144}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 929298738}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 929537900}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 929751987}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 929972728}) = 0
stat("/usr/local/sbin/libvirtd", {st_mode=S_IFREG|0755, st_size=5266930, ...}) = 0
socket(PF_FILE, SOCK_STREAM, 0)         = 10
connect(10, {sa_family=AF_FILE, path="/usr/local/var/run/libvirt/libvirt-sock"}, 110) = -1 ENOENT (No such file or directory)
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 930844456}) = 0
close(10)                               = 0
open("/usr/lib64/gconv/gconv-modules.cache", O_RDONLY) = 10
fstat(10, {st_mode=S_IFREG|0644, st_size=26050, ...}) = 0
mmap(NULL, 26050, PROT_READ, MAP_SHARED, 10, 0) = 0x7fb9912ce000
close(10)                               = 0
futex(0x3208b9bf60, FUTEX_WAKE_PRIVATE, 2147483647) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 931870845}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 932087519}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 932299497}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 932498202}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 932706571}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 932909685}) = 0
stat("/usr/local/sbin/libvirtd", {st_mode=S_IFREG|0755, st_size=5266930, ...}) = 0
socket(PF_FILE, SOCK_STREAM, 0)         = 10
connect(10, {sa_family=AF_FILE, path="/usr/local/var/run/libvirt/libvirt-sock"}, 110) = -1 ENOENT (No such file or directory)
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 933638523}) = 0
close(10)                               = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 933932657}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 934127485}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 934336080}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 934539586}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 934755326}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 934957719}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 935159975}) = 0
stat("/usr/local/sbin/libvirtd", {st_mode=S_IFREG|0755, st_size=5266930, ...}) = 0
socket(PF_FILE, SOCK_STREAM, 0)         = 10
connect(10, {sa_family=AF_FILE, path="/usr/local/var/run/libvirt/libvirt-sock"}, 110) = -1 ENOENT (No such file or directory)
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 935957973}) = 0
close(10)                               = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 936251716}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 936472168}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 936666816}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 936864430}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 937057123}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 937276684}) = 0
stat("/usr/local/sbin/libvirtd", {st_mode=S_IFREG|0755, st_size=5266930, ...}) = 0
socket(PF_FILE, SOCK_STREAM, 0)         = 10
connect(10, {sa_family=AF_FILE, path="/usr/local/var/run/libvirt/libvirt-sock"}, 110) = -1 ENOENT (No such file or directory)
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 937991459}) = 0
close(10)                               = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 938299058}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 938494229}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 938688539}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 938896021}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 939089489}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 939352277}) = 0
stat("/usr/local/sbin/libvirtd", {st_mode=S_IFREG|0755, st_size=5266930, ...}) = 0
socket(PF_FILE, SOCK_STREAM, 0)         = 10
connect(10, {sa_family=AF_FILE, path="/usr/local/var/run/libvirt/libvirt-sock"}, 110) = -1 ENOENT (No such file or directory)
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 940068593}) = 0
close(10)                               = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 940386053}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 940580735}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 940774458}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 940984173}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 941186832}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 941404697}) = 0
stat("/usr/local/sbin/libvirtd", {st_mode=S_IFREG|0755, st_size=5266930, ...}) = 0
socket(PF_FILE, SOCK_STREAM, 0)         = 10
connect(10, {sa_family=AF_FILE, path="/usr/local/var/run/libvirt/libvirt-sock"}, 110) = -1 ENOENT (No such file or directory)
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 942115773}) = 0
close(10)                               = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 942721916}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 942918079}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 943538078}) = 0
gettimeofday({1331870691, 943986}, NULL) = 0
stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3543, ...}) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=33678, ...}) = 0
lseek(3, 33678, SEEK_SET)               = 33678
stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3543, ...}) = 0
write(3, "[Thu, 15 Mar 2012 23:04:51 virt-"..., 92) = 92
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 945826353}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 946121873}) = 0
time(NULL)                              = 1331870691
time(NULL)                              = 1331870691
gettimeofday({1331870691, 951630}, NULL) = 0
stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3543, ...}) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=33770, ...}) = 0
lseek(3, 33770, SEEK_SET)               = 33770
stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3543, ...}) = 0
write(3, "[Thu, 15 Mar 2012 23:04:51 virt-"..., 121) = 121
gettimeofday({1331870691, 953066}, NULL) = 0
stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3543, ...}) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=33891, ...}) = 0
lseek(3, 33891, SEEK_SET)               = 33891
stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3543, ...}) = 0
write(3, "[Thu, 15 Mar 2012 23:04:51 virt-"..., 99) = 99
gettimeofday({1331870691, 954095}, NULL) = 0
stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3543, ...}) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=33990, ...}) = 0
lseek(3, 33990, SEEK_SET)               = 33990
stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3543, ...}) = 0
write(3, "[Thu, 15 Mar 2012 23:04:51 virt-"..., 97) = 97
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 955395670}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 955750779}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 956025571}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 956306476}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 956560502}) = 0
brk(0x2d34000)                          = 0x2d34000
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 960389815}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 960745830}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 960997848}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 961283892}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 961721585}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 961969506}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 962216897}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 962609516}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 962898800}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 963174351}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 963536911}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 963820715}) = 0
geteuid()                               = 0
open("/proc/net/route", O_RDONLY)       = 10
fstat(10, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
fstat(10, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912cd000
read(10, "Iface\tDestination\tGateway \tFlags"..., 8192) = 512
read(10, "", 7168)                      = 0
close(10)                               = 0
munmap(0x7fb9912cd000, 4096)            = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 965965222}) = 0
stat("/sys/class/net/wlan0/bridge", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
stat("/sys/class/net/peth0/brport", 0x7fffe41fb580) = -1 ENOENT (No such file or directory)
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 967148723}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 967477037}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 967728078}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 968030977}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 968419582}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 968635873}) = 0
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41fa460) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41fa460) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41fa460) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41fa460) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41fb410) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/virtinst.mo", 0x7fffe41fb410) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/virtinst.mo", 0x7fffe41fb410) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/virtinst.mo", 0x7fffe41fb410) = -1 ENOENT (No such file or directory)
gettimeofday({1331870691, 970659}, NULL) = 0
stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3543, ...}) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=34087, ...}) = 0
lseek(3, 34087, SEEK_SET)               = 34087
stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3543, ...}) = 0
write(3, "[Thu, 15 Mar 2012 23:04:51 virt-"..., 221) = 221
write(2, "ERROR    Error in network device"..., 167) = 167
stat("/usr/lib/python2.6/site-packages/virtinst/cli.py", {st_mode=S_IFREG|0644, st_size=57199, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/cli.py", O_RDONLY) = 10
fstat(10, {st_mode=S_IFREG|0644, st_size=57199, ...}) = 0
fstat(10, {st_mode=S_IFREG|0644, st_size=57199, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912cd000
read(10, "#\n# Utility functions for the co"..., 8192) = 8192
read(10, "in opts:\n        def fakemkstemp"..., 4096) = 4096
read(10, "\"POLKIT_AUTH_FORCE_TEXT\"] = \"set"..., 4096) = 4096
read(10, "t_stdout(prompt + \" \", do_force="..., 4096) = 4096
read(10, "pt_inuse_conflict(dev):\n        "..., 4096) = 4096
read(10, "    \"but performance will be poo"..., 4096) = 4096
read(10, "ap:\n        optstr += \",keymap=%"..., 4096) = 4096
read(10, "tions(devg):\n    devg.add_option"..., 4096) = 4096
read(10, "ns of the form opt1=opt2,\n      "..., 4096) = 4096
read(10, "        val = get_opt_param(opts"..., 4096) = 4096
read(10, "     volinst.allocation = volins"..., 4096) = 4096
read(10, " = optstring.replace(prefix + \":"..., 4096) = 4096
read(10, "ng, \"parallel\", dev)\ndef parse_c"..., 4096) = 3951
brk(0x2d83000)                          = 0x2d83000
read(10, "", 4096)                      = 0
close(10)                               = 0
munmap(0x7fb9912cd000, 4096)            = 0
stat("/usr/lib/python2.6/site-packages/virtinst/cli.py", {st_mode=S_IFREG|0644, st_size=57199, ...}) = 0
stat("/usr/lib/python2.6/site-packages/virtinst/VirtualNetworkInterface.py", {st_mode=S_IFREG|0644, st_size=13655, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/VirtualNetworkInterface.py", O_RDONLY) = 10
fstat(10, {st_mode=S_IFREG|0644, st_size=13655, ...}) = 0
fstat(10, {st_mode=S_IFREG|0644, st_size=13655, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912cd000
read(10, "#\n# Copyright 2006-2009  Red Hat"..., 8192) = 8192
read(10, "et_active(netobj):\n            #"..., 4096) = 4096
read(10, "flict_net(conn)\n            if m"..., 4096) = 1367
read(10, "", 4096)                      = 0
close(10)                               = 0
munmap(0x7fb9912cd000, 4096)            = 0
stat("/usr/lib/python2.6/site-packages/virtinst/XMLBuilderDomain.py", {st_mode=S_IFREG|0644, st_size=15082, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/XMLBuilderDomain.py", O_RDONLY) = 10
fstat(10, {st_mode=S_IFREG|0644, st_size=15082, ...}) = 0
fstat(10, {st_mode=S_IFREG|0644, st_size=15082, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb9912cd000
read(10, "#\n# Base class for all VM device"..., 8192) = 8192
read(10, "val\n\n        nodes = _util.listi"..., 4096) = 4096
read(10, "nstance.\"))\n        self._conn ="..., 4096) = 2794
read(10, "", 4096)                      = 0
close(10)                               = 0
munmap(0x7fb9912cd000, 4096)            = 0
stat("/usr/lib/python2.6/site-packages/virtinst/VirtualNetworkInterface.py", {st_mode=S_IFREG|0644, st_size=13655, ...}) = 0
gettimeofday({1331870691, 997786}, NULL) = 0
stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3543, ...}) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=34308, ...}) = 0
lseek(3, 34308, SEEK_SET)               = 34308
stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3543, ...}) = 0
write(3, "[Thu, 15 Mar 2012 23:04:51 virt-"..., 874) = 874
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 999446770}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 999672853}) = 0
gettid()                                = 30687
clock_gettime(CLOCK_REALTIME, {1331870691, 999884700}) = 0
close(4)                                = 0
rt_sigaction(SIGPIPE, {SIG_IGN, [], SA_RESTORER, 0x3208c0f4a0}, {SIG_IGN, [], SA_RESTORER, 0x3208c0f4a0}, 8) = 0
write(5, "\5\0\0\0\0\0\0\0\0\0\0\0!\0\0\0", 16) = 16
write(5, "@introduceDomain\0", 17)      = 17
write(5, "introduceDomain\0", 16)       = 16
rt_sigaction(SIGPIPE, {SIG_IGN, [], SA_RESTORER, 0x3208c0f4a0}, NULL, 8) = 0
rt_sigaction(SIGPIPE, {SIG_IGN, [], SA_RESTORER, 0x3208c0f4a0}, {SIG_IGN, [], SA_RESTORER, 0x3208c0f4a0}, 8) = 0
write(5, "\5\0\0\0\0\0\0\0\0\0\0\0\35\0\0\0", 16) = 16
write(5, "@releaseDomain\0", 15)        = 15
write(5, "releaseDomain\0", 14)         = 14
rt_sigaction(SIGPIPE, {SIG_IGN, [], SA_RESTORER, 0x3208c0f4a0}, NULL, 8) = 0
open("/etc/ld.so.cache", O_RDONLY)      = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=81064, ...}) = 0
mmap(NULL, 81064, PROT_READ, MAP_PRIVATE, 4, 0) = 0x7fb991227000
close(4)                                = 0
open("/lib64/libgcc_s.so.1", O_RDONLY)  = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20)\300\0232\0\0\0"..., 832) = 832
fstat(4, {st_mode=S_IFREG|0755, st_size=93224, ...}) = 0
mmap(0x3213c00000, 2186488, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x3213c00000
mprotect(0x3213c16000, 2093056, PROT_NONE) = 0
mmap(0x3213e15000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x15000) = 0x3213e15000
close(4)                                = 0
munmap(0x7fb991227000, 81064)           = 0
tgkill(30687, 30708, SIGRTMIN)          = 0
close(6)                                = 0
close(8)                                = 0
close(5)                                = 0
close(9)                                = 0
close(3)                                = 0
munmap(0x7fb9912d5000, 4096)            = 0
rt_sigaction(SIGINT, {SIG_DFL, [], SA_RESTORER, 0x3208c0f4a0}, {0x321550d410, [], SA_RESTORER, 0x3208c0f4a0}, 8) = 0
exit_group(1)                           = ?


More information about the libvirt-users mailing list