| [ | |
| { | |
| "instruction": "Linuxで現在のディレクトリの内容を表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "ls" | |
| }, | |
| { | |
| "instruction": "Linuxでディレクトリを移動するコマンドを教えてください。", | |
| "input": "", | |
| "output": "cd" | |
| }, | |
| { | |
| "instruction": "Linuxで現在のディレクトリの絶対パスを表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "pwd" | |
| }, | |
| { | |
| "instruction": "Linuxで新規ファイルを作成するコマンドを教えてください。", | |
| "input": "", | |
| "output": "touch" | |
| }, | |
| { | |
| "instruction": "Linuxで新規ディレクトリを作成するコマンドを教えてください。", | |
| "input": "", | |
| "output": "mkdir" | |
| }, | |
| { | |
| "instruction": "Linuxでファイルまたはディレクトリをコピーするコマンドを教えてください。", | |
| "input": "", | |
| "output": "cp" | |
| }, | |
| { | |
| "instruction": "Linuxでファイルまたはディレクトリを移動または名前を変更するコマンドを教えてください。", | |
| "input": "", | |
| "output": "mv" | |
| }, | |
| { | |
| "instruction": "Linuxでファイルを削除するコマンドを教えてください。", | |
| "input": "", | |
| "output": "rm" | |
| }, | |
| { | |
| "instruction": "Linuxで空のディレクトリを削除するコマンドを教えてください。", | |
| "input": "", | |
| "output": "rmdir" | |
| }, | |
| { | |
| "instruction": "Linuxでファイルの内容を表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "cat" | |
| }, | |
| { | |
| "instruction": "Linuxでファイルの内容をページ毎に表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "less" | |
| }, | |
| { | |
| "instruction": "Linuxでファイルの先頭部分の内容を表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "head" | |
| }, | |
| { | |
| "instruction": "Linuxでファイルの末尾部分の内容を表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "tail" | |
| }, | |
| { | |
| "instruction": "Linuxで特定のパターンが含まれる行をファイルから探すコマンドを教えてください。", | |
| "input": "", | |
| "output": "grep" | |
| }, | |
| { | |
| "instruction": "Linuxで文字列をターミナルに出力するコマンドを教えてください。", | |
| "input": "", | |
| "output": "echo" | |
| }, | |
| { | |
| "instruction": "Linuxでフォーマットした文字列を出力するコマンドを教えてください。", | |
| "input": "", | |
| "output": "printf" | |
| }, | |
| { | |
| "instruction": "Linuxで現在の日付と時刻を表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "date" | |
| }, | |
| { | |
| "instruction": "Linuxで現在のユーザー名を表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "whoami" | |
| }, | |
| { | |
| "instruction": "Linuxで現在システムにログインしているユーザーを表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "who" | |
| }, | |
| { | |
| "instruction": "Linuxでシステム上のすべてのユーザーの情報を表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "w" | |
| }, | |
| { | |
| "instruction": "Linuxで現在のユーザーの詳細情報を表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "id" | |
| }, | |
| { | |
| "instruction": "Linuxでユーザーのパスワードを変更するコマンドを教えてください。", | |
| "input": "", | |
| "output": "passwd" | |
| }, | |
| { | |
| "instruction": "Linuxで別のユーザーにスイッチするコマンドを教えてください。", | |
| "input": "", | |
| "output": "su" | |
| }, | |
| { | |
| "instruction": "Linuxで特権ユーザーとしてコマンドを実行する方法を教えてください。", | |
| "input": "", | |
| "output": "sudo" | |
| }, | |
| { | |
| "instruction": "Linuxでファイルのパーミッションを変更するコマンドを教えてください。", | |
| "input": "", | |
| "output": "chmod" | |
| }, | |
| { | |
| "instruction": "Linuxでファイルの所有者を変更するコマンドを教えてください。", | |
| "input": "", | |
| "output": "chown" | |
| }, | |
| { | |
| "instruction": "Linuxでファイルのグループを変更するコマンドを教えてください。", | |
| "input": "", | |
| "output": "chgrp" | |
| }, | |
| { | |
| "instruction": "Linuxでファイルやディレクトリを探すコマンドを教えてください。", | |
| "input": "", | |
| "output": "find" | |
| }, | |
| { | |
| "instruction": "Linuxでシステム全体からファイルを高速に検索するコマンドを教えてください。", | |
| "input": "", | |
| "output": "locate" | |
| }, | |
| { | |
| "instruction": "Linuxでファイルの検索データベースを更新するコマンドを教えてください。", | |
| "input": "", | |
| "output": "updatedb" | |
| }, | |
| { | |
| "instruction": "Linuxでシステムのディスク容量使用状況を表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "df" | |
| }, | |
| { | |
| "instruction": "Linuxで特定のディレクトリやファイルが占めるディスクスペースを表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "du" | |
| }, | |
| { | |
| "instruction": "Linuxでシステムの空きメモリ量を表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "free" | |
| }, | |
| { | |
| "instruction": "Linuxでシステムの稼働状況やプロセス情報を表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "top" | |
| }, | |
| { | |
| "instruction": "Linuxで現在のシェルで実行中のプロセスを表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "ps" | |
| }, | |
| { | |
| "instruction": "Linuxでバックグラウンドで実行中のジョブをフォアグラウンドに戻すコマンドを教えてください。", | |
| "input": "", | |
| "output": "fg" | |
| }, | |
| { | |
| "instruction": "Linuxでフォアグラウンドで実行中のジョブをバックグラウンドに送るコマンドを教えてください。", | |
| "input": "", | |
| "output": "bg" | |
| }, | |
| { | |
| "instruction": "Linuxで特定のプロセスを終了するコマンドを教えてください。", | |
| "input": "", | |
| "output": "kill" | |
| }, | |
| { | |
| "instruction": "Linuxで特定のプロセス名を持つプロセスを終了するコマンドを教えてください。", | |
| "input": "", | |
| "output": "pkill" | |
| }, | |
| { | |
| "instruction": "Linuxでシステムをシャットダウンするコマンドを教えてください。", | |
| "input": "", | |
| "output": "shutdown" | |
| }, | |
| { | |
| "instruction": "Linuxでシステムを再起動するコマンドを教えてください。", | |
| "input": "", | |
| "output": "reboot" | |
| }, | |
| { | |
| "instruction": "Linuxでセッションをログアウトするコマンドを教えてください。", | |
| "input": "", | |
| "output": "logout" | |
| }, | |
| { | |
| "instruction": "Linuxでシェルを終了するコマンドを教えてください。", | |
| "input": "", | |
| "output": "exit" | |
| }, | |
| { | |
| "instruction": "Linuxでコマンドの履歴を表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "history" | |
| }, | |
| { | |
| "instruction": "Linuxでターミナルの画面をクリアするコマンドを教えてください。", | |
| "input": "", | |
| "output": "clear" | |
| }, | |
| { | |
| "instruction": "Linuxでファイルやディレクトリの圧縮形式を作成するコマンドを教えてください。", | |
| "input": "", | |
| "output": "gzip" | |
| }, | |
| { | |
| "instruction": "Linuxで圧縮されたファイルやディレクトリを解凍するコマンドを教えてください。", | |
| "input": "", | |
| "output": "gunzip" | |
| }, | |
| { | |
| "instruction": "Linuxでファイルやディレクトリをアーカイブするコマンドを教えてください。", | |
| "input": "", | |
| "output": "tar" | |
| }, | |
| { | |
| "instruction": "Linuxでファイルを圧縮するコマンドを教えてください。", | |
| "input": "", | |
| "output": "zip" | |
| }, | |
| { | |
| "instruction": "Linuxでファイルを解凍するコマンドを教えてください。", | |
| "input": "", | |
| "output": "unzip" | |
| }, | |
| { | |
| "instruction": "Linuxでテキストファイルの行をソートするコマンドを教えてください。", | |
| "input": "", | |
| "output": "sort" | |
| }, | |
| { | |
| "instruction": "Linuxでテキストファイルから特定の列を抽出するコマンドを教えてください。", | |
| "input": "", | |
| "output": "cut" | |
| }, | |
| { | |
| "instruction": "Linuxでテキストファイルのパターンを置換するコマンドを教えてください。", | |
| "input": "", | |
| "output": "sed" | |
| }, | |
| { | |
| "instruction": "Linuxでテキストファイルを指定したフィールドで分割するコマンドを教えてください。", | |
| "input": "", | |
| "output": "awk" | |
| }, | |
| { | |
| "instruction": "Linuxでテキストファイルの行数や単語数を数えるコマンドを教えてください。", | |
| "input": "", | |
| "output": "wc" | |
| }, | |
| { | |
| "instruction": "Linuxで2つのテキストファイルの差分を表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "diff" | |
| }, | |
| { | |
| "instruction": "Linuxでパッチを適用するコマンドを教えてください。", | |
| "input": "", | |
| "output": "patch" | |
| }, | |
| { | |
| "instruction": "Linuxでバージョン管理システムGitを使用するコマンドを教えてください。", | |
| "input": "", | |
| "output": "git" | |
| }, | |
| { | |
| "instruction": "Linuxでバージョン管理システムSubversionを使用するコマンドを教えてください。", | |
| "input": "", | |
| "output": "svn" | |
| }, | |
| { | |
| "instruction": "Linuxでテキストエディタnanoを起動するコマンドを教えてください。", | |
| "input": "", | |
| "output": "nano" | |
| }, | |
| { | |
| "instruction": "Linuxでテキストエディタviを起動するコマンドを教えてください。", | |
| "input": "", | |
| "output": "vi" | |
| }, | |
| { | |
| "instruction": "LinuxでテキストエディタEmacsを起動するコマンドを教えてください。", | |
| "input": "", | |
| "output": "emacs" | |
| }, | |
| { | |
| "instruction": "Linuxでマニュアルページを表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "man" | |
| }, | |
| { | |
| "instruction": "Linuxで情報ページを表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "info" | |
| }, | |
| { | |
| "instruction": "Linuxでコマンドの短い説明を表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "whatis" | |
| }, | |
| { | |
| "instruction": "Linuxでキーワードに関連するコマンドを表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "apropos" | |
| }, | |
| { | |
| "instruction": "Linuxで環境変数を表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "env" | |
| }, | |
| { | |
| "instruction": "Linuxで環境変数をエクスポートするコマンドを教えてください。", | |
| "input": "", | |
| "output": "export" | |
| }, | |
| { | |
| "instruction": "Linuxで環境変数を設定するコマンドを教えてください。", | |
| "input": "", | |
| "output": "set" | |
| }, | |
| { | |
| "instruction": "Linuxで環境変数を削除するコマンドを教えてください。", | |
| "input": "", | |
| "output": "unset" | |
| }, | |
| { | |
| "instruction": "Linuxで指定した範囲の数値を生成するコマンドを教えてください。", | |
| "input": "", | |
| "output": "seq" | |
| }, | |
| { | |
| "instruction": "Linuxで数値計算を行うコマンドを教えてください。", | |
| "input": "", | |
| "output": "bc" | |
| }, | |
| { | |
| "instruction": "Linuxでカレンダーを表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "cal" | |
| }, | |
| { | |
| "instruction": "Linuxでコマンドの実行時間を計測するコマンドを教えてください。", | |
| "input": "", | |
| "output": "time" | |
| }, | |
| { | |
| "instruction": "Linuxでコマンドの実行時間を制限するコマンドを教えてください。", | |
| "input": "", | |
| "output": "timeout" | |
| }, | |
| { | |
| "instruction": "Linuxで一定時間待機するコマンドを教えてください。", | |
| "input": "", | |
| "output": "sleep" | |
| }, | |
| { | |
| "instruction": "Linuxでバックグラウンドでコマンドを実行するコマンドを教えてください。", | |
| "input": "", | |
| "output": "nohup" | |
| }, | |
| { | |
| "instruction": "Linuxで複数の引数を1つのコマンドに渡すコマンドを教えてください。", | |
| "input": "", | |
| "output": "xargs" | |
| }, | |
| { | |
| "instruction": "Linuxでコマンドの実行結果をファイルと標準出力の両方に出力するコマンドを教えてください。", | |
| "input": "", | |
| "output": "tee" | |
| }, | |
| { | |
| "instruction": "Linuxで文字の変換や削除を行うコマンドを教えてください。", | |
| "input": "", | |
| "output": "tr" | |
| }, | |
| { | |
| "instruction": "Linuxで複数のファイルを連結するコマンドを教えてください。", | |
| "input": "", | |
| "output": "paste" | |
| }, | |
| { | |
| "instruction": "Linuxで2つのファイルの共通部分を結合するコマンドを教えてください。", | |
| "input": "", | |
| "output": "join" | |
| }, | |
| { | |
| "instruction": "Linuxでファイルを分割するコマンドを教えてください。", | |
| "input": "", | |
| "output": "split" | |
| }, | |
| { | |
| "instruction": "Linuxでパスからファイル名を取得するコマンドを教えてください。", | |
| "input": "", | |
| "output": "basename" | |
| }, | |
| { | |
| "instruction": "Linuxでパスからディレクトリ名を取得するコマンドを教えてください。", | |
| "input": "", | |
| "output": "dirname" | |
| }, | |
| { | |
| "instruction": "Linuxで最後にログインしたユーザーを表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "last" | |
| }, | |
| { | |
| "instruction": "Linuxで最後のログイン試行記録を表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "lastb" | |
| }, | |
| { | |
| "instruction": "Linuxで現在ログインしているユーザーを表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "users" | |
| }, | |
| { | |
| "instruction": "Linuxでグループ一覧を表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "groups" | |
| }, | |
| { | |
| "instruction": "Linuxでシステムの情報(カーネルのバージョンなど)を表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "uname" | |
| }, | |
| { | |
| "instruction": "Linuxでシステムの稼働時間を表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "uptime" | |
| }, | |
| { | |
| "instruction": "Linuxで仮想メモリの統計情報を表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "vmstat" | |
| }, | |
| { | |
| "instruction": "Linuxでシステムのリソース使用状況を表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "htop" | |
| }, | |
| { | |
| "instruction": "Linuxでディスクの入出力統計情報を表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "iostat" | |
| }, | |
| { | |
| "instruction": "Linuxでシステムのハードウェア情報を表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "lshw" | |
| }, | |
| { | |
| "instruction": "Linuxでブロックデバイスの情報を表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "lsblk" | |
| }, | |
| { | |
| "instruction": "LinuxでUSBデバイスの情報を表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "lsusb" | |
| }, | |
| { | |
| "instruction": "LinuxでPCIデバイスの情報を表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "lspci" | |
| }, | |
| { | |
| "instruction": "LinuxでCPUの情報を表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "lscpu" | |
| }, | |
| { | |
| "instruction": "Linuxでシステムのハードウェア情報を表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "dmidecode" | |
| }, | |
| { | |
| "instruction": "Linuxでディスクパフォーマンスを設定するコマンドを教えてください。", | |
| "input": "", | |
| "output": "hdparm" | |
| }, | |
| { | |
| "instruction": "Linuxでディスクのスマート情報を表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "smartctl" | |
| }, | |
| { | |
| "instruction": "Linuxで開かれているファイルとプロセスを表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "lsof" | |
| }, | |
| { | |
| "instruction": "Linuxでファイルを使用しているプロセスを表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "fuser" | |
| }, | |
| { | |
| "instruction": "Linuxでプログラムのトレースを行うコマンドを教えてください。", | |
| "input": "", | |
| "output": "strace" | |
| }, | |
| { | |
| "instruction": "Linuxでネットワークパケットをキャプチャするコマンドを教えてください。", | |
| "input": "", | |
| "output": "tcpdump" | |
| }, | |
| { | |
| "instruction": "LinuxでDNSクエリを送信して情報を取得するコマンドを教えてください。", | |
| "input": "", | |
| "output": "dig" | |
| }, | |
| { | |
| "instruction": "LinuxでDNSの名前解決を行うコマンドを教えてください。", | |
| "input": "", | |
| "output": "nslookup" | |
| }, | |
| { | |
| "instruction": "Linuxでホストに関する情報を取得するコマンドを教えてください。", | |
| "input": "", | |
| "output": "host" | |
| }, | |
| { | |
| "instruction": "Linuxでドメイン情報を取得するコマンドを教えてください。", | |
| "input": "", | |
| "output": "whois" | |
| }, | |
| { | |
| "instruction": "Linuxでユーザーの情報を表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "finger" | |
| }, | |
| { | |
| "instruction": "Linuxでメッセージを全ユーザーに送信するコマンドを教えてください。", | |
| "input": "", | |
| "output": "wall" | |
| }, | |
| { | |
| "instruction": "Linuxで辞書の単語を検索するコマンドを教えてください。", | |
| "input": "", | |
| "output": "look" | |
| }, | |
| { | |
| "instruction": "Linuxでテキストファイルから重複行を削除するコマンドを教えてください。", | |
| "input": "", | |
| "output": "uniq" | |
| }, | |
| { | |
| "instruction": "Linuxで2つのファイルの共通行を表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "comm" | |
| }, | |
| { | |
| "instruction": "Linuxでデバイスにデータを書き込むコマンドを教えてください。", | |
| "input": "", | |
| "output": "dd" | |
| }, | |
| { | |
| "instruction": "Linuxでファイルの種類を判別するコマンドを教えてください。", | |
| "input": "", | |
| "output": "file" | |
| }, | |
| { | |
| "instruction": "Linuxでバイナリファイルの文字列を表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "strings" | |
| }, | |
| { | |
| "instruction": "Linuxでバイナリデータを16進数表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "hexdump" | |
| }, | |
| { | |
| "instruction": "Linuxでファイルを8進数、16進数などで表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "od" | |
| }, | |
| { | |
| "instruction": "Linuxでファイルシステムを作成するコマンドを教えてください。", | |
| "input": "", | |
| "output": "mkfs" | |
| }, | |
| { | |
| "instruction": "Linuxでファイルシステムをチェックするコマンドを教えてください。", | |
| "input": "", | |
| "output": "fsck" | |
| }, | |
| { | |
| "instruction": "Linuxでファイルシステムのチューニングを行うコマンドを教えてください。", | |
| "input": "", | |
| "output": "tune2fs" | |
| }, | |
| { | |
| "instruction": "Linuxでファイルシステムのバックアップとリストアを行うコマンドを教えてください。", | |
| "input": "", | |
| "output": "dump, restore" | |
| }, | |
| { | |
| "instruction": "Linuxでディスクバッファをフラッシュするコマンドを教えてください。", | |
| "input": "", | |
| "output": "sync" | |
| }, | |
| { | |
| "instruction": "Linuxでファイルシステムをマウントするコマンドを教えてください。", | |
| "input": "", | |
| "output": "mount" | |
| }, | |
| { | |
| "instruction": "Linuxでマウントされたファイルシステムをアンマウントするコマンドを教えてください。", | |
| "input": "", | |
| "output": "umount" | |
| }, | |
| { | |
| "instruction": "Linuxでディスクや光学ドライブからメディアを取り出すコマンドを教えてください。", | |
| "input": "", | |
| "output": "eject" | |
| }, | |
| { | |
| "instruction": "Linuxでディスクのパーティション情報を操作するコマンドを教えてください。", | |
| "input": "", | |
| "output": "fdisk" | |
| }, | |
| { | |
| "instruction": "Linuxでディスクのパーティション操作や管理を行うコマンドを教えてください。", | |
| "input": "", | |
| "output": "parted" | |
| }, | |
| { | |
| "instruction": "LinuxでファイルをBzip2形式で圧縮するコマンドを教えてください。", | |
| "input": "", | |
| "output": "bzip2" | |
| }, | |
| { | |
| "instruction": "LinuxでBzip2形式のファイルを解凍するコマンドを教えてください。", | |
| "input": "", | |
| "output": "bunzip2" | |
| }, | |
| { | |
| "instruction": "LinuxでファイルをXZ形式で圧縮するコマンドを教えてください。", | |
| "input": "", | |
| "output": "xz" | |
| }, | |
| { | |
| "instruction": "LinuxでXZ形式のファイルを解凍するコマンドを教えてください。", | |
| "input": "", | |
| "output": "unxz" | |
| }, | |
| { | |
| "instruction": "Linuxで7z形式のアーカイブを作成するコマンドを教えてください。", | |
| "input": "", | |
| "output": "7z" | |
| }, | |
| { | |
| "instruction": "Linuxで圧縮されたファイルを表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "zcat" | |
| }, | |
| { | |
| "instruction": "LinuxでBzip2形式の圧縮ファイルを表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "bzcat" | |
| }, | |
| { | |
| "instruction": "LinuxでXZ形式の圧縮ファイルを表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "xzcat" | |
| }, | |
| { | |
| "instruction": "Linuxでマウントされたファイルシステムの情報を表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "findmnt" | |
| }, | |
| { | |
| "instruction": "Linuxでコマンドの実行ファイルの場所を検索するコマンドを教えてください。", | |
| "input": "", | |
| "output": "whereis" | |
| }, | |
| { | |
| "instruction": "Linuxでコマンドの実行ファイルのパスを表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "which" | |
| }, | |
| { | |
| "instruction": "Linuxでコマンドの実行ファイルのタイプを表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "type" | |
| }, | |
| { | |
| "instruction": "Linuxでコマンドの実行結果を定期的に監視するコマンドを教えてください。", | |
| "input": "", | |
| "output": "watch" | |
| }, | |
| { | |
| "instruction": "Linuxで文字列を逆順に表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "rev" | |
| }, | |
| { | |
| "instruction": "Linuxでテキストの整形や折り返しを行うコマンドを教えてください。", | |
| "input": "", | |
| "output": "fmt" | |
| }, | |
| { | |
| "instruction": "Linuxでテキストを印刷可能な形式に整形するコマンドを教えてください。", | |
| "input": "", | |
| "output": "pr" | |
| }, | |
| { | |
| "instruction": "Linuxでテキストを指定した幅で折り返すコマンドを教えてください。", | |
| "input": "", | |
| "output": "fold" | |
| }, | |
| { | |
| "instruction": "Linuxでテキストを列で整形するコマンドを教えてください。", | |
| "input": "", | |
| "output": "column" | |
| }, | |
| { | |
| "instruction": "Linuxでタブをスペースに展開するコマンドを教えてください。", | |
| "input": "", | |
| "output": "expand" | |
| }, | |
| { | |
| "instruction": "Linuxでスペースをタブに変換するコマンドを教えてください。", | |
| "input": "", | |
| "output": "unexpand" | |
| }, | |
| { | |
| "instruction": "Linuxでファイルの行番号を表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "nl" | |
| }, | |
| { | |
| "instruction": "Linuxでファイルを印刷するコマンドを教えてください。", | |
| "input": "", | |
| "output": "lp" | |
| }, | |
| { | |
| "instruction": "Linuxで印刷ジョブの情報を表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "lpq" | |
| }, | |
| { | |
| "instruction": "Linuxで印刷ジョブをキャンセルするコマンドを教えてください。", | |
| "input": "", | |
| "output": "lprm" | |
| }, | |
| { | |
| "instruction": "Linuxで新しいユーザーアカウントを作成するコマンドを教えてください。", | |
| "input": "", | |
| "output": "adduser" | |
| }, | |
| { | |
| "instruction": "Linuxでユーザーアカウントを削除するコマンドを教えてください。", | |
| "input": "", | |
| "output": "deluser" | |
| }, | |
| { | |
| "instruction": "Linuxでユーザーアカウントの属性を変更するコマンドを教えてください。", | |
| "input": "", | |
| "output": "usermod" | |
| }, | |
| { | |
| "instruction": "Linuxで新しいグループを作成するコマンドを教えてください。", | |
| "input": "", | |
| "output": "groupadd" | |
| }, | |
| { | |
| "instruction": "Linuxでグループを削除するコマンドを教えてください。", | |
| "input": "", | |
| "output": "groupdel" | |
| }, | |
| { | |
| "instruction": "Linuxでグループの属性を変更するコマンドを教えてください。", | |
| "input": "", | |
| "output": "groupmod" | |
| }, | |
| { | |
| "instruction": "Linuxでユーザーのシェルを変更するコマンドを教えてください。", | |
| "input": "", | |
| "output": "chsh" | |
| }, | |
| { | |
| "instruction": "Linuxでユーザーのフルネームや情報を変更するコマンドを教えてください。", | |
| "input": "", | |
| "output": "chfn" | |
| }, | |
| { | |
| "instruction": "Linuxでロードされているカーネルモジュールの一覧を表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "lsmod" | |
| }, | |
| { | |
| "instruction": "Linuxでカーネルモジュールをロードするコマンドを教えてください。", | |
| "input": "", | |
| "output": "modprobe" | |
| }, | |
| { | |
| "instruction": "Linuxでカーネルモジュールをロードするコマンドを教えてください。", | |
| "input": "", | |
| "output": "insmod" | |
| }, | |
| { | |
| "instruction": "Linuxでカーネルモジュールをアンロードするコマンドを教えてください。", | |
| "input": "", | |
| "output": "rmmod" | |
| }, | |
| { | |
| "instruction": "Linuxでカーネルメッセージを表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "dmesg" | |
| }, | |
| { | |
| "instruction": "Linuxでファイルやディレクトリの属性を表示するコマンドを教えてください。", | |
| "input": "", | |
| "output": "lsattr" | |
| }, | |
| { | |
| "instruction": "Linuxでファイルやディレクトリの属性を変更するコマンドを教えてください。", | |
| "input": "", | |
| "output": "chattr" | |
| } | |
| ] |