Displaying 20 results from an estimated 1000 matches similar to: "unknow problem"
2012 May 31
2
windows xp see 'unknow partition'
Hi,
I use guestfs.part_disk to partition one disk with 'mbr' and formated it
to ntfs, then attach this disk to one windows xp virtual machine.
But this windows xp can't recognise that partition, it says 'uknown
partition'
Why it is so, and how to solve it? May someone help me with this problem?
Thanks.
-------------- next part --------------
An HTML attachment was
2008 Jul 31
0
Asterisk CDR "**Unknow**" as channel name
Hi all
I have been looking at my asterisk CDR in the mysql database and
some channel names are set to "**Unknown**" string.
When I look at the code, everybody when calling ast_channel_alloc set a
channel format
like SIP/%s or Zap/%s
Only app_voicemail.c doesn't when sending emails and I don't use voicemail.
Why app_voicemail needs to allocate a channel to send emails ?
And in
2012 Sep 07
1
mount device of 'unknow' filesystem type
hi all!
some windows vm's filesystem type is unknown(/dev/sda: unknown),
and 'mount' command leads to:
'libguestfs: error: mount: /dev/sda on / (options: ''): mount: you must specify the filesystem type '
if i don't know the type, whether i could mount the device?
Thanks!
??
2018 Jul 12
0
filesystem type unknow for lvm root fs
Hi:
I am trying to get filesystems of a VM which has root fs on lvm. The
libguestfs tool is not able to detect the filesystem type of this. I have
attached logs for reference.
These disks are exported from vmware vms.
Thanks,
Abhilasha Revur
2003 Dec 22
1
Unknow socket option report
Hello,
>From smb.conf man page:
"You may find that on some systems Samba will say "Unknown socket option"
when
you supply an option. This means you either incorrectly typed it or you
need
to add an include file to includes.h for your OS. If the latter is the
case
please send the patch to samba@samba.org <URL:mailto:samba@samba.org>."
I'm exactly in that
2005 Nov 21
0
Logon Failuter: Unknow user or bad password
Dear all
I have samba PDC, i added all the computer names with $prefixed in
/etc/passwd
tdc$:x:1020:501::/dev/null:/sbin/nologin
and added the computer with smbpasswd -a -m tdc
and added root with smbpasswd -a root
and gave password
but when i go to the tdc computer, and the computer to the domain name, it
says,
Logon Failure, Unknown username or Bad password,
But i am giving correct username
2017 Oct 17
0
ggridges help
The min_height = -0.25 is there to make it show cycle values down to -1/4.
You may want to change it to -1 so it shows more of the cycle values.
Bill Dunlap
TIBCO Software
wdunlap tibco.com
On Tue, Oct 17, 2017 at 1:26 PM, Roy Mendelssohn - NOAA Federal <
roy.mendelssohn at noaa.gov> wrote:
> yes, thanks, and I was getting close to that. One thing I found is the
> manual says the
2017 Jun 01
1
Reversing one dimension of an array, in a generalized case
Thanks again. I am going to try the different versions. But I probably won't be able to get to it till next week.
This is probably at the point where anything further should be sent to me privately.
-Roy
> On Jun 1, 2017, at 1:56 PM, David L Carlson <dcarlson at tamu.edu> wrote:
>
> On the off chance that anyone is still interested, here is the corrected function using
2004 Jan 21
0
Samba ver 2.2.2 - socket read - WinXP
Jan. 21, 2004
Dear All,
I have enjoyed some success with Samba version 2.2.2. I am using
it to serve Micro$ Access to end users. It works very well on a prior
version of Unix, with older Win2k clients. Now, with my current version,
and Win XP Pro, I have problems. Periodically, they get abruptly kicked out.
I get syslog errors which look like:
kforce-adm-# tail syslog
Jan 7 16:29:09
2001 Dec 20
0
Annoying error (read_socket_data: recv failure for 4)
Hello all,
I'm having troubles with a samba 2.2.2 server (on debian). Some clients are
having problems connecting, and are filling the logs with messages like
those below. This isn't the first time I've had this problem, nor is it the
first site. This is a win98 box I'm having troubles with now - it fails
trying to log onto the domain... although I'm fairly sure it affects
2017 Jun 01
0
Reversing one dimension of an array, in a generalized case
On the off chance that anyone is still interested, here is the corrected function using aperm():
z <- array(1:120,dim=2:5)
f2 <- function(a, wh) {
idx <- seq_len(length(dim(a)))
dims <- setdiff(idx, wh)
idx <- append(idx[-1], idx[1], wh-1)
aperm(apply(a, dims, rev), idx)
}
all.equal(f(z, 1), f2(z, 1))
# [1] TRUE
all.equal(f(z, 2), f2(z, 2))
# [1] TRUE
2017 Oct 17
0
ggridges help
Does the following work for you?
ggplot2::ggplot(plotFrame, aes(x = time, y = depth, height = cycle,
group = depth)) + ggridges::geom_ridgeline(fill="red", min_height=-0.25)
Bill Dunlap
TIBCO Software
wdunlap tibco.com
On Tue, Oct 17, 2017 at 12:43 PM, Roy Mendelssohn - NOAA Federal <
roy.mendelssohn at noaa.gov> wrote:
> I have tried:
>
> ggplot(plotFrame, aes(x =
2008 Mar 15
1
How to create following chart for visualizing multivariate time series
Let me take an artifical matrix :
dat = matrix(rnorm(200*200), 200, 200)
My goal is to visualize this matrix according to the procedure, described in previous mails. I took Mendelssohn's advice and got following advice :
?plot.im
Z <- setcov(owin())
plot(Z) .................... etc
However I can not reproduce this example in my problem. How I can change my data
2017 Jun 01
0
Reversing one dimension of an array, in a generalized case
Thanks to all for responses/. There was a question of exactly what was wanted. It is the generalization of the obvious example I gave,
>>> junk1 <- junk[, rev(seq_len(10), ]
so that
junk[1,1,1 ] = junk1[1,10,1]
junk[1,2,1] = junk1[1,9,1]
etc.
The genesis of this is the program is downloading data from a variety of sources on (time, altitude, lat, lon) coordinates, but all
2018 Jan 02
1
httr::content without message
Thanks to all that replied. I had just looked through the httr code and sure enough for a .csv mime time it calls readr::read_csv(). The httr::content docs suggest not using automatic parsing in a package, rather to determine mime type and parse yourself and Ben's suggestion also works if I do:
junk <- readr::read_csv(r1$content, col_types = cols())
Perfect. Using httr rather than
2017 Oct 17
2
ggridges help
yes, thanks, and I was getting close to that. One thing I found is the manual says the height is the distance above the y-line, which should be, but doesn't have to be positive. In fact, the time series are estimates of a cycle, and has negative values, which unfortunately are not included in my sub-sample. And the negative values are not handled properly (the series disappears for
2007 May 25
0
Sometimes PC can not find network path
Dear all,
I have a linux server that uses redhat AS4.I want to make a samba file
server.Because we have a windows 2003 domain,I must use "security =
ADS".The samba version is samba-3.0.10-1.4E.9.
The samba server joined windows 2003 domain successful.I can find samba
server in the "network neighborhood".Client PC access samba server must
confirms with PDC.The domain member
2001 Nov 28
2
Can't connect from Windows 2000
I recently upgraded my Linux install (Debian potato to woody) and now Samba
is no longer playing nice with Windows 2000. I can use smbclient on the
samba machine to connect to itself, so at least that's working. The error
from Windows is: "The semaphore timeout period has expired.".
I deleted the smb.log file at one point in an effort to reset it. I figured
it'd be created
2017 Aug 29
0
RMarkdown question
Although it is not an elegant solution, but if your output format is
HTML, you can add an arbitrary empty HTML element like <span
id="foo"></span> before your code chunk. Then you can jump to this
<span> via a link like "see [this code chunk](#foo)".
Regards,
Yihui
--
https://yihui.name
On Tue, Aug 29, 2017 at 1:30 PM, Roy Mendelssohn - NOAA Federal
2005 Oct 18
0
Error join samba PDC from XP
Hi.
Iv'e set up samba as PDC with LDAP and trying to connect a Windows XP Pro
machine to the domain.
When i'm trying to join the domain XP popups a logon-windows, but no one of
the accounts i have added will work to login,
XP say something like "Cannot find the selected domain or cannot connect".
I've also detected an error in /var/log/samba/log.nmbd which i dont