RHCSA
RHCSA
Set network settings and hostname: this step has to be completed before anything else can be
done on the test. You might not have access to a GUI yet.
a. Configure Network
The easiest/fastest way to do this is to use the nmtui command.
CRITICAL:
When configuring an IP address in nmtui don't forget to set the netmask via <IP-
ADDRESS>/<SUBNET>.
If the subnet is not defined manually then nmtui defaults to <IP-ADDRESS>/32
This will cause problems when trying to access the yum repositories later.
b. Set hostname
───────────────────────────────────────
hostnamectl set-hostname <NEW-HOSTNAME>
───────────────────────────────────────
Note:
I'm using the gpgcheck=0 option to make things faster.
If you're instructed to actually use gpgcheck then you'll need to import the GPG key from the
online repository.
You can do this by downloading the file (wget or through browser) and then installing it using
rpm.
Ex.
wget http://server.example.com/RPM-GPG-KEY-redhat-release /tmp/RPM-GPG-KEY-redhat-
releas
rpm --import RPM-GPG-KEY-redhat-release
You'll need to pay attention to the wording here. The instructions say the users have to belong
to a supplemental group stooges - that means they need to also belong to a primary group. The
most logical assumption is that they each belong to their own private group (ex. larry:larry,
curly:curly, etc…)
You can install the system-config-users package and use the GUI to create the users.
Create a shared folder: Create a directory that members of the stooges group can access.
Ensure that files created in the directory are owned by the stooges group.
Find strings matching xyz in the file /tmp/test-log-file and save them in /tmp/matching-log-
entries: Just use grep and redirect the output
────────────────────────────────────────────────────────
grep xyz /tmp/test-log-file > /tmp/matching-log-entries
────────────────────────────────────────────────────────
Create a gzipped tar archive (/tmp/log_archive.tgz) containing all the files in /var/log: Just
use the tar command
────────────────────────────────────────
tar -cvfz /tmp/log_archive.tgz /var/log
────────────────────────────────────────
Note:
I'm using the gpgcheck=0 option to make things faster.
If you're instructed to actually use gpgcheck then you'll need to import the GPG key from the
online repository.
You can do this by downloading the file (wget or through browser) and then installing it using
rpm.
Ex.
wget http://server.example.com/update/RPM-GPG-KEY-redhat-release /tmp/RPM-GPG-KEY-
redhat-releas
rpm --import RPM-GPG-KEY-redhat-release
A kernel update is available in a different location (not the first yum repo)
a. Create a yum repo for the new location (refer to question #4)
c. Reboot to enable new kernel (visually verify that a new grub entry was created)
──────
reboot
──────
Create a Cronjob for bob that runs /bin/date daily at 3:18pm and redirects the output to
/home/bob/stamp
The question didn't specify that the new swap partition had to be part of the LVM so the easiest
way to do this is to create another partition to use as a swap partition
a. Use fdisk to create the partition (use +800M for Last Sector)
b. Issue the command blkid to get the UUID for the newly created disk
c. Add an entry to fstab (ex. UUID=<blkid-output> swap swap 0 0)
d. Issue the command swapon -a to enable the newly added partition
Note:
I had to redo this step with an extended partition instead of a primary one to create extra space
for extending LVM.
This is probably by design - the assumption while answering this question is that I can just
create an extra partition,
that assumption is later changed since we'll also need another partition to use when extending
the LVM.
Ensure that you know how to create extended partitions in fdisk.
Create a new logical volume cattle with a size of 25 extents belonging to volume group
farming with a PE size of 32M
This is fairly easy once you break down the question into its parts
a. Create a new PV
This is where we would create a new partition, running into the extended vs primary issue
mentioned in the swap creation answer.
b. Create a new VG
Use the vgcreate command with the flags:
-s or --physicalextentsize set to 32M
c. Create new LV
Use lvcreate with the flags:
-n or --name to provide the name
-l or --extents to provide the size
I just used the GUI system-config-auth - it's far easier than trying to fiddle with all the options
manually.
At first glance this seemed like an easy question but it really isn't. The hard part here is that the
directory used for mounting is defined in the root path (ex. /my_auto_mount) which is not
defined in the SELinux fcontext for autofs.