Advertisement
sandervanvugt

RHCSA day3 jan21

Jan 27th, 2021
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.71 KB | None | 0 0
  1. ot@rhcsa log]# history
  2. 1 id student
  3. 2 less /etc/passwd
  4. 3 id linda
  5. 4 su - linda
  6. 5 id student
  7. 6 ls
  8. 7 bash countdown 12
  9. 8 less /etc/passwd
  10. 9 awk -F : '$3 < 1000 { print $1 }' /etc/passwd
  11. 10 less /etc/passwd
  12. 11 less /etc/login.defs
  13. 12 history | grep user
  14. 13 history
  15. 14 useradd lisa
  16. 15 vim /etc/login.defs
  17. 16 vim /etc/default/useradd
  18. 17 ls -a /etc/skel/
  19. 18 touch /etc/skel/newfile
  20. 19 useradd bob
  21. 20 ls -la /home/bash
  22. 21 ls -la /home/bob
  23. 22 groupadd sales
  24. 23 useradd --help | less
  25. 24 useradd -G sales linda
  26. 25 usermod -aG sales linda
  27. 26 id linda
  28. 27 usermod -G wheel linda
  29. 28 id linda
  30. 29 usermod -aG sales linda
  31. 30 passwd --help
  32. 31 passwd linda
  33. 32 chage linda
  34. 33 grep linda /etc/shadow
  35. 34 vim /etc/default/useradd
  36. 35 useradd --help
  37. 36 useradd --help | less
  38. 37 id linda
  39. 38 grep linda /etc/passwd
  40. 39 grep linda /etc/groups
  41. 40 grep linda /etc/group
  42. 41 id linda
  43. 42 ls
  44. 43 countdown 12
  45. 44 echo $PATH
  46. 45 ./countdown 12
  47. 46 ls -l
  48. 47 bash countdown 12
  49. 48 chmod +x countdown
  50. 49 ./countdown 1
  51. 50 ls -l
  52. 51 ls -ld .
  53. 52 id linda
  54. 53 id lisa
  55. 54 usermod -aG sales lisa
  56. 55 id lisa
  57. 56 groupadd account
  58. 57 useradd -G account anna
  59. 58 useradd -G account anouk
  60. 59 id anna
  61. 60 id anouk
  62. 61 mkdir /data/account
  63. 62 mkdir -p /data/account
  64. 63 mkdir -p /data/sales
  65. 64 cd /data
  66. 65 ls -l
  67. 66 chgrp sales sales
  68. 67 ls -l
  69. 68 chmod 770 sales
  70. 69 ls -l
  71. 70 chgrp account account/
  72. 71 chmod 770 account/
  73. 72 ls -l
  74. 73 su - anna
  75. 74 history
  76. 75 mkdir blah
  77. 76 chgrp sales blah
  78. 77 ls -l
  79. 78 chown linda:sales blah
  80. 79 ls -l
  81. 80 chown :account blah
  82. 81 ls -l
  83. 82 chmod 660 blah
  84. 83 id anna
  85. 84 su - anna
  86. 85 cd /home/linda
  87. 86 vim playme
  88. 87 rm --help
  89. 88 vim playme\
  90. 89 vim playme
  91. 90 chmod +x playme
  92. 91 ls -l
  93. 92 su - linda
  94. 93 chmod u+s playme
  95. 94 ls -l
  96. 95 find / -perm /4000
  97. 96 ls -l /usr/bin/passwd /etc/shadow
  98. 97 cd
  99. 98 echo $PATH
  100. 99 mv countdown /usr/bin
  101. 100 countdown 12
  102. 101 cd /data
  103. 102 ls -l
  104. 103 grep sales /etc/group
  105. 104 su - linda
  106. 105 chmod g+s sales
  107. 106 ls -l
  108. 107 su - linda
  109. 108 su - lisa
  110. 109 chmod +t sales
  111. 110 su - lisa
  112. 111 ls -l sales
  113. 112 ls -ld sales
  114. 113 chown lisa sales
  115. 114 ls -ld sales
  116. 115 su - lisa
  117. 116 ls -l
  118. 117 setfacl -m -R g:account:rx sales
  119. 118 setfacl -R -m g:account:rx sales
  120. 119 ls -l
  121. 120 getfacl sales
  122. 121 ls -l sales/
  123. 122 rm -rf sales
  124. 123 mkdir sales
  125. 124 su - linda
  126. 125 chown :sales sales
  127. 126 chmod 3770 sales
  128. 127 su - linda
  129. 128 setfacl -R -m g:account:rx sales
  130. 129 ls -l sales/
  131. 130 man setfacl
  132. 131 setfacl -R -x account sales
  133. 132 man setfacl
  134. 133 setfacl -R -x g:account sales
  135. 134 getfacl sales
  136. 135 setfacl -R -m g:account:rX sales
  137. 136 ls -l sales/
  138. 137 su - linda
  139. 138 ls -l sales/
  140. 139 setfacl -m d:g:account:rx sales
  141. 140 getfacl sales
  142. 141 su - linda
  143. 142 cd /home/linda
  144. 143 touch rootsfile
  145. 144 su - linda
  146. 145 ls
  147. 146 chattr +i myfile
  148. 147 rm -f myfile
  149. 148 ls -l
  150. 149 chattr -i myfile
  151. 150 rm -f myfile
  152. 151 countdown 12
  153. 152 poweroff
  154. 153 history
  155. 154 lsblk
  156. 155 gdisk /dev/sda
  157. 156 fdisk /dev/sda
  158. 157 lsblk
  159. 158 cat /proc/partitions
  160. 159 lsblk
  161. 160 mkfs.xfs /dev/sda3
  162. 161 mount /dev/sda3 /mnt
  163. 162 mount
  164. 163 cd /mnt
  165. 164 cp /etc/hosts .
  166. 165 cd
  167. 166 ls /mnt
  168. 167 umount /dev/sda3
  169. 168 ls /mnt
  170. 169 vim /etc/fstab
  171. 170 mount -a
  172. 171 mkdir /mydata
  173. 172 mount -a
  174. 173 mount
  175. 174 vim /etc/fstab
  176. 175 reboot
  177. 176 vim /etc/fstab
  178. 177 mount
  179. 178 mount | grep '^/'
  180. 179 fdisk -l
  181. 180 fdisk -l /dev/sda
  182. 181 history
  183. 182 groupadd profs
  184. 183 groupadd student
  185. 184 groupadd students
  186. 185 vim /etc/login.defs
  187. 186 chage linda
  188. 187 useradd -G student linda
  189. 188 usermod -aG student linda
  190. 189 usermod -aG student lisa
  191. 190 usermod -aG students lisa
  192. 191 usermod -aG students linda
  193. 192 vim /etc/group
  194. 193 usermod -aG profs anna
  195. 194 usermod -aG profs anouk
  196. 195 id anna
  197. 196 id linda
  198. 197 mkdir /data/profs /data/students
  199. 198 cd /data
  200. 199 ls -l
  201. 200 chown anna:profs profs
  202. 201 chown anna:students students
  203. 202 ls -l
  204. 203 chmod 3770 profs
  205. 204 chmod 3770 students
  206. 205 ls -l
  207. 206 su - linda
  208. 207 setfacl -R -m g:profs:rX /data/students
  209. 208 setfacl -m d:g:profs:rx /data/students
  210. 209 su - linda
  211. 210 chown -R anna .
  212. 211 ls -ld .
  213. 212 ls -l
  214. 213 lsblk
  215. 214 fdisk /dev/sda
  216. 215 partprobe
  217. 216 cat /proc/partitions
  218. 217 lsblk
  219. 218 reboot
  220. 219 lsblk
  221. 220 vim /etc/default/grub
  222. 221 grub2-mkconfig -o /boot/grub2/grub.cfg
  223. 222 mkfs.ext4 /dev/sda4
  224. 223 mkfs.ext4 /dev/sda5
  225. 224 mkfs.xfs /dev/sda6
  226. 225 mkdir /ext4 /xfs
  227. 226 vim /etc/fstab
  228. 227 fdisk /dev/sda
  229. 228 vim /etc/fstab
  230. 229 reboot
  231. 230 lsblk
  232. 231 xfs_admin -L goat /dev/sda5
  233. 232 vim /etc/fstab
  234. 233 reboot
  235. 234 mount
  236. 235 blkid
  237. 236 xfs_admin --help
  238. 237 history
  239. 238 cat /etc/default/grub
  240. 239 fdisk /dev/sda
  241. 240 tune2fs -L /dev/sda6
  242. 241 tune2fs -L cow /dev/sda6
  243. 242 reboot
  244. 243 lsblk
  245. 244 vim /etc/fstab
  246. 245 tune2fs -L horse /dev/sda6
  247. 246 tune2fs -L horse /dev/sda5
  248. 247 vim /etc/fstab
  249. 248 countdown 16
  250. 249 poweroff
  251. 250 yum repolist
  252. 251 yum search nmap
  253. 252 dnf install nmap
  254. 253 cd /etc/yum.repos.d/
  255. 254 ls
  256. 255 rm -f *
  257. 256 yum search zsh
  258. 257 yum search nmap
  259. 258 yum clean all
  260. 259 yum search nmap
  261. 260 cd /
  262. 261 yum repolist
  263. 262 df -h
  264. 263 dd if=/dev/sr0 of=/centos83.iso bs=1M
  265. 264 mkdir /repo
  266. 265 vim /etc/fstab
  267. 266 ls /repo
  268. 267 mount -a
  269. 268 ls /repo
  270. 269 cd repo
  271. 270 ls
  272. 271 cd BaseOS/
  273. 272 ls
  274. 273 ls Packages/
  275. 274 yum repolist
  276. 275 cd /etc/yum.repos.d/
  277. 276 vim base.repo
  278. 277 vim appstream.repo
  279. 278 yum repolist
  280. 279 cd /repo
  281. 280 ls
  282. 281 seinfo
  283. 282 yum provides */seinfo
  284. 283 yum install setools-console
  285. 284 yum module list
  286. 285 yum module provides httpd
  287. 286 yum module info httpd
  288. 287 yum module info postgresql
  289. 288 yum module info --profile postgresql
  290. 289 yum module lsit postgresql
  291. 290 yum module list postgresql
  292. 291 yum module install postgresql:9.6/devel
  293. 292 yum module install postgresql:9.6/server
  294. 293 yum install httpd
  295. 294 yum module enable postgresql:9.6
  296. 295 yum module info --profile php
  297. 296 yum module install php:7.2/devel
  298. 297 yum module reset php
  299. 298 yum module install --allowerasing php:7.3
  300. 299 which yum
  301. 300 which dnf
  302. 301 ls -l /bin/yum /bin/dnf
  303. 302 yum install -y bash-completion
  304. 303 ip a
  305. 304 ip route show
  306. 305 ip route del default via 192.168.4.2
  307. 306 ip route show
  308. 307 ping nu.nl
  309. 308 ip route add default via 192.168.4.2
  310. 309 ping nu.nl
  311. 310 cat /etc/resolv.conf
  312. 311 rm /etc/resolv.conf
  313. 312 ping nu.nl
  314. 313 echo nameserver 192.168.4.2 >> /etc/resolv.conf
  315. 314 ping nu.nl
  316. 315 man ifconfig
  317. 316 ip a a dev ens33 10.0.0.10/24
  318. 317 ip a
  319. 318 ping 10.0.0.10
  320. 319 ifconfig
  321. 320 which ifconfig
  322. 321 rpm -qf /sbin/ifconfig
  323. 322 yum remove $(rpm -qf /sbin/ifconfig)
  324. 323 countdown 12
  325. 324 cd
  326. 325 systemctl status NetworkManager
  327. 326 cd /etc/sysconfig/network-scripts/
  328. 327 ls
  329. 328 vim ifcfg-ens33
  330. 329 nmtui
  331. 330 ip a
  332. 331 nmcli connection delete ens33
  333. 332 nmcli connection add con-name newcon ifname ens33 ipv4.addresses 192.168.4.44/24 ipv4.gateway 192.168.4.2 ipv4.dns 192.168.4.2 ipv4.method manual
  334. 333 nmcli connection add con-name newcon ifname ens33 ipv4.addresses 192.168.4.44/24 ipv4.gateway 192.168.4.2 ipv4.dns 192.168.4.2 ipv4.method manual type ethernet
  335. 334 nmcli connection show
  336. 335 nmcli connection up newcon
  337. 336 ip a
  338. 337 ping nu.nl
  339. 338 history
  340. 339 countdown 4
  341. 340 nmcli con modify newcon +ipv4.addresses 10.11.12.90/24
  342. 341 nmcli con up newcon
  343. 342 ip a
  344. 343 systemctl status tuned
  345. 344 tuned-adm --help
  346. 345 tuned-adm list
  347. 346 tuned-adm profile latency-performance
  348. 347 tuned-adm active
  349. 348 sysctl -a
  350. 349 sysctl -a | wc
  351. 350 cd /usr/lib/tuned/latency-performance/
  352. 351 ls
  353. 352 vim tuned.conf
  354. 353 mkdir /etc/tuned/sander
  355. 354 cd ..
  356. 355 cd virtual-guest/
  357. 356 ls
  358. 357 cp tuned.conf /etc/tuned/sander/
  359. 358 cd ..
  360. 359 cd latency-performance/
  361. 360 cat tuned.conf >>/etc/tuned/sander/tuned.conf
  362. 361 tuned-adm list
  363. 362 tuned-adm profile sander
  364. 363 cd
  365. 364 fdisk /dev/sda
  366. 365 lsblk
  367. 366 pvcreate /dev/sda7
  368. 367 xxd /dev/sda7 | less
  369. 368 pvs
  370. 369 vgcreate --help | less
  371. 370 vgcreate -s 2M vgdata /dev/sda7
  372. 371 vgs
  373. 372 pvs
  374. 373 lvcreate -L 1G -n lvdata vgdata
  375. 374 lvcreate -L 1022M -n lvdata vgdata
  376. 375 mkfs.ext4 /dev/vgdata/lvdata
  377. 376 mount /dev/vgdata/lvdata /mnt
  378. 377 df- h
  379. 378 df -h
  380. 379 countdown 12
  381. 380 history
  382. 381 df -h
  383. 382 ls -l /dev/mapper/vgdata-lvdata /dev/vgdata/lvdata
  384. 383 lvextend -r -l +50%FREE /dev/vgdata/lvdata
  385. 384 vgs
  386. 385 vgextend vgdata /dev/sda8
  387. 386 vgs
  388. 387 lvextend -r -l +50%FREE /dev/vgdata/lvdata
  389. 388 df -h
  390. 389 lvextend -L +100M /dev/vgdata/lvdata
  391. 390 xfs_growfs /dev/vgdata/lvdata
  392. 391 mount | grep lvdata
  393. 392 resize2fs /dev/vgdata/lvdata
  394. 393 df -h
  395. 394 vim bonus-homework.txt
  396. 395 top
  397. 396 lvs
  398. 397 top
  399. 398 vmstat 2 10
  400. 399 top
  401. 400 fdisk /dev/sda
  402. 401 mkswap /dev/sda9
  403. 402 free -m
  404. 403 swapon /dev/sda9
  405. 404 free -m
  406. 405 vim /etc/fstab
  407. 406 swapoff /dev/sda9
  408. 407 free -m
  409. 408 swapon -a
  410. 409 free -m
  411. 410 history
  412. 411 poweroff
  413. 412 yum install stratis-cli stratisd
  414. 413 systemctl status stratids
  415. 414 systemctl status stratisd
  416. 415 systemctl start stratisd
  417. 416 systemctl status stratisd
  418. 417 stratis pool create mypool /dev/sdb
  419. 418 stratis pool lis
  420. 419 stratis pool list
  421. 420 stratis filesystem create mypool myfs1
  422. 421 stratis fs list mypool
  423. 422 mkdir /myfs
  424. 423 lsblk
  425. 424 blkid
  426. 425 mount UUID="f2c3a2b9-e552-4a99-b111-2205b0dfb235" /myfs1
  427. 426 mkdir /myfs1
  428. 427 mount UUID="f2c3a2b9-e552-4a99-b111-2205b0dfb235" /myfs1
  429. 428 mount
  430. 429 stratis pool list
  431. 430 stratis filesystem list
  432. 431 stratis blockdev list
  433. 432 df -h
  434. 433 stratis blockdev
  435. 434 stratis pool
  436. 435 stratis fs
  437. 436 stratis filesystem create mypool myfs2
  438. 437 stratis blockdev
  439. 438 stratis pool
  440. 439 stratis fs
  441. 440 blkid
  442. 441 stratis fs | grep myfs1
  443. 442 stratis fs | grep myfs1 | cut -f 10
  444. 443 stratis fs | grep myfs1 | awk '{ print $10 }'
  445. 444 stratis fs | grep myfs1 | awk '{ print $NR }'
  446. 445 stratis fs | grep myfs1 | awk '{ print $10 }'
  447. 446 stratis fs | grep myfs1 | awk '{ print $NF }' >> /etc/fstab
  448. 447 cat /etc/fstab
  449. 448 blkid
  450. 449 vim /etc/fstab
  451. 450 vim stratislab.txt
  452. 451 blkid
  453. 452 blkid | grep f2c3
  454. 453 blkid | grep f2c3 | awk '{ print $2 }'
  455. 454 blkid | grep f2c3 | awk '{ print $2 }' >> /etc/fstab
  456. 455 vim /etc/fstab
  457. 456 umount /myfs1
  458. 457 mount -a
  459. 458 history
  460. 459 vim stratislab.txt
  461. 460 systemctl status stratisd
  462. 461 reboot
  463. 462 journalctl | grep sealert
  464. 463 sealert -l 7aa0d0da-d02c-4c0d-be9d-e15669117a8e
  465. 464 sealert -l 7aa0d0da-d02c-4c0d-be9d-e15669117a8e | less
  466. 465 mount | grep myfs
  467. 466 vim stratislab.txt
  468. 467 vim /etc/fstab
  469. 468 cd /run/systemd/
  470. 469 ls
  471. 470 cd generator/
  472. 471 ls
  473. 472 vim myfs1.mount
  474. 473 ls
  475. 474 cd local-fs.target.requires/
  476. 475 ls
  477. 476 cd ..
  478. 477 cd
  479. 478 cd /usr/lib/systemd/system
  480. 479 ls local-fs.target.wants/
  481. 480 ls -l local-fs.target.wants/
  482. 481 yum install -y httpd
  483. 482 systemctl enable --now httpd
  484. 483 ps aux | grep http
  485. 484 ps Zaux | grep http
  486. 485 ls -Zl /var/www
  487. 486 ls -Zld /var/tmp
  488. 487 vim /etc/httpd/conf/httpd.conf
  489. 488 mkdir /web
  490. 489 echo hello > /web/index.html
  491. 490 systemctl restart httpd
  492. 491 systemctl status httpd
  493. 492 curl http://localhost
  494. 493 getenforce
  495. 494 setenforce Permissive
  496. 495 curl http://localhost
  497. 496 grep AVC /var/log/audit/audit.log
  498. 497 countdown 12
  499. 498 vim /etc/sysconfig/selinux
  500. 499 ls -ldZ /web /var/www/html/
  501. 500 man -k semanage
  502. 501 man semanage-fcontext
  503. 502 semanage fcontext -a -t httpd_sys_content_t "/web(/.*)?"
  504. 503 ls -ldZ /web
  505. 504 cd /etc/selinux/targeted/contexts/files/
  506. 505 ls
  507. 506 cat file_contexts.local
  508. 507 restorecon -Rv /web
  509. 508 setenforce 1
  510. 509 getenforce
  511. 510 curl http://localhost
  512. 511 man -k _selinux
  513. 512 yum search | grep selinux | grep doc
  514. 513 yum search selinux | grep doc
  515. 514 yum install selinux-policy-doc
  516. 515 mandb
  517. 516 man -k _selinux
  518. 517 man -k _selinux | grep http
  519. 518 man httpd_selinux
  520. 519 grep AVC /var/log/audit/audit.log | grep http
  521. 520 cd
  522. 521 getsebool -a | wc
  523. 522 getsebool -a | grep ftp
  524. 523 setsebool -P ftpd_anon_write on
  525. 524 yum provides */sealert
  526. 525 grep sealert /var/log/messages
  527. 526 sealert -l f404715f-a627-45ea-8424-fc4f5ca338ac | less
  528. 527 vim /etc/httpd/conf/httpd.conf
  529. 528 systemctl stop httpd
  530. 529 systemctl start httpd
  531. 530 systemctl status httpd
  532. 531 grep AVC /var/log/audit/audit.log | grep http
  533. 532 semanage port -l | grep http
  534. 533 man semanage-port
  535. 534 semanage port -a -t http_port_t -p tcp 82
  536. 535 systemctl start httpd
  537. 536 systemctl status httpd
  538. 537 systemctl status firewalld
  539. 538 firewall-cmd --help | less
  540. 539 man firewall-cmd
  541. 540 firewall-cmd --add-port=82/tcp
  542. 541 firewall-cmd --list-all
  543. 542 firewall-cmd --list-all --permanent
  544. 543 firewall-cmd --add-port=82/tcp --permanent
  545. 544 firewall-cmd --get-services
  546. 545 vim /usr/lib/firewalld/services/http
  547. 546 vim /usr/lib/firewalld/services/http.xml
  548. 547 cp /usr/lib/firewalld/services/http.xml /etc/firewalld/services/sander.xml
  549. 548 vim /etc/firewalld/services/sander.xml
  550. 549 firewall-cmd --get-services | grep sander
  551. 550 systemctl restart firewalld
  552. 551 firewall-cmd --get-services | grep sander
  553. 552 firewall-cmd --help | grep service
  554. 553 firewall-cmd --add-service=sander
  555. 554 firewall-cmd --list-all --permanent
  556. 555 firewall-cmd --list-all
  557. 556 firewall-cmd --add-service=sander --permanent
  558. 557 history
  559. 558 history 12
  560. 559 countdown 12
  561. 560 ssh student@192.168.4.135
  562. 561 showmount -e 192.168.4.135
  563. 562 mount 192.168.4.135:/myshare /mnt
  564. 563 mount
  565. 564 umount /mnt
  566. 565 yum install autofs -y
  567. 566 vim /etc/auto.master
  568. 567 vim /etc/auto.misc
  569. 568 showmount -e 192.168.4.135
  570. 569 ls /
  571. 570 vim /etc/auto.master
  572. 571 vim /etc/auto.files
  573. 572 vim /etc/auto.misc
  574. 573 vim /etc/auto.files
  575. 574 systemctl restart autofs
  576. 575 cd /files
  577. 576 ls -a
  578. 577 cd myshare
  579. 578 pwd
  580. 579 mount
  581. 580 vim /etc/auto.master
  582. 581 vim /etc/auto.ldap
  583. 582 cat /etc/auto.misc
  584. 583 vim /etc/auto.ldap
  585. 584 systemctl restart autofs
  586. 585 cd /home
  587. 586 ls
  588. 587 cd ldap
  589. 588 ls -a
  590. 589 cd ldapuser1
  591. 590 pwd
  592. 591 cd ..
  593. 592 cd ldapuser2
  594. 593 cd ..
  595. 594 pwd
  596. 595 ls
  597. 596 cd
  598. 597 reboot
  599. 598 touch /.autorelabel
  600. 599 reboot
  601. 600 countdown 5
  602. 601 yum install vdo kmod-kvdo
  603. 602 man vdo
  604. 603 lsblk
  605. 604 vdo create --name=vdo1 --device=/dev/sdc --vdoLogicalSize=1P
  606. 605 yum install kmod-kvdo
  607. 606 modprobe kvdo
  608. 607 uname -r
  609. 608 yum search vdo
  610. 609 rpm -ql kmod-kvdo
  611. 610 uname -r
  612. 611 reboot
  613. 612 cd /etc/yum.repos.d/
  614. 613 vim /etc/ssh/sshd_config
  615. 614 scp 192.168.4.138:/etc/yum.repos.d/* .
  616. 615 uname -r
  617. 616 ls
  618. 617 rm [ab]*
  619. 618 yum clean all
  620. 619 yum update kmod-kvdo
  621. 620 cd
  622. 621 systemctl list-dependencies
  623. 622 systemctl get-default
  624. 623 systemctl list-units -t target
  625. 624 systemctl list-units -t mount
  626. 625 systemctl list-units -t services
  627. 626 systemctl list-units -t service
  628. 627 systemctl list-units -t timer
  629. 628 systemctl list-units -t path
  630. 629 systemctl status rsyslog
  631. 630 journalctl
  632. 631 vim /etc/systemd/journald.conf
  633. 632 cd /var/log
  634. 633 ls
  635. 634 mkdir journal
  636. 635 systemctl daemon-reload
  637. 636 ls journal/
  638. 637 journalctl
  639. 638 journalctl -u httpd
  640. 639 systemctl status httpd
  641. 640 journalctl USER_ID=student
  642. 641 man journalctl
  643. 642 yum install *vdo*
  644. 643 vim /etc/rsyslog.conf
  645. 644 history
  646.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement