similar to: WINS emulation re:samba 3.0.1

Displaying 20 results from an estimated 3000 matches similar to: "WINS emulation re:samba 3.0.1"

2005 Jan 26
2
Windows XP profile problems
s there is trick to fully copying an existing local profile over to your new domain profile after you join the Samba domain? I tried the profile copy under System Properties, on the advanced tab and although it completed, I log on and MS office wants to load files from the CD and my start menu seems to be missing the entire left side column. When I look at the size and number of files my
2005 Jan 15
1
Samba PDC and logon.bat questions
Hello, For some time now I have thought that Samba was a piece of cake to setup and thought making it a PDC and WINS server to boot, would not be much harder. Haha, I am finding out I was very wrong. First question: Since logon.bat is being processed by a windows client machine that has no idea what to do with Samba variables, how do you avoid having to create a separate logon script
2005 Sep 19
0
Re-2: rid_idmap problem
That's good, but i believe that the "allow trusted domains" must be set to "No" when using idmap_rid backend. See: http://us5.samba.org/samba/docs/man/Samba-HOWTO-Collection/ idmapper.html#id2587685 On Sep 19, 2005, at 10:41 AM, stefanke@micodat.com wrote: > I have fixed my problem. I do not have configured a range for the > BUILTIN domain! So the following
2001 Oct 25
1
Why won''t this box route ICMP echo reply packets???????
Hi All - I looked for mention of this in the archives but wasn''t able to find anything. This isn''t even an advanced routing question, it should be a dirt-simple, basic, no-brainer, routine routing job. But I''m not getting it! I have a Linux iptables based firewall system that is making me crazy. The gist of the problem is, even when I turn off all firewall rules
2005 Oct 22
1
Advice....
Hi, I''m a relative newbie to LARTC but I have read Matthew Marsh''s book and lurked on this list for a while.... I still seem to be missing a few key ideas here.... So... Maybe folks on the list will be kind enough to help. I have two different ISPs. Cogent and Bell. I have three different firewalls (2 PIX and 1 IPCop). And I have an Ubuntu Linux box doing LARTC for around
2007 Nov 14
1
(no subject)
Hi, I have set up a pxelinux tftp boot server. It works great and is rock solid. I boot all management tools and OS installs from it. I have run in to a problem with Microsoft though... As corporations are slowly starting to adopt Vista, there are more limited ways available to deploy the OS. It is now necessary to install it from PE. I have found no way to successfully boot PE over PXE using
2008 Nov 13
0
[LLVMdev] Compiler Developer positions-Cray Inc,
Cray Inc, currently has 2 opportunities available in our Minneapolis location. If you are interested, please feel free to send me your resume and cover letter. If you know of someone who may be of a possibility, please feel free to forward on! These 2 positions will be working on highly confidential government projects. US citizenship required! SOFTWARE ENGINEER-COMPILER OPTIMIZATION
2013 Jun 12
0
Best way to set database connection collation in rails?
Hello, I want to change the connection collation that rails uses but I''m unsure of exactly what the best way to do this is. Everything in MySQL - the server, database and all tables are set to utf8_unicode_ci collation, but the connection collation in rails still appears to be utf8_general_ci (the default?). We are using the mysql2 adapter. I''ve seen a couple of possible
2011 Dec 03
1
side-by-side map with different geographies using spplot
Hello, I want to create side-by-side maps of similar attribute data in two different cities using a single legend. To simply display side-by-side census block group boundary (non-thematic) maps for Minneapolis & Cleveland I do the following: library(rgdal) library(sp) Minneapolis=readOGR("../Minneapolis/Census/2010/Census_BlockGroup_GEO/","tl_2010_27053_bg10")
2010 Aug 18
1
Automatically retrieve correct collation
Dear List, consider the following scenario: setClass(Class = "A", representation = representation(B = "B", C = "C")) setClass(Class = "B", representation = representation(C = "C")) setClass(Class = "C", representation = representation(something = "character")) Obviously, the collation for sourcing these defs needs to be: C,
2007 Jan 26
1
rake test:x recreates tables in MySQL with server (not database) charset and collation
Any thoughts on how to avoid this problem? Already tried: 1. Setting the charset and collation in migration 001 - no effect: def self.up db_name = ActiveRecord::Base::connection.current_database() execute "ALTER DATABASE #{db_name} CHARACTER SET utf8 COLLATE utf8_bin" end 2. Setting the charset and collation on each table individually - no effect:
2014 Nov 23
0
R string comparisons may vary with platform (plain text)
> On 23 Nov 2014, at 01:05 , Henrik Bengtsson <hb at biostat.ucsf.edu> wrote: > > On Sat, Nov 22, 2014 at 12:42 PM, Duncan Murdoch > <murdoch.duncan at gmail.com> wrote: >> On 22/11/2014, 2:59 PM, Stuart Ambler wrote: >>> A colleague?s R program behaved differently when I ran it, and we thought >>> we traced it probably to different results from
2014 Nov 23
0
R string comparisons may vary with platform (plain text)
For many scientific applications one is really dealing with ASCII characters and LC_COLLATE="C", even if the user is running in non-C locales. What robust approaches (if any?) are available to write code that sorts in a locale-independent way? The Note in ?Sys.setlocale is not overly optimistic about setting the locale within a session. Martin Morgan On 11/23/2014 03:44 AM, Prof
2014 Nov 23
2
R string comparisons may vary with platform (plain text)
On 23/11/2014 09:39, peter dalgaard wrote: > >> On 23 Nov 2014, at 01:05 , Henrik Bengtsson <hb at biostat.ucsf.edu> wrote: >> >> On Sat, Nov 22, 2014 at 12:42 PM, Duncan Murdoch >> <murdoch.duncan at gmail.com> wrote: >>> On 22/11/2014, 2:59 PM, Stuart Ambler wrote: >>>> A colleague?s R program behaved differently when I ran it, and we
2008 Sep 04
3
MySQL connection collation
Hi! I have ran on problem with collations. In database.yml I have set: encoding: utf8, but when in console run: >> ActiveRecord::Base.connection.collation => "latin1_swedish_ci" It is Rails 2.1, mysql gem 2.7, mysql 5.1.22. This leads to errors like: Mysql::Error: Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation
2007 Sep 10
0
Character Sets and rake db:test:prepare
As far as I can tell, if I''m using MySQL and I set the character set and collation on my databases when I create them (e.g. CREATE DATABASE project_development CHARACTER SET utf8 COLLATION utf8_general_ci), when I run db:test:prepare it''ll lose that information because db:test:purge drops and recreates my database without bothering to check what my character set and collation
2014 Apr 14
0
best way to write tests when sort() evaluates differently in R CMD check due to LC_COLLATE locale setting?
Dear R devel, What is the correct way to write package tests that could possibly fail due to locale collation behavior? Is it safe/proper for me to call Sys.setlocale("LC_COLLATE", "en_US.UTF-8") in each test file? Or should I explicitly force collation to C before writing tests? Or do I need to always call sort() on my comparison objects to ensure they are sorted in
2015 Aug 14
0
Bug in rank with utf8?
On 13/08/2015 15:19, peter dalgaard wrote: > Yes, collation is a strange thing, and? And remember that on some platforms (including yours) ICU is used, so LC_COLLATE is not particularly relevant (unless it is 'C'). See ?Comparisons and ?icuGetCollate. E.g. on my Yosemite system in en_US.UTF-8 > rank(c(x, y)) [1] 1.5 1.5 > icuGetCollate() [1] "root" >
2015 Aug 13
2
Bug in rank with utf8?
Yes, collation is a strange thing, and? Collation order will depend on locale settings, and there are quite a few cases where the collation order of two items is not defined. To add to the confusion, on OSX Mavericks, I see > x <- "\u0663" > y <- 3 > > x == y [1] FALSE > rank(c(x, y)) [1] 2 1 > x [1] "?" > x == y [1] FALSE > x > y [1] TRUE
1999 Nov 04
1
Confusion over how to configure WINS
We have a network of about 24 remote site all connecting to our home office across a mixture of private frame relay and VPN across the internet. In order to simplify our life, and at the same time, reduce the amount of non critical and chatty traffic transversing the WAN links during business hours, we are putting servers at each remote to do DHCP, DNS, WINS, and file and print sharing. From the