similar to: using RPCS printer driver for a P&P printer

Displaying 20 results from an estimated 500 matches similar to: "using RPCS printer driver for a P&P printer"

2010 Feb 05
0
samba Digest, Vol 86, Issue 6
Hi. reading docs i found THIS pdbedit -P "minimum password age" -C 5184000 (limit for validity of the password set for 60 days) pdbedit -P "maximum password age" -C 7776000 (maximum period for validity of the password set for 90 days) after u set ur policies restart samba and cofirm policies/informations make to user: pdbedit -L -v samba_user AND THIS -P account-policy
2004 Oct 06
3
Point&print problem: printer names show the ip, not the server name.
Hello, i have this strange problem with printing and server naming after upgrading a server from RH9 (running Samba 3.0.3 ) to Fedora Core 1 (3.0.7-2.FC1). Everything was working before the upgrade, but i immediately started noticing some peculiarities after restoring the samba files (/etc/samba, /var/cache/samba) and starting samba. The problem manifests by the following: - when i double
2019 Dec 13
2
Network RPCs in LLVM projects
On Fri, Dec 13, 2019 at 2:12 PM Chris Bieneman via llvm-dev < llvm-dev at lists.llvm.org> wrote: > > > On Dec 12, 2019, at 5:58 AM, Sam McCall via llvm-dev < > llvm-dev at lists.llvm.org> wrote: > > Short version: clangd would like to be able to build a client+server that > can make RPCs across the internet. An RPC system isn't a trivial dependency > and
2019 Dec 12
2
Network RPCs in LLVM projects
Short version: clangd would like to be able to build a client+server that can make RPCs across the internet. An RPC system isn't a trivial dependency and rolling our own from scratch isn't appealing. Have other projects had a need for this? Any advice on how to approach such dependencies? -- Longer: clangd (a language server, like an IDE backend) builds an index of the project you're
2023 Dec 04
1
[PATCH] nouveau/gsp: add three notifier callbacks that we see in normal operation
On Tue, 2023-12-05 at 08:55 +1000, Dave Airlie wrote: > +static int > +r535_gsp_msg_ucode_libos_print(void *priv, u32 fn, void *repv, u32 repc) > +{ > +???????/* work out what we should do here. */ > +???????return 0; > +} This is part of my logrm debugfs patch. ?It contains the printf log from a PMU exception. Do you want me to research the other two RPCs and tell you exactly
2008 Oct 04
3
Joining forces with the Network UPS Tools
Hi Powermen ;-) I recently came across the Powerman project (http://sourceforge.net/projects/powerman/), pointed by Tony Merenda, from Opengear (thanks Tony). Congrats for your work in this area! I've thought a bit about Powerman and NUT since then... NUT currently supports hosts of UPSs and few PDUs (RPCs), and provides tons of features: http://test.networkupstools.org
2013 Apr 03
9
VERY odd HTTP Packet Loss
I''m running Xen 4.1.4 on Fedora 17. I have some CentOS 6 DomUs - an haproxy machine and some tomcat VMs. When clients send requests with: POST /ProposalInterface HTTP/1.1 Content-Type: text/xml Host: www.myhost.co.uk Content-Length: 2099 Expect: 100-continue Connection: Keep-Alive The "continuation" doesn''t happen. The POST is truncated at 1449 bytes, and the
2010 Aug 17
18
write RPC & congestion
Hi, thanks for previous help. I have some question about Lustre RPC and the sequence of events that occur during large concurrent write() involving many processes and large data size per process. I understand there is a mechanism of flow control by credits, but I''m a little unclear on how it works in general after reading the "networking & io protocol" white paper. Is
2013 Feb 07
7
"dynamic memory allocation" for windows guests?
Hello, In our office we would like to do something like "memory overcommitment" or rather "dynamic allocation" for a bunch of windows domUs (server 2003 & 2008). We thought this should be a simple feature, however we did not find any fitting solution. We use Xen 4.2.1 with xl toolstack. The idea is to use ballooning to dynamically (and automatically) change physical
2003 Jun 16
2
(no subject)
hi, do somebody tell me, where i could find information about samba restrictions compared with Windows Server. I' m trying to write a small paper for school, which describe a comarison between samba and Windows Server. I heard for example, that 1-Samba is not adapted for great nets? 2-Samba has not a "system management server" like windows? 3-Remote Procedure Calls (RPCs) has been
2005 Jul 27
1
Too many handles on this pipe
I wonder if there is any resolution to this problem. I'm encountering similar situation with the Nashuatec DSC338 and P7325 printers from Ricoh using RPCS drivers. After uploading those drivers and performing basic printing preferences configuration, the print server crashed and become inaccessible. Here is the error from samba.log: [2005/07/23 12:14:19, 0]
2017 Aug 08
1
Best method to do MsChapv2 against AD is SMB-RPC or TCP-RPC
On Wed, 2017-07-19 at 19:51 +0530, Paul Simon via samba wrote: > Hi, > > I am working on a decade older project, wherein I see that for MschapV2 > authentication, NetrLogonSamLogon rpc message and its preceding rpc > messages like Bind, NetrServerReqChallenge, NetrServerAuthenticate2 are > sent over SMB. > > But when I see samba, the above mentioned RPCs are sent
2013 Apr 29
1
OSTs inactive on one client (only)
Hi everyone, I have seen this question here before, but without a very satisfactory answer. One of our half a dozen clients has lost access to a set of OSTs: > lfs osts OBDS:: 0: lustre-OST0000_UUID ACTIVE 1: lustre-OST0001_UUID ACTIVE 2: lustre-OST0002_UUID INACTIVE 3: lustre-OST0003_UUID INACTIVE 4: lustre-OST0004_UUID INACTIVE 5: lustre-OST0005_UUID ACTIVE 6: lustre-OST0006_UUID ACTIVE
2023 Dec 04
1
[PATCH] nouveau/gsp: add three notifier callbacks that we see in normal operation
These seem to get called, but it doesn't look like we have to care too much at this point. Signed-off-by: Dave Airlie <airlied at redhat.com> --- .../gpu/drm/nouveau/nvkm/subdev/gsp/r535.c | 24 ++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/gsp/r535.c b/drivers/gpu/drm/nouveau/nvkm/subdev/gsp/r535.c index
2023 Dec 05
1
[PATCH] nouveau/gsp: add three notifier callbacks that we see in normal operation
On Tue, 5 Dec 2023 at 09:07, Timur Tabi <ttabi at nvidia.com> wrote: > > On Tue, 2023-12-05 at 08:55 +1000, Dave Airlie wrote: > > +static int > > +r535_gsp_msg_ucode_libos_print(void *priv, u32 fn, void *repv, u32 repc) > > +{ > > + /* work out what we should do here. */ > > + return 0; > > +} > > This is part of my logrm debugfs
2013 Mar 07
0
Windows printer driver issues
Hi All, I've been running a large school network (~800 PCs/Macs) using Samba3/LDAP and like pretty much everyone on this list am too evaluating Samba4. However, today's problem is not AD related... I've set up a Samba/CUPS printer system for our school and I've got a problem - has anyone got any advice on this please? I've got it going so that all windows hosts can connect
2020 Sep 17
2
Re: [PATCH v2 1/7] New APIs: cryptsetup-open and cryptsetup-close.
On Monday, 7 September 2020 11:43:54 CEST Richard W.M. Jones wrote: > This commit deprecates luks-open/luks-open-ro/luks-close for the more > generic sounding names cryptsetup-open/cryptsetup-close, which also > correspond directly to the cryptsetup commands. > > The optional cryptsetup-open readonly flag is used to replace the > functionality of luks-open-ro. > > The
2004 Mar 02
2
[PATCH] Force mountd(8) to a specified port.
Hi all, I have a requirement to run NFS read-only in an Internet-facing colocation environment. I am not happy with packet filters alone around rpcbind, call me paranoid, so I just spent the last few minutes cutting this patch. As you are aware, RPC applications can be forced to listen on a known port through the sin/sa argument to bindresvport[_sa](). Why several Linux distributions have this
2001 Apr 17
3
Samba 2.2.0 released !
The Samba Team is pleased to announce a new major release of Samba, Samba 2.2.0. Samba 2.2.0 is available in source form from samba.org and all of our mirror sites. Binary packages will be available shortly for many popular platforms. Please check the main Web site or email announcements for details. If you have problems, or think you have found a bug please email a report to :
2019 May 22
1
custom virt-io support (in user-mode-linux)
On 22/05/2019 14:02, Johannes Berg wrote: > Hi, > > While my main interest is mostly in UML right now [1] I've CC'ed the > qemu and virtualization lists because something similar might actually > apply to other types of virtualization. > > I'm thinking about adding virt-io support to UML, but the tricky part is > that while I want to use the virt-io basics