search for: testfile1

Displaying 20 results from an estimated 21 matches for "testfile1".

Did you mean: testfile
2003 May 01
1
Batch Mode?
...ption on the first batch files against an empty destination directory, it works fine recreating the expected test files. But, then I run it on the second set of batch files, which are supposed to apply changes to my testfile, it errors out: rsync --read-batch=batch1 --progress --stats -v dest_dir/testfile1 [ Happy results here, testfile1 created in dest_dir ] rsync --read-batch=batch2 --progress --stats -v dest_dir/testfile1 testfile1 rsync: error writing 64 unbuffered bytes - exiting: Connection reset by peer rsync error: error in rsync protocol data stream (code 12) at /tmp/rsync-2.5.5/io.c(463)...
2017 Sep 22
2
sparse files on EC volume
...to compare performance between Gluster FUSE mount and formated sparse files (located on the same Gluster FUSE mount). The Gluster volume is EC (same for both tests). I'm seeing HUGE difference and trying to figure out why. Here is an example: GlusterFUSE mount: # cd /mnt/glusterfs # rm -f testfile1 ; dd if=/dev/zero of=testfile1 bs=1G count=1 1+0 records in 1+0 records out 1073741824 bytes (1.1 GB) copied, 9.74757 s, *110 MB/s* Sparse file (located on GlusterFUSE mount): # truncate -l 100GB /mnt/glusterfs/xfs-100G.img # mkfs.xfs /mnt/glusterfs/xfs-100G.img # mount -o loop /mnt/glusterfs/xfs...
2017 Sep 26
0
sparse files on EC volume
...and trying to figure out why. Could you explain what hardware configuration are you using ? Do you have a plain disk for each brick formatted in XFS, or do you have some RAID configuration ? > > Here is an example: > > GlusterFUSE mount: > > # cd /mnt/glusterfs > # rm -f testfile1 ; dd if=/dev/zero of=testfile1 bs=1G count=1 > 1+0 records in > 1+0 records out > 1073741824 bytes (1.1 GB) copied, 9.74757 s, *110 MB/s* > > Sparse file (located on GlusterFUSE mount): > > #?truncate -l 100GB /mnt/glusterfs/xfs-100G.img > # mkfs.xfs /mnt/glusterfs/xfs-100...
2017 Sep 26
2
sparse files on EC volume
...ou explain what hardware configuration are you using ? > > Do you have a plain disk for each brick formatted in XFS, or do you have > some RAID configuration ? > > >> Here is an example: >> >> GlusterFUSE mount: >> >> # cd /mnt/glusterfs >> # rm -f testfile1 ; dd if=/dev/zero of=testfile1 bs=1G count=1 >> 1+0 records in >> 1+0 records out >> 1073741824 bytes (1.1 GB) copied, 9.74757 s, *110 MB/s* >> >> Sparse file (located on GlusterFUSE mount): >> >> # truncate -l 100GB /mnt/glusterfs/xfs-100G.img >> # m...
2005 Mar 21
3
routes.rb question.
...the file names which are HREFs to those file. I build the HREF string dynamicaly as PATH_TO_DOC_ROOT + "file_name". My PATH_TO_DOC_ROOT = http://127.0.0.1:3000/docman/public/docs. So, the final link that I am interested in might look like this: http://127.0.0.1:3000/docman/public/docs/testfile1.html. However, when I click on the link, I get an error: -- No route for path: "docman/public/docs/testfile1" -- etc. I''ve looked at the routes.rb documentation, but still can''t figure out what needs to be done. How do I modify the routes.rb to make all files in /publ...
2017 Sep 27
0
sparse files on EC volume
...Could you explain what hardware configuration are you using ? > > Do you have a plain disk for each brick formatted in XFS, or do you have some > RAID configuration ? > > > > > Here is an example: > > GlusterFUSE mount: > > # cd /mnt/glusterfs > # rm -f testfile1 ; dd if=/dev/zero of=testfile1 bs=1G count=1 > 1+0 records in > 1+0 records out > 1073741824 bytes (1.1 GB) copied, 9.74757 s, *110 MB/s* > > Sparse file (located on GlusterFUSE mount): > > # truncate -l 100GB /mnt/glusterfs/xfs-100G.img > # mkfs.xfs /mnt/glusterfs/xfs-100...
2017 Jan 03
2
Inconsistent behavior using 3.1.2 from macOS 10.12.2 to an AFP mount
...This outputs errors such as: rsync: get_xattr_data: lgetxattr(""./mnt/testDir/./testFile2"","com.apple.quarantine",0) failed: Attribute not found (93) When I use a few -vvv this pattern is present: [sender] pushing local filters for ./mnt/testDir/ [sender] make_file(testFile1,*,2) [sender] expand rsync_xa to 40 bytes, did move [sender] make_file(testFile2,*,2) rsync: get_xattr_data: lgetxattr("" .... The com.apple.quarantine attribute is on testFile1 and so of course it is "not found" on the second file. The first file was copied without any extende...
2008 Oct 29
1
quota for ocfs2 do not warn a exceed for block soft-limit sometimes
...e steps to reproduce this issue: 1.mkfs.ocfs2 --fs-features=usrquota,grpquota ... /dev/sdc5 2.mount -t ocfs2 -o usrquota,grpquota /dev/sdc5 /quota 3.useradd -m quotauser 4.setquota -u quotauser 1024 2048 10 20 -a /dev/sdc5 5.quotaon -avug 6.su - quotauser; cd /quota 7. dd if=/dev/zero of=./testfile1 bs=1024 count=1024 1024+0 records in 1024+0 records out 1048576 bytes (1.0 MB) copied, 0.00825239 seconds, 127 MB/s dd if=/dev/zero of=./testfile2bs=1024 count=10 sdc5: warning, user block quota exceeded. 10+0 records in 10+0 records out 10240 bytes (10 kB) copied, 0.000133629 seconds, 76.6 MB/s...
2010 Jul 07
0
scp forces original access permissions when owner lacks write access
...he filesystem. If the owner did not have write access then scp performs a chmod command after copying the data so that the copied file ends up with the original permissions. For example if I have mounted /samba_share which masks new file permissions with 440 on the machine remote_machine: $ touch testfile1 testfile2 $ chmod u-w testfile2 $ ls -l -rw-r--r-- 1 someuser somegroup 0 Jul 6 18:04 testfile1 -r--r--r-- 1 someuser somegroup 0 Jul 6 18:04 testfile2 $ scp testfile* remote_machine:/samba_share $ ssh remote_machine 'ls -l /samba_share' -r--r----- 1 someuser somegroup 0 Jul 6 18:10 testfil...
2008 Oct 21
1
behavior of ALU Scheduler
...ave been written the least-used volume option alu.stat-refresh.interval 10sec # Refresh the statistics used for decision-making every 10 seconds subvolumes brick1-stor01 brick1-stor02 end-volume And I have the following directory structure visible from the client: /mnt/gfs/test1 files: testfile1.dat testfile2.dat /mnt/gfs/test2 In directory test1 I have for example files: testfile1.dat and testfile2.dat which are physically located respectively testfile1.dat on stor01 testfile2.dat on stor02 If the space on the bricks is such that ALU scheduler is in active state, in this partic...
2006 Mar 23
17
Poor performance on NFS-exported ZFS volumes
...39;'s amiss. I mounted the zfs-based nfs share on the linux host and tested it like so and ran tests with dd: --------------- [root at hercules]/>mount -o rw,vers=2,hard,intr,rsize=8192,wsize=8192 ds2.rs:/ds-store/rs/test /umbc/test [root at hercules]/>time dd if=/dev/zero of=/umbc/test/testfile1 bs=16k count=16384 16384+0 records in 16384+0 records out real 170m51.619s user 0m0.060s sys 0m5.720s --------------- Ooof. 170 minutes to write a 256MB file. Sanity-check time, lets try the same thing on a UFS-backed export from the same server: --------------- [root at hercules]/>...
2013 May 23
11
raid6: rmw writes all the time?
Hi all, we got a new test system here and I just also tested btrfs raid6 on that. Write performance is slightly lower than hw-raid (LSI megasas) and md-raid6, but it probably would be much better than any of these two, if it wouldn''t read all the during the writes. Is this a known issue? This is with linux-3.9.2. Thanks, Bernd -- To unsubscribe from this list: send the line
2017 Jan 03
0
Inconsistent behavior using 3.1.2 from macOS 10.12.2 to an AFP mount
...nc: get_xattr_data: > lgetxattr(""./mnt/testDir/./testFile2"","com.apple.quarantine",0) failed: > Attribute not found (93) > > When I use a few -vvv this pattern is present: > > [sender] pushing local filters for ./mnt/testDir/ > [sender] make_file(testFile1,*,2) > [sender] expand rsync_xa to 40 bytes, did move > [sender] make_file(testFile2,*,2) > rsync: get_xattr_data: lgetxattr("" .... > > The com.apple.quarantine attribute is on testFile1 and so of course it is > "not found" on the second file. The first file w...
2010 Feb 10
1
eval function with javascript-semantics possible in R?
...the eval-function in javascript which can interpret a string as code on runtime, thereby allowing things like for (i in c(1:2)) { eval(items + "i") <- read.csv(eval(filename+ i), dec=","); } which would execute (with filename="testfile"): items1 <- read.csv(testfile1, dec=","); items2 <- read.csv(testfile2, dec=","); The way I intend to use it is to define a string list containing names of date.frames, and interate this list to perform some function: createTable <- function(latentVariableNames) { for (currentName in names(latentVari...
2004 Feb 13
1
ACL bug
...default:group::--- default:group:admins:rwx default:mask::rwx default:other::--- The owning group or world shall never have access to this directory (and to all children), only members of group 'admins' shall have. Now if I create a file on the console, it has the following ACL: # file: testfile1 # owner: dariush # group: schueler user::rw- group::--- group:admins:rwx #effective:rw- mask::rw- other::--- You'll see that group:: is unchanged and mask:: has shortened to rw- Now a file that I've created through Samba: (create mask = 0660 or create mask = 0600; make no d...
2006 Nov 12
2
DO NOT REPLY [Bug 4220] New: --backup causes "stat" failed message when trying to delete a directory
...putting it in place. The command I am using is: rsync -av --force --ignore-errors --delete --backup --backup-dir=/Users/eric/Desktop/rsyncBackup1 /Users/eric/Desktop/rsyncSource/ /Users/eric/Desktop/rsyncDest/ When the source directory (/Users/eric/Desktop/rsyncSource/) contains the following: testfile1.txt testfolder testfile2.txt The first time I run the command, it syncs correctly to /Users/eric/Desktop/rsyncDest/, as expected. Now, if I delete all the files from the source, and run the command again, I get the following output: ....... building file list ... done backup_dir is /Users/...
2011 Mar 29
0
[PATCH] Implementation for sl_initramfs_add_file() in lua.c32
...ct initramfs *initramfs = luaL_checkudata(L, 1, SYSLINUX_FILE); - /* FIXME: This code is doing nothing */ - //const char *filename = luaL_checkstring(L, 2); - void *file_data = NULL; - size_t file_len = 0; - - return initramfs_add_file(initramfs, file_data, file_len, file_len, "/testfile1", 0, 0755); + struct syslinux_file *file = luaL_checkudata(L, 2, SYSLINUX_FILE); + const char *dst_filename = luaL_checkstring(L, 3); + size_t file_len = file->size; + return initramfs_add_file(initramfs, file->data, file_len, file_len, dst_filename, 0, 0755); } static int...
2010 May 19
1
permission issues between 3.4.0 & 3.0.3?
...his client same behaviour if mounting directly as: mount -t cifs //w2k3server/share1/dir1/dir2/target /mnt/smb cd /mnt/smb ls -> "." doesn't exist Second try with Ubuntu -samba 3.4.0- mount -t cifs //w2k3server/share1/dir1/dir2/target /mnt/smb cd /mnt/smb ls -> works fine > testfile1.txt -> works fine But I should use the CentOS box, so I compiled from sources the RPM of 3.4.0, 3.4.1, 3.4.8 ... same results with 3 versions -> identical as the first try. I can't figure out what is failing here, the "bug" is still live with CentOS + samba-common/samba-client...
2008 Sep 09
3
directories not correctly recognized rsync-3.0.4
Hi, I'm running rsync-3.0.4 on my UNIX system. I've just updated from rsync-2.6.9. I'm facing a general problem with the execution of files during a transfer process. The situation: 2 Directories (dir1 and dir2) on one machine with a some files in dir1 which shall be translated to dir2. rsync does not correctly recognize dir1 and dir2 as directories. It tries to transfer dir1 as a
2013 Apr 17
2
libvirt support for qcow2 rebase?
I have not found support in libvirt (nor virsh) for doing the equivalent of "qemu-img rebase ....". The use case: You have copied a qcow2 stack and the new files have different names or reside in a different directory. Therefore you need to change the backing file. Is there a way to do this? Is this a planned addition to libvirt? Harald -------------- next part