similar to: uploading printer drivers

Displaying 20 results from an estimated 2000 matches similar to: "uploading printer drivers"

2013 Jul 09
2
[PATCH 2/2] LXC: hostdev: parent directroy for hostdev atomically
Create parent directroy for hostdev atomically when we start a lxc domain or attach a hostdev to a lxc domain. Signed-off-by: Gao feng <gaofeng@cn.fujitsu.com> --- src/lxc/lxc_container.c | 42 ++++++++++++++++++++++++++++-------------- src/lxc/lxc_driver.c | 14 ++++++++++++++ 2 files changed, 42 insertions(+), 14 deletions(-) diff --git a/src/lxc/lxc_container.c
2005 Jul 28
0
adddriver strange behavior
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 hello, i see a strange behavior on my samba 3.0.11 on solaris 8 when i install printer-drivers fir win-clients. 1. i ask the win-server for the drivers and get a huge list of depend files: # /usr/local/samba/bin/rpcclient -c 'getdriver "SLA D91 Xerox 4500" 3' - -U xxx xxx [Windows NT x86] Printer Driver Info 3:
2005 May 24
1
Random Sound File
Does anyone know of a way to play a random sound file in a given directroy. Ideally I want to incorporate the random play with the Asterisk 'Read' command, however any other suggestions would be good. Cheers Ed
2005 Mar 23
1
Question on Inheriting Permissions
I asked this question yesterday and got some really good answers that I will be able to use later. My problem was that I did not ask the question in an exact enough way. Here is what I am trying to do: I have a share on my Samba server called art. The directory is owned by the user root and the group tech doc. I have set the permissions like this on the directroy: drwxrwxr_x That is I want
2008 May 22
0
Got cupsaddsmb working but the client PC download of the printer drivers fails for 3 out 4 PCs tested so far!
I have built a new CUPS print server on Ubuntu 8.04 server for our office (used apt-get to download the CUPS v 1.3.7 and Samba v3.0.28a packages) as a replacement for our existing Suse CUPS print server and I want to use the cupsaddsmb tool to set up printer drivers for download by PCs rather than using the Add Printer Wizard method which we have used on our older CUPS print server. After some
2008 Oct 26
2
Upgrade
I recentlry tried to upgrade to 2.8.0. I ended up uninstalling 2.7.2 and installing 2.8.0 becuase the line in the FAQ states: That's a matter of taste. For most people the best thing to do is to uninstall R (see the previous Q), install the new version, copy any installed packages to the library folder in the new installation, run update.packages(checkBuilt=TRUE, ask=FALSE) in the new R and
2002 Jun 10
1
Samba 2.2.4 and Printing with W2K
Firstly, apologies for asking this again, I see that it cause a mail loop lasttime. We've setup samba(2.2.4, no patches) and installed the printer drivers using the methods decribed in the printer_driver2.html. The drivers have appeared to have install correctly, we you right click on the printer share and select properties the relevent tabs for the printer driver appear. However, once
2005 Sep 13
2
Problems installing printer driver
Hello, (please excuse poor translations of german Windows-GUI-items) a customer of ours has a strange problem trying to install a printer driver on the print$ share. The driver in question comes from http://www.kyocera.de/kyocera_n/german/downloads/downloads.html -> choose 'Treiber' -> choose 'Produkt Typ: Drucker', choose 'Produkt: FS-6020', choose 'Sprache:
2004 Jul 09
1
Regarding net groupmap
Well, my Samba 3.0.4 is joined to a w2k AD and works fairly well so far, as it's not in a production environment yet. I am now testing it for such a release and have encountered a permission problem. Unless I chmod -R 777 the Samba share directroy, users can only read files on the share, including the ADS users in Domain Admins. Reading the Samba online manual, I figured the groupmap
2010 Jan 13
8
How to use getCenter
Hi, I am starting to use Mapstraction with the openlayers provider, and I am not sure how to retrieve the current center of a map in a cross-provider way. i.e. currently when calling map.getCenter(), the result returned is the openlayers internal one, not the long/lat used when calling setCenter(). Is that the expected behaviour? Regards, Philippe -------------- next part -------------- An
2017 Nov 27
2
dplyr - add/expand rows
try this: ########################################## library(dplyr) input <- tribble( ~station, ~from, ~to, ~record, "07EA001" , 1960 , 1960 , "QMS", "07EA001" , 1961 , 1970 , "QMC", "07EA001" , 1971 , 1971 , "QMM", "07EA001" , 1972 , 1976 , "QMC", "07EA001" , 1977 ,
2017 Nov 26
3
dplyr - add/expand rows
dplyr may have something for this, but in base R I think the following does what you want. I've shortened the name of your data set to 'd'. i <- rep(seq_len(nrow(d)), d$YEAR_TO-d$YEAR_FROM+1) j <- sequence(d$YEAR_TO-d$YEAR_FROM+1) transform(d[i,], YEAR=YEAR_FROM+j-1, YEAR_FROM=NULL, YEAR_TO=NULL) Bill Dunlap TIBCO Software wdunlap tibco.com On Sat, Nov 25, 2017 at 11:18 AM,
1998 Aug 26
2
Printing NT to Linux w\Cannon bjc-4000
I am able to see my printer as a share. Well better put, I see four representations of my printer: ascii, lp2, lp-mono, and raw. I tried the naive thing and just selected lp2 and added the cannon bjc 4000 driver for NT. This didn't work. I get an error report: %%[ Error: undefined; offending Command: K ]%% . . . a bunch of strings that I don't understand. This does not look like the
2017 Nov 28
2
dplyr - add/expand rows
Or with the Bioconductor IRanges package: df <- with(input, DataFrame(station, year=IRanges(from, to), record)) expand(df, "year") DataFrame with 24 rows and 3 columns station year record <character> <integer> <character> 1 07EA001 1960 QMS 2 07EA001 1961 QMC 3 07EA001 1962 QMC 4
2006 Aug 23
2
Permission Problem --Windows or UNIX?
I am using Samba 3.0.20a with winbindd on FC3 and all the shares except one are working. I keep getting a permison denied error for non-local users in certain directories. The permissions on the directory are # ls -ld . drwxr-xr-x 11 procman users 4096 Aug 3 15:35 . # ls -l drwxrwx--- 12 procman admin 4096 Aug 2 15:47 administration drwxrwx--- 5 procman data-entry 4096 Nov 16
2017 Nov 28
0
dplyr - add/expand rows
On 11/26/2017 08:42 PM, jim holtman wrote: > try this: > > ########################################## > > library(dplyr) > > input <- tribble( > ~station, ~from, ~to, ~record, > "07EA001" , 1960 , 1960 , "QMS", > "07EA001" , 1961 , 1970 , "QMC", > "07EA001" , 1971 , 1971 ,
2013 Jul 08
4
Re: Permission problem with /dev/net/tun
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi Daniel, On 07/08/2013 11:41 AM, Daniel P. Berrange wrote: >> the symptom my libvirt LXC container suffers from is: >> root@depot:/dev/net# ls -la total 0 drwxr-xr-x 2 root root 40 >> Jun 29 16:26 . drwxr-xr-x 5 root root 480 Jun 29 16:26 .. >> root@depot:/dev/net# mknod tun c 10 200 mknod: `tun': Operation >>
2017 Nov 26
0
dplyr - add/expand rows
To David W.'s point about lack of a suitable reprex ("reproducible example"), Bill's solution seems to be for only one station. Here is a reprex and modification that I think does what was requested for multiple stations, again using base R and data frames, not dplyr and tibbles. First the reprex with **two** stations: > d <- data.frame( station =
2003 Oct 13
1
Uploading Printer Driver Files
Hi, I'm close to succeeding in uploading new drivers but it just won't work. I'm running v2.2.1a on a sun box and w2k on the client. - In my conf file, I've defined a print$ share, an entry in printcap and put in a definition of the printer. - I've also added my own user name to the printer admin list - I've created the directory that print$ points to, created W32X86
2017 Nov 29
2
dplyr - add/expand rows
On 11/29/2017 04:15 PM, T?th D?nes wrote: > Hi, > > A benchmarking study with an additional (data.table-based) solution. I don't think speed is the right benchmark (I do agree that correctness is!). For the R-help list, maybe something about least specialized R knowledge required would be appropriate? I'd say there were some 'hard' solutions -- Michael (deep