Displaying 20 results from an estimated 1000 matches similar to: "mv renames the wrong file"
2008 Mar 28
1
Problem redirecting output stream of wine
Hi all,
I'm using an Ubuntu 7.10 and the latest (?) version of Wine ( 0.9.58 ).
I'm running a windows application that seems to work properly, but i cannot manage to redirect the output to a file:
$ wine cmd.exe
Usage : cmd.exe [filename1] [filename2] ...
$ wine cmd.exe > /dev/null
Usage : cmd.exe [filename1] [filename2] ...
$ wine cmd.exe 2> /dev/null
Usage : cmd.exe [filename1]
2007 Aug 20
1
system() fails with fc.exe (PR#9868)
Full_Name: Jens Oehlschl?gel
Version: 2.5.1
OS: Windows
Submission from: (NULL) (62.159.183.42)
Even when specifying the full path, the output of fc is not sent to R (neither
shown nor returned). For example
> system('c:\\WINDOWS\\system32\\fc.exe /?',intern=TRUE)
character(0)
When I do the same from python 2.3, I get
>>> import os
>>>
2017 Apr 09
0
failed to set times on ... Invalid argument (22) and what to do with it
Dear All,
Along with the files that suddenly disappear, we have a bit of a problem
with these that do not.
Namely, in my test runs I can see a small but stable set of files, that
rsync is repeatedly trying to transfer, and then repeatedly fails to
updates their times ; and then the story repeats itself.
The situation is illustrated by the log snippet below, where I have
changed file names to
2023 Nov 06
1
strange link files
Dear all,
I recently upgraded my clients to 10.4, while I left the servers (distrubuted only) on glusterfs 9.
I'm seeing a strange effect when I do a "mv filename1 filename2":
filename2 is uplicated, one time with zero size and sticky bit set.
In generally, I know that glusterfs creates link files (size zero and sticky bit set) when the new filename is hashed to a different
2007 Oct 15
1
The "condition has length > 1" issue for lists
I have the following code:
list1 <- list()
for (i in list.files(pattern="filename1")){
x <- read.table(i)
list1[[i]] <- x
}
list2 <- list()
for (i in list.files(pattern="filename2*")){
x <- read.table(i)
list2[[i]] <- x
}
anslist <- vector('list', length(list1))
for(i in 1:length(list1))
if (list1[[i]] & list2[[i]] >1)
2008 Jul 17
2
Passing array to the email body using ActionMailer
Hi, all
I am new to actionmailer. I am writing a script that sends emails
contains lots of file names.
So the email will look like:
hi,
filename1
filename2
filename3
.
.
.
filenameN
So I want to pass an array containing all the filenames into the email
body.
My code is below:
class Notifier < ActionMailer::Base
def log_report(recipient, files)
from
2005 Dec 23
6
file_column and HABTM
I have several models that will be using file_column by way of the
"Picture" class (HABTM). Right now, all pictures are stored in:
public/picture/image/1/filename1.jpg
public/picture/image/2/filename2.jpg
Is there a way I can dynamically define the "store_dir" based on the
model? For example, if I have "user", "product" and "place" models all
2003 Sep 18
2
bad hardlinks with rsync
Hi List
I've experienced some problems with rsync. I'm backuping a complete
machine's rootdirectory. After completion I see in the log of the
output, that rsync links some files which are surely *not* the same
on the source System. Or well, it says, that it makes links, using
the filename1 => filename2 notation. On the source System this files
are not the same and some files are
2010 Sep 10
8
convert "1", "10", and "100" to "0001", "0010", "0100" etc.
Hi,
Is there an easy way to convert numbers into a form such
that they all have the same number of digits?
e.g.:
"1", "10", and "100"
...become...
"0001", "0010", "0100" etc.
I ask because I am producing a large number of files that
need to sort consistently by filename. Currently I get this
kind of sorting:
filename1
filename10
2004 Oct 21
0
compile errors samba 3.0.7 vfs
Hi all,
sorry for the long posting.
Samba 2.2.x is outdated. Trying to switch to 3.0.7 with no success. The
vfs layer is one of my current problems. Googled some time for an
solution for this:
[2004/10/21 20:04:00, 0] smbd/server.c:main(760)
smbd version 3.0.7 started.
Copyright Andrew Tridgell and the Samba Team 1992-2004
[2004/10/21 22:12:07, 0] smbd/server.c:main(760)
smbd version
2010 Aug 08
0
Project: writing a vfs module to preverse permissions with MS Office
Hello list,
Short introduction: I'm Pierre, on my non-free time I work for Red Hat
in Farnborough, UK. I'm not really using Samba extensively myself, but
how could one not love a source tree containing torture.c and weird.c?
About that, if anyone can explain what the latter is for, I'd be very
interested... "Add the weird charset in 3_0 and build it by default
for ./configure
2005 Dec 22
2
Samba 3.0.21 + PANIC: internal error + lib/fault.c
Hi,
yesterday I compiled an installed samba 3.0.21 on a solaris 8 box (gcc
3.4.2). Since then I frequently see this error message in the log.
[2005/12/22 15:55:39, 0] lib/fault.c:fault_report(36)
===============================================================
[2005/12/22 15:55:39, 0] lib/fault.c:fault_report(37)
INTERNAL ERROR: Signal 10 in pid 27816 (3.0.21)
Please read the
2020 Jan 03
1
Exclude-from file format?
I have seen two main styles in examples for using rsync with exclude-from.
The first is simply a list of filename, one per line.
The second is a list of filenames, one per line, prefixed with either a - or a + to indicate exclude/include. Which is correct?
Also, none show the correct style with a filname containing spaces, though I assumed quoting is OK
Exclude1.txt:
- filename1
- ?file name
2011 Nov 21
1
Read from HTML file, print if see a specific string
So basically I have made a HTML file with a table in it.
Column 3 contains a GenBank number and is always proceeded by "=GenBank">".
I want to read the file and return the number which comes directly after
this (the contents of column 3).
Ideally I would like to save this number as a string for use later in the
script, but any help is good help. Been at this for HOURS and
2010 Apr 17
0
[LLVMdev] understanding the opt tool
Thanks duncan and samuel. I guess the optimization about striping dead
prototypes was not working because of "no dead prototypes" to strip. The
-std-compile-opts option works. I can see a change. And @samuel, I tried the
clang's -o0 optimization level compiling, but I could not find any
difference with or without that switch in the bitcode file generated. I used
this command:
clang
2006 Aug 02
1
[LLVMdev] Mozart / llvm
Hello,
I'm a French student in computing science and I'm interested in your
llvm project. We plan to build a new OS design using the Mozart-Oz
language ( http://hurd.gnufans.org/bin/view/Hurd/NextHurd ). Could we
"easily" implement a Mozart front-end to llvm ? Do you think llvm could
be a good alternative to gcc for our project ?
http://www.mozart-oz.org
2004 Jan 29
0
VFS - audit errors?
Greetings ...
I saw a question about this go out a little while ago, I was
wondering, if they are bad, or if I can just ignore them?
I am using a Samba 3.0.2rc1 if that makes a differance ...
Thanks
Mailed
Lee
Jan 29 09:58:09 nasrec smbd_audit[19242]: rmdir ./ failed: Invalid argument
Jan 29 09:58:09 nasrec smbd_audit[19242]: [2004/01/29 09:58:09, 0]
2007 Feb 09
0
opendir messages with log level = 1 and extd_audit
Hi,
I'm using samba 3.0.23d on Debian Etch and wat to use the extd_audit vfs
module.
In the global section of my smb.conf I use:
log level = 1 vfs:0
And in the share section:
vfs objects = extd_audit
With log lovel 0 for the vfs module I expected to see messages about
deleted/unlinked files and directories + mkdir commands. In fact I get opendir
messages too. This is filling up the
2007 Nov 21
2
Scripting help please
AxCrypt seems to give a problem passing target filenames and so I
created a script to correct this.
I can open axx files and encrypt any file by right mouse-clicking on it
in Ubuntu. I'm a bit new to this scripting and I wondered if anyone
could get this script down to one line so that it could be put as a
simple 'open with' line. At the moment it is a nautilus script and is
2010 Apr 17
3
[LLVMdev] understanding the opt tool
Hello Kalyan,
There is one more thing you should know: Clang has maximum optimization turned on by default. You need to specify -O0 to turn it off if you want to see what opt does without clang running all of the optimizations first.
--Sam
----- Original Message ----
> From: Duncan Sands <baldrick at free.fr>
> To: llvmdev at cs.uiuc.edu
> Sent: Sat, April 17, 2010 2:00:00 AM