Displaying 20 results from an estimated 538 matches for "lseeks".
Did you mean:
lseek
2018 Mar 17
0
Terrible share access performance (v.4.8 and current master branch)
Hello!
When I'm using qBittorrent [1] on Windows 10 with download location
set to remote Samba share on Arch Linux then it severely affects all
shares on that host, unrelated to disk where qBittorrent is actually
writing.
On Arch Linux that smbd process is using 100% of one CPU core time and
seems it's blocking because of lseek calls.
strace shows full of
lseek(47, 1420820480,
2019 Apr 24
2
Re: [PATCH nbdkit v5 FINAL 15/19] file: Implement extents.
On 3/28/19 11:18 AM, Richard W.M. Jones wrote:
> This uses lseek SEEK_DATA/SEEK_HOLE to search for allocated data and
> holes in the underlying file.
> ---
> plugins/file/file.c | 141 ++++++++++++++++++++++++++++++++++---
> tests/Makefile.am | 5 ++
> tests/test-file-extents.sh | 57 +++++++++++++++
> 3 files changed, 193 insertions(+), 10 deletions(-)
2019 Mar 23
1
Re: [PATCH nbdkit 8/8] file: Implement extents.
On 3/20/19 5:11 PM, Richard W.M. Jones wrote:
> This uses lseek SEEK_DATA/SEEK_HOLE to search for allocated data and
> holes in the underlying file.
> ---
> plugins/file/file.c | 139 ++++++++++++++++++++++++++++++++++++++++----
> 1 file changed, 129 insertions(+), 10 deletions(-)
>
> -int file_debug_zero; /* to enable: -D file.zero=1 */
> +/* Any callbacks
2003 Sep 06
0
KERNEL BUG: lseek() broken on raw devices
Hi,
I just figured FreeBSD will happily write data (disk blocks) from byte
#0 even after successful lseek(fd, 17, SEEK_SET) returned 17, at least
on da(4) partitions such as rda0s1f. Tested on 4.9-PRERELEASE checked
out early Sep 5th.
I'd suggest that lseek to a non-sector boundary returns either (off_t)-1
and EINVAL (preferred) or at least returns the actual position (though
few
2012 May 21
0
[klibc:master] lseek: give gcc a little optimization hint
Commit-ID: 2024ab7832dea5dc004f712ffdf348b8239b8ffa
Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=2024ab7832dea5dc004f712ffdf348b8239b8ffa
Author: H. Peter Anvin <hpa at zytor.com>
AuthorDate: Mon, 21 May 2012 10:28:50 -0700
Committer: H. Peter Anvin <hpa at zytor.com>
CommitDate: Mon, 21 May 2012 10:30:39 -0700
[klibc] lseek: give gcc a little
2017 Apr 18
2
system/system2 and open file descriptors
It seems that the system() and system2() functions don't close file
descriptors between the fork() and exec() (on Unix platforms, of course).
This means that the child processes inherit open files and socket
connections.
Running this (from a terminal) will result in the child process writing to
a file that was opened by R:
R
f <- file('foo.txt', 'w')
system('echo
2015 Jan 03
2
Samba4 Kerberos kinit does not resolve kdc hostname
Hi,
i am really depressed at this moment. I set up an domain controller
using samba4 and an raspberry pi.
I can join the domain and everything works BUT kerberos has some strange
problems resolving my raspberry hostname.
First of all some information:
Raspberry pi is DHCP Server and DNS-Server (BIND9).
First of all the configurations:
Code:
/usr/local/samba/etc/smb.conf
# Global
2015 Jan 03
2
Samba4 Kerberos kinit does not resolve kdc hostname
Hi,
/etc/resolv.conf looks exactly like this:
domain family.rapsberry.local
search family.rapsberry.local
nameserver 192.168.178.222
So to answer your question: yes the only Nameserver the raspberry has is
itself.
Greetings
Am 2015-01-03 um 7:40 PM schrieb Rowland Penny:
> On 03/01/15 16:31, Robert Hartmann wrote:
>> Hi,
>>
>> i am really depressed at this moment. I set
2015 Jan 03
1
Samba4 Kerberos kinit does not resolve kdc hostname
Hi,
thank you so! much. Turning off avahi daemon was the solution!
rapsberry instead of raspberry is a typo during porivision actually.
Thank you again :)
I will write an entry on my blog to make sure that does not happen again.
One last time for google bots.
IF you receive
kinit: Cannot contact any KDC for realm while getting initial credentials
make sure you don't run avahi
However
2015 Jan 03
0
Samba4 Kerberos kinit does not resolve kdc hostname
On 03/01/15 16:31, Robert Hartmann wrote:
> Hi,
>
> i am really depressed at this moment. I set up an domain controller
> using samba4 and an raspberry pi.
>
> I can join the domain and everything works BUT kerberos has some
> strange problems resolving my raspberry hostname.
>
> First of all some information:
>
> Raspberry pi is DHCP Server and DNS-Server
2019 Mar 20
0
[PATCH nbdkit 8/8] file: Implement extents.
This uses lseek SEEK_DATA/SEEK_HOLE to search for allocated data and
holes in the underlying file.
---
plugins/file/file.c | 139 ++++++++++++++++++++++++++++++++++++++++----
1 file changed, 129 insertions(+), 10 deletions(-)
diff --git a/plugins/file/file.c b/plugins/file/file.c
index 628f8fb..22fdfcd 100644
--- a/plugins/file/file.c
+++ b/plugins/file/file.c
@@ -1,5 +1,5 @@
/* nbdkit
- *
2015 Jan 03
0
Samba4 Kerberos kinit does not resolve kdc hostname
On 03/01/15 18:45, Robert Hartmann wrote:
>
> Hi,
>
> /etc/resolv.conf looks exactly like this:
>
> domain family.rapsberry.local
> search family.rapsberry.local
> nameserver 192.168.178.222
>
> So to answer your question: yes the only Nameserver the raspberry has
> is itself.
>
Hi, firstly, you might as well remove the 'domain' line, it will be
2019 Apr 25
0
Re: [PATCH nbdkit v5 FINAL 15/19] file: Implement extents.
On Wed, Apr 24, 2019 at 02:39:03PM -0500, Eric Blake wrote:
> On 3/28/19 11:18 AM, Richard W.M. Jones wrote:
> > This uses lseek SEEK_DATA/SEEK_HOLE to search for allocated data and
> > holes in the underlying file.
> > ---
> > plugins/file/file.c | 141 ++++++++++++++++++++++++++++++++++---
> > tests/Makefile.am | 5 ++
> >
2001 Sep 26
2
openssh-2.9.9p2 session.c fails on Solaris 7,8 w/ SunPro C
FYI--
session.c fails from openSSH 2.9.9p2 with SunPro C compiler on Solaris 7,
8. The function do_pre_login had to be moved to before its use in
do_exec_pty (a predeclaration would work).
It does appear to work correctly, given the above fix. Still having the
largefile problem (argh), so if anyone can help with /that/ ...
--
Austin David -- Sr. Systems Architect
Wink Communications
2014 Dec 16
1
Fwd: samba & Oracle ACFS Issues
Hi Volker and many thanks for your response
According to your questions
>Please remove the SO_RCVBUF and SO_SNDBUF entries.
>Oh, that's ancient. Do you have any possibility to move to
>"security=user"?
The smb.conf file was inherited from HP-UX system. Ok,
I'll remove them
>Did you try "posix locking = no"? That is mostly criticial
>if
2013 Mar 07
2
KVM Raw Format Image Causes lseek Error when Copying
When copying a raw KVM image to my usb drive I got a lseek error...why is this?
localhost temp # lr /kvm_guests/newInstall.img?
-rw-r--r-- 1 root root 10G Oct 22 05:36 /kvm_guests/newInstall.img
localhost temp #
localhost temp # cp /kvm_guests/newInstall.img . ? ? ? ? ? ? ? ? ? ? ?
cp: cannot lseek `./newInstall.img': Invalid argument
localhost temp # df -h
Filesystem ? ? ?Size ?Used Avail
2017 Apr 20
0
system/system2 and open file descriptors
In addition to the issue of a child process holding onto open files, the
child process can also manipulate a file descriptor in a way that affects
the parent process. For example, calling lseek() in the child process will
move the file offset in the parent process.
Here is a set of commands that demonstrates it. They can be copied and
pasted in a terminal. What it does:
- Creates C program that
1999 Apr 29
0
High load smbd processes
Hi all,
Our system has just recently begun experiencing smbd processes comsuming
enormous amounts of cpu time. I am totally unsure of the cause of this.
We are using samba version 2.0.0 (packaged for debian linux).
seldon:~$ /usr/sbin/smbd -h
Usage: /usr/sbin/smbd [-D] [-p port] [-d debuglevel] [-l log basename] [-s services file]
Version 2.0.0
We have not recently upgraded the samba
2001 Jun 18
2
Client protocol error:(nil): lseek: Illegal seek
now that i have wineX compiling from cvs when i try to run wine i get:
Client protocol error:(nil): lseek: Illegal seek
even if i try wine --help here is the strace if its anyhelp
execve("/usr/bin/wine", ["wine"], [/* 25 vars */]) = 0
uname({sys="Linux", node="fnord-rides-again", ...}) = 0
brk(0) = 0x804c47c
mmap(0, 4096,
2014 Dec 16
2
Fwd: samba & Oracle ACFS Issues
On Tue, Dec 16, 2014 at 03:40:08PM +0100, Nacho del Rey wrote:
> Hi there
>
> In an Oracle RAC cluster using ACFS (as file-system) where we have a samba
> server for sharing files to windows clients, we are suffering a strange
> issue, from time to time, which it causes the Windows clients lock for a
> while (10 min or a bit more) or even indefinitely when they are working
>