Displaying 20 results from an estimated 1000 matches similar to: "Problems copying digital images to Samba Share"
2002 Jun 17
1
uploading files to Samba server using Windows XP
When I try to copy a directory of files from Windows XP to my samba
server, I get additional files on the samba server that look like Windows
registry class IDs. Here is a sample:
-rw-r--r-- 1 jfayre jfayre 0 Mar 17 06:31 IMG_0470.JPG:{4c8cc155-6c1e-11d1-8e41-00c04fb9386d}:$DATA
-rw-r--r-- 1 jfayre jfayre 461574 Mar 24 07:15 IMG_0478.JPG
-rw-r--r-- 1 jfayre jfayre
2002 Jul 23
1
strange files appearing after file copy
Hello,
I just had something strange happen and could not find explanations in
the documentation, FAQs or mailing list.
The server is a Debian installation running Samba 2.2.3 (kernel 2.4.18
if interested). It has been recently upgraded from 2.0.x (I think x=6).
My smb.conf is at the bottom; the directory used is on the [public]
share.
The client runs Win2k (probably SP2).
I copied some files in
2002 May 23
1
alternate data streams problem
hi all,
I'm running into a strange problem:
I'm running a samba 2.2.3a server on a linux machine.
one win2k client is saving a directory full of pictures to this server but
all pictures files (jpg, tif...) are saved as three files, two of the as the
alternate data streams files of the original. it looks like this:
Pb060009.jpg (the original file)
2002 Jul 19
1
Copying Files to Shares?
Recently I setup samba 2.23 on a Red Hat 7.3 machine to be the Primary
Domain controller, my win2k machine logs in just fine with username and
password I setup sees the shares it should, however the problem I have is
if I try to copy something to one of the shares it copies hte file 3
times, one is the origianl one is blank, one is coded and is the same
file. And I can't seem to figure this
2002 Jul 23
1
Wierd Problem, appears Samba related perhaps?
Hello,
I'm relatively new to Samba, but have it set up on my RedHat 7.3 system, and
it's running great. Except for one thing, and I'm not sure if this is a
Samba
problem or a problem with my machines.
What the problems appears is that when I'm copying or moving images (jpegs,
bmps are the only two I've tried so far) from both my laptop and my desktop
(both Win2k mahcines),
2002 Oct 18
8
MS Access and Samba
Hi,
we still have some trouble running a MS Access-database on Samba. We now
tried it with v.2.2.6 on RH 7.3 but still we either get no acces on the
database simultanously or we run in problems with updating the database.
The problem is that we make some changes on one of the clients but the
changes are not visible to the other clients until they shut down the
database and reopen it. We
2003 Dec 21
0
rsync & smb errors while replacing illegal characters
Hello,
Last evening I did this recursive rsync:
rsync -avz data /mnt/RICEX0/DWT/Daredevil/1071865403/
..where data is a regular ext3 soft-RAID1 volume
...where /mnt/RICEX0/ is an NTFS hard-RAID10 volume mounted across VPN
using SMB.
And received errors that look to be generated by smb while trying to
recreate(?) the illegal characters.
Dec 20 04:30:55 daredevil kernel: smb_create:
2008 Mar 10
2
source() behavior I don't understand
temp.ttt <- "ttt <- 1\nttt"
conn.ttt <- textConnection(temp.ttt)
source(conn.ttt, echo=TRUE) ## name of variable is echoed
close(conn.ttt)
cat(file="c:/temp/temp.R", temp.ttt) ## name of variable not echoed
source("c:/temp/temp.R", echo=TRUE)
temp.abc <- "abc <- 1\nabc"
conn.abc <- textConnection(temp.abc)
source(conn.abc, echo=TRUE)
2018 May 01
0
How would I color points conditional on their value in a plot of a time series
You may also want to check this out:
plot(ttt, type = "p")
points(ttt, col = ifelse(ttt < 8, "black", "red"))
Eivind K. Dovik
Bergen, NO
On Tue, 1 May 2018, Christopher W Ryan wrote:
> Excellent! Worked like a charm. Thanks.
>
> --Chris Ryan
>
> On Tue, May 1, 2018 at 4:33 PM, William Dunlap <wdunlap at tibco.com> wrote:
>
>> The
2018 May 01
2
How would I color points conditional on their value in a plot of a time series
Excellent! Worked like a charm. Thanks.
--Chris Ryan
On Tue, May 1, 2018 at 4:33 PM, William Dunlap <wdunlap at tibco.com> wrote:
> The ts method for plot() is quirky. You can use the default method:
>
> plot(as.vector(time(ttt)), as.vector(ttt), type = "p", col=ifelse(ttt<8,
> "black", "red"))
>
>
> Bill Dunlap
> TIBCO Software
2018 May 01
2
How would I color points conditional on their value in a plot of a time series
How would I color points conditional on their value in a plot of a time
series. Something like this:
## demonstration data
ttt <- ts(rpois(12, lambda = 8), start = c(2000, 1), freq = 4)
ttt
plot(ttt, type = "p")
## doesn't work--all points the same color
plot(ttt, type = "p", col = ifelse(ttt < 8, "black", "red"))
## also doesn't work--all
2018 May 01
0
How would I color points conditional on their value in a plot of a time series
The ts method for plot() is quirky. You can use the default method:
plot(as.vector(time(ttt)), as.vector(ttt), type = "p", col=ifelse(ttt<8,
"black", "red"))
Bill Dunlap
TIBCO Software
wdunlap tibco.com
On Tue, May 1, 2018 at 1:17 PM, Christopher W Ryan <cryan at binghamton.edu>
wrote:
> How would I color points conditional on their value in a plot
2004 May 20
2
Get Slot from a Class
Hello, everyone,
I don't quite understand the following message:
> TTT <- t.test(1:10, y=c(7:20))
> class(TTT)
[1] "htest"
> TTT@p.value
Error: Trying to get slot "p.value" from an object whose class ("htest") is not defined
> TTT$p.value
[1] 1.855282e-05
Why the message says the class of TTT is not defined while class(TTT) gets
2006 Nov 22
1
question about the "solve" function in library "Matrix"
Hi:
I have some problems when I use the function "solve" function in a loop. In the following code, I have a diagonal martix "ttt" whose elements change in every iteration in a loop. I defined a "dpoMatrix"class before the loop so I do not need to define this class every time in the loop. The reason is to save some computing time. The code is below. The inverse
2012 Mar 14
1
[ESS] completion in [] (R internal completion fails)
Hello,
I am forwarding this from ESS mailing list, as it's a failure of
internal R completion system:
This fails:
utils:::.assignLinebuffer('iris[iris$Spec')
utils:::.assignEnd(15)
utils:::.guessTokenFromLine()
utils:::.completeToken()
utils:::.retrieveCompletions() ## -> [1] "iris[iris$Spec"
This works
utils:::.assignLinebuffer('iris[ iris$Spec') # note the
1997 Dec 02
1
R-alpha: two-sided to one-sided formula
At times we want to convert a two-sided formula to a one-sided
formula. In S we can do this by dropping the second entry in the
formula. In R that object no longer has a formula class.
R> ttt <- score ~ age | Infant
R> class(ttt)
[1] "formula"
R> length(ttt)
[1] 3
R> ttt[-2]
[[1]]
~
[[2]]
age | Infant
R> class(ttt[-2])
NULL
R> do.call("~",
2009 Jul 10
1
getting a timeseries element into a string
I have a timeseries object, ts, and want to get the first date in the series
into a string so I can concatenate it with a SQL query. Input and output are
shown below. I must be missing something very basic, but I can't seem to
pry the data ("2008-07-01") into a string variable. Any suggestions would
be appreciated.
Thank you,
Andrew
=====script:
class(ts)
(ts[1,0]) #returns
2010 May 07
2
Problems with the IMAP proxy after upgrading from dovecot 1.1.16 to 1.211
We have frequent timeout problems after upgrading our imap servers
from dovecot 1.1.16 to dovecot 1.2.11. One server acts as proxy only,
and the other one is the "real" imap server". The credentials for the
proxy service are stored in a remote MYSQL database.
There were no trouble with dovecot 1.1.16. But now, with the most
recent version, we get frequent login failures. It
2010 Apr 02
1
can't read excel file with read.xls()
Hi, I encountered a problem of not being able to read in an excel spreadsheet using read.xls() in the xlsReadWrite package. can anyone help? Here is an example code
write.xls(matrix(1:9,nrow=3),"ttt.xls")
read.xls("ttt.xls")
Error in read.xls("ttt.xls") :
Unexpected error. Message: Can't find the file "ttt.xls"
The "ttt.xls" file was
2007 Jun 21
1
Recycle bin and ACL
Hello,
we are using the vfs module recycle with the following config:
vfs objects = recycle
recycle: repository = .Papierkorb
recycle:directory_mode = 0777
recycle:subdir_mode = 0777
recycle: keeptree = Yes
recycle: exclude = *.tmp, *.temp, *.log, *.ldb
recycle: exclude_dir = tmp
recycle:versions = Yes
Problem is that everybody can see deleted documents in the
recycle bin.
But if I set