Displaying 20 results from an estimated 2000 matches similar to: "Re-exporting NFS shares to Samba"
1998 Oct 20
3
SAMBA 1.9.18p10 problem
I have been using Samba 1.9.18p8 in a Solaris 2.6 machine for months
but suddenly this week there is a problem. Nothing's changed.
I have some persistent connection of my NTSP3 client to the samba share.
When I login as usual, it fails to mount the drive. It either prompt for
password but whatever password the samba rejects, or give a "Access is
Denied" when you try to access the
1997 Sep 10
0
File locking and Linux 2.0.30
Hi there,
I'm wondering if it's neccesary to have mandatory file locking
(CONFIG_LOCK_MANDATORY) compiled into the kernel for the filelocking done
by Samba to work properly.
TIA,
Rudo...
*************************
* C.R.J. de Jong (Rudo) *
* E-mail: crj@dds.nl *
*************************
1999 Nov 16
1
Maximum supported amount of shares?
Hi people,
I would like to know if Samba has a limit to the amount of shares it can
handle. If it does: what is the maximum amount?
If Samba has no limit, is the smb-protocol the one to blame?
Please reply to me personally (CC:) too. Thank you!
Greetings,
Rudo...
/-----------------------------------------------------------\
| C.R.J. de Jong | Le Reseau Netwerksystemen B.V. |
|
dnf-makecache.service failing every few days and dnf-automatic.service samba freeipa issues (again).
2023 Jan 09
2
dnf-makecache.service failing every few days and dnf-automatic.service samba freeipa issues (again).
Hello everybody,
What is the status of the freeipa/sssd and samba conflicts in the
repositories?
I can not wrap my mind around that two big packages are not getting
security updates anymore, because they are conflicting. I will go to
FOSDEM in Belgium this year to figure out more, but I am considering
moving my centos systems to rockylinux.
Kind regards,
Jelle de Jong
On 12/16/22 16:59,
2018 Apr 30
0
[SelectionDAG] DbgValue nodes aren't transferred
Thanks! It looks like SelectionDAG::salvageDebugInfo handles only addition with constant.
Sejong
From: aprantl at apple.com <aprantl at apple.com>
Sent: Monday, April 30, 2018 1:53 PM
To: Se Jong Oh <sejooh at microsoft.com>
Cc: jdevlieghere at apple.com; Vedant Kumar <vsk at apple.com>; llvm-dev at lists.llvm.org; pidgeot18 at gmail.com
Subject: Re: [llvm-dev] [SelectionDAG]
2018 Apr 30
1
[SelectionDAG] DbgValue nodes aren't transferred
> On Apr 30, 2018, at 3:16 PM, Se Jong Oh <sejooh at microsoft.com> wrote:
>
> For cast instructions, llvm::salvageDebugInfo() simply makes dbg.value point to the source of the cast. Since SelectionDAG already has transferDbgValues which can move dbgvalue to the cast source, I think that we can just call it where the truncate is optimized away.
That sounds reasonable, yes. Casts
2020 May 02
0
default backend = rid not showing full group information for users
On 2020-05-02 20:20, Rowland penny via samba wrote:
> On 02/05/2020 18:59, Jelle de Jong via samba wrote:
>> On 2020-05-02 16:42, Rowland penny via samba wrote:
>>> On 02/05/2020 15:07, Jelle de Jong via samba wrote:
>>>> Am I wrong to expect that id user and getent group should list me
>>>> the groups the user is part of.
>>>>
2018 Apr 30
2
[SelectionDAG] DbgValue nodes aren't transferred
> On Apr 30, 2018, at 1:49 PM, Se Jong Oh <sejooh at microsoft.com> wrote:
>
> Hi Jonas,
>
> I have another case that DBG_VALUE is not produced. I would appreciate it if you could take a quick look at the testcase below.
>
>
> test code:
>
> llc -mtriple=aarch64 -stop-after=livedebugvalues -o - test.ll
>
> ; Function Attrs: nounwind ssp uwtable
>
2020 May 02
2
default backend = rid not showing full group information for users
On 02/05/2020 18:59, Jelle de Jong via samba wrote:
> On 2020-05-02 16:42, Rowland penny via samba wrote:
>> On 02/05/2020 15:07, Jelle de Jong via samba wrote:
>>> Am I wrong to expect that id user and getent group should list me
>>> the groups the user is part of.
>>>
>>> For example wbinfo --group-info=office shows me that user jdoe and
2018 Apr 30
0
[SelectionDAG] DbgValue nodes aren't transferred
Hi Jonas,
I have another case that DBG_VALUE is not produced. I would appreciate it if you could take a quick look at the testcase below.
test code:
llc -mtriple=aarch64 -stop-after=livedebugvalues -o - test.ll
; Function Attrs: nounwind ssp uwtable
define void @f() #0 !dbg !4 {
entry:
tail call void @h(i16 0) #2, !dbg !14
%call = tail call i16 (...) @g() #2, !dbg !15
tail call void
2018 Aug 06
0
Re: ceph rbd pool and libvirt manageability (virt-install)
Hello everybody,
virt-install --version
1.4.0
How do I create a ceph network disk with virt-install without having to
edit it?
<disk type='network' device='disk'>
<driver name='qemu' type='raw'/>
<auth username='libvirt'>
<secret type='ceph' uuid='ec9be0c4-a60f-490e-af83-f0f27aaf48c9'/>
2005 Oct 17
1
v. minor bug alpha4pre
Hi,
When upgrading to Alpha4pre I also changed UIDL format from %08Xv%08Xu
to %08Xu%08Xv to be in line with future dovecot default. This caused
the following error to happen on about 1% of mailboxes:
file ostream-file.c: line 370 (stream_send_io): assertion failed:
(fstream->io != NULL)
Deleting dovecot-uidlist and indexes fixes this so its more of an FYI
really. I always delete indexes on
2013 Aug 20
3
Problem compiling 2.2.5
I'm trying to upgrade a very old sparcstation running Solaris 8 which
is running dovecot 1.x for few users. All I have for the task is good
old gcc 2.95.2. The poor sod complains because it can't compute the
sizeof(unsigned char prefix_text[]) at line 13 of log-error-buffer.c.
Can I help it by - say - putting a constant between the '[]'?
Or is it unfair? :-)
I don't think
2018 Apr 30
0
[SelectionDAG] DbgValue nodes aren't transferred
For cast instructions, llvm::salvageDebugInfo() simply makes dbg.value point to the source of the cast. Since SelectionDAG already has transferDbgValues which can move dbgvalue to the cast source, I think that we can just call it where the truncate is optimized away.
Thanks,
Sejong
From: aprantl at apple.com <aprantl at apple.com>
Sent: Monday, April 30, 2018 2:59 PM
To: Se Jong Oh
2020 May 02
0
default backend = rid not showing full group information for users
On 2020-05-02 16:42, Rowland penny via samba wrote:
> On 02/05/2020 15:07, Jelle de Jong via samba wrote:
>> Am I wrong to expect that id user and getent group should list me the
>> groups the user is part of.
>>
>> For example wbinfo --group-info=office shows me that user jdoe and
>> lgaga are part of the group, but then when doing id jdoe or id lgaga
>>
2023 Mar 30
2
wget http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/images/pxeboot/vmlinuz --max-redirect=0 --no-hsts
On 3/30/23 07:11, Gordon Messmer wrote:
> On 2023-03-29 11:52, Jelle de Jong wrote:
>> I am using pxelinux to install centos stream 9 systems but this
>> stopped working a while ago with mirror.stream.centos.org because it
>> started forcing HTTPS and pxelinux is HTTP only.
>
>
> I believe the recommended configuration is to have vmlinuz and
> initrd.img on
2000 Feb 17
2
Problems building host keys on some SPARCs
Hi,
I've compiled openssh 1.2.2 on Solaris 7/SPARC. On most hosts, things
are fine. I get EGD going, compile openssh, and I can then generate
hostkeys as described in the INSTALL file to get things running.
On a few hosts though, the keygen fails like this:
root at sylow:/source/USR_LOCAL/OFFICIAL/OPENSSH/ssh_client# ssh-keygen -b 1024 -f /etc/ssh/ssh_host_key -N ''
ksh:
2010 May 01
4
Civ4 on Ubuntu doesn't work anymore after upgrade
Hi.
I upgraded my Ubuntu installation to 10.04 this morning and now I can't
make Civ4 work anymore (Beyond the Sword, patched 3.19, with last BUG
mod).
The application starts OK, but when I click "New Game", it crashes with
this console message :
wine: Unhandled page fault on read access to 0x18868000 at address
0x7c3428fa (thread 0009), starting debugger... Register dump:
2018 Mar 14
0
[SelectionDAG] DbgValue nodes aren't transferred
Hi Sejong,
Indeed, I think you are right and we should call transferDbgValues in SetPromotedInteger.
I couldn’t immediately find a suitable in-tree test to verify this though. Can you check and let me know whether this works for your target?
Thanks,
Jonas
> On Mar 13, 2018, at 7:45 PM, Se Jong Oh <sejooh at microsoft.com> wrote:
>
> Thanks for help! I think that sign extension
2017 Jun 14
0
[FORGED] Re: draw stripes in a circle in R
> On Jun 14, 2017, at 1:53 PM, Rolf Turner <r.turner at auckland.ac.nz> wrote:
>
> On 15/06/17 05:29, David Winsemius wrote:
>>> On Jun 14, 2017, at 10:18 AM, David Winsemius <dwinsemius at comcast.net> wrote:
>>>
>>>
>>>> On Jun 14, 2017, at 9:46 AM, Jeff Newmiller <jdnewmil at dcn.davis.ca.us> wrote:
>>>>