Displaying 20 results from an estimated 47 matches for "ung".
Did you mean:
un
2004 Aug 30
3
cannot access files after update samba 3.0.5 -> 3.0.6 (Redhat 6.2)
...to 3.0.5 samba works fine again.
It seems to be a Redhat 6.2 problem. On a second computer with Redhat 9 this problem does not occur.
This line is written in log.smbd:
[2004/08/27 18:29:01, 0] smbd/reply.c:send_file_readX(2122)
send_file_readX: sendfile failed for file wk/xx (Das Argument ist ung?ltig). Terminating
("Das Argument ist ung?ltig" --> "invalid argument")
and this with debug level 10:
...
[2004/08/27 18:29:01, 3] smbd/process.c:switch_message(887)
switch message SMBreadX (pid 15427) conn 0x833b760
[2004/08/27 18:29:01, 4] smbd/uid.c:change_to_user(19...
2007 Aug 23
1
figure-definition and heatmap question
...uot;M","N","O","P")
> par(fin=c(8.0,8.0))
> cp <- colorRampPalette(c("white","springgreen","darkgreen"),space="Lab")
> heatmap(x, Rowv = NA, Colv = NA, scale="none", col=cp(200))
Fehler in par(op) : ung?ltiger Wert f?r den Grafikparameter "fig" spezifiziert
> par(fin=c(8.0,8.0))
> cp <- colorRampPalette(c("white","springgreen","darkgreen"),space="Lab")
> heatmap(x, Rowv = NA, Colv = NA, scale="none", col=cp(200))
Fehler in...
2006 Apr 21
1
plot.default 'ylim' error message is wrong (PR#8784)
...3.8.114)
This command
plot(0, 0, xlim=c(3, 5), ylim=c(0, 10, 17))
should complain about 'ylim' (because it has three elements).
However, it does in fact (in my german error message at least)
complain about 'xlim' instead:
Fehler in plot.window(xlim, ylim, log, asp, ...) :
ung?ltiger 'xlim' Wert
I spent about fifteen minutes debugging my trivial xlim
argument before I found this. Shows my general trust in R,
I guess. It is a great system.
Version 2.2.1 (2005-12-20 r36812)
Lutz Prechelt
2014 Mar 24
0
ADS data crippled after joining Samba into active MS domain
...rectory
Name Server OwaVersion
---- ------ ----------
owa (Default Web Site) SRV16 Exchange2010
WARNUNG: Das Objekt SRV16\owa (Default Web Site) wurde besch?digt und befindet sich in einem inkonsistenten Zustand.
?berpr?fungsfehler:
WARNUNG: Eigenschaftenausdruck "?????:<GUID=2b4" ist ung?ltig. G?ltige Werte: Zeichenfolgen, die mit einem Punkt
beginnen, gefolgt von einem beliebi...
2007 Jul 25
5
IAX2 INBAND DTMF?
Is it possible to make Asterisk do inband DTMF over IAX?
2009 Sep 21
2
Executing R scripts from another R script
...ts from an R script.
I am using function source like this: source(file="G:/data/datafile.xls")
I get a following error (in German, as I work with German Windows):
Converting xls file to csv file... Fehler in system(cmd, intern =
!verbose) : perl nicht gefunden
Fehler in file.exists(tfn) : ung?ltiges 'file' Argument
Basically it says:
Converting xls file to csv file...Error in system(cmd, intern =
!verbose) : perl not found
Error in file.exists(tfn): invalid 'file' Argument
What is wrong?
How can I call and execute R-scripts from another R-script?
Thanks in advance!
R...
2012 Apr 08
2
How to produce serveral plots with pairs of vectors
...) for every
pair of vectors (dimension by gruppe) .
This works: box plot (dimensioned) - I receive a plot with 5 boxes.
This does not work: boxplot (Dimensionen ~ Gruppe) - I would like to receive
5 plots
I get the error message:
Fehler in model.frame.default(formula = dimensionen ~ gruppe) :
ung?ltiger Typ (list) f?r die Variable 'Dimensionen'
Any help is very much appreciated!
Happy Easter
slyrs66
--
View this message in context: http://r.789695.n4.nabble.com/How-to-produce-serveral-plots-with-pairs-of-vectors-tp4540968p4540968.html
Sent from the R help mailing list archive at...
2001 Nov 13
6
Cannot install/run very important application
...December so time is running out.
Yesterday I downloaded wine 20011108 and tried it but I have still the
same problem:
The installation starts, I click through some info-screens but when the
actual
installation-process begins, a message box pops up. Title: "Visual Basic
6.0"
Text: "Ung?ltiges Bild" ('invalid picture' in english).
I asked a friend to install it on his windows machine and then just send
me the
installed files. BUt when I tried to start the banking application the
same
message box pops up again.
So is ther anybody out ther who can help me? Which debug...
2009 Apr 28
1
Error in IMAP command UID: Unknown thread algorithm.
Our Squirrelmail offers "Thread based sorting".
Now, I have one user, where the activation of thread sorting results in:
FEHLER: Falsche oder ung?ltige Anfrage.
Anfrage: THREAD ORDEREDSUBJECT ISO-8859-1 ALL
Server antwortete: Error in IMAP command UID: Unknown thread algorithm.
Why is that?
--
Ralf Hildebrandt
Gesch?ftsbereich IT | Abteilung Netzwerk
Charit? - Universit?tsmedizin Berlin
Campus Benjamin Franklin
Hindenburgdamm 30 |...
2012 Feb 20
1
FW: Problems with R
...ars,
I am a new R user and I am trying to analyze my data sets, R gives me a default when I type in the regression formula as following:
fit1=gamlss(tot_remun_revenue$tot_remun.y~tot_remun_revenue$revenue.x,family=NO)
Fehler in model.frame.default(formula = tot_remun_revenue$tot_remun.y ~ :
ung?ltiger Typ (NULL) f?r die Variable 'tot_remun_revenue$tot_remun.y' Is there anything wrong in my data set, as the instruction is directly copied from lectures I had about R? Attached please find the data set as .csv. Best regards and thanks in advance! Thorsten Poellinger
2008 Nov 21
1
Wishlist: fix error in documentation for body<- (PR#13318)
...says that:
value can be an expression or a list of R expressions.
This produces errors however:
################################
> f <- function(x){}
> body(f) <- list(expression(res <- x^2),expression(return(x)))
Fehler in as.function.default(c(formals(fun), value), envir) :
ung?ltiges formales Argument f?r "function"
################################
The only way to assign multiple statements to a function body
that I could get to work is to put all the statements into a single expression,
(separated by ';' and in curly brackets):
####################...
2009 Jan 02
8
samba freezes the server
...whole server machine makeing it work perfect
the only relevant info i have on this is that the freeze appeared when
logging out from the domain the last two times, and that i have this in
my logs (loglevel 3):
smbd/notify_inotify.c:watch_destructor(351)
inotify_rm_watch returned Das Argument ist ung?ltig
and
smbd/error.c:error_packet_set(61)
error packet at smbd/nttrans.c(532) cmd=162 (SMBntcreateX)
NT_STATUS_SHARING_VIOLATION
please help me... This isn't my first samba server...but i am really
going nuts with this one.
Any idea is very welcome...
thank you very much
Sascha
my smb.co...
2006 Aug 11
2
LDAP+Samba only posixaccount possible?
Hi!Is it possible to get the samba authenticate a user and map to his homedirectory only using posixaccount or are there some attributes that windows absolutely require like in the samba-objectclasses?Any configuration examples if this is possible.I have been experimenting with pam.d/samba using pam_ldap.so module, but no success so far.Currently I have setup the server so it can authenticate a
2005 Sep 27
2
invalid network interface after starting xend
....168.1.51 Bcast:192.168.1.255 Mask:255.255.255.0
eth1 Link encap:Ethernet HWaddr 00:14:5E:0A:53:05
inet addr:192.168.1.52 Bcast:192.168.1.255 Mask:255.255.255.0
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
After starting xend i have some ungly interfaces:
eth1 Link encap:Ethernet HWaddr 00:14:5E:0A:53:05
inet addr:192.168.1.52 Bcast:192.168.1.255 Mask:255.255.255.0
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
peth0 Link encap:Ethernet HWaddr FE:FF:FF:FF:FF:FF
UP...
2013 Feb 14
3
Problems plotting and regression w.r.t. date data type on x axis
...interaction with R:
> tabelle
date number date2
1 2009-01-1 1673 2009-01-01
2 2009-12-1 2111 2009-12-01
3 2010-7-1 2487 2010-07-01
4 2013-2-1 4301 2013-02-01
> regression.punkte<-lm(tabelle$number ~ tabelle$date2)
Fehler in model.frame.default(formula = tabelle$number ~ tabelle$date2, :
ung?ltiger Typ (list) f?r die Variable 'tabelle$date2'
> regression.punkte<-lm(tabelle$number ~ tabelle$date)
> plot(tabelle$date2,tabelle$number, pch=19, xlab="date of retrieval",
> ylab="number of animals") ***R DRAWS THIS***
> regression.punkte
Call:
lm(fo...
2009 Aug 18
2
(no subject)
...ger larger than 0. at C:/Programme/R/R-2.8.1/library/gdata/perl/xls2csv.pl line 57.
Done.
Fehler in xls2csv(xls, sheet, verbose = verbose, ..., perl = perl) :
Unable to read translated csv file 'C:\DOKUME~1\beckmann\LOKALE~1\Temp\RtmpCU2zBu\file4db74d06.csv'.
Fehler in file.exists(tfn) : ung?ltiges 'file' Argument
>
> xlsfile <- file.path(.path.package('gdata'),'xls','iris.xls')
> xlsfile
[1] "C:/Programme/R/R-2.8.1/library/gdata/xls/iris.xls"
>
> iris <- read.xls(xlsfile)
Converting xls file to csv file... Done.
Re...
2023 May 22
1
vfs_shadow_copy2 cannot read/find snapshots
...amba/snapd.log)
[2023-05-22 12:52:09.438169 +0000] E
[server-handshake.c:156:server_first_lookup] 0-snapd-glvol_samba: lookup
on root failed: argument is not valid
(the last bit of the error message is translated from German, might be a
bit different though, original version is: Das Argument ist ung?ltig)
Am 22.05.2023 um 14:46 schrieb Sebastian Neustein:
> Hi
>
> I am trying to get shadow_copy2 to read gluster snapshots and provide
> the users with previous versions of their files.
>
> Here is my smb.conf:
>
> [global]
> ??????? security = ADS
> ??????? workgr...
2013 Dec 10
3
[Samba 3, Debian wheezy] All of a sudden, resolving ADS user fails completely
...# ls -l /srv1
drwx------ 15 user1 root 4096 Jan 17 2013 user1
drwx------ 12 user2 root 4096 Nov 5 10:45 user2
drwx------ 11 user3 root 4096 Jun 27 2012 user3
Same thing when trying to chown (my winbind seperator is "#"):
root at fileserver3:/# chown -vR ad#user1 /srv1/user1
chown: ung?ltiger Benutzer: "ad#user1"
As said before, this worked yesterday, too.
/What/ works are the usual diagnosis things like wbinfo, wbinfo -g,
wbinfo -a username%password, net ads testjoin... Rejoining the ADS
didn't solve the problem either.
One more time: Since yesterday everythin...
2003 Dec 22
2
Problems with read.table()
...ALNIG?;.......
t401;5;2;2;3;4;2;2;2;1;2;1;2;2;1;2;2;2;1;2;1;0;0;......
t403;3;0;0;6;4;0;3;0;0;3;0;0;0;0;3;0;0;0;2;0;2;0;.....
with read.table("data.file", header=TRUE, separator=";"), the R program
crashes with following error message:
RGUI verursachte einen Fehler durch eine ung?ltige Seite
in Modul R.DLL bei 015f:6b515b87.
Register:
EAX=0075007a CS=015f EIP=6b515b87 EFLGS=00010246
EBX=01bd3f57 SS=0167 ESP=0073ed20 EBP=0073ed48
ECX=01bd3ad8 DS=0167 ESI=00000001 FS=2237
EDX=ffffffb0 ES=0167 EDI=00000008 GS=0000
Bytes bei CS:EIP:
0f b7 04 50 83 e0 08 eb ce 89 5d ec eb 8b 89...
2007 Mar 27
1
Ultime9 works - or wine more win9x compatible than NT :-)
Hi,
When I was about 17 (4 years ago) I dreamed Ultima9 would run on Wine.
No joke - I really dreamed about it. Maybe the many not very
successful tries with WineX made my brain to rebell even when I slept
;)
I thing with WineX 1.1 or 2.0 it worked but:
- 3d sound was broken.
- Colors were mixed up + some other rendering problems
- I had to hack a bit, because it crashed when it attemped to