Displaying 20 results from an estimated 2000 matches similar to: "Can't locate point and print (printer) driver files"
1999 Aug 18
1
Your message Re: Samba and printer comments (July 5 1999)
Yes unfortunately I do not have much luck recieving help from the SAMBA
mailing list.
After much playing I found something weird that was seemingly causing
incorrect comments. Most printers would recieve the comment - "no
entries" which originally I assumed to be the default comment given by
Win95 when it could not get a proper comment. However I later found
that this is not the case.
1999 Jul 05
0
Automatic install of printer drivers + comments
Greetings all,
Recently we implemented the automatic install of printers (+ their
associated drivers) for our Windows 95 clients. Originally we achieved
it using Samba 2.0.4. Unfortunately we could not get the comment field
(as configured at the client) to get automatically filled in. After
upgrading to 2.0.4b we found that 'magically' the comment field was
filled in with the same
1999 Nov 10
1
Getting around 16 unix group limitation
Has anyone worked out a way around the 1+16 group limit imposed on
Solaris in regards to samba.
Our situation is that users only see the Solaris 2.6 server via Samba -
ie. no user has telnet or general unix access to the server. Is there a
way using Samba to allow users to belong to more than 16 secondary
groups (ie. bypassing the underlying unix group limitation). I am aware
that you can
1999 Aug 16
0
HP2500 Printer under SAMBA
Has anyone else managed to get the 'point and print' (automatic driver
installation - PRINTER$) system to work with the Hewlett Packard 2500
Colour inkjet. I have taken a look at the HP web site and it seems that
they have changed the format of the driver INF files (and hence does not
work with the make_printerdef utility).
I have almost managed to get it to work (by a little hacking).
1999 Aug 31
0
SAMBA digest 2218
--- samba@samba.org wrote:
> SAMBA Digest 2218
>
> For information on unsubscribing see
> http://samba.org/listproc/
> Topics covered in this issue include:
>
> 1)
> by "Brandon Schnell" <brandonschnell@hotmail.com>
> 2) AutoCAD R14 and Eagle Point
> by Hank Burton <wburton@literati.com>
> 3) Can't locate point and
2007 Nov 22
0
Dealing with DLL name overlap in Win32 printer drivers under SAMBA
Hi - samba-list newbie here.
Trying to setup SAMBA print sharing (over CUPS as the print layer) with
**native** Windows print drivers being made available to the connecting
workstations... We've already tried the Postscript/PPD approach, but
with the multifunction/mopier machines we've got here, native is
definitely best to get all the options/interlocks shown.
Problem is that the
1999 May 11
1
Please Help! Re: Using smbpasswd (fwd)
I am trying to get encrypted passwords working for a Linux/Samba server
serving Win9x clients. We want the students to be able to logon either
the Samba file system or the Linux server and allow the students to
change their password from either. I would really appreciate any help
on this matter. We need to get this working as quickly as possible as
the old Netware server is on life support.
2017 Sep 25
1
Subset
Always via logical expressions. In this case you can use the logical expression
myDF$b != "0"
to give you a vector of TRUE/FALSE
B.
> On Sep 25, 2017, at 8:00 AM, Shane Carey <careyshan at gmail.com> wrote:
>
> This is super, really helpfull. Sorry, one final question, lets say I wanted to remove 0's rather than NAs , what would it be?
>
> Thanks
>
2006 Jun 08
2
hangup lag causing the answering of already answered calls
I have a TDM-400P with one FXO module. On an incoming call, I have set
Asterisk to dial my phone (exten => s,1,Dial(IAX2/carey)), which is
basically the only thing in my dialplan.
When the call is answered by the PSTN phone first, or when the ringing
call is hung up, Asterisk keeps ringing for 5+ seconds, which causes
trouble (the answering of already answered calls).
I noticed in the
2019 Aug 23
2
Using [GlobalISel] to provide peephole optimizations
Hi,
GlobalISel is fantastic, but obviously lacks a lot of the transforms that
makes SelectionDAG so good. Whilst it's plenty usable, you'll find yourself
wanting/needing to add a lot of manual little transforms to clean things up.
I know of the RFC for a new Combiner with its own syntax
(https://reviews.llvm.org/D54286 is the latest I can find of it), but after
manually adding my Nth
2017 Sep 25
0
Subset
This is super, really helpfull. Sorry, one final question, lets say I
wanted to remove 0's rather than NAs , what would it be?
Thanks
On Mon, Sep 25, 2017 at 12:41 PM, Boris Steipe <boris.steipe at utoronto.ca>
wrote:
> myDF <- data.frame(a = c("<0.1", NA, 0.3, 5, "Nil"),
> b = c("<0.1", 1, 0.3, 5, "Nil"),
>
1999 May 05
0
? lmhosts ?
STEP 6. Try listing the shares available on your server
k6:/usr/sbin# smbclient -L k6
Added interface ip=192.168.1.1 bcast=192.168.1.255 nmask=255.255.255.0
startlmhosts: Can't open lmhosts file /etc/lmhosts. Error was No such
file or di
rectory
Server time is Wed May 5 18:35:46 1999
Timezone is UTC-4.0
Session setup failed for username= myname=K6 destname=K6 ERRSRV -
ERRbadpw (Ba
d
2017 Sep 25
2
Subset
myDF <- data.frame(a = c("<0.1", NA, 0.3, 5, "Nil"),
b = c("<0.1", 1, 0.3, 5, "Nil"),
stringsAsFactors = FALSE)
# you can subset the b-column in several ways
myDF[ , 2]
myDF[ , "b"]
myDF$b
# using the column, you make a logical vector
! is.na(as.numeric(myDF$b))
# This can be used to select the
1999 Apr 15
0
[RETRY] Help with preexec (fwd)
Having received no responses, I will try again. I can't seem to get
preexec to work as stated in my earlier email given below. Any help
would be most appreciated. I am using samba-2.0.3-19990228 in
combination with RH 5.2 with kernel-2.2.1.
Thanks,
Carey
---------- Forwarded message ----------
Date: Tue, 13 Apr 1999 11:35:03 -0500 (CDT)
From: Carey F. Cox <carey@tabasco.lamar.edu>
2017 Sep 25
0
Subset
Hi,
Lets say this was a dataframe where I had two columns
a <- c("<0.1", NA, 0.3, 5, "Nil")
b <- c("<0.1", 1, 0.3, 5, "Nil")
And I just want to remove the rows from the dataframe where there were NAs
in the b column, what is the syntax for doing that?
Thanks in advance
On Fri, Sep 22, 2017 at 5:04 PM, Shane Carey <careyshan at
2013 Oct 09
2
Updated to 2.6.5, previously-working APC SmartUPS now fails completely
(Note that I mentioned this *was* previously working with an older version
of Nut).
[irs2-ups1]
driver = snmp-ups
port = irs2-ups1.sum.naoj.org
mibs = auto
community = private
irs2-ups1.sum.naoj.org responds to pings.
On Tue, Oct 8, 2013 at 3:55 PM, Tim Rice <tim at multitalents.net> wrote:
> On Tue, 8 Oct 2013, Philip Tait wrote:
>
> > Here is the upsc
1999 Apr 28
3
License manager
Has anyone successfully incorporated a Win95 app that uses FlexLM
license manager on a Samba file system. I would be extremely interested
in talking with you as we are trying to install Parametric Technology's
ProEngineer on our Samba file server. We do have a copy of the
Unix version of the license manager, but I am not sure how I can get
the Win95 client to talk to it.
Any and all
2003 Jun 04
1
Re: Looking for answers....
[Redirected to the general samba list]
One of the things which Samba provides is a facility
to run a "preexec" script before allowing a user to connect
to a directory, and refuse to make the conenction if
the script returns a non-zero result.
This can prevent someone from logging on twice,
limit them to specific hours, from conencting to
the wrong directory and so on.
In
2020 Jun 02
0
samba-tool domain classicupgrade fails to import users or groups from NT domain
On 31/05/20 23:16, Sebastian Arcus via samba wrote:
> I am attempting to migrate a Slackware server with Samba 4.12.3 from an
> NT style domain to AD. I have done this about 7-8 times on other servers
> in the past following the instructions on Samba's wiki. This time
> however, the upgrade process is failing completely to import any users
> or groups from the NT domain.
2017 Sep 22
3
Subset
Super,
Thanks
On Fri, Sep 22, 2017 at 4:57 PM, Boris Steipe <boris.steipe at utoronto.ca>
wrote:
> > a <- c("<0.1", NA, 0.3, 5, "Nil")
> > a
> [1] "<0.1" NA "0.3" "5" "Nil"
>
> > b <- as.numeric(a)
> Warning message:
> NAs introduced by coercion
> > b
> [1] NA NA 0.3