{"id":18279,"date":"2025-04-19T00:42:05","date_gmt":"2025-04-18T16:42:05","guid":{"rendered":"https:\/\/www.wsisp.com\/helps\/18279.html"},"modified":"2025-04-19T00:42:05","modified_gmt":"2025-04-18T16:42:05","slug":"linux%e4%b8%8b50%e4%b8%aa%e9%ab%98%e7%ba%a7%e5%91%bd%e4%bb%a4%e5%8f%8a%e4%bd%bf%e7%94%a8%e8%af%b4%e6%98%8e","status":"publish","type":"post","link":"https:\/\/www.wsisp.com\/helps\/18279.html","title":{"rendered":"Linux\u4e0b50\u4e2a\u9ad8\u7ea7\u547d\u4ee4\u53ca\u4f7f\u7528\u8bf4\u660e"},"content":{"rendered":"<p>\u4ee5\u4e0b\u662f 50 \u4e2a Linux \u4e0b\u7684\u9ad8\u7ea7\u547d\u4ee4\u53ca\u5176\u4f7f\u7528\u8bf4\u660e\u3002\u8fd9\u4e9b\u547d\u4ee4\u6db5\u76d6\u4e86\u7cfb\u7edf\u7ba1\u7406\u3001\u6587\u4ef6\u5904\u7406\u3001\u7f51\u7edc\u914d\u7f6e\u548c\u8c03\u8bd5\u7b49\u65b9\u9762\u7684\u64cd\u4f5c\u3002<\/p>\n<li>find \u641c\u7d22\u6587\u4ef6\u548c\u76ee\u5f55\u3002<\/li>\n<p><span class=\"token function\">find<\/span> \/path\/to\/search <span class=\"token parameter variable\">-name<\/span> <span class=\"token string\">&#034;filename&#034;<\/span>       <span class=\"token comment\"># \u6309\u540d\u79f0\u641c\u7d22\u6587\u4ef6<\/span><br \/>\n<span class=\"token function\">find<\/span> \/path\/to\/search <span class=\"token parameter variable\">-type<\/span> f <span class=\"token parameter variable\">-mtime<\/span> <span class=\"token parameter variable\">-7<\/span>      <span class=\"token comment\"># \u67e5\u627e\u8fc7\u53bb7\u5929\u5185\u4fee\u6539\u8fc7\u7684\u6587\u4ef6<\/span><\/p>\n<li>grep \u5728\u6587\u4ef6\u4e2d\u641c\u7d22\u6587\u672c\u3002<\/li>\n<p><span class=\"token function\">grep<\/span> <span class=\"token string\">&#034;search_text&#034;<\/span> file.txt                 <span class=\"token comment\"># \u641c\u7d22\u6307\u5b9a\u6587\u672c<\/span><br \/>\n<span class=\"token function\">grep<\/span> <span class=\"token parameter variable\">-r<\/span> <span class=\"token string\">&#034;search_text&#034;<\/span> \/path\/to\/dir          <span class=\"token comment\"># \u9012\u5f52\u641c\u7d22\u76ee\u5f55\u4e2d\u7684\u6587\u672c<\/span><br \/>\n<span class=\"token function\">grep<\/span> <span class=\"token parameter variable\">-i<\/span> <span class=\"token string\">&#034;search_text&#034;<\/span> file.txt              <span class=\"token comment\"># \u5ffd\u7565\u5927\u5c0f\u5199\u641c\u7d22<\/span><\/p>\n<li>awk \u5904\u7406\u548c\u5206\u6790\u6587\u672c\u6570\u636e\u3002<\/li>\n<p><span class=\"token function\">awk<\/span> <span class=\"token string\">&#039;{print $1}&#039;<\/span> file.txt                   <span class=\"token comment\"># \u6253\u5370\u6587\u4ef6\u7684\u7b2c\u4e00\u5217<\/span><br \/>\n<span class=\"token function\">awk<\/span> -F<span class=\"token string\">&#034;:&#034;<\/span> <span class=\"token string\">&#039;{print $1, $3}&#039;<\/span> \/etc\/passwd       <span class=\"token comment\"># \u4f7f\u7528&#034;:&#034;\u4f5c\u4e3a\u5b57\u6bb5\u5206\u9694\u7b26<\/span><\/p>\n<li>sed \u6d41\u7f16\u8f91\u5668&#xff0c;\u7528\u4e8e\u5904\u7406\u548c\u8f6c\u6362\u6587\u672c\u6d41\u3002<\/li>\n<p><span class=\"token function\">sed<\/span> <span class=\"token string\">&#039;s\/old_text\/new_text\/&#039;<\/span> file.txt          <span class=\"token comment\"># \u66ff\u6362\u6587\u672c\u4e2d\u7684&#034;old_text&#034;\u4e3a&#034;new_text&#034;<\/span><br \/>\n<span class=\"token function\">sed<\/span> <span class=\"token parameter variable\">-i<\/span> <span class=\"token string\">&#039;s\/old_text\/new_text\/&#039;<\/span> file.txt       <span class=\"token comment\"># \u76f4\u63a5\u4fee\u6539\u6587\u4ef6<\/span><\/p>\n<li>xargs \u5c06\u8f93\u5165\u6570\u636e\u8f6c\u6362\u4e3a\u547d\u4ee4\u884c\u53c2\u6570\u3002<\/li>\n<p><span class=\"token function\">find<\/span> \/path\/to\/dir <span class=\"token parameter variable\">-type<\/span> f <span class=\"token operator\">|<\/span> <span class=\"token function\">xargs<\/span> <span class=\"token function\">rm<\/span>         <span class=\"token comment\"># \u5220\u9664\u76ee\u5f55\u4e2d\u7684\u6240\u6709\u6587\u4ef6<\/span><br \/>\n<span class=\"token builtin class-name\">echo<\/span> <span class=\"token string\">&#034;file1 file2 file3&#034;<\/span> <span class=\"token operator\">|<\/span> <span class=\"token function\">xargs<\/span> <span class=\"token parameter variable\">-n<\/span> <span class=\"token number\">1<\/span> <span class=\"token function\">mv<\/span> <span class=\"token parameter variable\">-t<\/span> \/new\/dir <span class=\"token comment\"># \u5c06\u6587\u4ef6\u79fb\u52a8\u5230\u65b0\u76ee\u5f55<\/span><\/p>\n<li>tar \u6253\u5305\u548c\u89e3\u5305\u6587\u4ef6\u3002<\/li>\n<p><span class=\"token function\">tar<\/span> <span class=\"token parameter variable\">-cvf<\/span> archive.tar \/path\/to\/dir            <span class=\"token comment\"># \u6253\u5305\u76ee\u5f55<\/span><br \/>\n<span class=\"token function\">tar<\/span> <span class=\"token parameter variable\">-xvf<\/span> archive.tar                         <span class=\"token comment\"># \u89e3\u5305 tar \u6587\u4ef6<\/span><br \/>\n<span class=\"token function\">tar<\/span> <span class=\"token parameter variable\">-czvf<\/span> archive.tar.gz \/path\/to\/dir        <span class=\"token comment\"># \u538b\u7f29\u76ee\u5f55\u4e3a tar.gz<\/span><br \/>\n<span class=\"token function\">tar<\/span> <span class=\"token parameter variable\">-xzvf<\/span> archive.tar.gz                     <span class=\"token comment\"># \u89e3\u538b tar.gz \u6587\u4ef6<\/span><\/p>\n<li>gzip \u548c gunzip \u538b\u7f29\u548c\u89e3\u538b\u6587\u4ef6\u3002<\/li>\n<p><span class=\"token function\">gzip<\/span> file.txt                               <span class=\"token comment\"># \u538b\u7f29\u6587\u4ef6<\/span><br \/>\ngunzip file.txt.gz                          <span class=\"token comment\"># \u89e3\u538b\u6587\u4ef6<\/span><\/p>\n<li>bzip2 \u548c bunzip2 \u4f7f\u7528 bzip2 \u538b\u7f29\u548c\u89e3\u538b\u6587\u4ef6\u3002<\/li>\n<p><span class=\"token function\">bzip2<\/span> file.txt                              <span class=\"token comment\"># \u538b\u7f29\u6587\u4ef6<\/span><br \/>\nbunzip2 file.txt.bz2                        <span class=\"token comment\"># \u89e3\u538b\u6587\u4ef6<\/span><\/p>\n<li>zip \u548c unzip \u538b\u7f29\u548c\u89e3\u538b zip \u6587\u4ef6\u3002<\/li>\n<p><span class=\"token function\">zip<\/span> archive.zip file1 file2                  <span class=\"token comment\"># \u538b\u7f29\u6587\u4ef6<\/span><br \/>\n<span class=\"token function\">unzip<\/span> archive.zip                            <span class=\"token comment\"># \u89e3\u538b zip \u6587\u4ef6<\/span><\/p>\n<li>ssh \u5b89\u5168\u5730\u8fdc\u7a0b\u8fde\u63a5\u5230\u53e6\u4e00\u53f0\u8ba1\u7b97\u673a\u3002<\/li>\n<p><span class=\"token function\">ssh<\/span> user&#064;remote_host                        <span class=\"token comment\"># \u8fde\u63a5\u5230\u8fdc\u7a0b\u4e3b\u673a<\/span><br \/>\n<span class=\"token function\">ssh<\/span> <span class=\"token parameter variable\">-i<\/span> \/path\/to\/key user&#064;remote_host        <span class=\"token comment\"># \u4f7f\u7528\u79c1\u94a5\u6587\u4ef6\u8fde\u63a5<\/span><\/p>\n<li>scp \u5b89\u5168\u5730\u590d\u5236\u6587\u4ef6\u5230\u8fdc\u7a0b\u4e3b\u673a\u6216\u4ece\u8fdc\u7a0b\u4e3b\u673a\u590d\u5236\u6587\u4ef6\u3002<\/li>\n<p><span class=\"token function\">scp<\/span> file.txt user&#064;remote_host:\/path\/to\/dir   <span class=\"token comment\"># \u4ece\u672c\u5730\u590d\u5236\u6587\u4ef6\u5230\u8fdc\u7a0b\u4e3b\u673a<\/span><br \/>\n<span class=\"token function\">scp<\/span> user&#064;remote_host:\/path\/to\/file.txt <span class=\"token builtin class-name\">.<\/span>     <span class=\"token comment\"># \u4ece\u8fdc\u7a0b\u4e3b\u673a\u590d\u5236\u6587\u4ef6\u5230\u672c\u5730<\/span><\/p>\n<li>rsync \u9ad8\u6548\u5730\u540c\u6b65\u6587\u4ef6\u548c\u76ee\u5f55\u3002<\/li>\n<p><span class=\"token function\">rsync<\/span> <span class=\"token parameter variable\">-av<\/span> \/path\/to\/source\/ \/path\/to\/dest\/    <span class=\"token comment\"># \u540c\u6b65\u672c\u5730\u76ee\u5f55<\/span><br \/>\n<span class=\"token function\">rsync<\/span> <span class=\"token parameter variable\">-avz<\/span> user&#064;remote_host:\/path\/to\/dir \/path\/to\/local\/dir  <span class=\"token comment\"># \u540c\u6b65\u8fdc\u7a0b\u76ee\u5f55<\/span><\/p>\n<li>curl \u4e0e\u7f51\u7edc\u670d\u52a1\u5668\u4ea4\u4e92&#xff0c;\u53d1\u9001\u548c\u63a5\u6536\u6570\u636e\u3002<\/li>\n<p><span class=\"token function\">curl<\/span> http:\/\/example.com                    <span class=\"token comment\"># \u83b7\u53d6\u7f51\u9875\u5185\u5bb9<\/span><br \/>\n<span class=\"token function\">curl<\/span> <span class=\"token parameter variable\">-O<\/span> http:\/\/example.com\/file.txt         <span class=\"token comment\"># \u4e0b\u8f7d\u6587\u4ef6<\/span><br \/>\n<span class=\"token function\">curl<\/span> <span class=\"token parameter variable\">-X<\/span> POST <span class=\"token parameter variable\">-d<\/span> <span class=\"token string\">&#034;param1&#061;value1&#034;<\/span> http:\/\/example.com\/api  <span class=\"token comment\"># \u53d1\u9001 POST \u8bf7\u6c42<\/span><\/p>\n<li>wget \u4ece\u7f51\u7edc\u4e0a\u4e0b\u8f7d\u6587\u4ef6\u3002<\/li>\n<p><span class=\"token function\">wget<\/span> http:\/\/example.com\/file.txt            <span class=\"token comment\"># \u4e0b\u8f7d\u6587\u4ef6<\/span><br \/>\n<span class=\"token function\">wget<\/span> <span class=\"token parameter variable\">-r<\/span> http:\/\/example.com\/                  <span class=\"token comment\"># \u9012\u5f52\u4e0b\u8f7d\u7f51\u7ad9<\/span><\/p>\n<li>netstat \u663e\u793a\u7f51\u7edc\u8fde\u63a5\u3001\u8def\u7531\u8868\u548c\u63a5\u53e3\u7edf\u8ba1\u4fe1\u606f\u3002<\/li>\n<p><span class=\"token function\">netstat<\/span> <span class=\"token parameter variable\">-tuln<\/span>                               <span class=\"token comment\"># \u663e\u793a\u76d1\u542c\u7684\u7aef\u53e3<\/span><br \/>\n<span class=\"token function\">netstat<\/span> <span class=\"token parameter variable\">-anp<\/span>                               <span class=\"token comment\"># \u663e\u793a\u7f51\u7edc\u8fde\u63a5\u548c\u76f8\u5173\u7a0b\u5e8f<\/span><\/p>\n<li>ss \u663e\u793a\u7f51\u7edc\u5957\u63a5\u5b57\u4fe1\u606f\u3002<\/li>\n<p>ss <span class=\"token parameter variable\">-tuln<\/span>                                  <span class=\"token comment\"># \u663e\u793a\u76d1\u542c\u7684\u7aef\u53e3<\/span><br \/>\nss <span class=\"token parameter variable\">-s<\/span>                                      <span class=\"token comment\"># \u663e\u793a\u5957\u63a5\u5b57\u7edf\u8ba1<\/span><\/p>\n<li>top \u5b9e\u65f6\u663e\u793a\u7cfb\u7edf\u8fdb\u7a0b\u548c\u8d44\u6e90\u4f7f\u7528\u60c5\u51b5\u3002<\/li>\n<p><span class=\"token function\">top<\/span>                                        <span class=\"token comment\"># \u663e\u793a\u7cfb\u7edf\u8fdb\u7a0b<\/span><br \/>\n<span class=\"token function\">htop<\/span>                                       <span class=\"token comment\"># \u4ea4\u4e92\u5f0f\u8fdb\u7a0b\u67e5\u770b\u5668<\/span><\/p>\n<li>ps \u663e\u793a\u5f53\u524d\u8fdb\u7a0b\u72b6\u6001\u3002<\/li>\n<p><span class=\"token function\">ps<\/span> aux                                     <span class=\"token comment\"># \u663e\u793a\u6240\u6709\u8fdb\u7a0b\u7684\u8be6\u7ec6\u4fe1\u606f<\/span><br \/>\n<span class=\"token function\">ps<\/span> <span class=\"token parameter variable\">-ef<\/span>                                      <span class=\"token comment\"># \u663e\u793a\u6240\u6709\u8fdb\u7a0b\u7684\u6807\u51c6\u683c\u5f0f<\/span><\/p>\n<li>kill \u7ec8\u6b62\u8fdb\u7a0b\u3002<\/li>\n<p><span class=\"token function\">kill<\/span> PID                                   <span class=\"token comment\"># \u7ec8\u6b62\u6307\u5b9a PID \u7684\u8fdb\u7a0b<\/span><br \/>\n<span class=\"token function\">kill<\/span> <span class=\"token parameter variable\">-9<\/span> PID                                <span class=\"token comment\"># \u5f3a\u5236\u7ec8\u6b62\u8fdb\u7a0b<\/span><\/p>\n<li>pkill \u6839\u636e\u8fdb\u7a0b\u540d\u79f0\u7ec8\u6b62\u8fdb\u7a0b\u3002<\/li>\n<p><span class=\"token function\">pkill<\/span> process_name                        <span class=\"token comment\"># \u7ec8\u6b62\u6240\u6709\u5339\u914d\u8fdb\u7a0b\u540d\u79f0\u7684\u8fdb\u7a0b<\/span><\/p>\n<li>systemctl \u7ba1\u7406\u7cfb\u7edf\u670d\u52a1&#xff08;\u9002\u7528\u4e8e\u4f7f\u7528 systemd \u7684\u7cfb\u7edf&#xff09;\u3002<\/li>\n<p>systemctl start service_name              <span class=\"token comment\"># \u542f\u52a8\u670d\u52a1<\/span><br \/>\nsystemctl stop service_name               <span class=\"token comment\"># \u505c\u6b62\u670d\u52a1<\/span><br \/>\nsystemctl restart service_name            <span class=\"token comment\"># \u91cd\u542f\u670d\u52a1<\/span><br \/>\nsystemctl status service_name             <span class=\"token comment\"># \u67e5\u770b\u670d\u52a1\u72b6\u6001<\/span><\/p>\n<li>journalctl \u67e5\u770b\u548c\u5206\u6790\u7cfb\u7edf\u65e5\u5fd7&#xff08;\u9002\u7528\u4e8e\u4f7f\u7528 systemd \u7684\u7cfb\u7edf&#xff09;\u3002<\/li>\n<p>journalctl <span class=\"token parameter variable\">-xe<\/span>                            <span class=\"token comment\"># \u67e5\u770b\u6700\u8fd1\u7684\u65e5\u5fd7<\/span><br \/>\njournalctl <span class=\"token parameter variable\">-u<\/span> service_name                <span class=\"token comment\"># \u67e5\u770b\u6307\u5b9a\u670d\u52a1\u7684\u65e5\u5fd7<\/span><\/p>\n<li>crontab \u7ba1\u7406\u5b9a\u65f6\u4efb\u52a1\u3002<\/li>\n<p><span class=\"token function\">crontab<\/span> <span class=\"token parameter variable\">-e<\/span>                                <span class=\"token comment\"># \u7f16\u8f91\u5f53\u524d\u7528\u6237\u7684 crontab \u6587\u4ef6<\/span><br \/>\n<span class=\"token function\">crontab<\/span> <span class=\"token parameter variable\">-l<\/span>                                <span class=\"token comment\"># \u5217\u51fa\u5f53\u524d\u7528\u6237\u7684 crontab \u4efb\u52a1<\/span><\/p>\n<li>at \u5b89\u6392\u4e00\u6b21\u6027\u4efb\u52a1\u3002<\/li>\n<p>at now &#043; <span class=\"token number\">1<\/span> minute                         <span class=\"token comment\"># \u5b89\u6392\u4efb\u52a1\u5728\u4e00\u5206\u949f\u540e\u6267\u884c<\/span><br \/>\natq                                       <span class=\"token comment\"># \u5217\u51fa\u5f85\u5904\u7406\u7684\u4efb\u52a1<\/span><br \/>\natrm job_number                            <span class=\"token comment\"># \u5220\u9664\u6307\u5b9a\u4efb\u52a1<\/span><\/p>\n<li>chmod \u66f4\u6539\u6587\u4ef6\u6216\u76ee\u5f55\u7684\u6743\u9650\u3002<\/li>\n<p><span class=\"token function\">chmod<\/span> <span class=\"token number\">755<\/span> file.txt                        <span class=\"token comment\"># \u8bbe\u7f6e\u6743\u9650\u4e3a rwxr-xr-x<\/span><br \/>\n<span class=\"token function\">chmod<\/span> <span class=\"token parameter variable\">-R<\/span> <span class=\"token number\">755<\/span> \/path\/to\/dir                  <span class=\"token comment\"># \u9012\u5f52\u8bbe\u7f6e\u76ee\u5f55\u6743\u9650<\/span><\/p>\n<li>chown \u66f4\u6539\u6587\u4ef6\u6216\u76ee\u5f55\u7684\u6240\u6709\u8005\u548c\u7ec4\u3002<\/li>\n<p><span class=\"token function\">chown<\/span> user:group file.txt                  <span class=\"token comment\"># \u66f4\u6539\u6587\u4ef6\u6240\u6709\u8005\u548c\u7ec4<\/span><br \/>\n<span class=\"token function\">chown<\/span> <span class=\"token parameter variable\">-R<\/span> user:group \/path\/to\/dir            <span class=\"token comment\"># \u9012\u5f52\u66f4\u6539\u76ee\u5f55\u6240\u6709\u8005\u548c\u7ec4<\/span><\/p>\n<li>df \u663e\u793a\u78c1\u76d8\u7a7a\u95f4\u4f7f\u7528\u60c5\u51b5\u3002<\/li>\n<p><span class=\"token function\">df<\/span> <span class=\"token parameter variable\">-h<\/span>                                      <span class=\"token comment\"># \u4ee5\u4eba\u7c7b\u53ef\u8bfb\u7684\u683c\u5f0f\u663e\u793a\u78c1\u76d8\u4f7f\u7528\u60c5\u51b5<\/span><br \/>\n<span class=\"token function\">df<\/span> <span class=\"token parameter variable\">-i<\/span>                                      <span class=\"token comment\"># \u663e\u793a inode \u4f7f\u7528\u60c5\u51b5<\/span><\/p>\n<li>du \u663e\u793a\u76ee\u5f55\u7684\u78c1\u76d8\u4f7f\u7528\u60c5\u51b5\u3002<\/li>\n<p><span class=\"token function\">du<\/span> <span class=\"token parameter variable\">-sh<\/span> \/path\/to\/dir                        <span class=\"token comment\"># \u663e\u793a\u76ee\u5f55\u603b\u5927\u5c0f<\/span><br \/>\n<span class=\"token function\">du<\/span> <span class=\"token parameter variable\">-ah<\/span> \/path\/to\/dir                        <span class=\"token comment\"># \u663e\u793a\u76ee\u5f55\u4e0b\u6bcf\u4e2a\u6587\u4ef6\u548c\u5b50\u76ee\u5f55\u7684\u5927\u5c0f<\/span><\/p>\n<li>free \u663e\u793a\u5185\u5b58\u4f7f\u7528\u60c5\u51b5\u3002<\/li>\n<p><span class=\"token function\">free<\/span> <span class=\"token parameter variable\">-h<\/span>                                    <span class=\"token comment\"># \u4ee5\u4eba\u7c7b\u53ef\u8bfb\u7684\u683c\u5f0f\u663e\u793a\u5185\u5b58\u4f7f\u7528\u60c5\u51b5<\/span><br \/>\n<span class=\"token function\">free<\/span> <span class=\"token parameter variable\">-m<\/span>                                    <span class=\"token comment\"># \u4ee5 MB \u4e3a\u5355\u4f4d\u663e\u793a\u5185\u5b58\u4f7f\u7528\u60c5\u51b5<\/span><\/p>\n<li>uptime \u663e\u793a\u7cfb\u7edf\u8fd0\u884c\u65f6\u95f4\u548c\u8d1f\u8f7d\u5e73\u5747\u503c\u3002<\/li>\n<p><span class=\"token function\">uptime<\/span>                                     <span class=\"token comment\"># \u663e\u793a\u7cfb\u7edf\u8fd0\u884c\u65f6\u95f4\u548c\u8d1f\u8f7d\u5e73\u5747\u503c<\/span><\/p>\n<li>dmesg \u663e\u793a\u5185\u6838\u548c\u542f\u52a8\u4fe1\u606f\u3002<\/li>\n<p><span class=\"token function\">dmesg<\/span>                                      <span class=\"token comment\"># \u663e\u793a\u5185\u6838\u73af\u5f62\u7f13\u51b2\u533a\u4e2d\u7684\u4fe1\u606f<\/span><br \/>\n<span class=\"token function\">dmesg<\/span> <span class=\"token operator\">|<\/span> <span class=\"token function\">grep<\/span> error                         <span class=\"token comment\"># \u8fc7\u6ee4\u663e\u793a\u9519\u8bef\u4fe1\u606f<\/span><\/p>\n<li>lsof \u5217\u51fa\u6253\u5f00\u7684\u6587\u4ef6\u548c\u76f8\u5173\u7684\u8fdb\u7a0b\u4fe1\u606f\u3002<\/li>\n<p><span class=\"token function\">lsof<\/span>                                      <span class=\"token comment\"># \u663e\u793a\u6240\u6709\u6253\u5f00\u7684\u6587\u4ef6<\/span><br \/>\n<span class=\"token function\">lsof<\/span> <span class=\"token parameter variable\">-i<\/span> :80                               <span class=\"token comment\"># \u663e\u793a\u4f7f\u7528\u7aef\u53e380\u7684\u8fdb\u7a0b<\/span><\/p>\n<li>strace \u8ddf\u8e2a\u7cfb\u7edf\u8c03\u7528\u548c\u4fe1\u53f7\u3002<\/li>\n<p><span class=\"token function\">strace<\/span> <span class=\"token builtin class-name\">command<\/span>                            <span class=\"token comment\"># \u8ddf\u8e2a\u547d\u4ee4\u7684\u7cfb\u7edf\u8c03\u7528<\/span><br \/>\n<span class=\"token function\">strace<\/span> <span class=\"token parameter variable\">-p<\/span> PID                             <span class=\"token comment\"># \u8ddf\u8e2a\u6307\u5b9a\u8fdb\u7a0b\u7684\u7cfb\u7edf\u8c03\u7528<\/span><\/p>\n<li>tcpdump \u6355\u83b7\u548c\u5206\u6790\u7f51\u7edc\u6d41\u91cf\u3002<\/li>\n<p>tcpdump <span class=\"token parameter variable\">-i<\/span> eth0                           <span class=\"token comment\"># \u6355\u83b7 eth0 \u7f51\u7edc\u63a5\u53e3\u7684\u6d41\u91cf<\/span><br \/>\ntcpdump <span class=\"token parameter variable\">-i<\/span> eth0 port <span class=\"token number\">80<\/span>                   <span class=\"token comment\"># \u6355\u83b7\u6307\u5b9a\u7aef\u53e3\u7684\u6d41\u91cf<\/span><\/p>\n<li>iptables \u914d\u7f6e\u548c\u7ba1\u7406\u7f51\u7edc\u9632\u706b\u5899\u89c4\u5219\u3002<\/li>\n<p>iptables <span class=\"token parameter variable\">-L<\/span>                               <span class=\"token comment\"># \u5217\u51fa\u5f53\u524d\u9632\u706b\u5899\u89c4\u5219<\/span><br \/>\niptables <span class=\"token parameter variable\">-A<\/span> INPUT <span class=\"token parameter variable\">-p<\/span> tcp <span class=\"token parameter variable\">&#8211;dport<\/span> <span class=\"token number\">22<\/span> <span class=\"token parameter variable\">-j<\/span> ACCEPT  <span class=\"token comment\"># \u5141\u8bb8 TCP \u7aef\u53e322\u7684\u8fde\u63a5<\/span><\/p>\n<li>ip \u663e\u793a\u548c\u4fee\u6539\u7f51\u7edc\u63a5\u53e3\u548c\u8def\u7531\u3002<\/li>\n<p><span class=\"token function\">ip<\/span> addr show                              <span class=\"token comment\"># \u663e\u793a\u7f51\u7edc\u63a5\u53e3\u7684 IP \u5730\u5740<\/span><br \/>\n<span class=\"token function\">ip<\/span> route show                             <span class=\"token comment\"># \u663e\u793a\u8def\u7531\u8868<\/span><\/p>\n<li>hostname \u663e\u793a\u6216\u8bbe\u7f6e\u7cfb\u7edf\u4e3b\u673a\u540d\u3002<\/li>\n<p><span class=\"token function\">hostname<\/span>                                  <span class=\"token comment\"># \u663e\u793a\u5f53\u524d\u4e3b\u673a\u540d<\/span><br \/>\nhostnamectl set-hostname new-hostname     <span class=\"token comment\"># \u8bbe\u7f6e\u65b0\u7684\u4e3b\u673a\u540d<\/span><\/p>\n<li>mount \u6302\u8f7d\u6587\u4ef6\u7cfb\u7edf\u3002<\/li>\n<p><span class=\"token function\">mount<\/span> \/dev\/sdX1 \/mnt\/point                 <span class=\"token comment\"># \u6302\u8f7d\u8bbe\u5907\u5230\u6307\u5b9a\u76ee\u5f55<\/span><br \/>\n<span class=\"token function\">umount<\/span> \/mnt\/point                          <span class=\"token comment\"># \u5378\u8f7d\u6302\u8f7d\u7684\u6587\u4ef6\u7cfb\u7edf<\/span><\/p>\n<li>blkid \u5217\u51fa\u5757\u8bbe\u5907\u7684\u4fe1\u606f\u3002<\/li>\n<p>blkid                                      <span class=\"token comment\"># \u663e\u793a\u6240\u6709\u5757\u8bbe\u5907\u7684 UUID \u548c\u6587\u4ef6\u7cfb\u7edf\u7c7b\u578b<\/span><\/p>\n<li>parted \u7ba1\u7406\u78c1\u76d8\u5206\u533a\u3002<\/li>\n<p><span class=\"token function\">parted<\/span> \/dev\/sdX                           <span class=\"token comment\"># \u542f\u52a8 parted \u5de5\u5177<\/span><br \/>\nparted<span class=\"token operator\">&gt;<\/span> print                              <span class=\"token comment\"># \u6253\u5370\u5206\u533a\u8868<\/span><\/p>\n<li>fdisk \u7ba1\u7406\u78c1\u76d8\u5206\u533a\u8868\u3002<\/li>\n<p><span class=\"token function\">fdisk<\/span> \/dev\/sdX                           <span class=\"token comment\"># \u542f\u52a8 fdisk \u5de5\u5177<\/span><br \/>\n<span class=\"token function\">fdisk<\/span> <span class=\"token parameter variable\">-l<\/span>                                 <span class=\"token comment\"># \u5217\u51fa\u6240\u6709\u5206\u533a\u4fe1\u606f<\/span><\/p>\n<li>mkfs \u521b\u5efa\u6587\u4ef6\u7cfb\u7edf\u3002<\/li>\n<p>mkfs.ext4 \/dev\/sdX1                      <span class=\"token comment\"># \u521b\u5efa ext4 \u6587\u4ef6\u7cfb\u7edf<\/span><br \/>\nmkfs.xfs \/dev\/sdX1                       <span class=\"token comment\"># \u521b\u5efa xfs \u6587\u4ef6\u7cfb\u7edf<\/span><\/p>\n<li>fsck \u68c0\u67e5\u548c\u4fee\u590d\u6587\u4ef6\u7cfb\u7edf\u9519\u8bef\u3002<\/li>\n<p><span class=\"token function\">fsck<\/span> \/dev\/sdX1                           <span class=\"token comment\"># \u68c0\u67e5\u6587\u4ef6\u7cfb\u7edf<\/span><br \/>\n<span class=\"token function\">fsck<\/span> <span class=\"token parameter variable\">-y<\/span> \/dev\/sdX1                        <span class=\"token comment\"># \u81ea\u52a8\u4fee\u590d\u6587\u4ef6\u7cfb\u7edf\u9519\u8bef<\/span><\/p>\n<li>locale \u663e\u793a\u548c\u8bbe\u7f6e\u533a\u57df\u8bbe\u7f6e\u3002<\/li>\n<p>locale                                    <span class=\"token comment\"># \u663e\u793a\u5f53\u524d\u533a\u57df\u8bbe\u7f6e<\/span><br \/>\nlocale <span class=\"token parameter variable\">-a<\/span>                                 <span class=\"token comment\"># \u663e\u793a\u6240\u6709\u53ef\u7528\u7684\u533a\u57df\u8bbe\u7f6e<\/span><\/p>\n<li>env \u663e\u793a\u73af\u5883\u53d8\u91cf\u6216\u8bbe\u7f6e\u73af\u5883\u53d8\u91cf\u3002<\/li>\n<p><span class=\"token function\">env<\/span>                                       <span class=\"token comment\"># \u663e\u793a\u5f53\u524d\u73af\u5883\u53d8\u91cf<\/span><br \/>\n<span class=\"token function\">env<\/span> <span class=\"token assign-left variable\">VAR<\/span><span class=\"token operator\">&#061;<\/span>value <span class=\"token builtin class-name\">command<\/span>                     <span class=\"token comment\"># \u8bbe\u7f6e\u73af\u5883\u53d8\u91cf\u5e76\u8fd0\u884c\u547d\u4ee4<\/span><\/p>\n<li>alias \u521b\u5efa\u547d\u4ee4\u522b\u540d\u3002<\/li>\n<p><span class=\"token builtin class-name\">alias<\/span> <span class=\"token assign-left variable\">ll<\/span><span class=\"token operator\">&#061;<\/span><span class=\"token string\">&#039;ls -la&#039;<\/span>                         <span class=\"token comment\"># \u521b\u5efa\u522b\u540d<\/span><br \/>\n<span class=\"token builtin class-name\">unalias<\/span> ll                                <span class=\"token comment\"># \u5220\u9664\u522b\u540d<\/span><\/p>\n<li>history \u663e\u793a\u547d\u4ee4\u5386\u53f2\u8bb0\u5f55\u3002<\/li>\n<p><span class=\"token function\">history<\/span>                                   <span class=\"token comment\"># \u663e\u793a\u547d\u4ee4\u5386\u53f2<\/span><br \/>\n<span class=\"token function\">history<\/span> <span class=\"token operator\">|<\/span> <span class=\"token function\">grep<\/span> <span class=\"token string\">&#039;command&#039;<\/span>                  <span class=\"token comment\"># \u67e5\u627e\u5386\u53f2\u8bb0\u5f55\u4e2d\u7684\u547d\u4ee4<\/span><\/p>\n<li>cron \u8ba1\u5212\u4efb\u52a1\u6267\u884c\u3002<\/li>\n<p><span class=\"token function\">crontab<\/span> <span class=\"token parameter variable\">-e<\/span>                                <span class=\"token comment\"># \u7f16\u8f91\u5f53\u524d\u7528\u6237\u7684\u8ba1\u5212\u4efb\u52a1<\/span><br \/>\n<span class=\"token function\">crontab<\/span> <span class=\"token parameter variable\">-l<\/span>                                <span class=\"token comment\"># \u5217\u51fa\u5f53\u524d\u7528\u6237\u7684\u8ba1\u5212\u4efb\u52a1<\/span><\/p>\n<li>watch \u5b9a\u671f\u6267\u884c\u547d\u4ee4\u5e76\u663e\u793a\u8f93\u51fa\u3002<\/li>\n<p><span class=\"token function\">watch<\/span> <span class=\"token parameter variable\">-n<\/span> <span class=\"token number\">5<\/span> <span class=\"token string\">&#039;df -h&#039;<\/span>                        <span class=\"token comment\"># \u6bcf5\u79d2\u6267\u884c\u4e00\u6b21 df -h \u5e76\u663e\u793a\u7ed3\u679c<\/span><\/p>\n<li>cut \u4ece\u6587\u672c\u4e2d\u63d0\u53d6\u5b57\u6bb5\u3002<\/li>\n<p><span class=\"token function\">cut<\/span> -d<span class=\"token string\">&#034;:&#034;<\/span> <span class=\"token parameter variable\">-f1<\/span> \/etc\/passwd                 <span class=\"token comment\"># \u4ee5&#034;:&#034;\u5206\u9694\u7b26\u63d0\u53d6\u7b2c\u4e00\u5b57\u6bb5<\/span><br \/>\n<span class=\"token function\">cut<\/span> -c1-10 file.txt                       <span class=\"token comment\"># \u63d0\u53d6\u6bcf\u884c\u7684\u524d10\u4e2a\u5b57\u7b26<\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u6587\u7ae0\u6d4f\u89c8\u9605\u8bfb1.3k\u6b21\uff0c\u70b9\u8d5e24\u6b21\uff0c\u6536\u85cf13\u6b21\u3002\u4ee5\u4e0b\u662f 50 \u4e2a Linux \u4e0b\u7684\u9ad8\u7ea7\u547d\u4ee4\u53ca\u5176\u4f7f\u7528\u8bf4\u660e\u3002\u8fd9\u4e9b\u547d\u4ee4\u6db5\u76d6\u4e86\u7cfb\u7edf\u7ba1\u7406\u3001\u6587\u4ef6\u5904\u7406\u3001\u7f51\u7edc\u914d\u7f6e\u548c\u8c03\u8bd5\u7b49\u65b9\u9762\u7684\u64cd\u4f5c\u3002_linux\u9ad8\u7ea7\u547d\u4ee4<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[58,43,44],"topic":[],"class_list":["post-18279","post","type-post","status-publish","format-standard","hentry","category-server","tag-linux","tag-43","tag-44"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v20.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Linux\u4e0b50\u4e2a\u9ad8\u7ea7\u547d\u4ee4\u53ca\u4f7f\u7528\u8bf4\u660e - \u7f51\u7855\u4e92\u8054\u5e2e\u52a9\u4e2d\u5fc3<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.wsisp.com\/helps\/18279.html\" \/>\n<meta property=\"og:locale\" content=\"zh_CN\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Linux\u4e0b50\u4e2a\u9ad8\u7ea7\u547d\u4ee4\u53ca\u4f7f\u7528\u8bf4\u660e - \u7f51\u7855\u4e92\u8054\u5e2e\u52a9\u4e2d\u5fc3\" \/>\n<meta property=\"og:description\" content=\"\u6587\u7ae0\u6d4f\u89c8\u9605\u8bfb1.3k\u6b21\uff0c\u70b9\u8d5e24\u6b21\uff0c\u6536\u85cf13\u6b21\u3002\u4ee5\u4e0b\u662f 50 \u4e2a Linux \u4e0b\u7684\u9ad8\u7ea7\u547d\u4ee4\u53ca\u5176\u4f7f\u7528\u8bf4\u660e\u3002\u8fd9\u4e9b\u547d\u4ee4\u6db5\u76d6\u4e86\u7cfb\u7edf\u7ba1\u7406\u3001\u6587\u4ef6\u5904\u7406\u3001\u7f51\u7edc\u914d\u7f6e\u548c\u8c03\u8bd5\u7b49\u65b9\u9762\u7684\u64cd\u4f5c\u3002_linux\u9ad8\u7ea7\u547d\u4ee4\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.wsisp.com\/helps\/18279.html\" \/>\n<meta property=\"og:site_name\" content=\"\u7f51\u7855\u4e92\u8054\u5e2e\u52a9\u4e2d\u5fc3\" \/>\n<meta property=\"article:published_time\" content=\"2025-04-18T16:42:05+00:00\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u4f5c\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 \u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.wsisp.com\/helps\/18279.html\",\"url\":\"https:\/\/www.wsisp.com\/helps\/18279.html\",\"name\":\"Linux\u4e0b50\u4e2a\u9ad8\u7ea7\u547d\u4ee4\u53ca\u4f7f\u7528\u8bf4\u660e - \u7f51\u7855\u4e92\u8054\u5e2e\u52a9\u4e2d\u5fc3\",\"isPartOf\":{\"@id\":\"https:\/\/www.wsisp.com\/helps\/#website\"},\"datePublished\":\"2025-04-18T16:42:05+00:00\",\"dateModified\":\"2025-04-18T16:42:05+00:00\",\"author\":{\"@id\":\"https:\/\/www.wsisp.com\/helps\/#\/schema\/person\/358e386c577a3ab51c4493330a20ad41\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.wsisp.com\/helps\/18279.html#breadcrumb\"},\"inLanguage\":\"zh-Hans\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.wsisp.com\/helps\/18279.html\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.wsisp.com\/helps\/18279.html#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u9996\u9875\",\"item\":\"https:\/\/www.wsisp.com\/helps\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Linux\u4e0b50\u4e2a\u9ad8\u7ea7\u547d\u4ee4\u53ca\u4f7f\u7528\u8bf4\u660e\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.wsisp.com\/helps\/#website\",\"url\":\"https:\/\/www.wsisp.com\/helps\/\",\"name\":\"\u7f51\u7855\u4e92\u8054\u5e2e\u52a9\u4e2d\u5fc3\",\"description\":\"\u9999\u6e2f\u670d\u52a1\u5668_\u9999\u6e2f\u4e91\u670d\u52a1\u5668\u8d44\u8baf_\u670d\u52a1\u5668\u5e2e\u52a9\u6587\u6863_\u670d\u52a1\u5668\u6559\u7a0b\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.wsisp.com\/helps\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"zh-Hans\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.wsisp.com\/helps\/#\/schema\/person\/358e386c577a3ab51c4493330a20ad41\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-Hans\",\"@id\":\"https:\/\/www.wsisp.com\/helps\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/gravatar.wp-china-yes.net\/avatar\/?s=96&d=mystery\",\"contentUrl\":\"https:\/\/gravatar.wp-china-yes.net\/avatar\/?s=96&d=mystery\",\"caption\":\"admin\"},\"sameAs\":[\"http:\/\/wp.wsisp.com\"],\"url\":\"https:\/\/www.wsisp.com\/helps\/author\/admin\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Linux\u4e0b50\u4e2a\u9ad8\u7ea7\u547d\u4ee4\u53ca\u4f7f\u7528\u8bf4\u660e - \u7f51\u7855\u4e92\u8054\u5e2e\u52a9\u4e2d\u5fc3","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.wsisp.com\/helps\/18279.html","og_locale":"zh_CN","og_type":"article","og_title":"Linux\u4e0b50\u4e2a\u9ad8\u7ea7\u547d\u4ee4\u53ca\u4f7f\u7528\u8bf4\u660e - \u7f51\u7855\u4e92\u8054\u5e2e\u52a9\u4e2d\u5fc3","og_description":"\u6587\u7ae0\u6d4f\u89c8\u9605\u8bfb1.3k\u6b21\uff0c\u70b9\u8d5e24\u6b21\uff0c\u6536\u85cf13\u6b21\u3002\u4ee5\u4e0b\u662f 50 \u4e2a Linux \u4e0b\u7684\u9ad8\u7ea7\u547d\u4ee4\u53ca\u5176\u4f7f\u7528\u8bf4\u660e\u3002\u8fd9\u4e9b\u547d\u4ee4\u6db5\u76d6\u4e86\u7cfb\u7edf\u7ba1\u7406\u3001\u6587\u4ef6\u5904\u7406\u3001\u7f51\u7edc\u914d\u7f6e\u548c\u8c03\u8bd5\u7b49\u65b9\u9762\u7684\u64cd\u4f5c\u3002_linux\u9ad8\u7ea7\u547d\u4ee4","og_url":"https:\/\/www.wsisp.com\/helps\/18279.html","og_site_name":"\u7f51\u7855\u4e92\u8054\u5e2e\u52a9\u4e2d\u5fc3","article_published_time":"2025-04-18T16:42:05+00:00","author":"admin","twitter_card":"summary_large_image","twitter_misc":{"\u4f5c\u8005":"admin","\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4":"3 \u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.wsisp.com\/helps\/18279.html","url":"https:\/\/www.wsisp.com\/helps\/18279.html","name":"Linux\u4e0b50\u4e2a\u9ad8\u7ea7\u547d\u4ee4\u53ca\u4f7f\u7528\u8bf4\u660e - \u7f51\u7855\u4e92\u8054\u5e2e\u52a9\u4e2d\u5fc3","isPartOf":{"@id":"https:\/\/www.wsisp.com\/helps\/#website"},"datePublished":"2025-04-18T16:42:05+00:00","dateModified":"2025-04-18T16:42:05+00:00","author":{"@id":"https:\/\/www.wsisp.com\/helps\/#\/schema\/person\/358e386c577a3ab51c4493330a20ad41"},"breadcrumb":{"@id":"https:\/\/www.wsisp.com\/helps\/18279.html#breadcrumb"},"inLanguage":"zh-Hans","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.wsisp.com\/helps\/18279.html"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.wsisp.com\/helps\/18279.html#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u9996\u9875","item":"https:\/\/www.wsisp.com\/helps"},{"@type":"ListItem","position":2,"name":"Linux\u4e0b50\u4e2a\u9ad8\u7ea7\u547d\u4ee4\u53ca\u4f7f\u7528\u8bf4\u660e"}]},{"@type":"WebSite","@id":"https:\/\/www.wsisp.com\/helps\/#website","url":"https:\/\/www.wsisp.com\/helps\/","name":"\u7f51\u7855\u4e92\u8054\u5e2e\u52a9\u4e2d\u5fc3","description":"\u9999\u6e2f\u670d\u52a1\u5668_\u9999\u6e2f\u4e91\u670d\u52a1\u5668\u8d44\u8baf_\u670d\u52a1\u5668\u5e2e\u52a9\u6587\u6863_\u670d\u52a1\u5668\u6559\u7a0b","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.wsisp.com\/helps\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"zh-Hans"},{"@type":"Person","@id":"https:\/\/www.wsisp.com\/helps\/#\/schema\/person\/358e386c577a3ab51c4493330a20ad41","name":"admin","image":{"@type":"ImageObject","inLanguage":"zh-Hans","@id":"https:\/\/www.wsisp.com\/helps\/#\/schema\/person\/image\/","url":"https:\/\/gravatar.wp-china-yes.net\/avatar\/?s=96&d=mystery","contentUrl":"https:\/\/gravatar.wp-china-yes.net\/avatar\/?s=96&d=mystery","caption":"admin"},"sameAs":["http:\/\/wp.wsisp.com"],"url":"https:\/\/www.wsisp.com\/helps\/author\/admin"}]}},"_links":{"self":[{"href":"https:\/\/www.wsisp.com\/helps\/wp-json\/wp\/v2\/posts\/18279","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.wsisp.com\/helps\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.wsisp.com\/helps\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.wsisp.com\/helps\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.wsisp.com\/helps\/wp-json\/wp\/v2\/comments?post=18279"}],"version-history":[{"count":0,"href":"https:\/\/www.wsisp.com\/helps\/wp-json\/wp\/v2\/posts\/18279\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.wsisp.com\/helps\/wp-json\/wp\/v2\/media?parent=18279"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.wsisp.com\/helps\/wp-json\/wp\/v2\/categories?post=18279"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.wsisp.com\/helps\/wp-json\/wp\/v2\/tags?post=18279"},{"taxonomy":"topic","embeddable":true,"href":"https:\/\/www.wsisp.com\/helps\/wp-json\/wp\/v2\/topic?post=18279"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}