SOLVED Extpack "Error creating textual authentication agent"

Discussions related to using VirtualBox on Linux hosts.
Post Reply
tristram
Posts: 6
Joined: 29. Jul 2009, 10:08
Primary OS: Linux other
VBox Version: OSE Debian
Guest OSses: FreeBSD Ubuntu

SOLVED Extpack "Error creating textual authentication agent"

Post by tristram »

Trying to install the extension pack (it matches the VB package I'm running), I get the message below, anyone got any ideas how to solve this please?

Failed to install the Extension Pack /home/jim/Downloads/Oracle_VM_VirtualBox_Extension_Pack-4.1.2-73507.vbox-extpack.

The installer failed with exit code 127: Error creating textual authentication agent: Error opening current controlling terminal for the process (`/dev/tty'): No such device or address.

Result Code: NS_ERROR_FAILURE (0x80004005)
Component: ExtPackManager
Interface: IExtPackManager {3295e6ce-b051-47b2-9514-2c588bfe7554}

I'm running XFCE on ubuntu 11.04 (server edition)
Last edited by tristram on 4. Sep 2011, 11:17, edited 1 time in total.
Perryg
Site Moderator
Posts: 34369
Joined: 6. Sep 2008, 22:55
Primary OS: Linux other
VBox Version: OSE self-compiled
Guest OSses: *NIX

Re: Ext-pack "Error creating textual authentication agent"

Post by Perryg »

Server means no X so you will need to install this as sudo using the VBoxManage CLI. See Chapter 8 VBoxManage. Below is a snip.

Code: Select all

VBoxManage extpack install [--replace] <tarball> |
                   uninstall [--force] <name> |
                   cleanup
I just read you post again and see that you have in fact installed X and DM on a server. You must have missed something, but the CLI will work regardless.
tristram
Posts: 6
Joined: 29. Jul 2009, 10:08
Primary OS: Linux other
VBox Version: OSE Debian
Guest OSses: FreeBSD Ubuntu

Re: Ext-pack "Error creating textual authentication agent"

Post by tristram »

SOLVED:

Thanks for the input. On the 'you are missing something' hint, I looked in synaptic and it has the latest version there. So I removed the VB install that I'd downloaded from the web and used synaptic to install VB... all works well now :)
Sasquatch
Volunteer
Posts: 17798
Joined: 17. Mar 2008, 13:41
Primary OS: Debian other
VBox Version: PUEL
Guest OSses: Windows XP, Windows 7, Linux
Location: /dev/random

Re: SOLVED Extpack "Error creating textual authentication agent"

Post by Sasquatch »

Synaptic only has packages that are in the repositories you set up. By default, you only have the Ubuntu repos and they do not have the latest VB version. They are most likely still on 4.0.x, as were the Oracle version you can find on the website is 4.1.2.
You already had VB installed, but now you wanted to install the Extension Pack. That is an add-on, not available in the Ubuntu repos. The error you got when you tried to install the extpack, is something else. You may have well missed something, unless you installed the package "xubuntu-desktop". Other than that, using the command line like Perry suggested should work no matter what. You do have to run the command as root, so switch to root or use sudo.
Read the Forum Posting Guide before opening a topic.
VirtualBox FAQ: Check this before asking questions.
Online User Manual: A must read if you want to know what we're talking about.
Howto: Install Linux Guest Additions
Howto: Use Shared Folders on Linux Guest
See the Tutorials and FAQ section at the top of the Forum for more guides.
Try searching the forums first with Google and add the site filter for this forum.
E.g. install guest additions site:forums.virtualbox.org

Retired from this Forum since OSSO introduction.
arjun2594
Posts: 1
Joined: 15. Nov 2014, 11:47

Re: SOLVED Extpack "Error creating textual authentication ag

Post by arjun2594 »

Since you were running a server edition of Ubuntu and installed XFCE on top of it, X server did not run as root. So all its child process (including virtualbox) did not have root privileges (which is required for installing the extension pack). You can either install it using the terminal, or start virtualbox from the terminal prefixing sudo like

Code: Select all

sudo virtualbox
Both ways it should work.
Post Reply