Skip to content

Commit baf598c

Browse files
authored
Modify admonitions type (#1483)
* Modify admonitions type * Remove unknown newline characters
1 parent e1ef8d5 commit baf598c

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

docs/labs/sys_admin_1/lab7-software_management.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ In this exercise you will try to install the `wget` package (wget-*.rpm).
411411
412412
The GPG keys used for signing packages used in the Rocky Linux project can be obtained from various sources such as - the Project website, ftp site, distribution media, local source and so on. Just in case the proper key is missing on your RL system's keyring, you can use the `rpm`'s `--import` option to import Rocky Linux’s public key from your local RL system by running: `sudo rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-rockyofficial`
413413
414-
!!! note "QUESTION:"
414+
!!! question
415415
416416
When installing packages, what is the difference between `rpm -Uvh` and `rpm -ivh`.
417417
Consult the man page for `rpm`.
@@ -432,7 +432,7 @@ Uninstalling packages is just as easy as installing, with Red Hat’s package ma
432432
$ sudo rpm -e libmetalink
433433
```
434434
435-
!!! note "QUESTION:"
435+
!!! question
436436
437437
Explain why you couldn’t remove the package?
438438
@@ -445,8 +445,7 @@ Uninstalling packages is just as easy as installing, with Red Hat’s package ma
445445
446446
!!! note
447447
448-
If you want to break the package that relies on libmetalink and *forcefully* remove the package from your system, you can use rpm's `--nodeps` option like this -
449-
`$ sudo rpm -e --nodeps libmetalink`
448+
If you want to break the package that relies on libmetalink and *forcefully* remove the package from your system, you can use rpm's `--nodeps` option like this: `$ sudo rpm -e --nodeps libmetalink`.
450449
451450
**i.** The “nodeps” option means No dependencies. I.e., ignore all dependencies.
452451
**ii.** The above is just to show you how to remove a package from your system forcefully. Sometimes you need to do this, but it is generally *not a good practice*.
@@ -689,7 +688,7 @@ The script that usually lets you configure the software is usually aptly named
689688
$ ./configure --help
690689
```
691690
692-
!!! note "QUESTION:"
691+
!!! question
693692
694693
From the output of the command what does the “--prefix” option do?
695694

0 commit comments

Comments
 (0)