similar to: One of two samba servers not visible (remote announce problem?)

Displaying 20 results from an estimated 8000 matches similar to: "One of two samba servers not visible (remote announce problem?)"

1999 Jun 01
0
One of two samba servers not visible (remote announce
When the world was young, "Frank R. Brown" <list.Frank@MailAndNews.com> carved some runes like this: [snip] > I have two concerns: > > The first is that I don't understand what is going on, so I'm worried that > this setup will turn out to be flaky. The only thing flaky in this setup are the various incarnations of windoze... See below. > Secondly, I
1999 Jul 08
0
Some clients can browse and some can't
I am very confused by how our browsing works. I have three samba servers on two different subnets all set up to be in the same workgroup. (No other machines are in that workgroup.) None of them have a guest account set up. When nt clients browse the network (in explorer's map network drive), they do see the samba workgroup. If you click on the samba workgroup, some clients are given the
1999 May 27
2
Can't connect to samba from foreign network --- 'Gethostbyaddr failed' error in log.smb
I have a samba server at ip address aaa.bbb.ccc.ddd I can connect to it from clients on subnets aaa.bbb.eee. and aaa.bbb.fff. I can't connect to it from clients on ggg.hhh. smb.conf has hosts deny = all hosts allow = localhost, aaa.bbb., ggg.hhh. The client can successfully 'ping mysambaserver' (resolves to aaa.bbb.ccc.ddd). Doing 'net view \\mysambaserver' fails with
2012 Nov 16
1
[LLVMdev] Handling segmented instruction space in backend for custom target
Hi all, I'm building a backend for a custom target, and I'm trying to figure out how to handle global and external target address with my architecture's call instructions. This arch. has 16-bit addresses into a segmented address space, and to do a direct call I need to set both an instruction counter (IC, 10 bits wide) and an instruction segment register (ISR, 6 bits wide). My CALL
1999 Jun 04
2
Does mksmbpasswd.sh have any real purpose?
I see that mksmbpasswd.sh (plus a little editing) would be a good way to set up users with "NO PASSWORD" in bulk. But suppose I don't want the risk of the "NO PASSWORD" approach. Now somebody with root access must run smbpasswd for each user they want to activate. But can't I just do this anyway (with the -a 'add user' option), without ever having run
1999 Oct 28
4
Samba on Solaris 2.5.1?
Does anyone have Samba working on Solaris 2.5.1? I posted more or less the same question a few months ago, and didn't hear anything back, but the issue has reared its head again on my end. I have Samba 2.0.0 running successfully on Solaris 2.6, but have failed in repeated attempts to get Samba running on Solaris 2.5.1. Basic symptom: I can get the daemon running, but can't connect to
2010 Feb 07
2
conditioned xyplot, many y variables
The example below creates parallel time-series plots of three different y variables conditioned by a dichotomous factor. In the graphical layout, ? Each y variable inhabits its own row and is plotted on its own distinct scale. ? Each level of the factor has its own column, but within each row the scale is held constant across columns. ? The panels fit tightly (as they do
2015 Jan 29
0
[Q] Get formal arguments of my implemented S4 method
I wouldn't want to add more to the current approach; if someone would like to devote some time, the much preferable idea IMO would be to replace the whole mechanism. Here's one suggestion: 1. have a class, say "nonConformingMethod" for method definitions that diverge in the argument list. 2. the internal dispatch code checks the class of the selected definition (this can
2015 Jan 29
1
[Q] Get formal arguments of my implemented S4 method
Would we really need the special class or would simply checking the formals of the method against those of the generic be simple and fast enough? On Thu, Jan 29, 2015 at 9:41 AM, John Chambers <jmc at r-project.org> wrote: > I wouldn't want to add more to the current approach; if someone would like > to devote some time, the much preferable idea IMO would be to replace the >
2015 Jan 29
2
[Q] Get formal arguments of my implemented S4 method
I wish it didn't have to depend on the name '.local'. Back when I wrote a lot of S4 methods I avoided the auto-generated .local and named the local function something that made sense so that is was easier for a user to track down the source of an error. E.g., define the generic QQQ with numeric and integer methods: setGeneric("QQQ", function(x, ...)NULL)
2009 Oct 21
1
formula and model.frame
Suppose I have the following function myFun <- function(formula, data){ f <- formula(formula) dat <- model.frame(f, data) dat } Applying it with this sample data yields a new dataframe: qqq <- data.frame(grade = c(3, NA, 3,4,5,5,4,3), score = rnorm(8), idVar = c(1:8)) dat <- myFun(score ~ grade, qqq) However, what I would like is for the resulting dataframe (dat) to include
2011 Apr 09
1
How do I make this faster?
I was on vacation the last week and wrote some code to run a 500-day correlation between the Nasdaq tracking stock (QQQ) and 191 currency pairs for 500 days. The initial run took 9 hours(!) and I'd like to make it faster. So, I'm including my code below, in hopes that somebody will be able to figure out how to make it faster, either through parallelisation, or by making changes. I've
2001 Apr 10
2
wine on Mandrake 7.2
Hi, I managed to run United Devices client on Redhat 6.1 with wine-20010326 (after applying a patch that was posted here), but on Mandrake I get errors (below). It brings up the application, but sometimes gets stuck and doesn't open a System Tray window, as it does on the RedHat. (So once you "minimize" the app it's gone for good). Any help appreciated Zeev $
2010 Jul 08
5
No space left on device on not full filesystem
Hello, We have running lustre 1.8.1 and have met "No space lest on device" error when uploading 500 Gb small files (less then 100 Kb each). The problem seems to depends on the number of files. If we remove one file, we can create one new file, even with Gb size; but if we haven''t remove something we can''t create even very little file, as an example using touch
2010 Jul 22
1
How do I get rid of list elements where the value is NULL before applying rbind?
Here is the function that makes the data.frames in the list: funweek <- function(df) if (length(df$elapsed_time) > 5) { res = fitdist(df$elapsed_time,"exp") year = df$sale_year[1] sample = df$sale_week[1] mid = df$m_id[1] estimate = res$estimate sd = res$sd samplesize = res$n loglik = res$loglik aic = res$aic bic = res$bic chisq =
2010 Nov 26
3
Calling substitute(expr, list(a=1)) when expr <- expression(a+b+c)
# The result I am after is the result after a substitution in an expression, such as substitute(expression(a+b+c), list(a=1)) expression(1 + b + c) # However, the way I want to do it is for a an expression "stored as a variable" as (expr <- expression(a+b+c)) expression(a + b + c) # a) The following does not work (expr2 <- substitute(expr, list(a=1))) expr # b) - whereas this
2006 Mar 28
3
Running text app without X
I'm sure this question comes up waaaay to often in this list, and I apologize if I've missed the obvious answer. I did spend the last two hours looking for a solution and trying various things, but to no avail. I'm trying to run a command-line app (text-only). It's a cross-compiler tool for which we only have Windows binaries. The app works fine, but when I run it (i.e. to
1999 Aug 24
2
What to do in Windows 95 after configuring Samba
Hello, I'm new to Samba so sorry for this trivial question. I've configured my smb.conf with all the shares and enabled WINS support. I wanted to know what do I have to configure in my windows 95 machine. My LAN setup is - one Linux Red Hat 6.0 machine Pentium 166 and a windows 95 machine a 486. I've made my Linux m/c the proxy server using Squid. Also whenever I boot my Win m/c it
2010 Jul 28
2
columns mapping
DF1 name OTHER ABC O KKK O QQQ O DDD O PPP O DF2 name ABC KKK DDD If the names in df1 resides in df2, then add the mapped name to df1 as a separate column, for instance "mappedColumn" the output should be: DF1 name OTHER mappedColumn ABC O ABC KKK O KKK QQQ O DDD O PPP O PPP I have been trying for a while, still didn't
1999 Nov 02
1
Win clients on other subnets
Hello! I have Samba 2.0.0 installed on an UltraSPARC server (Solaris 2.6, NIS). I only use Samba for file and printer sharing (I have about 15 Win-clients). My smb.conf is minimal. Everything works fine. Now I want 5 more Win98-clients to use the Samba shares. However, these are on a different subnet. When I try 'net view \\myserver' on one of these boxes I get: Error 51: The