search for: rewound

Displaying 8 results from an estimated 8 matches for "rewound".

Did you mean: rebound
2003 Aug 20
1
(Fwd) Lost data on FreeBSD tape (fwd)
...bald, August 2003 * * If you build this program with: * * c++ -g -O2 -Wall -c tapetest.c * c++ -g -O2 -Wall tapetest.o -o tapetest * * Procedure for testing tape * ./tapetest /dev/your-tape-device * rewind * rawfill * rewind * scan * * The output will be: * * ======== * Rewound /dev/nsa0 * *Begin writing blocks of 64512 bytes. * ++++++++++++++++++++ ... * Write failed. Last block written=17294. stat=0 ERR=Unknown error: 0 * weof_dev * Wrote EOF to /dev/nsa0 * *Rewound /dev/nsa0 * *Starting scan at file 0 * 17294 blocks of 64512 bytes in file 0 * End of...
2007 Dec 19
1
unexpected behavior from gzfile and unz
...t;scan()" depending on how the file is opened with "gzfile" or "unz". More specifically: > file <- gzfile("file.gz") > readLines(file,1) [1] "a\tb\tc" > readLines(file,1) [1] "a\tb\tc" > close(file) It seems that the stream is rewound between calls to readLines. The same is true if I replace readLines with scan. However, if I set argument 'open="r"', then rewinding does not occur: > file <- gzfile("file.gz",open="r") > readLines(file,1) [1] "a\tb\tc" > readLines(file...
2016 Apr 12
2
Failed to re-index objectSid after botched DLZ back-end update
...loc - ../lib/ldb/ldb_tdb/ldb_index.c:1148: unique index violation on objectSid in CN=dns-rhea,CN=Users,DC=knockinc,DC=loc') As best I can tell, a "dns-rhea" user (Rhea is the DC I'm trying to upgrade) got made, the ojectSid ID got ticked up, the other DCs have that number, but my rewound DC doesn't know it was ever made and I'm stumped. What can I do to get out of this mess? Thanks, Matthew ©2016 KNOCK, inc.  All rights reserved. KNOCK is a registered trademark of KNOCK, inc. This message and any attachments contain information, which is confidential and/or privileged.  ...
2012 Dec 17
3
getdents spinning on 0x7fffffff
...e code recently and noticed that we still have the double whammy of allocating dir entry positions with parent_dir->counter++ and that weird setting of f_pos to 2^31-1. So after enough creates (and deletes :)) in a directory we end up with an entry item whose key is past that value. f_pos gets rewound instead of being set to that magical EOF. readdir() gets stuck returning the entries after INT_MAX over and over (just one in this strace): getdents(3, {{d_ino=257, d_off=2147483647, d_reclen=32, d_name="file-54"}}, 32768) = 32 getdents(3, {{d_ino=257, d_off=2147483647, d_reclen=32, d_n...
2006 Apr 11
0
Large file support (up and down) for Mongrel 0.13.3
...ys ago. [2] I''m in the mood to keep polishing this, so does anyone lust after mod_uploadprogress support? [3] HttpRequest#initialize also had a TODO about storing large request bodies in a Tempfile. I''ve fleshed out that code so @body now has either a StringIO object or an open/rewound Tempfile object. It works, you can upload gigs of files just fine. I''m honoring CHUNK_SIZE. There''s a threshold in a constant called MAX_BODY. If a file is larger, it''ll get canned in a Tempfile. Currently, it''s set to the same size as MAX_HEADER. I''...
2011 Feb 07
0
[xen-unstable test] 5665: regressions - FAIL
...n Gross <juergen.gross@ts.fujitsu.com> changeset: 22870:544b103b4d97 user: Ian Jackson <Ian.Jackson@eu.citrix.com> date: Fri Feb 04 18:47:39 2011 +0000 libxl: vncviewer: make autopass work properly The file we write the vnc password to must be rewound back to the beginning, or the vnc viewer will simply get EOF. When the syscalls for communicating the password to the vnc client fail, bomb out with an error messsage rather than blundering on (and probably producing a spurious password prompt). Following this patch, x...
2003 Dec 01
0
No subject
...that this is a NON-REWINDING device) TAPE_FILE="/dev/nrst4"; # Command for rewinding the tape when done REWIND_CMD="mt -f ${TAPE_FILE} rewind"; ############# End Configuration section of script ################### ${REWIND_CMD} # Don't assume the tape has already been rewound for CLIENT in `ls ${SMB_INDEX_DIR}` do SMB_SVR=${SMB_INDEX_DIR}/${CLIENT} tar cvf ${TAPE_FILE} ${SMB_SVR} while read SHARE do echo ${SHARE} smbtar -v -s ${CLIENT} -u ${SMB_USER} -p ${SMB_PASSWD} \ -t ${TAPE_FILE} -x ${SHARE} done <${SMB_SVR} done ${REWIND_CMD} ############# End...
2003 Dec 01
0
No subject
...mba <samba.lists.samba.org> List-Unsubscribe: <http://lists.samba.org/mailman/listinfo/samba>, <mailto:samba-request@lists.samba.org?subject=unsubscribe> List-Archive: http://lists.samba.org/pipermail/samba/ Hello, If you made a tar on a tape with the device st0 then the tape is rewound before its writing. Thus, if you make 2 tar on the same tape, you will have only the last tar. For no rewind tar, try with the device nst0. Then you will have the 2 tar on the same tape. For reading the tape, you must read the first tar and then the second tar with the same device (nst0) look man...