From the course: Linux System Engineer: Authentication with LDAP and Kerberos

Install Guest Additions

From the course: Linux System Engineer: Authentication with LDAP and Kerberos

Start my 1-month free trial

Install Guest Additions

- [Instructor] VirtualBox guest additions are pieces of software installed on the guest operating system that gives the guest OS a direct communication path to VirtualBox. This allows the guest to advantage of faster drivers, better screen resolutions, and better integration between the guest and the host. I highly recommend installing guest additions, as it makes the virtual experience smoother. When running a VM, you may notice, if you press host plus F to go into fullscreen mode, that CentOS doesn't fill the entire screen. Installing guest additions will fix this, among other things. There are a few prerequisites for installing VirtualBox guest additions. All CentOS system updates have to be done and the VM has to be rebooted to ensure CentOS is using the latest kernel. Also, the network needs to be functional. To update the system software, open a terminal in your VM by selecting applications, favorites, and terminal. I'm going to make mine fullscreen, and I'm going to bump my font size. Now type in sudo space yum space -y space update and hit enter, and then type in your password. There's a chance that the yum database may be currently locked. If so, you need to kill the other yum process, which is listed in the error output. In this case, you type in sudo space kill space -9 and the process ID listed in the error output, and then you'd run the yum update command again. In my case, the update is going well, and I only have one packaged update, which is the kernel. When the updates are done, reboot by typing in sudo space reboot and hit enter. Type in your password. Once the VM has rebooted, log back in and open a terminal. Now let's install the development tools software group by typing in sudo space yum space group space install space -y space --setopt=group_command=objects space, double quote, Development Tools, double quote, then hit enter. Type in your password and hit enter again. Due to a change in the way software groups are handled in CetnOS, we need to add the --setup option listed above. In your case, it may work without it. We need the double quote so yum knows we're installing one software group, called Development Tools. When that's done, we'll need to install the kernel source. Type in sudo space yum space install space -y space kernel -devel, and hit enter. After yum has finished installing the kernel source, we can close the terminal window. Now let's go to the virtual machine menus. If you're in fullscreen mode, like I am, then you'll need to press the host key to release your mouse pointer, and then hover it over the bottom of the screen. The menu bar should show up. If you're not in fullscreen mode, you'll need to press your host key, and then click on the menu at the top of the window. Select devices and insert guest additions CD image. Once the dialog pops up, click on run. And type in your password. Once we've authenticated, it will start installing guest additions. The installer is taking in the Development Tools software and is compiling a module for the Linux kernel and then installing it, which should finish in a few moments. Now that the guest additions software is installed, reboot your VM again by going to the top right-hand menu and selecting the power button, and then click restart. Once it has rebooted, log in and you should be able to go into actual full-screen mode by pressing host key plus F. If your VM rebooted okay and your guest additions installed successful, you'll want to create a new snapshot. With our VM running, press host plus T to create a new snapshot. We'll call this snapshot Guest Additions and hit enter. You will want to follow the same procedure for each of your virtual machines.

Contents