Send Bristol mailing list submissions to
bristol@mailman.lug.org.uk
To subscribe or unsubscribe via the World Wide Web, visit
https://mailman.lug.org.uk/mailman/listinfo/bristol
or, via email, send a message with subject or body 'help' to
bristol-request@mailman.lug.org.uk
You can reach the person managing the list at
bristol-owner@mailman.lug.org.uk
When replying, please edit your Subject line so it is more specific
than "Re: Contents of Bristol digest..."
Today's Topics:
1. Re: Scanner Driver Library Epson V500 (Chris)
2. Re: Scanner Driver Library Epson V500 (Chris)
3. Re: Scanner Driver Library Epson V500 (Chris)
4. Re: Iscan has no space [ was Scanner Driver Library Epson
V500] (Peter Hemmings)
5. Re: Iscan has no space [ was Scanner Driver Library Epson
V500] (David Smith)
6. Re: Iscan has no space [ was Scanner Driver Library Epson
V500] (Peter Hemmings)
----------------------------------------------------------------------
Message: 1
Date: Mon, 14 Oct 2013 16:40:28 +0100
From: Chris <cshorler@googlemail.com>
To: Bristol and Bath Linux User Group <bristol@mailman.lug.org.uk>,
Peter Hemmings <peter@hemmings.eclipse.co.uk>
Subject: Re: [bristol] Scanner Driver Library Epson V500
Message-ID: <e2a6a279-b0d8-4e25-8b71-30772d91ad7c@email.android.com>
Content-Type: text/plain; charset=UTF-8
Peter Hemmings <peter@hemmings.eclipse.co.uk> wrote:
>On 12/10/13 10:53, John Daragon wrote:
>> Before you go overboard: This is by no means guaranteed to work, but
>> you might try symlinking the .so.7 file to a similarly named .so.3
>> (and perhaps an .so)
>
>OK
>
>I am not experienced at playing with libraries, I was going to copy
>the
>.so.7 file and rename it as so.3! Would that be bad practice?
>
>Just to clarify, did you mean make a simlink named .so.3 and point it
>to the so.7?
>
>It seems that the V500 was supported but not any longer and the Linux
>drivers for iscan have been removed from the site!
>
>I will continue looking though and might find the original so.3
>somewhere.
>
This is probably past the point of usefulness... But I'm on the bus - so I have a little time and it might be interesting to some, boring to others (apologies).
A shared library (elf based) has a shared object name which is used to resolve binary links (programs and other libraries), and ensure API compatibility. Some shared libraries also have versioned symbols.
You can use the command line utilities ldd, readelf -d or readelf -l (useful for debugging some linker issues), with a library or executable (library or program) to see how the linker plans to resolve links. In the event the device you're working with has limited utilities (e.g. you're cross compiling for ARM ) the linker itself is executable and can be used similarly to ldd by executing /lib/ld-linux....so --list (linker filename depends on architecture)
In the event you need detailed information on symbols resolution (useful on some occasions) you can set LD_DEBUG=help or libs, symbols, file... before the command you're running.
Chris
------------------------------
Message: 2
Date: Mon, 14 Oct 2013 17:23:56 +0100
From: Chris <cshorler@googlemail.com>
To: Bristol and Bath Linux User Group <bristol@mailman.lug.org.uk>,
Peter Hemmings <peter@hemmings.eclipse.co.uk>
Subject: Re: [bristol] Scanner Driver Library Epson V500
Message-ID: <f0c9ebb6-a931-4cb9-b8e7-aeccb2c9e78b@email.android.com>
Content-Type: text/plain; charset=UTF-8
Chris <cshorler@googlemail.com> wrote:
>Peter Hemmings <peter@hemmings.eclipse.co.uk> wrote:
>>On 12/10/13 10:53, John Daragon wrote:
>>> Before you go overboard: This is by no means guaranteed to work, but
>>> you might try symlinking the .so.7 file to a similarly named .so.3
>>> (and perhaps an .so)
>>
>>OK
>>
>>I am not experienced at playing with libraries, I was going to copy
>>the
>>.so.7 file and rename it as so.3! Would that be bad practice?
>>
>>Just to clarify, did you mean make a simlink named .so.3 and point it
>
>>to the so.7?
>>
>>It seems that the V500 was supported but not any longer and the Linux
>>drivers for iscan have been removed from the site!
>>
>>I will continue looking though and might find the original so.3
>>somewhere.
>>
>
>This is probably past the point of usefulness... But I'm on the bus -
>so I have a little time and it might be interesting to some, boring to
>others (apologies).
>
>A shared library (elf based) has a shared object name which is used to
>resolve binary links (programs and other libraries), and ensure API
>compatibility. Some shared libraries also have versioned symbols.
>
>You can use the command line utilities ldd, readelf -d or readelf -l
>(useful for debugging some linker issues), with a library or executable
>(library or program) to see how the linker plans to resolve links. In
>the event the device you're working with has limited utilities (e.g.
>you're cross compiling for ARM ) the linker itself is executable and
>can be used similarly to ldd by executing /lib/ld-linux....so --list
>(linker filename depends on architecture)
>
>In the event you need detailed information on symbols resolution
>(useful on some occasions) you can set LD_DEBUG=help or libs, symbols,
>file... before the command you're running.
>
Forgot to mention the soname is not guaranteed to be the filename...
------------------------------
Message: 3
Date: Tue, 15 Oct 2013 08:27:46 +0100
From: Chris <cshorler@googlemail.com>
To: Bristol and Bath Linux User Group <bristol@mailman.lug.org.uk>,
Peter Hemmings <peter@hemmings.eclipse.co.uk>
Subject: Re: [bristol] Scanner Driver Library Epson V500
Message-ID: <a2ffad55-e2fb-4492-b81c-c22b5e5e9414@email.android.com>
Content-Type: text/plain; charset=UTF-8
Chris <cshorler@googlemail.com> wrote:
>Chris <cshorler@googlemail.com> wrote:
>>Peter Hemmings <peter@hemmings.eclipse.co.uk> wrote:
>>>On 12/10/13 10:53, John Daragon wrote:
>>>> Before you go overboard: This is by no means guaranteed to work,
>but
>>>> you might try symlinking the .so.7 file to a similarly named .so.3
>>>> (and perhaps an .so)
>>>
>>>OK
>>>
>>>I am not experienced at playing with libraries, I was going to copy
>>>the
>>>.so.7 file and rename it as so.3! Would that be bad practice?
>>>
>>>Just to clarify, did you mean make a simlink named .so.3 and point
>it
>>
>>>to the so.7?
>>>
>>>It seems that the V500 was supported but not any longer and the Linux
>
>>>drivers for iscan have been removed from the site!
>>>
>>>I will continue looking though and might find the original so.3
>>>somewhere.
>>>
>>
>>This is probably past the point of usefulness... But I'm on the bus -
>>so I have a little time and it might be interesting to some, boring to
>>others (apologies).
>>
>>A shared library (elf based) has a shared object name which is used to
>>resolve binary links (programs and other libraries), and ensure API
>>compatibility. Some shared libraries also have versioned symbols.
>>
>>You can use the command line utilities ldd, readelf -d or readelf -l
>>(useful for debugging some linker issues), with a library or
>executable
I actually mean readelf -A rather than readelf -l... Although that has it's uses too if your library is executable.
>>(library or program) to see how the linker plans to resolve links. In
>>the event the device you're working with has limited utilities (e.g.
>>you're cross compiling for ARM ) the linker itself is executable and
>>can be used similarly to ldd by executing /lib/ld-linux....so --list
>>(linker filename depends on architecture)
>>
>>In the event you need detailed information on symbols resolution
>>(useful on some occasions) you can set LD_DEBUG=help or libs, symbols,
>>file... before the command you're running.
>>
>
>Forgot to mention the soname is not guaranteed to be the filename...
------------------------------
Message: 4
Date: Tue, 15 Oct 2013 10:32:45 +0100
From: Peter Hemmings <peter@hemmings.eclipse.co.uk>
To: Bristol and Bath Linux User Group <bristol@mailman.lug.org.uk>
Subject: Re: [bristol] Iscan has no space [ was Scanner Driver Library
Epson V500]
Message-ID: <525D0BBD.2090808@hemmings.eclipse.co.uk>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
snip
Tried to scan via Gimp plugin and it works OK and does not complain, I
assume that is because gimp is handling storage.
Simple Scan and Xsane both work and can store images OK.
As my laptop is not used much I upgraded to fc19 (fc20 out in November
Alex!).
Same problem exists, I assumed it was using the same iscan version and
that was the problem.
I then found did this omn my FC18 PC:
strace -f -efile iscan
and found this after disk space warning:
[pid 4134] access("/home/peter", W_OK|X_OK) = 0
[pid 4134] access("/home/peter/default.png", F_OK) = -1 ENOENT (No such
file or directory)
[pid 4134] open("/home/peter/default.png", O_WRONLY|O_CREAT|O_TRUNC,
0666) = 16
libpng warning: Application built with libpng-1.2.31 but running with 1.5.13
[pid 4134] --- SIGWINCH {si_signo=SIGWINCH, si_code=SI_KERNEL} ---
Just for my curiosity is there an easy way to get round this or should I
just report it and forget about iscan?
Is there any way to see if iscan is being work on!?
At least Linux has other programs I can use as long as Sane is working!
I bought the scanner to scan old slides but I will have to do that on
windoze I assume!.
Regards
--
Peter H
------------------------------
Message: 5
Date: Tue, 15 Oct 2013 10:45:21 +0100
From: David Smith <Dave.Smith@st.com>
To: <bristol@mailman.lug.org.uk>
Subject: Re: [bristol] Iscan has no space [ was Scanner Driver Library
Epson V500]
Message-ID: <525D0EB1.5060906@st.com>
Content-Type: text/plain; charset="ISO-8859-1"
On 10/15/13 10:32, Peter Hemmings wrote:
> and found this after disk space warning:
>
> [pid 4134] access("/home/peter", W_OK|X_OK) = 0
"Does /home/peter exist, and do I have write and execute permissions?"
-> YES
> [pid 4134] access("/home/peter/default.png", F_OK) = -1 ENOENT (No such
> file or directory)
"Does /home/peter/default.png exist?"
-> NO
> [pid 4134] open("/home/peter/default.png", O_WRONLY|O_CREAT|O_TRUNC,
> 0666) = 16
"Open a file called /home/peter/default.png in write-only mode, creating
it if it does not exist, and if it does already exist, delete the
current contents and start again from the beginning"
-> File opened, descriptor = 16
Everything looks OK to me for this bit. The "No such file or directory"
is to be expected - the tool is probably just looking to see if the file
it's going to create already exists, so that it can warn you that it's
about to overwrite a pre-existing file.
Can you post a bit more? In particular, the stuff just *before* the
disk space warning. A few pages around the problem area should be enough.
------------------------------
Message: 6
Date: Tue, 15 Oct 2013 11:02:09 +0100
From: Peter Hemmings <peter@hemmings.eclipse.co.uk>
To: Bristol and Bath Linux User Group <bristol@mailman.lug.org.uk>
Subject: Re: [bristol] Iscan has no space [ was Scanner Driver Library
Epson V500]
Message-ID: <525D12A1.8080805@hemmings.eclipse.co.uk>
Content-Type: text/plain; charset="iso-8859-1"; Format="flowed"
On 15/10/13 10:45, David Smith wrote:
> On 10/15/13 10:32, Peter Hemmings wrote:
>> and found this after disk space warning:
>>
>> [pid 4134] access("/home/peter", W_OK|X_OK) = 0
>
> "Does /home/peter exist, and do I have write and execute permissions?"
> -> YES
>
>> [pid 4134] access("/home/peter/default.png", F_OK) = -1 ENOENT (No such
>> file or directory)
>
> "Does /home/peter/default.png exist?"
> -> NO
>
>> [pid 4134] open("/home/peter/default.png", O_WRONLY|O_CREAT|O_TRUNC,
>> 0666) = 16
>
> "Open a file called /home/peter/default.png in write-only mode, creating
> it if it does not exist, and if it does already exist, delete the
> current contents and start again from the beginning"
> -> File opened, descriptor = 16
>
> Everything looks OK to me for this bit. The "No such file or directory"
> is to be expected - the tool is probably just looking to see if the file
> it's going to create already exists, so that it can warn you that it's
> about to overwrite a pre-existing file.
>
> Can you post a bit more? In particular, the stuff just *before* the
> disk space warning. A few pages around the problem area should be enough.
Just got to go to a funeral, attached is the last "chunk"!
>
> _______________________________________________
> Bristol mailing list
> Bristol@mailman.lug.org.uk
> https://mailman.lug.org.uk/mailman/listinfo/bristol
>
Regards
--
Peter H
-------------- next part --------------
= -1 ENOENT (No such file or directory)
stat64("/usr/local/share/icons/hicolor/256x256/stock/data", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/home/peter/.local/share/icons/hicolor/256x256/stock/form", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/usr/local/share/icons/hicolor/256x256/stock/form", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/home/peter/.local/share/icons/hicolor/256x256/stock/image", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/usr/local/share/icons/hicolor/256x256/stock/image", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/home/peter/.local/share/icons/hicolor/256x256/stock/io", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/usr/local/share/icons/hicolor/256x256/stock/io", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/home/peter/.local/share/icons/hicolor/256x256/stock/media", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/usr/local/share/icons/hicolor/256x256/stock/media", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/home/peter/.local/share/icons/hicolor/256x256/stock/navigation", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/usr/local/share/icons/hicolor/256x256/stock/navigation", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/home/peter/.local/share/icons/hicolor/256x256/stock/net", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/usr/local/share/icons/hicolor/256x256/stock/net", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/home/peter/.local/share/icons/hicolor/256x256/stock/object", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/usr/local/share/icons/hicolor/256x256/stock/object", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/home/peter/.local/share/icons/hicolor/256x256/stock/table", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/usr/local/share/icons/hicolor/256x256/stock/table", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/home/peter/.local/share/icons/hicolor/256x256/stock/text", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/usr/local/share/icons/hicolor/256x256/stock/text", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/home/peter/.local/share/icons/hicolor/scalable/actions", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/usr/local/share/icons/hicolor/scalable/actions", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/home/peter/.local/share/icons/hicolor/scalable/animations", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/usr/local/share/icons/hicolor/scalable/animations", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/home/peter/.local/share/icons/hicolor/scalable/apps", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/usr/local/share/icons/hicolor/scalable/apps", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/home/peter/.local/share/icons/hicolor/scalable/categories", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/usr/local/share/icons/hicolor/scalable/categories", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/home/peter/.local/share/icons/hicolor/scalable/devices", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/usr/local/share/icons/hicolor/scalable/devices", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/home/peter/.local/share/icons/hicolor/scalable/emblems", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/usr/local/share/icons/hicolor/scalable/emblems", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/home/peter/.local/share/icons/hicolor/scalable/emotes", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/usr/local/share/icons/hicolor/scalable/emotes", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/home/peter/.local/share/icons/hicolor/scalable/filesystems", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/usr/local/share/icons/hicolor/scalable/filesystems", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/home/peter/.local/share/icons/hicolor/scalable/intl", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/usr/local/share/icons/hicolor/scalable/intl", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/home/peter/.local/share/icons/hicolor/scalable/mimetypes", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/usr/local/share/icons/hicolor/scalable/mimetypes", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/home/peter/.local/share/icons/hicolor/scalable/places", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/usr/local/share/icons/hicolor/scalable/places", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/home/peter/.local/share/icons/hicolor/scalable/status", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/usr/local/share/icons/hicolor/scalable/status", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/home/peter/.local/share/icons/hicolor/scalable/stock/chart", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/usr/local/share/icons/hicolor/scalable/stock/chart", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/home/peter/.local/share/icons/hicolor/scalable/stock/code", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/usr/local/share/icons/hicolor/scalable/stock/code", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/home/peter/.local/share/icons/hicolor/scalable/stock/data", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/usr/local/share/icons/hicolor/scalable/stock/data", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/home/peter/.local/share/icons/hicolor/scalable/stock/form", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/usr/local/share/icons/hicolor/scalable/stock/form", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/home/peter/.local/share/icons/hicolor/scalable/stock/image", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/usr/local/share/icons/hicolor/scalable/stock/image", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/home/peter/.local/share/icons/hicolor/scalable/stock/io", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/usr/local/share/icons/hicolor/scalable/stock/io", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/home/peter/.local/share/icons/hicolor/scalable/stock/media", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/usr/local/share/icons/hicolor/scalable/stock/media", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/home/peter/.local/share/icons/hicolor/scalable/stock/navigation", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/usr/local/share/icons/hicolor/scalable/stock/navigation", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/home/peter/.local/share/icons/hicolor/scalable/stock/net", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/usr/local/share/icons/hicolor/scalable/stock/net", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/home/peter/.local/share/icons/hicolor/scalable/stock/object", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/usr/local/share/icons/hicolor/scalable/stock/object", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/home/peter/.local/share/icons/hicolor/scalable/stock/table", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/usr/local/share/icons/hicolor/scalable/stock/table", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/home/peter/.local/share/icons/hicolor/scalable/stock/text", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/usr/local/share/icons/hicolor/scalable/stock/text", 0xbfc1e3b0) = -1 ENOENT (No such file or directory)
stat64("/home/peter/.icons", 0xbfc1e570) = -1 ENOENT (No such file or directory)
stat64("/home/peter/.local/share/icons", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
stat64("/home/peter/.local/share/icons", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
open("/home/peter/.local/share/icons/icon-theme.cache", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/home/peter/.local/share/icons", O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY|O_CLOEXEC) = 13
stat64("/usr/local/share/icons", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat64("/usr/local/share/icons", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
open("/usr/local/share/icons/icon-theme.cache", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/local/share/icons", O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY|O_CLOEXEC) = 13
stat64("/usr/share/icons", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat64("/usr/share/icons", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
open("/usr/share/icons/icon-theme.cache", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/share/icons", O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY|O_CLOEXEC) = 13
stat64("/usr/local/share/pixmaps", 0xbfc1e570) = -1 ENOENT (No such file or directory)
stat64("/usr/share/pixmaps", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat64("/usr/share/pixmaps", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
open("/usr/share/pixmaps/icon-theme.cache", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/share/pixmaps", O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY|O_CLOEXEC) = 13
openat(AT_FDCWD, "/usr/lib/gio/modules", O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY|O_CLOEXEC) = 13
stat64("/usr/lib/gio/modules/giomodule.cache", {st_mode=S_IFREG|0644, st_size=382, ...}) = 0
open("/usr/lib/gio/modules/giomodule.cache", O_RDONLY|O_LARGEFILE) = 14
stat64("/usr/lib/gio/modules/libgvfsdbus.so", {st_mode=S_IFREG|0755, st_size=206800, ...}) = 0
stat64("/usr/lib/gio/modules/libdconfsettings.so", {st_mode=S_IFREG|0755, st_size=45004, ...}) = 0
stat64("/usr/lib/gio/modules/libgiofam.so", {st_mode=S_IFREG|0755, st_size=14904, ...}) = 0
stat64("/usr/lib/gio/modules/libgiolibproxy.so", {st_mode=S_IFREG|0755, st_size=10684, ...}) = 0
stat64("/usr/lib/gio/modules/libgiognutls.so", {st_mode=S_IFREG|0755, st_size=100220, ...}) = 0
stat64("/usr/lib/gio/modules/libgioremote-volume-monitor.so", {st_mode=S_IFREG|0755, st_size=112864, ...}) = 0
stat64("/usr/lib/gio/modules/libgiognomeproxy.so", {st_mode=S_IFREG|0755, st_size=19048, ...}) = 0
stat64("/usr/lib/gio/modules/libgsettingsgconfbackend.so", {st_mode=S_IFREG|0755, st_size=23488, ...}) = 0
stat64("/usr/lib/gio/modules/libgvfsdbus.so", {st_mode=S_IFREG|0755, st_size=206800, ...}) = 0
open("/usr/lib/gio/modules/libgvfsdbus.so", O_RDONLY|O_CLOEXEC) = 13
open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 13
open("/lib/libgvfscommon.so.0", O_RDONLY|O_CLOEXEC) = 13
open("/lib/libbluray.so.1", O_RDONLY|O_CLOEXEC) = 13
open("/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = 13
open("/usr/share/locale/en.utf8/LC_MESSAGES/glib20.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/locale/en/LC_MESSAGES/glib20.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
Process 2526 attached
[pid 2524] openat(AT_FDCWD, "/usr/lib/gvfs/modules", O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 2524] lstat64("/usr/share/icons/gnome/22x22/actions/gtk-cancel.png", {st_mode=S_IFLNK|0777, st_size=16, ...}) = 0
[pid 2524] stat64("/usr/share/icons/gnome/22x22/actions/gtk-cancel.png", {st_mode=S_IFREG|0644, st_size=1195, ...}) = 0
[pid 2524] readlink("/usr/share/icons/gnome/22x22/actions/gtk-cancel.png", "process-stop.png", 256) = 16
[pid 2524] open("/usr/share/icons/gnome/22x22/actions/gtk-cancel.png", O_RDONLY|O_LARGEFILE|O_NOATIME) = -1 EPERM (Operation not permitted)
[pid 2524] open("/usr/share/icons/gnome/22x22/actions/gtk-cancel.png", O_RDONLY|O_LARGEFILE) = 16
[pid 2524] access("/usr/share/fonts/abattis-cantarell/Cantarell-Bold.otf", R_OK) = 0
[pid 2524] open("/usr/share/fonts/abattis-cantarell/Cantarell-Bold.otf", O_RDONLY) = 16
[pid 2524] stat64("/home/peter", {st_mode=S_IFDIR|0710, st_size=12288, ...}) = 0
[pid 2524] open("/home/peter/.icons/Adwaita/cursors/sb_h_double_arrow", O_RDONLY) = -1 ENOENT (No such file or directory)
[pid 2524] open("/home/peter/.icons/Adwaita/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
[pid 2524] open("/usr/share/icons/Adwaita/cursors/sb_h_double_arrow", O_RDONLY) = 16
[pid 2524] open("/home/peter/.icons/Adwaita/cursors/xterm", O_RDONLY) = -1 ENOENT (No such file or directory)
[pid 2524] open("/home/peter/.icons/Adwaita/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
[pid 2524] open("/usr/share/icons/Adwaita/cursors/xterm", O_RDONLY) = 16
[pid 2524] open("/usr/share/themes/Adwaita/gtk-2.0/Entry/entry-border-fill.png", O_RDONLY|O_LARGEFILE) = 16
[pid 2524] open("/usr/share/themes/Adwaita/gtk-2.0/Entry/entry-border-active-bg.png", O_RDONLY|O_LARGEFILE) = 16
[pid 2524] open("/usr/share/themes/Adwaita/gtk-2.0/Others/tree_header.png", O_RDONLY|O_LARGEFILE) = 16
[pid 2524] open("/usr/share/themes/Adwaita/gtk-2.0/Handles/handle-v.png", O_RDONLY|O_LARGEFILE) = 16
[pid 2524] open("/usr/share/themes/Adwaita/gtk-2.0/Scrollbars/trough-scrollbar-vert.png", O_RDONLY|O_LARGEFILE) = 16
[pid 2524] open("/usr/share/themes/Adwaita/gtk-2.0/Scrollbars/slider-vert.png", O_RDONLY|O_LARGEFILE) = 16
[pid 2524] open("/usr/share/themes/Adwaita/gtk-2.0/Scrollbars/trough-scrollbar-horiz.png", O_RDONLY|O_LARGEFILE) = 16
[pid 2524] open("/usr/share/themes/Adwaita/gtk-2.0/Scrollbars/slider-horiz.png", O_RDONLY|O_LARGEFILE) = 16
[pid 2524] lstat64("/usr/share/icons/gnome/22x22/actions/gtk-cancel.png", {st_mode=S_IFLNK|0777, st_size=16, ...}) = 0
[pid 2524] stat64("/usr/share/icons/gnome/22x22/actions/gtk-cancel.png", {st_mode=S_IFREG|0644, st_size=1195, ...}) = 0
[pid 2524] readlink("/usr/share/icons/gnome/22x22/actions/gtk-cancel.png", "process-stop.png", 256) = 16
[pid 2524] open("/usr/share/icons/gnome/22x22/actions/gtk-cancel.png", O_RDONLY|O_LARGEFILE|O_NOATIME) = -1 EPERM (Operation not permitted)
[pid 2524] open("/usr/share/icons/gnome/22x22/actions/gtk-cancel.png", O_RDONLY|O_LARGEFILE) = 16
[pid 2524] open("/usr/share/themes/Adwaita/gtk-2.0/Entry/entry-border-bg.png", O_RDONLY|O_LARGEFILE) = 16
[pid 2524] stat64("/home/peter/.local/share//mime/mime.cache", {st_mode=S_IFREG|0664, st_size=5952, ...}) = 0
[pid 2524] stat64("/usr/local/share//mime/mime.cache", 0xbfc1ec40) = -1 ENOENT (No such file or directory)
[pid 2524] stat64("/usr/local/share//mime/globs", 0xbfc1ec40) = -1 ENOENT (No such file or directory)
[pid 2524] stat64("/usr/local/share//mime/magic", 0xbfc1ec40) = -1 ENOENT (No such file or directory)
[pid 2524] stat64("/usr/share//mime/mime.cache", {st_mode=S_IFREG|0644, st_size=131848, ...}) = 0
[pid 2524] access("/home/peter/default.png", F_OK) = -1 ENOENT (No such file or directory)
[pid 2524] access("/home/peter", F_OK) = 0
[pid 2524] access("/home/peter", W_OK|X_OK) = 0
[pid 2524] access("/home/peter/default.png", F_OK) = -1 ENOENT (No such file or directory)
[pid 2524] open("/home/peter/default.png", O_WRONLY|O_CREAT|O_TRUNC, 0666) = 16
libpng warning: Application built with libpng-1.2.31 but running with 1.5.13
[pid 2524] unlink("/home/peter/default.png") = 0
[pid 2524] --- SIGWINCH {si_signo=SIGWINCH, si_code=SI_KERNEL} ---
[pid 2524] --- SIGWINCH {si_signo=SIGWINCH, si_code=SI_KERNEL} ---
[pid 2524] --- SIGWINCH {si_signo=SIGWINCH, si_code=SI_KERNEL} ---
[pid 2524] --- SIGWINCH {si_signo=SIGWINCH, si_code=SI_KERNEL} ---
[pid 2524] --- SIGWINCH {si_signo=SIGWINCH, si_code=SI_KERNEL} ---
------------------------------
_______________________________________________
Bristol mailing list
Bristol@mailman.lug.org.uk
https://mailman.lug.org.uk/mailman/listinfo/bristol
End of Bristol Digest, Vol 521, Issue 2
***************************************
Tidak ada komentar:
Posting Komentar