Wednesday, May 28, 2014

How To Update Kernel Version In Linux

3:52 PM

A Red Hat Certified System Administrator (RHCSA) is able to perform the following tasks:


  • 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.


Written by

0 comments :

Post a Comment

 

© 2014 Linux Storages | Updated . All rights resevered. Designed by Templateism