Displaying 20 results from an estimated 800 matches similar to: "Setting 'unix charset' kills the samba share"
2016 Nov 13
1
smbd does not start NT_STATUS_NO_MEMORY
I'm trying to set up a simple test server, but smbd fails to start:
[2016/11/14 00:21:24, 0] ../source3/smbd/server.c:1241(main)
smbd version 4.2.10-Debian started.
Copyright Andrew Tridgell and the Samba Team 1992-2014
[2016/11/14 00:21:24.881448, 0]
../lib/util/charset/convert_string.c:391(convert_string_talloc_handle)
convert_string_talloc: Conversion not supported.
[2016/11/14
2019 Jan 14
0
Setting 'unix charset' kills the samba share
This is on Centos 7.4
I see this when I start smbd :
[root at zinc samba]# systemctl status smb.service
* smb.service - Samba SMB Daemon
Loaded: loaded (/usr/lib/systemd/system/smb.service; disabled; vendor
preset: disabled)
Active: failed (Result: exit-code) since Mon 2019-01-14 15:19:01 EST;
13s ago
Docs: man:smbd(8)
man:samba(7)
man:smb.conf(5)
Process: 9214
2019 Jan 14
0
Setting 'unix charset' kills the samba share
On Mon, 14 Jan 2019 16:27:04 -0500
Gilbert Soucy <gsoucy at 36pix.com> wrote:
> Yes, I have tried testparam. All is OK . Note that I can write
> anything for unix charset and testparm does not complain.
>
> Load smb config files from /etc/samba/smb.conf
> rlimit_max: increasing rlimit_max (1024) to minimum Windows limit
> (16384) Processing section
2008 Apr 17
4
Bad file modification date/time stamps created from windows clients
I'm running samba server version 3.0.28a on an HP-UX pa-risc machine
with XP-pro windows clients.
When a windows client creates a new file on the samba share the
modification time is not set correctly.
On the HP-UX side date/time stamp shows as:
% ls -l README
-rwxr--r-- 1 e6b564 users 1081 Dec 13 1901 README
The date/time stamp is always "Dec 13 1901" ?
2012 Jul 04
1
Upgrade to 3.6.6 fails - Couldn't migrate printers tdb file
Upgrading from 3.5.15 to 3.6.6 failed.
Looks a bit like Bug 8235:
========================================================
[2012/07/04 09:02:38.341747, 0, effective(0, 0), real(0, 0)]
lib/charcnv.c:543(convert_string_talloc)
Conversion error: Illegal multibyte sequence()
[2012/07/04 09:02:38.349010, 0, effective(0, 0), real(0, 0)]
2006 Aug 05
2
Frustrating locale setting error
Hi all,
This has been very frustrating for me trying to get this acts_as_ferret
working well on a Fedora box. On my mac it works great, no problems with
locale, but when I put the code live on my Fedora server, it complains
about the locale setting (Error occured at <analysis.c>:498 Error:
exception 2 not handled: Error decoding input string. Check that you
have the locale set
2017 Apr 21
2
Problem to many connection
I'm desperate. My English is terrible, but I will try to be as clear as
possible.
I have Samba 4.4.4 in a Centos 7.
I have many connections for each ip.
The command smbstatus -b returns me infinity of these:
Samba version 4.4.4
PID Username Group Machine
Protocol Version Encryption Signing
2019 Feb 18
3
Encoding issues
Hi,
We found a (to our eyes) strange behaviour that might be a bug. First
a little bit of context. The 'units' package allows us to set the unit
using both SE or NSE. E.g., these both work in the same way:
units::set_units(1:10, "?m")
#> Units: [?m]
#> [1] 1 2 3 4 5 6 7 8 9 10
units::set_units(1:10, ?m)
#> Units: [?m]
#> [1] 1 2 3 4 5 6 7 8 9 10
2012 Sep 06
1
smbd fails to start - rpc_srv_register: Failed to call the svcctl init function!
I am attempting to upgrade from the samba version distributed with CentOS 5 to the latest stable samba release
CentOS version is 3.0.33
I removed the distro version and then:
cd /usr/local/src
wget http://www.samba.org/samba/ftp/stable/samba-3.6.7.tar.gz
tar -zxvf samba-3.6.7.tar.gz
cd samba-3.6.7/source3
./configure --with-configdir=/etc/samba
make
make install
I am using my original smb.conf
2012 Dec 15
3
Cannot build custom locale with utf-8 charset
I am trying, without success, to compile a custom locale for the utf-8
character set. I have issued this command:
localedef --no-archive -f UTF-8 -i
/usr/share/i18n/locales/en_CA at yyyy-mmm-dd en_CA at yyyy-mmm-dd.utf8
which produces the requisite files without reporting an error but
which none-the-less insists on using the iso-8859-1 charset:
LC_ALL=en_CA at yyyy-mm-dd locale charmap
2010 Aug 18
2
'panel.smooth' error
Hi,
The following call:
xyplot(incidence ~ year, melanoma, panel=panel.smooth)
produces a blank plot region with an error message:
Error using packet 1
plot.new has not been called yet
> sessionInfo()
R version 2.11.1 (2010-05-31)
x86_64-pc-linux-gnu
locale:
[1] LC_CTYPE=en_CA.UTF-8 LC_NUMERIC=C LC_TIME=en_CA.UTF-8 LC_COLLATE=en_CA.UTF-8 LC_MONETARY=C
2011 Dec 09
3
bug in sum() on integer vector
Hi,
x <- c(rep(1800000003L, 10000000), -rep(1200000002L, 15000000))
This is correct:
> sum(as.double(x))
[1] 0
This is not:
> sum(x)
[1] 4996000
Returning NA (with a warning) would also be acceptable for the latter.
That would make it consistent with cumsum(x):
> cumsum(x)[length(x)]
[1] NA
Warning message:
Integer overflow in 'cumsum'; use
2011 Dec 07
4
bug in rank(), order(), is.unsorted() on character vector
Hi,
This looks OK:
> x <- c("_1_", "1_9", "2_9")
> rank(x)
[1] 1 2 3
But this does not:
> xa <- paste(x, "a", sep="")
> xa
[1] "_1_a" "1_9a" "2_9a"
> rank(xa)
[1] 2 1 3
Cheers,
H.
> sessionInfo()
R version 2.14.0 (2011-10-31)
Platform: x86_64-unknown-linux-gnu (64-bit)
locale:
[1]
2005 Jun 28
2
axTicks on a reverse ylog plot (PR#7973)
There is still issues with the reversed y-log scale plot:
# Test case A: works as expected
plot(10:100,log="y",ylim=c(100,11))
grid()
par("yaxp")
# Test case B: grid does not have horizontal lines; par("yaxp") is
different
plot(1:100,log="y",ylim=c(100,10))
grid()
par("yaxp")
In the second test case, axTicks for the horizontal lines (in
2013 Mar 22
4
ggplot2 will not draw a rectangle. Error: ggplot2 doesn't know how to deal with data of class XXX"
What am I missing? When I run the code below I get the error message
"Error: ggplot2 doesn't know how to deal with data of class function"
Googling suggests a message of "Error: ggplot2 doesn't know how to deal with data of class XXX" is not uncommon but I don't see why I am getting a "function" error unless I am using some reserved word?
2007 Jun 27
1
error message from lmer
Hi,
I've begun to use the lme4 package, rather than nlme, for more flexibility
during modelling, and running the examples in lmer I receive this error
message:
---<---------------cut here---------------start-------------->---
R> (fm1 <- lmer(Reaction ~ Days + (Days|Subject), sleepstudy))
Error in printMer(object) : no slot of name "status" for this object of class
2024 Apr 25
1
[External] View() segfaulting ...
I saw it also on some of my Ubuntu builds, but the issue went away
after a make clean/make, so maybe give that a try.
Best,
luke
On Wed, 24 Apr 2024, Ben Bolker wrote:
> I'm using bleeding-edge R-devel, so maybe my build is weird. Can anyone
> else reproduce this?
>
> View() seems to crash on just about anything.
>
> View(1:3)
> *** stack smashing detected ***:
2006 Nov 29
4
rm() deletes 'c' if c('a','b') is the argument (PR#9399)
Full_Name: Lixin Han
Version: 2.4.0
OS: Windows 2000
Submission from: (NULL) (155.94.110.222)
A character vector c('a','b') is supplied to rm(). As a result, 'c' is deleted
unintentionally.
> a <- 1:5
> b <- 'abc'
> c <- letters
> ls()
[1] "a" "b" "c"
> rm(c('a','b'))
> ls()
character(0)
2006 Oct 27
2
POSIXct time zone and daylight savings issues
Hello,
Suppose we need a function that takes a POSIXct object and need to
calculate the time difference between it and GMT time:
gmtDiff <- function(time) {
time.gmt <- as.POSIXct(format(time, tz="GMT"))
time.plt <- as.POSIXlt(time)
dlstime <- ifelse(time.plt$isdst > 0, 1, 0)
timezone <- as.numeric(difftime(time, time.gmt, units="hours"))
2009 Oct 06
1
vignette() failure
Hi,
I can't pinpoint exactly since what R version I first noticed this
error, but are others seeing this?
R> vignette("grid")
R> sh: : command not found
instead of having the vignette displayed in the proper viewer? This is
with:
R> sessionInfo()
R version 2.9.2 (2009-08-24)
x86_64-pc-linux-gnu
locale: