A Red Hat Certified System Administrator (RHCSA) is able to perform the following tasks:
How to install new kernel version.
CMD
First install ftp service in server.
* - All dependency packages for ftp.
y - Install without asking permission.
Connect the other server using ftp service (port - 21).
change directory which having files in it.
mget - use to download file from other server to our server.
bye - disconnecting ftp connection.
rpm - redhat package management.
i - install package.
v - verbous
First install kernel firmware.
now install kernel package.
check current kernel version.
now check the kernel version after restart, new kernel version is updated.
-
Understand and use essential tools for handling files, directories, command-line environments, and documentation
-
Operate running systems, including booting into different run levels,
identifying processes, starting and stopping virtual machines, and
controlling services
-
Configure local storage using partitions and logical volumes
-
Create and configure file systems and file system attributes, such as
permissions, encryption, access control lists, and network file systems
-
Deploy, configure, and maintain systems, including software installation, update, and core services
-
Manage users and groups, including use of a centralized directory for authentication
- Manage security, including basic firewall and SELinux configuration.
How to install new kernel version.
CMD
root@linuxstorage:~#yum install lftp* -y
First install ftp service in server.
* - All dependency packages for ftp.
y - Install without asking permission.
root@linuxstorage:~#lftp 192.168.1.1
Connect the other server using ftp service (port - 21).
root@linuxstorage:~#cd /var/newfiles
change directory which having files in it.
root@linuxstorage:~#mget kernel-*
mget - use to download file from other server to our server.
root@linuxstorage:~#bye
bye - disconnecting ftp connection.
root@linuxstorage:~#rpm -ivh kernel-firmware*
rpm - redhat package management.
i - install package.
v - verbous
First install kernel firmware.
root@linuxstorage:~#rpm -ivh kernel-debug*
now install kernel package.
root@linuxstorage:~#uname -r
check current kernel version.
root@linuxstorage:~#vim /etc/grub.conf (check the title if updated kernel is in first title or default = 0)
root@linuxstorage:~#init 0 (reboot system)
root@linuxstorage:~#uname -r
now check the kernel version after restart, new kernel version is updated.
0 comments :
Post a Comment