Skip to content

Commit a25eded

Browse files
committed
[1.4. SSH, System Info & Network Operations] translated fix #6
1 parent ad53321 commit a25eded

File tree

1 file changed

+33
-31
lines changed

1 file changed

+33
-31
lines changed

README.md

Lines changed: 33 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -770,31 +770,33 @@ pwd
770770
</table>
771771

772772
### a. `bg`
773-
Lists stopped or background jobs; resume a stopped job in the background.
773+
停止したジョブまたはバックグラウンドジョブを一覧表示する。
774+
停止したジョブをバックグラウンドで再開する。
774775

775776
### b. `cal`
776-
Shows the month's calendar.
777+
月のカレンダーを表示する。
777778

778779
### c. `date`
779-
Shows the current date and time.
780+
現在の日付と時刻を表示する。
780781

781782
### d. `df`
782-
Shows disk usage.
783+
ディスクの使用状況を表示する。
783784

784785
### e. `dig`
785-
Gets DNS information for domain.
786+
ドメインの DNS 情報を取得する。
786787
```bash
787788
dig domain
788789
```
789790

790791
### f. `du`
791-
Shows the disk usage of files or directories. For more information on this command check this [link](http://www.linfo.org/du.html)
792+
ファイルまたはディレクトリのディスク使用量を表示する。
793+
このコマンドの詳細については、この[リンク(英語)](http://www.linfo.org/du.html)をチェック
792794
```bash
793795
du [option] [filename|directory]
794796
```
795-
Options:
796-
- `-h` (human readable) Displays output it in kilobytes (K), megabytes (M) and gigabytes (G).
797-
- `-s` (supress or summarize) Outputs total disk space of a directory and supresses reports for subdirectories.
797+
オプション:
798+
- `-h` (人間が読める) 出力をキロバイト、メガバイト、ギガバイトで表示する。
799+
- `-s` (抑制または要約) ディレクトリの合計ディスク容量を出力し、サブディレクトリのレポートは控える。
798800

799801
Example:
800802
```bash
@@ -803,102 +805,102 @@ du -sh pictures
803805
```
804806

805807
### g. `fg`
806-
Brings the most recent job in the foreground.
808+
直前のジョブをフォアグラウンドに表示する。
807809

808810
### h. `finger`
809-
Displays information about user.
811+
ユーザーに関する情報を表示する。
810812
```bash
811813
finger username
812814
```
813815
### i. `jobs`
814-
Lists the jobs running in the background, giving the job number.
816+
バックグラウンドで実行中のジョブをリストし、ジョブ番号を指定する。
815817

816818
### j. `last`
817-
Lists your last logins of specified user.
819+
指定したユーザーの最終ログインを一覧表示する。
818820
```bash
819821
last yourUsername
820822
```
821823

822824
### k. `man`
823-
Shows the manual for specified command.
825+
指定されたコマンドのマニュアルを表示する。
824826
```bash
825827
man command
826828
```
827829

828830
### l. `passwd`
829-
Allows the current logged user to change his password.
831+
現在ログインしているユーザーがパスワードを変更できるようにする。
830832

831833
### m. `ping`
832-
Pings host and outputs results.
834+
ホストに ping して結果を出力する。
833835
```bash
834836
ping host
835837
```
836838

837839
### n. `ps`
838-
Lists your processes.
840+
プロセスを一覧表示する。
839841
```bash
840842
ps -u yourusername
841843
```
842844

843845
### o. `quota`
844-
Shows what your disk quota is.
846+
ディスククォータ情報を表示する。
845847
```bash
846848
quota -v
847849
```
848850

849851
### p. `scp`
850-
Transfer files between a local host and a remote host or between two remote hosts.
852+
ローカルホストとリモートホスト間、または2つのリモートホスト間でファイルを転送する。
851853

852-
*copy from local host to remote host*
854+
*ローカルホストからリモートホストにコピーする*
853855
```bash
854856
scp source_file user@host:directory/target_file
855857
```
856-
*copy from remote host to local host*
858+
*リモートホストからローカルホストにコピーする*
857859
```bash
858860
scp user@host:directory/source_file target_file
859861
scp -r user@host:directory/source_folder target_folder
860862
```
861-
This command also accepts an option `-P` that can be used to connect to specific port.
863+
このコマンドは、特定ポートに接続するために使用 `-P` オプションも受け付ける。
862864
```bash
863865
scp -P port user@host:directory/source_file target_file
864866
```
865867

866868
### q. `ssh`
867-
ssh (SSH client) is a program for logging into and executing commands on a remote machine.
869+
ssh ( SSH クライアント ) は、リモートマシンでログインしてコマンドを実行するためのプログラム。
868870
```bash
869871
ssh user@host
870872
```
871-
This command also accepts an option `-p` that can be used to connect to specific port.
873+
このコマンドは、特定ポートに接続するために使用 `-P` オプションも受け付ける。
872874
```bash
873875
ssh -p port user@host
874876
```
875877

876878
### r. `top`
877-
Displays your currently active processes.
879+
現在アクティブなプロセスを表示する。
878880

879881
### s. `uname`
880-
Shows kernel information.
882+
カーネル情報を表示する。
881883
```bash
882884
uname -a
883885
```
884886

885887
### t. `uptime`
886-
Shows current uptime.
888+
現在の uptime ( 稼働時間 ) を表示する。
887889

888890
### u. `w`
889-
Displays who is online.
891+
オンラインのユーザーを表示する。
890892

891893
### v. `wget`
892-
Downloads file.
894+
ファイルをダウンロードする。
893895
```bash
894896
wget file
895897
```
896898

897899
### w. `whoami`
898-
Return current logged in username.
900+
現在ログインしているユーザー名を返す。
899901

900902
### x. `whois`
901-
Gets whois information for domain.
903+
ドメインの whois 情報を取得する。
902904
```bash
903905
whois domain
904906
```

0 commit comments

Comments
 (0)