[原文] .TH RMT 8 "March 24, 2018" "RMT" "GNU TAR Manual" [訳文] .TH RMT 8 2018年3月24日 RMT "GNU TAR マニュアル" ---------------------------------------- [原文] .SH NAME rmt - remote magnetic tape server [訳文] .SH 名前 rmt - リモートの磁気テープサーバー ---------------------------------------- [原文] .SH SYNOPSIS .B rmt [訳文] .SH 書式 rmt ---------------------------------------- [原文] .SH DESCRIPTION .B Rmt provides remote access to files and devices for .BR tar (1), .BR cpio (1), and similar backup utilities. It is normally called by running .BR rsh (1) or .BR ssh (1) to the remote machine, optionally using a different login name if one is supplied. [訳文] .SH 説明 Rmt は、tar(1), cpio(1) などのバックアップユーティリティーを利用したファイルやデバイ スの処理を、リモートからアクセスする機能を提供します。 普通リモートマシンに対しては rsh(1) または ssh(1) を利用して実現します。 ログイン名を指定して別ユーザーを用いることもできます。 ---------------------------------------- [原文] .PP The calling program communicates with .B rmt by sending requests on its standard input and reading replies from the standard output. A request consists of a request letter followed by an argument (if required) and a newline character. Additional data, if any, are sent after the newline. On success, .B rmt returns [訳文] .PP 呼び出しを行うプログラムが rmt とやり取りをする際には、標準入力に対してリクエストを送信し、 その結果を標準出力から読み取ります。 送信する要求は、要求を表す英字の次に (必要があれば) 引数が続き、最後に改行文字により構成されます。 追加データがある場合は、その改行文字の次に送信されます。 処理が成功すると rmt は以下を返します。 ---------------------------------------- [原文] .PP .in +4 .BI A number \en [訳文] .PP .in +4 Anumber\en ---------------------------------------- [原文] .PP where number is an ASCII representation of a decimal return code. Additional data are returned after this line. On error, the following response is returned: [訳文] .PP 上の number は 10 進数のリターンコードを ASCII 表現したものです。 追加の情報はこの行の次に返されます。 エラー発生時には、以下のレスポンスが返されます。 ---------------------------------------- [原文] .PP .in +4 .BI E errno \en error-message \en [訳文] .PP .in +4 Eerrno\enerror-message\en ---------------------------------------- [原文] .PP where errno is one of the system error codes, as described in .BR errno (3), and error-message is a one-line human-readable description of the error, as printed by .BR perror (3). [訳文] .PP ここで errno はシステムエラーコードを表すもので、 errno(3) に説明されています。 error-message はエラー内容を 1 行にわかりやすく示したもので、 perror(3) を用いて出力されています。 ---------------------------------------- [原文] .PP Available commands and possible responses are discussed in detail in the subsequent section. [訳文] .PP 利用できるコマンドとレスポンスの種類については、後述するセク ションにおいて説明しています。 ---------------------------------------- [原文] .SH COMMANDS [訳文] .SH コマンド ---------------------------------------- [原文] .TP .BI O device \en flags \en Opens the device with given flags. If a device had already been opened, it is closed before opening the new one. .sp .B Arguments [訳文] .TP Odevice\enflags\en 指定された flags を使って device をオープンします。デバイスがすでにオープンされていた場合は、 一度クローズしてから新たにオープンされます。 .sp 引数 ---------------------------------------- [原文] .RS [訳文] .RS ---------------------------------------- [原文] .TP .I device The name of the device to open. [訳文] .TP device オープンするデバイス名。 ---------------------------------------- [原文] .TP .I flags Flags for .BR open (2): a decimal number, or any valid O_* constant from .B fcntl.h (the initial O_ may be omitted), or a bitwise or (using |) of any number of these, e.g.: .in +4 .EX 576 64|512 CREAT|TRUNC .EE [訳文] .TP flags open(2) に対するフラグ。 10 進数値、または fcntl.h に定義された O_* 定数 (先頭の O_ は省略される場合があります)。 またビット表現や (| を利用して) 以下のようにこれらを合わせた数値指定もできます。 .in +4 .EX 576 64|512 CREAT|TRUNC .EE ---------------------------------------- [原文] .RS In addition, a combined form is also allowed, i.e. a decimal mode followed by its symbolic representation. In this case the symbolic representation is given preference. [訳文] .RS さらに指定を組み合わせることもできます。 たとえば 10 進数によるモードに、そのシンボリックな表現を付け加えるような 場合です。 その場合は、シンボリック表現が優先されます。 ---------------------------------------- [原文] .RE .sp .B Reply [訳文] .RE .sp 返信 (reply) ---------------------------------------- [原文] .RS .B A0\en on success. [訳文] .RS 成功時には A0\en を返します。 ---------------------------------------- [原文] .RE .sp .B Extensions [訳文] .RE .sp 拡張 ---------------------------------------- [原文] .RS BSD version allows only decimal number as flags. [訳文] .RS BSD バージョンでは flags に 10 進数のみ指定可能です。 ---------------------------------------- [原文] .RE 1 [訳文] .RE 1 ---------------------------------------- [原文] .TP C[device]\en Close the currently open device. [訳文] .TP C[device]\en 現在オープンしているデバイスをクロースします。 ---------------------------------------- [原文] .RS [訳文] .RS ---------------------------------------- [原文] .TP .B Arguments Any arguments are silently ignored. [訳文] .TP 引数 引数はすべて無視されます。 ---------------------------------------- [原文] .TP .B Reply .B A0\en on success. [訳文] .TP 返信 (reply) 成功時には A0\en を返します。 ---------------------------------------- [原文] .RE [訳文] .RE ---------------------------------------- [原文] .TP .BI L whence \en offset \en [訳文] .TP Lwhence\enoffset\en ---------------------------------------- [原文] .RS Performs an .BR lseek (2) on the currently open device with the specified parameters. [訳文] .RS 指定されたパラメーターを使って、現在オープンしているデバイス に対して lseek(2) を実行します。 ---------------------------------------- [原文] .TP .B Arguments [訳文] .TP 引数 ---------------------------------------- [原文] .RS [訳文] .RS ---------------------------------------- [原文] .TP .I whence Where to measure offset from. Valid values are: .sp .nf .ta 1n 20n 0, SET, SEEK_SET seek from the file beginning 1, CUR, SEEK_CUR seek from the current location 2, END, SEEK_END seek from the file end .fi [訳文] .TP whence オフセットをどこからにするか。 指定可能な値は以下です。 .sp .nf .ta 1n 20n 0, SET, SEEK_SET ファイル先頭からシーク 1, CUR, SEEK_CUR 現在位置からシーク 2, END, SEEK_END ファイル終端からシーク .fi ---------------------------------------- [原文] .RE [訳文] .RE ---------------------------------------- [原文] .TP .B Reply .BI A offset \en on success. The offset is the new offset in file. [訳文] .TP 返信 (reply) 成功時には Aoffset\en を返します。 offset は新たなオフセット値になります。 ---------------------------------------- [原文] .TP .B Extensions BSD version allows only 0,1,2 as whence. [訳文] .TP 拡張 BSD バージョンは whence に対して 0,1,2 のみ指定可能です。 ---------------------------------------- [原文] .RE [訳文] .RE ---------------------------------------- [原文] .TP .BI R count \en Read count bytes of data from the current device. [訳文] .TP Rcount\en 現在のデバイスから count バイト分のデータを読み込みます。 ---------------------------------------- [原文] .RS [訳文] .RS ---------------------------------------- [原文] .TP .B Arguments [訳文] .TP 引数 ---------------------------------------- [原文] .RS [訳文] .RS ---------------------------------------- [原文] .TP .I count number of bytes to read. [訳文] .TP count 読み込みを行うバイト数。 ---------------------------------------- [原文] .RE [訳文] .RE ---------------------------------------- [原文] .TP .B Reply On success: .sp .in +4 .BI A rdcount \en .in .sp followed by rdcount bytes of data read from the device. [訳文] .TP 返信 (reply) 成功時には以下を返します。 .sp .in +4 Ardcount\en .in .sp この後ろに、デバイスから読み取った rdcount バイト分のデータが続きます。 ---------------------------------------- [原文] .RE [訳文] .RE ---------------------------------------- [原文] .TP .BI W count \en Writes data onto the current device. The command is followed by count bytes of input data. [訳文] .TP Wcount\en 現在のデバイスにデータを書き込みます。 このコマンドの後ろに、count バイト分の入力データを続けます。 ---------------------------------------- [原文] .RS [訳文] .RS ---------------------------------------- [原文] .TP .B Arguments [訳文] .TP 引数 ---------------------------------------- [原文] .RS [訳文] .RS ---------------------------------------- [原文] .TP .I count Number of bytes to write. [訳文] .TP count 書き込みを行うバイト数。 ---------------------------------------- [原文] .RE [訳文] .RE ---------------------------------------- [原文] .TP .B Reply On success: Awrcount\fB\en, where \fIwrcount is the number of bytes actually written. [訳文] .TP 返信 (reply) 成功時には Awrcount\en を返します。 ここで wrcount は、実際に書き込みを行ったバイト数です。 ---------------------------------------- [原文] .RE [訳文] .RE ---------------------------------------- [原文] .TP .BI I opcode \en count \en Perform a .B MTIOCOP .BR ioctl (2) command with the specified paramedters. [訳文] .TP Iopcode\encount\en 指定されたパラメーターを用いて MTIOCOP ioctl(2) コマンドを実行します。 ---------------------------------------- [原文] .RS [訳文] .RS ---------------------------------------- [原文] .TP .B Arguments [訳文] .TP 引数 ---------------------------------------- [原文] .RS [訳文] .RS ---------------------------------------- [原文] .TP .I opcode .B MTIOCOP operation code. [訳文] .TP opcode MTIOCOP オペレーションコード。 ---------------------------------------- [原文] .TP .I count mt_count. [訳文] .TP count mt_count ---------------------------------------- [原文] .RE [訳文] .RE ---------------------------------------- [原文] .TP .B Reply On success: A0\en. [訳文] .TP 返信 (reply) 成功時には A0\en を返します。 ---------------------------------------- [原文] .RE [訳文] .RE ---------------------------------------- [原文] .TP .B S\en Returns the status of the currently open device, as obtained from a .B MTIOCGET .BR ioctl (2) call. [訳文] .TP S\en 現在オープンしているデバイスのステータスを返します。 これは MTIOCGET ioctl(2) を呼び出して得ています。 ---------------------------------------- [原文] .RS [訳文] .RS ---------------------------------------- [原文] .TP .B Arguments None [訳文] .TP 引数 なし。 ---------------------------------------- [原文] .TP .B Reply On success: Acount\fB\en followed by \fIcount bytes of data. [訳文] .TP 返信 (reply) 成功時は Acount\en と、その後に count バイト分のデータが続きます。 ---------------------------------------- [原文] .RE [訳文] .RE ---------------------------------------- [原文] .SH "SEE ALSO" .BR tar (1). [訳文] .SH 関連項目 tar(1) ---------------------------------------- [原文] .SH BUGS Using this utility as a general-purpose remote file access tool is discouraged. [訳文] .SH バグ このユーティリティーを汎用目的のリモートファイルアクセスツー ルとして利用することはお勧めしません。 ---------------------------------------- [原文] .SH "BUG REPORTS" Report bugs to . [訳文] .SH バグ報告 バグ報告は までお願いします。 ---------------------------------------- [原文] .SH HISTORY The .B rmt command appeared in 4.2BSD. The GNU .BR rmt is written from scratch, using the BSD specification. [訳文] .SH 開発経緯 rmt コマンドは 4.2BSD において登場しました。 GNU rmt は BSD の仕様に基づいて一から書き起こされました。 ---------------------------------------- [原文] .SH COPYRIGHT Copyright © 2013, 2018 Free Software Foundation, Inc. .na License GPLv3+: GNU GPL version 3 or later .ad This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. [訳文] .SH 著作権 Copyright © 2013, 2018 Free Software Foundation, Inc. .na License GPLv3+: GNU GPL version 3 or later .ad This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. ----------------------------------------