{"id":9618,"date":"2023-02-16T06:06:37","date_gmt":"2023-02-15T21:06:37","guid":{"rendered":"https:\/\/lab4ict.com\/system\/?p=9618"},"modified":"2023-02-16T06:09:16","modified_gmt":"2023-02-15T21:09:16","slug":"linux%e3%81%a7%e3%82%a2%e3%83%bc%e3%82%ab%e3%82%a4%e3%83%96%e3%83%95%e3%82%a1%e3%82%a4%e3%83%ab%e3%82%92%e4%bd%9c%e6%88%90%e3%81%99%e3%82%8b%ef%bc%81%ef%bc%88tar%ef%bc%89","status":"publish","type":"post","link":"https:\/\/lab4ict.com\/system\/archives\/9618","title":{"rendered":"Linux\u3067\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u3092\u4f5c\u6210\uff0f\u5c55\u958b\u3059\u308b\uff01\uff08tar\uff09"},"content":{"rendered":"<p>Linux\u3067\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u3092\u4f5c\u6210\u3057\u3001\u5c55\u958b\u3057\u307e\u3059\u3002<br \/>\n<!--more--><\/p>\n<h2>\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u3092\u4f5c\u6210\u3059\u308b\uff01(tar -cvf)<\/h2>\n<p>\u300ctar -cvf\u300d\u30b3\u30de\u30f3\u30c9\u3067\u3001\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u3092\u4f5c\u6210\u3057\u307e\u3059\u3002<\/p>\n<pre class=\"brush: plain; highlight: [1,6,11]; title: ; notranslate\" title=\"\">\r\n$ ls -l sample_diff*\r\n-rw-rw-r--. 1 usradmin usradmin 54 Feb  7 12:24 sample_diff_new.txt\r\n-rw-rw-r--. 1 usradmin usradmin 48 Feb  7 12:24 sample_diff_patch.txt\r\n-rw-rw-r--. 1 usradmin usradmin 54 Feb  7 12:25 sample_diff.txt\r\n-rw-rw-r--. 1 usradmin usradmin 54 Feb  7 12:23 sample_diff.txt.orig\r\n$ tar -cvf sample_diff.tar sample_diff*\r\nsample_diff_new.txt\r\nsample_diff_patch.txt\r\nsample_diff.txt\r\nsample_diff.txt.orig\r\n$ ls -l sample_diff.tar\r\n-rw-rw-r--. 1 usradmin usradmin 10240 Feb 16 05:27 sample_diff.tar\r\n<\/pre>\n<h2>\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u306e\u5185\u5bb9\u3092\u78ba\u8a8d\u3059\u308b\uff01\uff08tar -tvf\uff09<\/h2>\n<p>\u300ctar -tvf\u300d\u30b3\u30de\u30f3\u30c9\u3067\u3001\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u306e\u5185\u5bb9\u3092\u78ba\u8a8d\u3057\u307e\u3059\u3002<\/p>\n<pre class=\"brush: plain; highlight: [1]; title: ; notranslate\" title=\"\">\r\n$ tar -tvf sample_diff.tar \r\n-rw-rw-r-- usradmin\/usradmin 54 2023-02-07 12:24 sample_diff_new.txt\r\n-rw-rw-r-- usradmin\/usradmin 48 2023-02-07 12:24 sample_diff_patch.txt\r\n-rw-rw-r-- usradmin\/usradmin 54 2023-02-07 12:25 sample_diff.txt\r\n-rw-rw-r-- usradmin\/usradmin 54 2023-02-07 12:23 sample_diff.txt.orig\r\n<\/pre>\n<h2>\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u3092\u5c55\u958b\u3059\u308b\uff01\uff08tar -xvf\uff09<\/h2>\n<p>\u300ctar -xvf\u300d\u30b3\u30de\u30f3\u30c9\u3067\u3001\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u3092\u5c55\u958b\u3057\u307e\u3059\u3002tar\u30b3\u30de\u30f3\u30c9\u306f\u3001\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u30d5\u30a1\u30a4\u30eb\u3092\u5c55\u958b\u3057\u307e\u3059\u3002<\/p>\n<pre class=\"brush: plain; highlight: [1,2,7]; title: ; notranslate\" title=\"\">\r\n$ cd \/tmp\r\n$ tar -xvf ~\/sample_diff.tar\r\nsample_diff_new.txt\r\nsample_diff_patch.txt\r\nsample_diff.txt\r\nsample_diff.txt.orig\r\n$ ls -l sample_diff*\r\n-rw-rw-r--. 1 usradmin usradmin 54 Feb  7 12:24 sample_diff_new.txt\r\n-rw-rw-r--. 1 usradmin usradmin 48 Feb  7 12:24 sample_diff_patch.txt\r\n-rw-rw-r--. 1 usradmin usradmin 54 Feb  7 12:25 sample_diff.txt\r\n-rw-rw-r--. 1 usradmin usradmin 54 Feb  7 12:23 sample_diff.txt.orig\r\n<\/pre>\n<h2>\u7279\u5b9a\u306e\u30d5\u30a1\u30a4\u30eb\u306e\u307f\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u304b\u3089\u5c55\u958b\u3059\u308b\uff01\uff08tar -xvf\uff09<\/h2>\n<p>\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u7279\u5b9a\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u6307\u5b9a\u3057\u3066\u3001\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u304b\u3089\u5c55\u958b\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059\u3002<\/p>\n<pre class=\"brush: plain; highlight: [1]; title: ; notranslate\" title=\"\">\r\n$ tar -xvf ~\/sample_diff.tar sample_diff.txt\r\n<\/pre>\n<h2>\u304a\u308f\u308a\u306b<\/h2>\n<p>Linux\u3067\u306f\u3001\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u3068\u3057\u3066\u3001tar\u30d5\u30a1\u30a4\u30eb\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u591a\u3044\u3067\u3059\u3002tar\u30d5\u30a1\u30a4\u30eb\u3067\u306f\u3001\u30d5\u30a1\u30a4\u30eb\u306e\u30aa\u30fc\u30ca\u30fc\u3001\u30b0\u30eb\u30fc\u30d7\u3001\u6a29\u9650\u306e\u60c5\u5831\u3082\u683c\u7d0d\u3055\u308c\u307e\u3059\u3002<\/p>\n<h2>\u95a2\u9023\u8a18\u4e8b<\/h2>\n<div class=\"sc_getpost\"><a class=\"clearfix\" href=\"https:\/\/lab4ict.com\/system\/archives\/8020\" ><div class=\"sc_getpost_thumb post-box-thumbnail__wrap\"><img decoding=\"async\" src=\"data:image\/gif;base64,R0lGODdhAQABAPAAAN3d3QAAACwAAAAAAQABAAACAkQBADs=\" width=\"150\" height=\"150\" alt=\"\u3010\u8a18\u4e8b\u4e00\u89a7\u3011Linux\u3067\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3068\u30d5\u30a1\u30a4\u30eb\u3092\u64cd\u4f5c\u3059\u308b\uff01\" loading=\"lazy\" data-src=\"https:\/\/lab4ict.com\/system\/wp-content\/uploads\/2021\/02\/fi_linux_01-150x150.png\" class=\"lazyload\"><\/div><div class=\"title\">\u3010\u8a18\u4e8b\u4e00\u89a7\u3011Linux\u3067\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3068\u30d5\u30a1\u30a4\u30eb\u3092\u64cd\u4f5c\u3059\u308b\uff01<\/div><div class=\"substr\">Linux\u3067\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3068\u30d5\u30a1\u30a4\u30eb\u3092\u64cd\u4f5c\u3059\u308b\u305f\u3081\u306e\u8a18\u4e8b\u4e00\u89a7\u3092\u63b2\u8f09\u3057\u307e\u3059\u3002...<\/div><\/a><\/div>\n<div class=\"sc_getpost\"><a class=\"clearfix\" href=\"https:\/\/lab4ict.com\/system\/archives\/7679\" ><div class=\"sc_getpost_thumb post-box-thumbnail__wrap\"><img decoding=\"async\" src=\"data:image\/gif;base64,R0lGODdhAQABAPAAAN3d3QAAACwAAAAAAQABAAACAkQBADs=\" width=\"150\" height=\"150\" alt=\"\u3010\u8a18\u4e8b\u4e00\u89a7\u3011Linux\u3092\u4f7f\u3044\u3053\u306a\u3059\uff01\" loading=\"lazy\" data-src=\"https:\/\/lab4ict.com\/system\/wp-content\/uploads\/2021\/02\/fi_linux_01-150x150.png\" class=\"lazyload\"><\/div><div class=\"title\">\u3010\u8a18\u4e8b\u4e00\u89a7\u3011Linux\u3092\u4f7f\u3044\u3053\u306a\u3059\uff01<\/div><div class=\"substr\">Linux\u3092\u4f7f\u3044\u3053\u306a\u3059\u305f\u3081\u306e\u8a18\u4e8b\u4e00\u89a7\u3092\u63b2\u8f09\u3057\u307e\u3059\u3002...<\/div><\/a><\/div>\n<h2>\u95a2\u9023\u66f8\u7c4d\uff08Amazon\uff09<\/h2>\n<p><iframe sandbox=\"allow-popups allow-scripts allow-modals allow-forms allow-same-origin\" style=\"width:120px;height:240px;\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" frameborder=\"0\" src=\"\/\/rcm-fe.amazon-adsystem.com\/e\/cm?lt1=_blank&bc1=000000&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=infotecr-22&language=ja_JP&o=9&p=8&l=as4&m=amazon&f=ifr&ref=as_ss_li_til&asins=4774174041&linkId=1be31975ee817bf3bb17e2a366509519\"><\/iframe><\/p>\n<hr \/>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Linux\u3067\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u3092\u4f5c\u6210\u3057\u3001\u5c55\u958b\u3057\u307e\u3059\u3002<\/p>\n","protected":false},"author":1,"featured_media":5527,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[201],"tags":[],"class_list":["post-9618","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-files"],"_links":{"self":[{"href":"https:\/\/lab4ict.com\/system\/wp-json\/wp\/v2\/posts\/9618","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/lab4ict.com\/system\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/lab4ict.com\/system\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/lab4ict.com\/system\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/lab4ict.com\/system\/wp-json\/wp\/v2\/comments?post=9618"}],"version-history":[{"count":0,"href":"https:\/\/lab4ict.com\/system\/wp-json\/wp\/v2\/posts\/9618\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/lab4ict.com\/system\/wp-json\/wp\/v2\/media\/5527"}],"wp:attachment":[{"href":"https:\/\/lab4ict.com\/system\/wp-json\/wp\/v2\/media?parent=9618"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/lab4ict.com\/system\/wp-json\/wp\/v2\/categories?post=9618"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/lab4ict.com\/system\/wp-json\/wp\/v2\/tags?post=9618"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}