Edited wiki page through web user interface.
This commit is contained in:
parent
2772c38111
commit
506171281b
@ -241,19 +241,19 @@ The -n option specifies the file containing all nodes. For every node, PPSS will
|
|||||||
|
|
||||||
*Transfer files to local host*
|
*Transfer files to local host*
|
||||||
|
|
||||||
If this option is specified, the file is copied from the source directory to a local temporary working directory for local processing. This is necessary if SCP is used to access files that must be processed.
|
--download: If this option is specified, the file is copied from the source directory to a local temporary working directory for local processing. This is necessary if SCP is used to access files that must be processed.
|
||||||
|
|
||||||
If files are distributed over NFS or SMB, the files seem to be present on the local system, because it is just a mount point and thus just a part of the local file system. In this case, the -t option can be omitted, however it it is specified, files are copied to a local directory using 'cp'.
|
If files are distributed over NFS or SMB, the files seem to be present on the local system, because it is just a mount point and thus just a part of the local file system. In this case, the --download option can be omitted.
|
||||||
|
|
||||||
*The output directory*
|
*The output directory*
|
||||||
|
|
||||||
If the -t option is used, the -o option specifies the destination directory on the server. The results are uploaded to this directory. If the -t option is not specified, the command 'cp' is used to transfer files back to the specified output directory.
|
If the --upload option is used, the -o option specifies the destination directory on the server. The results are uploaded to this directory.
|
||||||
|
|
||||||
*More examples*
|
*More examples*
|
||||||
|
|
||||||
The following example does the exact same thing as the encode script.
|
The following example does the exact same thing as the encode script.
|
||||||
|
|
||||||
`./ppss config -C config.cfg -c 'lame -a "$ITEM" "$OUTPUT_DIR/$OUTPUT_FILE.mp3" --preset standard --quiet' -d /source/dir -s 192.168.1.100 -u ppss -k ppss-key.key -K /path/to/known_hosts_file -S ./encode.sh -n nodes.txt -o /some/output/dir --download --upload`
|
`./ppss config -C config.cfg -c 'lame -a "$ITEM" "$OUTPUT_DIR/$OUTPUT_FILE.mp3" --preset standard --quiet' -d /source/dir -m 192.168.1.100 -u ppss -k ppss-key.key -K /path/to/known_hosts_file -S ./encode.sh -n nodes.txt -o /some/output/dir --download --upload`
|
||||||
|
|
||||||
The OUTPUT_DIR and OUTPUT_FILE variables are special. It tells your command where to store the output. This is important if you want to transfer the results of your command back to the server.
|
The OUTPUT_DIR and OUTPUT_FILE variables are special. It tells your command where to store the output. This is important if you want to transfer the results of your command back to the server.
|
||||||
|
|
||||||
@ -261,7 +261,6 @@ In this example, Lame requires that the user specifies an output file. PPSS gene
|
|||||||
|
|
||||||
-K = optional. If you created a file called 'known_hosts', this file will automatically be used. Warning: if you specify a different file with the -K option, the curent known_hosts file will be replaced by this file. If you manually create a file called known_hosts with the appropriate content, the -K option can be omitted.
|
-K = optional. If you created a file called 'known_hosts', this file will automatically be used. Warning: if you specify a different file with the -K option, the curent known_hosts file will be replaced by this file. If you manually create a file called known_hosts with the appropriate content, the -K option can be omitted.
|
||||||
|
|
||||||
|
|
||||||
= Create a script =
|
= Create a script =
|
||||||
|
|
||||||
*Entirely optional!*
|
*Entirely optional!*
|
||||||
@ -270,7 +269,7 @@ This section is optional. It is possible to execute commands just by using the -
|
|||||||
|
|
||||||
PPSS transfers files to the node and uploads the output back to the server. In order to be able to upload output back to the server, PPSS must know where this output can be found.
|
PPSS transfers files to the node and uploads the output back to the server. In order to be able to upload output back to the server, PPSS must know where this output can be found.
|
||||||
|
|
||||||
by default output is stored in the directory specified by $PPSS_LOCAL_OUTPUT/$ITEM. Ofcource, you can hard-code the PPSS_LOCAL_OUTPUT path, however, it is much easier to just source the ppss configuration file and use the already defined variables, that are used by PPSS anyway.
|
by default output is stored in the directory specified by $PPSS_LOCAL_OUTPUT. Ofcource, you can hard-code the PPSS_LOCAL_OUTPUT path, however, it is much easier to just source the ppss configuration file and use the already defined variables, that are used by PPSS anyway.
|
||||||
|
|
||||||
An example script that uses the settings of the PPSS configuration file is shown below, that has actually been used to encode 400 GB of WAV files.
|
An example script that uses the settings of the PPSS configuration file is shown below, that has actually been used to encode 400 GB of WAV files.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user