-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.xml
10109 lines (9702 loc) · 729 KB
/
search.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<search>
<entry>
<title>Linux账号管理</title>
<url>/article/2020/02/24/Linux%E8%B4%A6%E5%8F%B7%E7%AE%A1%E7%90%86.html</url>
<content><![CDATA[<h2 id="查看用户信息"><a href="#查看用户信息" class="headerlink" title="查看用户信息"></a>查看用户信息</h2><h5 id="查看账号"><a href="#查看账号" class="headerlink" title="查看账号"></a>查看账号</h5><pre><code class="linux">[root@localhost ~]# head -n 4 /etc/passwd
root:x:0:0:root:/root:/bin/bash
bin:x:1:1:bin:/bin:/sbin/nologin
daemon:x:2:2:daemon:/sbin:/sbin/nologin
adm:x:3:4:adm:/var/adm:/sbin/nologin</code></pre>
<ul>
<li><ol>
<li>帐号名称</li>
</ol>
</li>
<li><ol start="2">
<li>密码: 具体密码放在/etc/shadow 中了,所以这里只会看到一个“ x ”</li>
</ol>
</li>
<li><ol start="3">
<li>UID: 这个就是使用者识别码;0(系统管理员)| 1<del>999(系统帐号) | 1000</del>60000(可登陆帐号)给一般使用者用的。</li>
</ol>
</li>
<li><ol start="4">
<li>GID: 这个与 /etc/group 有关;</li>
</ol>
</li>
<li><ol start="5">
<li>使用者信息说明栏;</li>
</ol>
</li>
<li><ol start="6">
<li>主文件夹: 这是使用者的主文件夹;</li>
</ol>
</li>
<li><ol start="7">
<li>Shell: 当使用者登陆系统后就会取得一个 Shell 来与系统的核心沟通以进行使用者的操作任务。</li>
</ol>
</li>
</ul>
<h5 id="查看密码"><a href="#查看密码" class="headerlink" title="查看密码"></a>查看密码</h5><pre><code class="linux">[root@localhost ~]# head -n 4 /etc/shadow
root:$1$PVouuTVF$M9aj8PmDWwU4026X2VAAe0:18026:0:99999:7:::
bin:*:16659:0:99999:7:::
daemon:*:16659:0:99999:7:::
adm:*:16659:0:99999:7:::
// 查看上一次修改密码的日期
[root@localhost ~]# date -u -d "1970-01-01 UTC $((18026 * 86400 )) seconds"
Fri May 10 00:00:00 UTC 2019</code></pre>
<ul>
<li><ol>
<li>帐号名称;</li>
</ol>
</li>
<li><ol start="2">
<li>密码: 这个字段内的数据才是真正的密码,而且是经过编码的密码;</li>
</ol>
</li>
<li><ol start="3">
<li>最近更动密码的日期;</li>
</ol>
</li>
<li><ol start="4">
<li>密码不可被更动的天数;</li>
</ol>
</li>
</ul>
<h2 id="查看群组信息"><a href="#查看群组信息" class="headerlink" title="查看群组信息"></a>查看群组信息</h2><p>用户帐号相关的两个文件是 /etc/passwd 与 /etc/shadow ,与此类似,群组相关信息在 /etc/group 与 /etc/gshadow 文件中;</p>
<h5 id="查看群组"><a href="#查看群组" class="headerlink" title="查看群组"></a>查看群组</h5><pre><code class="linux">[root@localhost ~]# head -n 4 /etc/group
root:x:0:
bin:x:1:
daemon:x:2:
sys:x:3:</code></pre>
<h5 id="查看密码-1"><a href="#查看密码-1" class="headerlink" title="查看密码"></a>查看密码</h5><pre><code class="linux">[root@localhost ~]# head -n 4 /etc/gshadow
root:::
bin:::
daemon:::
sys:::</code></pre>
<ul>
<li><ol>
<li>群组名称</li>
</ol>
</li>
<li><ol start="2">
<li>密码栏,同样的,开头为 ! 表示无合法密码,所以无群组管理员</li>
</ol>
</li>
<li><ol start="3">
<li>群组管理员的帐号 (相关信息在 gpasswd 中介绍)</li>
</ol>
</li>
<li><ol start="4">
<li>有加入该群组支持的所属帐号 (与 /etc/group 内容相同!)</li>
</ol>
</li>
</ul>
<h2 id="账号管理"><a href="#账号管理" class="headerlink" title="账号管理"></a>账号管理</h2><h5 id="新增用户"><a href="#新增用户" class="headerlink" title="新增用户"></a>新增用户</h5><pre><code class="linux">[root@localhost ~]# useradd user1
[root@localhost ~]# grep user1 /etc/passwd /etc/shadow /etc/group
/etc/passwd:user1:x:1001:1001::/home/user1:/bin/bash
/etc/shadow:user1:!!:18027
/etc/group:user1:x:1001: // 默认会创建一个与帐号一模一样的群组名
[root@localhost ~]# su user1
[user1@localhost root]$ cd ~
[user1@localhost ~]$ pwd
/home/user1 // 默认在home目录下创建一个同名用户目录
// -D 查看该命令的默认配置
[root@localhost user1]# useradd -D
GROUP=100
HOME=/home // 使用者主文件夹的基准目录(basedir)
INACTIVE=-1
EXPIRE=
SHELL=/bin/bash
SKEL=/etc/skel
CREATE_MAIL_SPOOL=yes</code></pre>
<h5 id="修改密码"><a href="#修改密码" class="headerlink" title="修改密码"></a>修改密码</h5><p>使用 useradd 创建了帐号之后,在默认的情况下,该帐号是暂时被封锁的, 也就是说,该帐号是无法登陆的,你可以去瞧一瞧 /etc/shadow 内的第二个字段就知道了(<code>/etc/shadow:user1:!!:18027</code>)。</p>
<pre><code class="linux">[root@localhost user1]# passwd --stdin user1
Changing password for user user1.
user1
passwd: all authentication tokens updated successfully.
[root@localhost user1]# grep user1 /etc/shadow
user1:$1$zQ.ACG7G$BOzh/LS6Zfa7uBIwjlV1j1:18027:0:99999:7:::</code></pre>
<p>passwd 的使用真的要很注意,要帮一般帐号创建密码需要使用“ passwd 帐号 ”的格式,使用“ passwd ”表示修改自己的密码!</p>
<h5 id="锁定账号"><a href="#锁定账号" class="headerlink" title="锁定账号"></a>锁定账号</h5><pre><code class="linux">// -l 锁定账号
[root@localhost ~]# passwd -l user1
Locking password for user user1.
passwd: Success
// -S 查看账号密码状态,需要root权限
[root@localhost ~]# passwd -S user1
user1 LK 2019-05-10 0 99999 7 -1 (Password locked.)
// 密码前面加上!!
[root@localhost ~]# grep user1 /etc/shadow
user1:!!$1$zQ.ACG7G$BOzh/LS6Zfa7uBIwjlV1j1:18027:0:99999:7:::
// -u 解锁账号
[root@localhost ~]# passwd -u user1
Unlocking password for user user1.
passwd: Success
// !! 去掉了
[root@localhost ~]# grep user1 /etc/shadow
user1:$1$zQ.ACG7G$BOzh/LS6Zfa7uBIwjlV1j1:18027:0:99999:7:::</code></pre>
<h5 id="查看密码状态"><a href="#查看密码状态" class="headerlink" title="查看密码状态"></a>查看密码状态</h5><p>上例用到了<code>passwd -S username</code>来查看密码状态,但是显然信息太过简略了,下面介绍一个新命令chage:</p>
<pre><code class="linux">[root@localhost ~]# chage -l user1
Last password change : May 11, 2019
Password expires : never
Password inactive : never
Account expires : never
Minimum number of days between password change : 0
Maximum number of days between password change : 99999
Number of days of warning before password expires : 7</code></pre>
<p>选项与参数:<br> -l :列出该帐号的详细密码参数;<br> -d :后面接日期,修改 shadow 第三字段(最近一次更改密码的日期),格式 YYYY-MM-DD<br> -E :后面接日期,修改 shadow 第八字段(帐号失效日),格式 YYYY-MM-DD<br> -I :后面接天数,修改 shadow 第七字段(密码失效日期)<br> -m :后面接天数,修改 shadow 第四字段(密码最短保留天数)<br> -M :后面接天数,修改 shadow 第五字段(密码多久需要进行变更)<br> -W :后面接天数,修改 shadow 第六字段(密码过期前警告日期)</p>
<h5 id="修改用户"><a href="#修改用户" class="headerlink" title="修改用户"></a>修改用户</h5><p>所谓这“人有失手,马有乱蹄”,有的时候在useradd 的时候加入了错误的设置数据。或者是,在使用 useradd 后,发现某些地方还可以进行细部修改。 此时,当然我们可以直接到 /etc/passwd 或 /etc/shadow 去修改相对应字段的数据, 或者使用命令<code>usermod</code> 。</p>
<p>值得注意的是,修改用户时需要退出相关进程:</p>
<pre><code class="linux">[root@localhost ~]# usermod -l user11 user1
usermod: user user1 is currently used by process 3060
[root@localhost ~]# pkill -9 -u user1
[root@localhost ~]# Killed
[root@localhost ~]# exit
[root@localhost ~]# usermod -l user11 user1
[root@localhost ~]# grep user /etc/passwd
user11:x:1001:1001::/home/user1:/bin/bash // 用户名变为user11</code></pre>
<p>选项与参数:<br> -c :后面接帐号的说明,即 /etc/passwd 第五栏的说明栏,可以加入一些帐号的说明。<br> -d :后面接帐号的主文件夹,即修改 /etc/passwd 的第六栏;<br> -e :后面接日期,格式是 YYYY-MM-DD 也就是在 /etc/shadow 内的第八个字段数据啦!<br> -f :后面接天数,为 shadow 的第七字段。<br> -g :后面接初始群组,修改 /etc/passwd 的第四个字段,亦即是 GID 的字段!<br> -G :后面接次要群组,修改这个使用者能够支持的群组,修改的是 /etc/group 啰~<br> -a :与 -G 合用,可“增加次要群组的支持”而非“设置”喔!<br> -l :后面接帐号名称。亦即是修改帐号名称, /etc/passwd 的第一栏!<br> -s :后面接 Shell 的实际文件,例如 /bin/bash 或 /bin/csh 等等。<br> -u :后面接 UID 数字啦!即 /etc/passwd 第三栏的数据;<br> -L :暂时将使用者的密码冻结,让他无法登陆。其实仅改 /etc/shadow 的密码栏。<br> -U :将 /etc/shadow 密码栏的 ! 拿掉,解冻啦!</p>
<h5 id="删除用户"><a href="#删除用户" class="headerlink" title="删除用户"></a>删除用户</h5><p><code>userdel</code>指令的目的在删除使用者的相关数据,而使用者的数据有:</p>
<ul>
<li>使用者帐号/密码相关参数:/etc/passwd, /etc/shadow</li>
<li>使用者群组相关参数:/etc/group, /etc/gshadow</li>
<li>使用者个人文件数据: /home/username, /var/spool/mail/username..</li>
</ul>
<pre><code class="linux">[root@localhost ~]# userdel -r user1
[root@localhost ~]# grep user1 /etc/passwd
[root@localhost ~]# </code></pre>
<p>选项与参数:<br>-r :连同使用者的主文件夹也一起删除</p>
<p>如果想要完整的将某个帐号完整的移除,最好可以在下达 userdel -r username 之前, 先以“ find / -user username ”查出整个系统内属于 username 的文件,然后再加以删除。</p>
]]></content>
</entry>
<entry>
<title>Linux磁盘管理</title>
<url>/article/2020/02/24/Linux%E7%A3%81%E7%9B%98%E7%AE%A1%E7%90%86.html</url>
<content><![CDATA[<h2 id="一切从“-”开始"><a href="#一切从“-”开始" class="headerlink" title="一切从“/”开始"></a>一切从“/”开始</h2><p>在Linux系统中,目录、字符设备、块设备、套接字、打印机等都被抽象成了文件,即“Linux系统中一切都是文件”。</p>
<p>在Windows操作系统中,想要找到一个文件,我们要依次进入该文件所在的磁盘分区(假设这里是D盘),然后在进入该分区下的具体目录,最终找到这个文件。但是在Linux系统中并不存在C/D/E/F等盘符,Linux系统中的一切文件都是从“根(/)”目录开始的,并按照文件系统层次化标准(FHS)采用树形结构来存放文件,以及定义了常见目录的用途。</p>
<p>根目录下输入<code>ls</code>,可以查看下面常见目录</p>
<table>
<thead>
<tr>
<th>目录名称</th>
<th>应放置文件的内容</th>
</tr>
</thead>
<tbody><tr>
<td>/boot</td>
<td>开机所需文件—内核、开机菜单以及所需配置文件等</td>
</tr>
<tr>
<td>/dev</td>
<td>以文件形式存放任何设备与接口</td>
</tr>
<tr>
<td>/etc</td>
<td>配置文件</td>
</tr>
<tr>
<td>/home</td>
<td>用户主目录</td>
</tr>
<tr>
<td>/bin</td>
<td>存放单用户模式下还可以操作的命令</td>
</tr>
<tr>
<td>/lib</td>
<td>开机时用到的函数库,以及/bin与/sbin下面的命令要调用的函数</td>
</tr>
<tr>
<td>/sbin</td>
<td>开机过程中需要的命令</td>
</tr>
<tr>
<td>/media</td>
<td>用于挂载设备文件的目录</td>
</tr>
<tr>
<td>/opt</td>
<td>放置第三方的软件</td>
</tr>
<tr>
<td>/root</td>
<td>系统管理员的家目录</td>
</tr>
<tr>
<td>/srv</td>
<td>一些网络服务的数据文件目录</td>
</tr>
<tr>
<td>/tmp</td>
<td>任何人均可使用的“共享”临时目录</td>
</tr>
<tr>
<td>/proc</td>
<td>虚拟文件系统,例如系统内核、进程、外部设备及网络状态等</td>
</tr>
<tr>
<td>/usr/local</td>
<td>用户自行安装的软件</td>
</tr>
<tr>
<td>/usr/sbin</td>
<td>Linux系统开机时不会使用到的软件/命令/脚本</td>
</tr>
<tr>
<td>/usr/share</td>
<td>帮助与说明文件,也可放置共享文件</td>
</tr>
<tr>
<td>/var</td>
<td>主要存放经常变化的文件,如日志</td>
</tr>
</tbody></table>
<h2 id="磁盘基础"><a href="#磁盘基础" class="headerlink" title="磁盘基础"></a>磁盘基础</h2><h5 id="磁盘命名"><a href="#磁盘命名" class="headerlink" title="磁盘命名"></a>磁盘命名</h5><p>在Linux系统中一切都是文件,硬件设备也不例外。既然是文件,就必须有文件名称。系统内核中的udev设备管理器会自动把硬件名称规范起来,目的是让用户通过设备文件的名字可以猜出设备大致的属性以及分区信息等。</p>
<p>常见的硬件设备及其文件名称如下:</p>
<table>
<thead>
<tr>
<th>硬件设备</th>
<th>文件名称</th>
</tr>
</thead>
<tbody><tr>
<td>IDE设备</td>
<td>/dev/hd[a-d]</td>
</tr>
<tr>
<td>SCSI/SATA/U盘</td>
<td>/dev/sd[a-p]</td>
</tr>
<tr>
<td>软驱</td>
<td>/dev/fd[0-1]</td>
</tr>
<tr>
<td>打印机</td>
<td>/dev/lp[0-15]</td>
</tr>
<tr>
<td>光驱</td>
<td>/dev/cdrom</td>
</tr>
<tr>
<td>鼠标</td>
<td>/dev/mouse</td>
</tr>
</tbody></table>
<p>系统采用a~p来代表16块不同的硬盘(默认从a开始分配),而且硬盘的分区编号也很有讲究:</p>
<blockquote>
<p>主分区或扩展分区的编号从1开始,到4结束;<br>逻辑分区从编号5开始。</p>
</blockquote>
<h5 id="主分区、扩展分区、逻辑分区"><a href="#主分区、扩展分区、逻辑分区" class="headerlink" title="主分区、扩展分区、逻辑分区"></a>主分区、扩展分区、逻辑分区</h5><p>给一块磁盘分区时,我们可以选择MBR(Master Boot Record)磁盘分区模式(还有一种更先进的GPT模式)进行分区。</p>
<p><strong>==<em>在MBR模式下,主分区与扩展分区之和++最多是 4++ 个,且扩展分区最多++只能有 1++ 个。在扩展分区上面,可以创建 ++n 个++逻辑分区。</em>==</strong></p>
<h6 id="主分区跟扩展分区为什么最多是四个呢?"><a href="#主分区跟扩展分区为什么最多是四个呢?" class="headerlink" title="主分区跟扩展分区为什么最多是四个呢?"></a>主分区跟扩展分区为什么最多是四个呢?</h6><ul>
<li><p>首先,硬盘设备是由大量的扇区组成的,每个扇区的容量为512字节。</p>
</li>
<li><p>其次,MBR的意思是:主引导记录(Master Boot Record),又叫做主引导扇区,是计算机开机后访问硬盘时所必须要读取的<strong>==首个扇区==</strong>,它在硬盘上的三维地址为(柱面,磁头,扇区)=(0,0,1)。</p>
</li>
<li><p>接着,主引导扇区的内部结构,其开头的446字节内容特指为“主引导记录”(MBR),其后是4个16字节的“磁盘分区表”(DPT),以及2字节的结束标志(55AA)。</p>
</li>
<li><p>最后,分区表中每记录一个分区的引用信息就需要16字节,这样一来最多只有4个分区信息可以写到第一个扇区中,这4个分区就是4个主分区。</p>
</li>
</ul>
<h6 id="逻辑分区为什么可以是n个呢?"><a href="#逻辑分区为什么可以是n个呢?" class="headerlink" title="逻辑分区为什么可以是n个呢?"></a>逻辑分区为什么可以是n个呢?</h6><ul>
<li>类似主引导扇区,扩展分区利用最前面几个扇区来记载逻辑分区的引用信息。</li>
</ul>
<h5 id="磁盘分区实质"><a href="#磁盘分区实质" class="headerlink" title="磁盘分区实质"></a>磁盘分区实质</h5><ul>
<li>其实所谓的“分区”只是针对那个64 Bytes的磁盘分区表进行设置而已!</li>
<li>硬盘默认的分区表仅能写入四组分区信息</li>
<li>这四组分区信息我们称为主要(Primary)或延伸(Extended)分区</li>
<li>分区的最小单位“通常”为柱面(cylinder)</li>
<li>当系统要写入磁盘时,一定会参考磁盘分区表,才能针对某个分区进行数据的处理</li>
</ul>
<h2 id="磁盘分区"><a href="#磁盘分区" class="headerlink" title="磁盘分区"></a>磁盘分区</h2><p>了解磁盘基础之后,我们就可以进行磁盘分区实操了。先了解一下分区整个流程:</p>
<ol>
<li>对磁盘进行分区,以创建可用的 partition ;</li>
<li>对该 partition 进行格式化 (format),以创建系统可用的 filesystem;</li>
<li>若想要仔细一点,则可对刚刚创建好的 filesystem 进行检验;</li>
<li>在 Linux 系统上,需要创建挂载点 (亦即是目录),并将它挂载上来;</li>
</ol>
<h5 id="查看分区状态"><a href="#查看分区状态" class="headerlink" title="查看分区状态"></a>查看分区状态</h5><p>在分区之前,我们需要先了解机器的磁盘状态:</p>
<p><strong>lsblk 列出系统上的所有磁盘列表 :</strong></p>
<pre><code>[root@localhost ~]# lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sda 8:0 0 20G 0 disk
├─sda1 8:1 0 2M 0 part
├─sda2 8:2 0 2M 0 part
├─sda3 8:3 0 2G 0 part /boot
├─sda4 8:4 0 1K 0 part
└─sda5 8:5 0 18G 0 part
├─centos-root 253:0 0 9.8G 0 lvm /
├─centos-swap 253:1 0 1000M 0 lvm [SWAP]
├─centos-var 253:2 0 2G 0 lvm /var
└─centos-home 253:3 0 5.3G 0 lvm /home
sdb 8:16 0 20G 0 disk
sr0 11:0 1 4G 0 rom </code></pre><p>为了方便演示,新增了<code>sdb</code>磁盘,原来的<code>sda</code>磁盘则已经进行了分区。</p>
<p><strong>blkid 列出设备的 UUID 等参数</strong> :</p>
<pre><code>[root@localhost ~]# blkid
/dev/sda3: UUID="c225904f-a210-43cc-8c8c-e210642262f6" TYPE="xfs"
/dev/sda5: UUID="OXEomY-lqXp-6Beu-cebI-T9wv-Z4S8-UZ9Aq9" TYPE="LVM2_member"
/dev/sr0: UUID="2015-12-09-23-14-10-00" LABEL="CentOS 7 x86_64" TYPE="iso9660" PTTYPE="dos"
/dev/mapper/centos-root: UUID="775ac81a-210f-4089-87a3-a9a6a680b018" TYPE="xfs"
/dev/mapper/centos-swap: UUID="f229bae3-e7f5-4da0-8f45-8269bd0f03e7" TYPE="swap"
/dev/mapper/centos-var: UUID="9acbfd67-676d-4b0d-9c78-63e5fbdf1236" TYPE="xfs"
/dev/mapper/centos-home: UUID="557aae02-8971-4d3f-a258-e3222b1483f1" TYPE="xfs" </code></pre><p><strong>parted 列出磁盘的分区表类型与分区信息</strong> :</p>
<pre><code>[root@localhost ~]# parted /dev/sda print
Model: VMware, VMware Virtual S (scsi)
Disk /dev/sda: 21.5GB
Sector size (logical/physical): 512B/512B
Partition Table: msdos
Disk Flags:
Number Start End Size Type File system Flags
1 1049kB 3146kB 2097kB primary
2 3146kB 5243kB 2097kB primary
3 5243kB 2102MB 2097MB primary xfs boot
4 2102MB 21.5GB 19.4GB extended
5 2103MB 21.5GB 19.4GB logical lvm</code></pre><h5 id="进行分区"><a href="#进行分区" class="headerlink" title="进行分区"></a>进行分区</h5><blockquote>
<p>“MBR 分区表请使用 <code>fdisk</code> 分区, GPT 分区表请使用 <code>gdisk</code> 分区!”</p>
</blockquote>
<p>整个分区操作分两步:</p>
<ol>
<li>gdisk、fdisk分区</li>
<li>partprobe 更新 Linux 核心的分区表信息</li>
</ol>
<h6 id="gdisk、fdisk分区"><a href="#gdisk、fdisk分区" class="headerlink" title="gdisk、fdisk分区"></a>gdisk、fdisk分区</h6><p>下面我们用<code>gdisk</code>命令来进行分区,没有该命令的先<code>yum install -y gdisk</code>进行安装。</p>
<pre><code>[root@localhost ~]# gdisk /dev/sdb
GPT fdisk (gdisk) version 0.8.10
Partition table scan:
MBR: not present
BSD: not present
APM: not present
GPT: not present
Creating new GPT entries.
Command (? for help): ?
b back up GPT data to a file
c change a partition's name
d delete a partition
i show detailed information on a partition
l list known partition types
n add a new partition
o create a new empty GUID partition table (GPT)
p print the partition table
q quit without saving changes
r recovery and transformation options (experts only)
s sort partitions
t change a partition's type code
v verify disk
w write table to disk and exit
x extra functionality (experts only)
? print this menu
Command (? for help): p
Disk /dev/sdb: 41943040 sectors, 20.0 GiB
Logical sector size: 512 bytes
Disk identifier (GUID): 0F88B5F3-360F-4B70-A503-2C705CA23023
Partition table holds up to 128 entries
First usable sector is 34, last usable sector is 41943006
Partitions will be aligned on 2048-sector boundaries
Total free space is 41942973 sectors (20.0 GiB)
Number Start (sector) End (sector) Size Code Name
Command (? for help): n
Partition number (1-128, default 1):
First sector (34-41943006, default = 2048) or {+-}size{KMGTP}:
Last sector (2048-41943006, default = 41943006) or {+-}size{KMGTP}: +5G
Current type is 'Linux filesystem'
Hex code or GUID (L to show codes, Enter = 8300):
Changed type of partition to 'Linux filesystem'
Command (? for help): p
Disk /dev/sdb: 41943040 sectors, 20.0 GiB
Logical sector size: 512 bytes
Disk identifier (GUID): 0F88B5F3-360F-4B70-A503-2C705CA23023
Partition table holds up to 128 entries
First usable sector is 34, last usable sector is 41943006
Partitions will be aligned on 2048-sector boundaries
Total free space is 31457213 sectors (15.0 GiB)
Number Start (sector) End (sector) Size Code Name
1 2048 10487807 5.0 GiB 8300 Linux filesystem
Command (? for help):</code></pre><p>该命令非常简单,输入<code>?</code>命令可以看到详细的操作命令指南,完全不需要记忆就可以对一个磁盘进行增删分区操作。</p>
<p>最后, 如果一切的分区状态都正常的话,还需要执行一步操作写入磁盘分区表:</p>
<pre><code>Command (? for help): w
Final checks complete. About to write GPT data. THIS WILL OVERWRITE EXISTING
PARTITIONS!!
Do you want to proceed? (Y/N): y
OK; writing new GUID partition table (GPT) to /dev/sdb.
The operation has completed successfully.</code></pre><h6 id="partprobe-更新-Linux-核心的分区表信息"><a href="#partprobe-更新-Linux-核心的分区表信息" class="headerlink" title="partprobe 更新 Linux 核心的分区表信息"></a>partprobe 更新 Linux 核心的分区表信息</h6><p>进行分区操作之后,如果 Linux 此时还在使用这颗磁盘,为了担心系统出问题,所以分区表并没有被更新,这时需要我们手动更新:</p>
<pre><code>[root@localhost ~]# partprobe -s
/dev/sda: msdos partitions 1 2 3 4 <5>
/dev/sdb: gpt partitions 1 2
[root@localhost ~]# cat /proc/partitions
major minor #blocks name
8 0 20971520 sda
8 1 2048 sda1
8 2 2048 sda2
8 3 2048000 sda3
8 4 0 sda4
8 5 18917376 sda5
11 0 4228096 sr0
8 16 20971520 sdb
8 17 5242880 sdb1
8 18 6291456 sdb2</code></pre><h5 id="磁盘格式化(创建文件系统)"><a href="#磁盘格式化(创建文件系统)" class="headerlink" title="磁盘格式化(创建文件系统)"></a>磁盘格式化(创建文件系统)</h5><p>我们常听到的“格式化”其实应该称为“创建文件系统 (make filesystem)”才对啦!所以使用的指令是 mkfs 喔!</p>
<p>如果我们要创建的是 xfs 文件系统, 那使用的是 mkfs.xfs 这个指令。这个指令是这样使用的: <code>mkfs.xfs device</code>;如果创建 ext4 系统,则用 <code>mkfs.ext4 device</code>;</p>
<pre><code>[root@localhost ~]# mkfs.xfs /dev/sdb1
meta-data=/dev/sdb1 isize=256 agcount=4, agsize=327680 blks
= sectsz=512 attr=2, projid32bit=1
= crc=0 finobt=0
data = bsize=4096 blocks=1310720, imaxpct=25
...
[root@localhost ~]# mkfs.ext4 /dev/sdb2
mke2fs 1.42.9 (28-Dec-2013)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
Stride=0 blocks, Stripe width=0 blocks
393216 inodes, 1572864 blocks
...</code></pre><p>查看格式化结果:</p>
<pre><code>[root@localhost ~]# parted /dev/sdb print
Model: VMware, VMware Virtual S (scsi)
Disk /dev/sdb: 21.5GB
Sector size (logical/physical): 512B/512B
Partition Table: gpt
Disk Flags:
Number Start End Size File system Name Flags
1 1049kB 5370MB 5369MB xfs Linux filesystem
2 5370MB 11.8GB 6442MB ext4 Linux filesystem</code></pre><h5 id="文件系统挂载与卸载"><a href="#文件系统挂载与卸载" class="headerlink" title="文件系统挂载与卸载"></a>文件系统挂载与卸载</h5><p>磁盘格式化之后是不是就能使用了呢?当然还不行,格式化就类似酒店房间已经打扫干净,最后还要给客户办理入住手续啊,毕竟一个房间只能接待一位客户,这就是所谓的挂载。</p>
<blockquote>
<p>挂载点:挂载点是目录, 而这个目录是进入磁盘分区(其实是文件系统啦!)的入口。</p>
</blockquote>
<p>进行挂载操作前,需要了解几点:</p>
<ul>
<li>单一文件系统不应该被重复挂载在不同的挂载点(目录)中;</li>
<li>单一目录不应该重复挂载多个文件系统;</li>
<li>要作为挂载点的目录,理论上应该都是空目录才是。</li>
</ul>
<h6 id="挂载磁盘-mount-device-dirname"><a href="#挂载磁盘-mount-device-dirname" class="headerlink" title="挂载磁盘 mount device dirname"></a>挂载磁盘 mount device dirname</h6><pre><code>[root@localhost ~]# mkdir -p /test/xfs_test
[root@localhost ~]# mkdir -p /test/ext4_test
[root@localhost ~]# mount /dev/sdb1 /test/xfs_test/
[root@localhost ~]# mount /dev/sdb2 /test/ext4_test/
[root@localhost ~]# df /test/xfs_test/
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/sdb1 5232640 32928 5199712 1% /test/xfs_test
[root@localhost ~]# df /test/ext4_test/
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/sdb2 6061632 24568 5706108 1% /test/ext4_test</code></pre><h6 id="挂载目录-mount-–bind-dirname-target-dirname"><a href="#挂载目录-mount-–bind-dirname-target-dirname" class="headerlink" title="挂载目录 mount –bind dirname target_dirname"></a>挂载目录 mount –bind dirname target_dirname</h6><pre><code>[root@localhost ~]# mkdir -p /test/var
[root@localhost ~]# mount --bind /test/var/ /test/xfs_test/
[root@localhost ~]# ls -lid /test/var/ /test/xfs_test/
34108202 drwxr-xr-x. 2 root root 6 Sep 8 10:35 /test/var/
34108202 drwxr-xr-x. 2 root root 6 Sep 8 10:35 /test/xfs_test/
[root@localhost ~]# touch /test/var/a.txt
[root@localhost ~]# ls /test/xfs_test/
a.txt</code></pre><h6 id="卸载-umount-device-mountpoint"><a href="#卸载-umount-device-mountpoint" class="headerlink" title="卸载 umount device | mountpoint"></a>卸载 umount device | mountpoint</h6><pre><code>[root@localhost ~]# umount /dev/sdb1
[root@localhost ~]# umount /dev/sdb2
[root@localhost ~]# lsblk /dev/sdb
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sdb 8:16 0 20G 0 disk
├─sdb1 8:17 0 5G 0 part
└─sdb2 8:18 0 6G 0 part </code></pre><p>此时挂载点已经消失,即卸载成功。</p>
<h2 id="设置开机挂载"><a href="#设置开机挂载" class="headerlink" title="设置开机挂载"></a>设置开机挂载</h2><p>我们上面讨论整个挂载的流程,磁盘分区也顺其自然成功挂载上去了,一切看起来都很完美了!</p>
<p>不过,这里还有一个坑爹的地方,就是上面的所有操作都是临时有效的,当机器重启之后,我们需要重新进行挂载。</p>
<p>那么可不可以在开机的时候就将我要的文件系统都挂好呢?当然可以啰!那就直接到 <code>/etc/fstab</code> 里面去修改就行啰!</p>
<pre><code>[root@localhost ~]# vim /etc/fstab
/dev/mapper/centos-root / xfs defaults 0 0
UUID=c225904f-a210-43cc-8c8c-e210642262f6 /boot xfs defaults 0 0
/dev/mapper/centos-home /home xfs defaults 0 0
/dev/mapper/centos-var /var xfs defaults 0 0
/dev/mapper/centos-swap swap swap defaults 0 0
/dev/sdb1 /test/xfs_test xfs defaults 0 0
/dev/sdb2 /test/ext4_test ext4 defaults 0 0</code></pre><pre><code>[root@localhost ~]# reboot
[root@localhost ~]# lsblk /dev/sdb
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sdb 8:16 0 20G 0 disk
├─sdb1 8:17 0 5G 0 part /test/xfs_test
└─sdb2 8:18 0 6G 0 part /test/ext4_test</code></pre>]]></content>
</entry>
<entry>
<title>Linux权限命令</title>
<url>/article/2020/02/24/Linux%E6%9D%83%E9%99%90%E5%91%BD%E4%BB%A4.html</url>
<content><![CDATA[<h4 id="查看文件权限"><a href="#查看文件权限" class="headerlink" title="查看文件权限"></a>查看文件权限</h4><pre><code class="linux">ll /
lrwxrwxrwx. 1 root root 7 Mar 29 11:44 bin -> usr/bin
dr-xr-xr-x. 5 root root 4096 Mar 29 11:48 boot
//...</code></pre>
<p>输出结果的第一个字段就是描述文件和目录权限的编码。这个字段的第一个字符代表了对象的类型:</p>
<ul>
<li>- 代表文件</li>
<li>d 代表目录</li>
<li>l 代表链接</li>
<li>c 代表字符型设备</li>
<li>b 代表块设备</li>
<li>n 代表网络设备</li>
</ul>
<p>之后有3组三字符的编码。每一组定义了3种访问权限:</p>
<ul>
<li>r 代表对象是可读的</li>
<li>w 代表对象是可写的</li>
<li>x 代表对象是可执行的</li>
</ul>
<p>若没有某种权限,在该权限位会出现单破折线。这3组权限分别对应对象的3个安全级别:</p>
<ul>
<li>对象的属主</li>
<li>对象的属组</li>
<li>系统其他用户</li>
</ul>
<h4 id="默认文件权限"><a href="#默认文件权限" class="headerlink" title="默认文件权限"></a>默认文件权限</h4><p>umask值用于设置用户在创建文件时的默认权限,当我们在系统中创建目录或文件时,目录或文件所具有的默认权限就是由umask值决定的。</p>
<p>对于root用户,系统默认的umask值是0022;对于普通用户,系统默认的umask值是0002。执行umask命令可以查看当前用户的umask值。</p>
<pre><code class="linux">[root@localhost ~]# umask
0022
[user1@localhost ~]$ umask
0002</code></pre>
<p>umask值一共有4组数字,其中第1组数字用于定义<strong>特殊权限</strong>,我们一般不予考虑,与一般权限有关的是后3组数字。</p>
<p>默认情况下,对于目录,用户所能拥有的<strong>最大权限是777</strong>;<br>对于文件,用户所能拥有的最大权限是目录的<strong>最大权限去掉执行权限,即666</strong>。<br>因为x执行权限对于目录是必须的,没有执行权限就无法进入目录,而对于文件则不必默认赋予x执行权限。</p>
<p>默认权限是所能拥有的权限减去umask值:<br>创建目录默认权限是 rwxr-xr-x (777 - 022 -> 755)<br>创建文件默认权限是 rw-r–r– (666 - 022 -> 644)</p>
<pre><code class="linux">[root@localhost ~]# touch a.txt
[root@localhost ~]# mkdir b
[root@localhost ~]# ll
-rw-r--r--. 1 root root 0 Apr 18 09:25 a.txt
drwxr-xr-x. 2 root root 4096 Apr 18 09:25 b</code></pre>
<p>umask可以通过修改/etc/profile或者/etc/bashrc里面的值进行永久修改:</p>
<pre><code class="linux">[root@localhost ~]# cat /etc/profile | grep umask
# By default, we want umask to get set. This sets it for login shell
umask 002
umask 022</code></pre>
<p>他们的区别是/etc/profile只在用户第一次登录时被执行,而/etc/bashrc则在用户每次登录加载Bash Shell时都会被执行。</p>
<p>因而,如果是修改/etc/profile文件,将只对新创建的用户生效;而如果是修改/etc/bashrc文件,则对所有用户都生效。</p>
<h4 id="查看群组与用户"><a href="#查看群组与用户" class="headerlink" title="查看群组与用户"></a>查看群组与用户</h4><p>查看当前系统所有组</p>
<pre><code class="linux">[root@localhost ~]# cat /etc/group
root:x:0:
bin:x:1:
// ...
daemon:x:2:
sshd:x:74:
haotengfei:x:1000:
user1:x:1001:</code></pre>
<p>查看当前系统所有用户名</p>
<pre><code class="linux">cat /etc/passwd|grep -v nologin|grep -v halt|grep -v shutdown|awk -F":" '{ print $1"|"$3"|"$4 }'|more
root|0|0
sync|5|0
haotengfei|1000|1000
user1|1001|1001
user2|1002|1002
user3|1003|1003</code></pre>
<h4 id="权限操作"><a href="#权限操作" class="headerlink" title="权限操作"></a>权限操作</h4><p>改变所属用户组</p>
<pre><code class="linux">[root@localhost ~]# chgrp user1 a.txt
[root@localhost ~]# ll
-rw-r--r--. 1 root user1 0 Apr 18 09:25 a.txt</code></pre>
<p>改变所属用户</p>
<pre><code class="linux">[root@localhost ~]# chown user2 a.txt
[root@localhost ~]# ll
-rw-r--r--. 1 user2 root 0 Apr 18 09:25 a.txt</code></pre>
<p>改变所属权限</p>
<pre><code class="linux">[root@localhost ~]# chmod 777 a.txt
[root@localhost ~]# ll
-rwxrwxrwx. 1 root root 0 Apr 18 09:25 a.txt</code></pre>
<pre><code class="linux">// u代表用户,g代表用户组,o代表其他人
[root@localhost ~]# chmod u=x,g=x,o=x a.txt
[root@localhost ~]# ll
---x--x--x. 1 root root 0 Apr 18 09:25 a.txt</code></pre>
<p>改变文件夹下文件权限</p>
<pre><code class="linux">[root@localhost ~]# mv a.txt b/
[root@localhost ~]# cd b
[root@localhost b]# ll
---x--x--x. 1 root root 0 Apr 18 09:25 a.txt
[root@localhost ~]# chmod 777 b
[root@localhost ~]# ll
drwxrwxrwx. 2 root root 4096 Apr 18 10:01 b
[root@localhost ~]# ll b/a.txt
---x--x--x. 1 root root 0 Apr 18 09:25 b/a.txt // 文件夹下权限没有被修改
[root@localhost ~]# chmod -R 777 b
[root@localhost ~]# ll b/a.txt
-rwxrwxrwx. 1 root root 0 Apr 18 09:25 b/a.txt // 此时被修改</code></pre>
]]></content>
</entry>
<entry>
<title>Linux文件压缩</title>
<url>/article/2020/02/24/Linux%E6%96%87%E4%BB%B6%E5%8E%8B%E7%BC%A9.html</url>
<content><![CDATA[<p>文件压缩是Linux环境下非常常见的操作,我们可以通过一个常用的常见来熟悉相关命令。</p>
<h4 id="查看文件"><a href="#查看文件" class="headerlink" title="查看文件"></a>查看文件</h4><pre><code class="linux">[root@localhost ~]# ll -hS /etc/* | head -n 3
// -h: 显示默认单位
// -S: 按照大小排序
// -n: 从头显示前3行
-rw-r--r--. 1 root root 655K Jun 7 2013 /etc/services
-rw-r--r--. 1 root root 25K Aug 5 2015 /etc/dnsmasq.conf
-rw-r--r--. 1 root root 19K Mar 31 07:47 /etc/ld.so.cache</code></pre>
<h4 id="拷贝文件"><a href="#拷贝文件" class="headerlink" title="拷贝文件"></a>拷贝文件</h4><pre><code class="linux">[root@localhost ~]# ll /home/user1
total 0
-rw-rw-r--. 1 user1 user1 0 Apr 18 09:00 a
[root@localhost ~]# cp -ai /etc/services /home/user1/services.cp
- a 保留链接和文件属性,递归拷贝目录,相当于下面的d、p、r三个选项组合。
- d 拷贝时保留链接。
- f 删除已经存在目标文件而不提示。
- i 覆盖目标文件前将给出确认提示,属交互式拷贝。
- p 复制源文件内容后,还将把其修改时间和访问权限也复制到新文件中。
- r 若源文件是一目录文件,此时cp将递归复制该目录下所有的子目录和文件
[root@localhost ~]# ll /home/user1/
// total后面的数字是指当前目录下所有文件所占用的空间总和
total 656
-rw-rw-r--. 1 user1 user1 0 Apr 18 09:00 a
-rw-r--r--. 1 root root 670293 Jun 7 2013 services.cp</code></pre>
<h4 id="打包与压缩"><a href="#打包与压缩" class="headerlink" title="打包与压缩"></a>打包与压缩</h4><p>首先要弄清两个概念:打包和压缩。</p>
<p>打包是指将一大堆文件或目录变成一个总的文件;</p>
<p>压缩则是将一个大的文件通过一些压缩算法变成一个小文件。</p>
<p>为什么要区分这两个概念呢?这源于Linux中很多压缩程序只能针对一个文件进行压缩,这样当你想要压缩一大堆文件时,你得先将这一大堆文件先打成一个包(tar命令),然后再用压缩程序进行压缩(gzip bzip2命令)。</p>
<h6 id="准备拷贝文件"><a href="#准备拷贝文件" class="headerlink" title="准备拷贝文件"></a>准备拷贝文件</h6><pre><code class="linux">// 拷贝两份文件
[root@localhost user1]# cp services.cp services.cp01
[root@localhost user1]# cp services.cp services.cp02</code></pre>
<h6 id="打包压缩"><a href="#打包压缩" class="headerlink" title="打包压缩"></a>打包压缩</h6><pre><code class="linux">// 打包
[root@localhost user1]# tar -cvf 1.tar services.cp services.cp01 services.cp02
// 打包与压缩
[root@localhost user1]# tar -zcvf 1.tar.gz services.cp services.cp01
// 打包与压缩
[root@localhost user1]# tar -jcvf 1.tar.bz2 services.cp services.cp02
选项与参数:
-c :创建打包文件,可搭配 -v 来察看过程中被打包的文件名(filename)
-t :察看打包文件的内容含有哪些文件名,重点在察看“文件名”就是了;
-x :解打包或解压缩的功能,可以搭配 -C (大写) 在特定目录解开
特别留意的是, -c, -t, -x 不可同时出现在一串命令行中。
-z :通过 gzip 的支持进行压缩/解压缩:此时文件名最好为 *.tar.gz
-j :通过 bzip2 的支持进行压缩/解压缩:此时文件名最好为 *.tar.bz2
-v :在压缩/解压缩的过程中,将正在处理的文件名显示出来!
-f filename:-f 后面要立刻接要被处理的文件名!建议 -f 单独写一个选项啰!
-C 目录 :这个选项用在解压缩,若要在特定目录解压缩,可以使用这个选项。
-p(小写) :保留备份数据的原本权限与属性,常用于备份(-c)重要的配置文件
-P(大写) :保留绝对路径,亦即允许备份数据中含有根目录存在之意;
--exclude=FILE:在压缩的过程中,不要将 FILE 打包!</code></pre>
<h6 id="查看打包效果"><a href="#查看打包效果" class="headerlink" title="查看打包效果"></a>查看打包效果</h6><pre><code class="linux">// 查看打包与压缩效果
[root@localhost user1]# ll -hS
total 84K
-rw-r--r--. 1 root root 40K Apr 24 10:35 1.tar
-rw-r--r--. 1 root root 10K Apr 24 10:07 services.cp
-rw-r--r--. 1 root root 10K Apr 24 10:34 services.cp01
-rw-r--r--. 1 root root 10K Apr 24 10:34 services.cp02
-rw-r--r--. 1 root root 161 Apr 24 10:38 1.tar.gz
-rw-r--r--. 1 root root 148 Apr 24 10:38 1.tar.bz2</code></pre>
<h6 id="查看打包后包含文件"><a href="#查看打包后包含文件" class="headerlink" title="查看打包后包含文件"></a>查看打包后包含文件</h6><pre><code class="linux">[root@localhost user1]# tar -tvf 1.tar
-rw-r--r-- root/root 10240 2019-04-24 10:07 services.cp
-rw-r--r-- root/root 10240 2019-04-24 10:34 services.cp01
-rw-r--r-- root/root 10240 2019-04-24 10:34 services.cp02
[root@localhost user1]# tar -tvf 1.tar.gz
-rw-r--r-- root/root 10240 2019-04-24 10:07 services.cp
-rw-r--r-- root/root 10240 2019-04-24 10:34 services.cp01
[root@localhost user1]# tar -tvf 1.tar.bz2
-rw-r--r-- root/root 10240 2019-04-24 10:07 services.cp
-rw-r--r-- root/root 10240 2019-04-24 10:34 services.cp02</code></pre>
<h4 id="解压"><a href="#解压" class="headerlink" title="解压"></a>解压</h4><h6 id="解压打包文件"><a href="#解压打包文件" class="headerlink" title="解压打包文件"></a>解压打包文件</h6><pre><code class="linux">[root@localhost user1]# mkdir untar
[root@localhost user1]# tar -xvf 1.tar -C ./untar/
services.cp
services.cp01
services.cp02
[root@localhost user1]# ll ./untar/
total 36
-rw-r--r--. 1 root root 10240 Apr 24 10:07 services.cp
-rw-r--r--. 1 root root 10240 Apr 24 10:34 services.cp01
-rw-r--r--. 1 root root 10240 Apr 24 10:34 services.cp02</code></pre>
<h6 id="解压压缩文件"><a href="#解压压缩文件" class="headerlink" title="解压压缩文件"></a>解压压缩文件</h6><pre><code class="linux">[root@localhost user1]# mkdir untar.gz
[root@localhost user1]# tar -xvf 1.tar.gz -C ./untar.gz/
// 也可以加上压缩类型 -zxvf , -jxvf
services.cp
services.cp01
[root@localhost user1]# ll ./untar.gz/
total 24
-rw-r--r--. 1 root root 10240 Apr 24 10:07 services.cp
-rw-r--r--. 1 root root 10240 Apr 24 10:34 services.cp01</code></pre>
<h6 id="解压部分文件"><a href="#解压部分文件" class="headerlink" title="解压部分文件"></a>解压部分文件</h6><pre><code class="linux">[root@localhost user1]# mkdir untar.bz2
[root@localhost user1]# tar -jxvf 1.tar.bz2 services.cp02 -C ./untar.bz2/
services.cp02
[root@localhost user1]# ll ./untar.bz2/
total 0 ???为什么没有解压过来?</code></pre>
]]></content>
</entry>
<entry>
<title>ACL管理</title>
<url>/article/2020/02/24/ACL%E7%AE%A1%E7%90%86.html</url>
<content><![CDATA[<h2 id="ACL-Access-Control-List"><a href="#ACL-Access-Control-List" class="headerlink" title="ACL(Access Control List)"></a>ACL(Access Control List)</h2><p>传统的权限仅有三种身份(owner, group, others)搭配三种权限 (r,w,x)而已,并没有办法单纯的针对某一个使用者或某一个群组来设置特定的权<br>限需求, 此时就得要使用 ACL 这个机制。</p>
<p>测试系统是否有支持 ACL:</p>
<pre><code class="linux">// dmesg命令显示linux内核的环形缓冲区信息,我们可以从中获得诸如系统架构、cpu、挂载的硬件,RAM等多个运行级别的大量的系统信息。
[root@localhost ~]# dmesg | grep -i acl
[ 1.138270] systemd[1]: systemd 219 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ -LZ4 -SECCOMP +BLKID +ELFUTILS +KMOD +IDN)
[ 2.320454] SGI XFS with ACLs, security attributes, no debug enabled</code></pre>
<h5 id="查看ACL"><a href="#查看ACL" class="headerlink" title="查看ACL"></a>查看ACL</h5><pre><code class="linux">[root@localhost ~]# touch acl.test1
[root@localhost ~]# ll acl.test1
-rw-r--r--. 1 root root 0 May 13 06:19 acl.test2
[root@localhost ~]# getfacl acl.test1
# file: acl.test1
# owner: root
# group: root
user::rw-
group::r--
other::r--</code></pre>
<h5 id="设置ACL"><a href="#设置ACL" class="headerlink" title="设置ACL"></a>设置ACL</h5><pre><code class="linux">[root@localhost ~]# setfacl -m u:user1:rwx acl.test1
[root@localhost ~]# ll acl.test1
-rw-rwxr--+ 1 root root 0 May 13 06:12 acl.test1</code></pre>
<p>选项与参数:<br> -m :设置后续的 acl 参数给文件使用,不可与 -x 合用;<br> -x :删除后续的 acl 参数,不可与 -m 合用;<br> -b :移除“所有的” ACL 设置参数;<br> -k :移除“默认的” ACL 参数,关于所谓的“默认”参数于后续范例中介绍;<br> -R :递回设置 acl ,亦即包括次目录都会被设置起来;<br> -d :设置“默认 acl 参数”的意思!只对目录有效,在该目录新建的数据会引用此默认值</p>
<pre><code class="linux">[root@localhost ~]# getfacl acl.test1
# file: acl.test1
# owner: root
# group: root
user::rw-
user:user1:rwx // 新增
group::r--
mask::rwx // 新增
other::r--</code></pre>
<h5 id="移除ACL"><a href="#移除ACL" class="headerlink" title="移除ACL"></a>移除ACL</h5><pre><code class="linux">[root@localhost ~]# setfacl -x u:user1 acl.test1
[root@localhost ~]# getfacl acl.test1
# file: acl.test1
# owner: root
# group: root
user::rw-
group::r--
mask::r--
other::r--</code></pre>
<h5 id="测试ACL权限"><a href="#测试ACL权限" class="headerlink" title="测试ACL权限"></a>测试ACL权限</h5><pre><code class="linux">[root@localhost ~]# cd /home/user1/
[root@localhost user1]# ll
total 0
[root@localhost user1]# touch acl.test
[root@localhost user1]# setfacl -m u:user1:rx acl.test
[root@localhost user1]# su user1
[user1@localhost ~]$ ll
total 4
-rw-r-xr--+ 1 root root 0 May 13 07:01 acl.test
// 没有w权限
[user1@localhost ~]$ echo 'some text' >> acl.test
bash: acl.test: Permission denied
// 有x权限,可以删除
[user1@localhost ~]$ rm -f acl.test
[user1@localhost ~]$ ll
total 0</code></pre>
<h5 id="有效权限:“-m-权限-”"><a href="#有效权限:“-m-权限-”" class="headerlink" title="有效权限:“ m:权限 ”"></a>有效权限:“ m:权限 ”</h5><p>细心的朋友可能注意到设置ACL值的时候,出现了一个<code>mask</code>值;</p>
<p>意义是: 使用者或群组所设置的权限必须要存在于 mask 的权限设置范围内才会生效,此即“有效权限 (effective permission)”</p>
<pre><code class="linux">[root@localhost user1]# touch acl.mask.test
[root@localhost user1]# setfacl -m u:user1:rwx acl.mask.test
[root@localhost user1]# getfacl acl.mask.test
# file: acl.mask.test
# owner: root
# group: root
user::rw-
user:user1:rwx
group::r--
mask::rwx // 默认rwx
other::r--
[root@localhost user1]# setfacl -m m:x acl.mask.test
[root@localhost user1]# getfacl acl.mask.test
# file: acl.mask.test
# owner: root
# group: root
user::rw-
user:user1:rwx #effective:--x // 表示起效果的权限
group::r-- #effective:---
mask::--x
other::r--</code></pre>
<p>测试验证一番:</p>
<pre><code class="linux">[root@localhost user1]# su user1
[user1@localhost ~]$ ll
total 4
-rw---xr--+ 1 root root 0 May 13 07:34 acl.mask.test
[user1@localhost ~]$ echo 'other text' >> acl.mask.test
bash: acl.mask.test: Permission denied
[user1@localhost ~]$ rm -f acl.mask.test
[user1@localhost ~]$ ll
total 0</code></pre>
<h5 id="使用默认权限给文件夹设置ACL"><a href="#使用默认权限给文件夹设置ACL" class="headerlink" title="使用默认权限给文件夹设置ACL"></a>使用默认权限给文件夹设置ACL</h5><pre><code class="linux">[root@localhost user1]# setfacl -m d:u:user1:rwx acl.dir/
[root@localhost user1]# getfacl acl.dir/
# file: acl.dir/
# owner: root
# group: root
user::rwx
group::r-x
other::r-x
default:user::rwx
default:user:user1:rwx
default:group::r-x
default:mask::rwx
default:other::r-x
// 不能默认权限设置文件
[root@localhost user1]# touch acl.txt
[root@localhost user1]# setfacl -m d:u:user1:rwx acl.txt
setfacl: acl.txt: Only directories can have default ACLs</code></pre>
]]></content>
</entry>
<entry>
<title>Vim快速入门</title>
<url>/article/2020/02/24/Vim%E5%BF%AB%E9%80%9F%E5%85%A5%E9%97%A8.html</url>
<content><![CDATA[<p>Vim 是一款多模式文本编辑器,主要有以下四种模式</p>
<h2 id="正常模式(Normal-mode)"><a href="#正常模式(Normal-mode)" class="headerlink" title="正常模式(Normal-mode)"></a>正常模式(Normal-mode)</h2><pre><code class="bash"># 进入正常模式
$ vim + enter</code></pre>
<p>按大小写I,i,O,o,A,a皆可进入插入模式。但是光标位置会有区别。</p>
<ul>
<li>如果是i, 则光标没有移动</li>
<li>如果是shift+i,则光标移到改行首位</li>
<li>如果是a,则光标移动到下一位</li>
<li>如果是shift+a,则光标移动到改行末尾</li>
<li>如果是o,则光标移到下一行,并生成一空行</li>
<li>如果是shift+o,则光标移到上一行,并生成一空行</li>
</ul>
<h5 id="移动"><a href="#移动" class="headerlink" title="移动"></a>移动</h5><p>按住键盘的 H,J,K,L 可以在正常模式下进行光标的左右上下移动。</p>
<h5 id="复制张贴"><a href="#复制张贴" class="headerlink" title="复制张贴"></a>复制张贴</h5><ul>
<li><code>yy + p</code>,复制光标所在行,然后粘贴到光标所在行;</li>
<li><code>n + yy + p</code>,复制光标以下n行,然后粘贴到光标所在行,复制时会提示复制行数;</li>
<li><code>y$ + p</code>,复制光标到行尾数据,然后粘贴到光标所在行;</li>
<li><code>dd + p</code>,剪切光标所在行,然后粘贴到光标所在行;</li>
<li><code>n + dd + p</code>,剪切光标以下n行,然后粘贴到光标所在行,复制时会提示复制行数;</li>
<li><code>d$ + p</code>,剪切光标到行尾数据,然后粘贴到光标所在行;</li>
</ul>
<h5 id="撤销替换删除"><a href="#撤销替换删除" class="headerlink" title="撤销替换删除"></a>撤销替换删除</h5><ul>
<li><code>u</code>,撤销上一步操作,可以多次操作连续撤销;</li>
<li><code>ctrl + r</code>,取消撤销命令,与撤销命令相反;</li>
<li><code>x</code>,删除光标所在字符;</li>
<li><code>r</code>,下一个输入替换所在字符;</li>
</ul>
<h5 id="跳转"><a href="#跳转" class="headerlink" title="跳转"></a>跳转</h5><ul>
<li><code>:set nu</code>,显示行号;</li>
<li><code>:set nonu</code>,不显示行号;</li>
<li><code>n + shift + g</code>,跳转到底n行;</li>
<li><code>gg</code>,跳转到首行;</li>
<li><code>shift + g</code>,跳转到末行;</li>
<li><code>^</code>,跳转到行头;</li>
<li><code>$</code>,跳转到行尾;</li>
</ul>
<h2 id="插入模式(Insert-mode"><a href="#插入模式(Insert-mode" class="headerlink" title="插入模式(Insert-mode)"></a>插入模式(Insert-mode)</h2><h5 id="退出与保存"><a href="#退出与保存" class="headerlink" title="退出与保存"></a>退出与保存</h5><ul>
<li><code>:q, :q!</code>,不保存退出;</li>
<li><code>:wq</code>,保存退出;</li>
<li><code>:w /path/to/save</code>,保存到某一文件;</li>
<li><code>:! + cmd</code>,在不退出情况下执行其他命令,按enter退出回到编辑器环境;</li>
</ul>
<h2 id="命令模式(Command-mode)"><a href="#命令模式(Command-mode)" class="headerlink" title="命令模式(Command-mode)"></a>命令模式(Command-mode)</h2><h5 id="显示"><a href="#显示" class="headerlink" title="显示"></a>显示</h5><ul>
<li><code>set nohlsearch</code>, 隐藏高亮效果;</li>
</ul>
<h5 id="查找替换"><a href="#查找替换" class="headerlink" title="查找替换"></a>查找替换</h5><ul>
<li><code>/xxx + enter</code>,查找匹配xxx的字符,按n跳转到下一个匹配字符,按shift+n跳转到上一个匹配项;</li>
<li><code>:s/old/new + enter</code>,替换光标所在行第一个匹配项; </li>
<li><code>:s/old/new/g + enter</code>,替换光标所在行所有匹配项; </li>
<li><code>:%s/old/new + enter</code>,替换所有行第一个匹配项; </li>
<li><code>:%s/old/new/g + enter</code>,替换所有行所有匹配项; </li>
<li><code>:3,5s/old/new + enter</code>,替换第三到第五行第一个匹配项; </li>
<li><code>:3,5s/old/new/g + enter</code>,替换第三到第五行所有匹配项; </li>
</ul>
<h2 id="可视模式(Visual-mode)"><a href="#可视模式(Visual-mode)" class="headerlink" title="可视模式(Visual-mode)"></a>可视模式(Visual-mode)</h2><p>正常模式下按v进入可视模式;<br>按<code>shift+v</code>进入块可视模式;</p>
<h2 id="永久设置"><a href="#永久设置" class="headerlink" title="永久设置"></a>永久设置</h2><p>在编辑器环境下例如行号显示之类的设置是暂时的,关闭编辑器后会失效,如果需要永久起效需要设置<code>/etc/vimrc</code>文件;</p>
]]></content>
</entry>
<entry>
<title>面试经典问题汇总</title>
<url>/article/2020/01/28/%E9%9D%A2%E8%AF%95%E7%BB%8F%E5%85%B8%E9%97%AE%E9%A2%98%E6%B1%87%E6%80%BB.html</url>
<content><![CDATA[<h2 id="GET与POST请求的区别"><a href="#GET与POST请求的区别" class="headerlink" title="GET与POST请求的区别"></a>GET与POST请求的区别</h2><p>GET和POST是什么?HTTP协议中的两种发送请求的方法。</p>
<p>HTTP是什么?HTTP是基于TCP/IP的关于数据如何在万维网中如何通信的协议。</p>
<p>HTTP的底层是TCP/IP。所以GET和POST的底层也是TCP/IP,也就是说,GET/POST都是TCP连接。GET和POST能做的事情是一样一样的。你要给GET加上request body,给POST带上url参数,技术上是完全行的通的。</p>
<p>为什么GET与POST请求还有这么多差异呢?根源在于浏览器与服务器的限制。</p>
<h5 id="缓存上的区别"><a href="#缓存上的区别" class="headerlink" title="缓存上的区别"></a><strong>缓存上的区别</strong></h5><ul>
<li>get请求类似于查找的过程,用户获取数据,可以不用每次都与数据库连接,所以可以使用缓存。</li>
<li>post不同,post做的一般是修改和删除的工作,所以必须与数据库交互,所以不能使用缓存。因此get请求适合于请求缓存。</li>
</ul>
<h5 id="安全上的区别"><a href="#安全上的区别" class="headerlink" title="安全上的区别"></a><strong>安全上的区别</strong></h5><ul>
<li>查询字符串(名称/值对)是在 GET 请求的 URL 中发送的,有安全问题。</li>
<li>查询字符串(名称/值对)是在 POST 请求的 HTTP 消息主体中发送的,因此安全性较get高</li>
</ul>
<p><strong>误区:我们经常说get请求参数的大小存在限制,而post请求的参数大小是无限制的。</strong></p>
<p>实际上HTTP 协议从未规定 GET/POST 的请求长度限制是多少。对get请求参数的限制是来源与浏览器或web服务器,浏览器或web服务器限制了url的长度。为了明确这个概念,我们必须再次强调下面几点:</p>
<ul>
<li>HTTP 协议 未规定 GET 和POST的长度限制</li>
<li>GET的最大长度显示是因为 浏览器和 web服务器限制了 URI的长度</li>
<li>不同的浏览器和WEB服务器,限制的最大长度不一样</li>
<li>要支持IE,则最大长度为2083byte,若只支持Chrome,则最大长度 8182byte</li>
</ul>
<h5 id="总结"><a href="#总结" class="headerlink" title="总结"></a><strong>总结</strong></h5><p>有关 GET 请求的其他一些注释:</p>
<ul>
<li>GET 请求可被缓存</li>
<li>GET 请求保留在浏览器历史记录中</li>
<li>GET 请求可被收藏为书签</li>
<li>GET 请求不应在处理敏感数据时使用</li>
<li>GET 请求有长度限制</li>
<li>GET 请求只应当用于取回数据</li>
</ul>
<p>有关 POST 请求的其他一些注释:</p>
<ul>
<li>POST 请求不会被缓存</li>
<li>POST 请求不会保留在浏览器历史记录中</li>
<li>POST 不能被收藏为书签</li>
<li>POST 请求对数据长度没有要求</li>
</ul>
<h2 id="对象的属性"><a href="#对象的属性" class="headerlink" title="对象的属性"></a>对象的属性</h2><p>ECMAScript 中有两种属性:数据属性和访问器属性。</p>
<p>描述符可同时具有的键值</p>
<table>
<thead>
<tr>
<th></th>
<th>configurable</th>
<th>enumerable</th>
<th>value</th>
<th>writable</th>
<th>get</th>
<th>set</th>
</tr>
</thead>
<tbody><tr>
<td>数据描述符</td>
<td>Yes</td>
<td>Yes</td>
<td>Yes</td>
<td>Yes</td>
<td>No</td>
<td>No</td>
</tr>
<tr>
<td>存取描述符</td>
<td>Yes</td>
<td>Yes</td>
<td>No</td>
<td>No</td>
<td>Yes</td>
<td>Yes</td>
</tr>
</tbody></table>
<h5 id="数据属性:"><a href="#数据属性:" class="headerlink" title="数据属性:"></a>数据属性:</h5><pre><code class="js">var obj = {};
Object.defineProperty(obj, "key", {
enumerable: false,
configurable: false,
writable: false,
value: "static"
});
</code></pre>
<h5 id="访问器属性:"><a href="#访问器属性:" class="headerlink" title="访问器属性:"></a>访问器属性:</h5><pre><code class="js">var obj = {
_year:2001,