Sponsored Content
Full Discussion: Massive ftp
Top Forums Shell Programming and Scripting Massive ftp Post 303031147 by tricampeon81 on Friday 22nd of February 2019 07:01:35 AM
Old 02-22-2019
if you're right excuse me, I'll try my code again .. and thanks for the help
 

7 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Send a massive message to the connected users

How can I send a message for all the users connected into the system at the same time? Let's say I need to reboot the server and I ask the users to save their jobs becasue the server will be rebooted? (5 Replies)
Discussion started by: agasamapetilon
5 Replies

2. UNIX for Advanced & Expert Users

Solution for the Massive Comparison Operation

Hi We have 50 million records in mainframes DB2. We have a requirement to Record the Change Data Capture(CDC) records. i.e New Records or Updated Records that were added into the DB2. Unfortunately we dont have any column indicators to give the details of the changes made to the records. ... (8 Replies)
Discussion started by: raghav288
8 Replies

3. UNIX for Dummies Questions & Answers

massive tarred grib files totally unacceptable

Hi, I have 7 terabytes of tar files, one for every single day since 1980. Inside these tar files are GRIB files, each with 100+ variables. There's 8 GRIBs in each tar, corresponding to different times of the day. I need 6 friggin variables..., and it takes TWO WEEKS TO EXTRACT ALL THE TAR FILES... (3 Replies)
Discussion started by: sammysoil
3 Replies

4. Shell Programming and Scripting

Unix Shell basic loop massive n00b

hey guys I would really appreciate some help, i need to do a project for a job that requires minimal UNIX scripting and im REALLY stuck basically Im stuck at what i believe is something really simple but i just dont have a clue how to do it efficiently and properly and i REALLY appreciate some... (16 Replies)
Discussion started by: thurft
16 Replies

5. Homework & Coursework Questions

having massive trouble with 5 questions about egrep!

Hi all! I need help to do a few things with a .txt file using egrep. 1. I need to list all sequences where the vowel letters 'a, e, i, o, u' occur in that order, possibly separated by characters other than a, e, i, o, u; consisting of one or more complete words, possibly including punctuation. ... (1 Reply)
Discussion started by: dindiqotu
1 Replies

6. Shell Programming and Scripting

Massive Copy With Base Directory

I have a script that I am using to copy around 40-70k files to a NFS NAS. I have posted my code below in hopes that someone can help me figure out a faster way of achieving this. At the end of the script i need to have all the files in the list, copied over to the nas with source directory... (8 Replies)
Discussion started by: nitrobass24
8 Replies

7. Solaris

Solaris 10 massive SMF log file

I found that there was a SMF log file: /var/svc/log/milestone-multi-user-server:default.log.0 which occupied around 19G bytes. Please help me how to purge this massive file. Can I just use cat /dev/null > /var/svc/log/milesto..... to this file without any interruption to a non-stop system?... (11 Replies)
Discussion started by: AlexLi
11 Replies
DVBACKUP(1)						      General Commands Manual						       DVBACKUP(1)

NAME
dvbackup -- Converter from arbitrary data to a DV stream SYNOPSIS
dvbackup [--version] [-n|--ntsc-mode] [-d|--decode] [-t|--verify] [-b|--set-backup-title=TITLE] [--set-picture=PPM-FILE] [-v|--ver- bose] [-p|--prefix=COUNT] [--test=COUNT] [-r|--recover] [--enable-audio] [-?|--help] [--usage] DESCRIPTION
This manual page documents briefly the dvbackup tool. This manual page was written for the Debian distribution because the original program does not have a manual page. As you probably know, current digital camcorders can save approximately 13 GB of data on those tiny DV cartridges at a speed of 3.6 MB/sec- ond. That's fast. Very fast. It's faster than most DAT streamers which only work at 1 MB/sec or less. We can not use all of the data, but 10 GB should be good enough for everyone. That's nice, but how can we use this to save data on it? And here comes the fun part: If you read the DV documentation carefully, you will notice that the AC DCT coefficients of the video data blocks (8x8 pixels in size) get a fixed amount of space in the DV data stream, but can be terminated earlier with a certain code sequence. So let's have some fun: We terminate the AC coefficients immediately leaving only the DC coefficient for a fancy penguin picture and use the rest for our backup data. Future implementations could easily add a little pic- ture showing the currently written file or something like that. Then there is the audio data, which is written uncompressed onto the tape. That means: We tell the camcorder at the beginning of each frame, that we won't use audio at all but fill the space reserved for it with data. Easy, but somewhat hacky. In fact, I don't know, if this works on every camcorder and not only on mine (a Sony VX700). Your mileage may vary. To finally bring the data on tape, you have to use an additional utility, called dvconnect, which is (hopefully soon) included into libdv. Take a look at the patch manager if it's not in already. And then it's time to rock and roll: Advantages of dvbackup over other backup technologies relatively cheap (the cheapest camcorder will be enough, but if you have already one...) the tapes are quite cheap open standard: if your streamer, aah camcorder dies you can rescue your data with any other one (except PAL/NTSC need to fit), you are not bound to a special company it's faster than many streamers and it will be more comfortable - you can use the search-index function to "jump" to a recording tapes (re)wind faster than many streamers you do not need to rewind the tape to eject it Disadvantages of dvbackup you do not get any warranty :-) Usage of the Unix client Press record on your camcorder. (Or use your favorite avc control program for this. For the VX700 this doesn't work and you have to hack something together, that uses LANC. I might publish my "solution" for this soon...) Type "find . |cpio -o -H crc |dvbackup --prefix=125 |dvconnect -s" to stream directly to your camcorder. This most likely does only work on very fast harddisks and filesystems. You might try something like "find . |cpio -o -H crc |dvbackup --prefix=125 |dvconnect -s -b 500" Alternatively, you can write the data in several parts on tape. Just go experimenting, and mail me the resulting backup scripts... Stop your camcorder and rewind. Now it's time to verify: Press play on tape ;-) Type "dvconnect |dvbackup -t" and watch for crc errors. The data corruption bug mentioned for version 0.0.1 seems to be fixed so there is no excuse in not using this little nifty program ;-) If you want to restore: Do a simple "dvconnect |dvbackup -d|cpio -imV". CPIO will also happily tell you about CRC errors. So you might want to check using cpio's archive test mode too. But keep in mind, that cpio's CRC function is not that fast! AUTHOR
This manual page was written by Robert Jordens jordens@debian.org for the Debian system (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 2. On Debian systems, the full text of this license can be found in the file /usr/share/common-licenses/GPL-2. DVBACKUP(1)
All times are GMT -4. The time now is 07:57 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy