Env var for linux guest DISPLAY

Hello

I received a prompt linux on a host computer XP using VMWare Player with tools. The host is connected to a network that has attached linux machines.

I can telnet from within the guest to other machines on the network linux successfully. What I can't do is run a graphical application on one of those remote machines. It basically boils down to be impossible to define the environment variable DISPLAY on the remote computer to something that will allow the remote computer display things on my linux guest.

Is it possible to do what I'm doing?

Thanks, Florin

Using ssh with X 11 forwarding...

SSH-l

Tags: VMware

Similar Questions

  • Creating a virtual machine for Linux guest in another HARD drive

    Hi all

    I have Vmware Workstation 8.0 on windows 7 x 64. This window is installed in the primary SSD (Sata port 0), also its mbr. I also have a Linux Ubuntu Natty x 64 in my HDD (Sata port 1) with Grub installed on the HARD drive. So when I go to start my SDD just windows when I want linux, simply go to the HARD drive.

    I tried to create a virtual machine to access the linux (using the physical disk, persistent writing) as a guest during the use of windows as a host, but so far had no success. Just to easy access to linux.

    I get the message of follow-up:

    Untitled.jpg

    The configuration for this virtual machine as follows:

    Untitled.jpg

    Intel Virtualization is enabled in my BIOS.

    My specs are:

    ProcessorProcessor Intel® Core™ i7 2630QM
    ChipsetIntel® HM65 Express Chipset

    8 GB DDR3 1333 MHz SDRAM

    NVIDIA® GeForce® GTX 460M 1.5 GB GDDR5 VRAM

    OCZ Vertex 3 128 GB SDD

    Western Digital 640 GB HARD drive

    Could someone help me?

    try to use "fullDevice" instead of "partitionedDevice" when you add the physical disk.

    It may also be necessary to put the disk status 'offline '.

    This worked in WS before 7?

    You can reach the vmware.log?

  • How to resize the size of the virtual disk for Linux guest OS

    Hello

    I installed VMWare WS 6.5 on my host OS (Vista) and have created a guest VM with RedHat like OS.  When creating, I've specified to create a virtual disk with a size of 8 GB, but have not selected the option of immediate creation - it being understood that VM is assigned additional as needed.  But now, on the comments and space use is 100%.  How can I allocate extra space for the virtual machine?  Also, is it possible to go beyond 8 GB, if so how.

    Enjoy your time, help.

    Concerning

    VMware-vdiskmanager allows to extend the virtual disk and use a third-party utility to extend the partition of guest operating system after having developed the virtual disk.

    Make a backup of your virtual machine before you do anything and you ensure that you don't have any snapshots

  • vmware for linux guest tools installation problem

    a mount cdrom. When I mount it should create this folder

    / tmp/VMware-Tools-distrib accordingly to the instructions vmwware. CD/tmp and I do not see this file...

    any ideas?

    Hello

    You will get this folder after you one) copy. tar.gz file in your CDrom file in / tmp and then unzip it (index):

    tar xvzf 
    

    )

    It does not automatically.

    --

    Wil

    _____________________________________________________

    Visit VMware developers at http://www.vi-toolkit.com wiki

  • Cannot change the entry door of the Linux guest OS by the perl script customization

    Default gateway Linux can be changed using script (modified from vmclone.pl) below.

    Someone at - it gives help on this?

    #!/usr/bin/perl -w
    #
    # Copyright (c) 2007 VMware, Inc.  All rights reserved.
    #
    
    
    
    use strict;
    use warnings;
    
    
    
    use FindBin;
    use lib "$FindBin::Bin/../";
    
    
    
    use VMware::VIRuntime;
    use XML::LibXML;
    use AppUtil::VMUtil;
    use AppUtil::HostUtil;
    use AppUtil::XMLInputUtil;
    
    
    
    $Util::script_version = "1.0";
    
    
    
    sub check_missing_value;
    
    
    
    my %opts = (
       vmhost => {
          type => "=s",
          help => "The name of the host",
          required => 1,
       },
       vmname => {
          type => "=s",
          help => "The name of the Virtual Machine",
          required => 1,
       },
       vmname_destination => {
          type => "=s",
          help => "The name of the target virtual machine",
          required => 1,
       },
       filename => {
          type => "=s",
          help => "The name of the configuration specification file",
          required => 0,
          default => "../sampledata/vmclone.xml",
       },
       customize_guest => {
          type => "=s",
          help => "Flag to specify whether or not to customize guest: yes,no",
          required => 0,
          default => 'no',
       },
       customize_vm => {
          type => "=s",
          help => "Flag to specify whether or not to customize virtual machine: "
                . "yes,no",
          required => 0,
          default => 'no',
       },
       schema => {
          type => "=s",
          help => "The name of the schema file",
          required => 0,
          default => "../schema/vmclone.xsd",
       },
       datastore => {
          type => "=s",
          help => "Name of the Datastore",
          required => 0,
       },
    );
    
    
    
    Opts::add_options(%opts);
    Opts::parse();
    Opts::validate(\&validate);
    
    
    
    Util::connect();
    
    
    
    clone_vm();
    
    
    
    Util::disconnect();
    
    
    
    
    # Clone vm operation
    # Gets destination host, compute resource views, and
    # datastore info for creating the configuration
    # specification to help create a clone of an existing
    # virtual machine.
    # ====================================================
    sub clone_vm {
       my $vm_name = Opts::get_option('vmname');
       my $vm_views = Vim::find_entity_views(view_type => 'VirtualMachine',
                                            filter => {'name' =>$vm_name});
       if(@$vm_views) {
          foreach (@$vm_views) {
             my $host_name =  Opts::get_option('vmhost');
             my $host_view = Vim::find_entity_view(view_type => 'HostSystem',
                                             filter => {'name' => $host_name});
                                             
             if (!$host_view) {
                Util::trace(0, "Host '$host_name' not found\n");
                return;
             }
             # bug 449530
             my $disk_size = get_disksize();
             if($disk_size eq -1 || $disk_size eq "") {
                $disk_size = 0;
                my $devices = $_->config->hardware->device;
                foreach my $device (@$devices) {
                   if (ref $device eq "VirtualDisk") {
                      $disk_size = $disk_size + $device->capacityInKB;
                   }
                }
             }
             if ($host_view) {
                my $comp_res_view = Vim::get_view(mo_ref => $host_view->parent);
                my $ds_name = Opts::get_option('datastore');
                my %ds_info = HostUtils::get_datastore(host_view => $host_view,
                                         datastore => $ds_name,
                                         disksize => $disk_size);
                if ($ds_info{mor} eq 0) {
                   if ($ds_info{name} eq 'datastore_error') {
                      Util::trace(0, "\nDatastore $ds_name not available.\n");
                      return;
                   }
                   if ($ds_info{name} eq 'disksize_error') {
                      Util::trace(0, "\nThe free space available is less than the"
                                   . " specified disksize or the host"
                                   . " is not accessible.\n");
                      return;
                   }
                }
    
    
    
                my $relocate_spec =
                VirtualMachineRelocateSpec->new(datastore => $ds_info{mor},
                                              host => $host_view,
                                              pool => $comp_res_view->resourcePool);
                my $clone_name = Opts::get_option('vmname_destination');
                my $clone_spec ;
                my $config_spec;
                my $customization_spec;
    
    
    
                if ((Opts::get_option('customize_vm') eq "yes")
                    && (Opts::get_option('customize_guest') ne "yes")) {
                   $config_spec = get_config_spec();
                   $clone_spec = VirtualMachineCloneSpec->new(powerOn => 1,template => 0,
                                                           location => $relocate_spec,
                                                           config => $config_spec,
                                                           );
                }
                elsif ((Opts::get_option('customize_guest') eq "yes")
                    && (Opts::get_option('customize_vm') ne "yes")) {
                   $customization_spec = get_customization_spec
                                                  (Opts::get_option('filename'));
                   $clone_spec = VirtualMachineCloneSpec->new(
                                                       powerOn => 1,
                                                       template => 0,
                                                       location => $relocate_spec,
                                                       customization => $customization_spec,
                                                       );
                }
                elsif ((Opts::get_option('customize_guest') eq "yes")
                    && (Opts::get_option('customize_vm') eq "yes")) {
                   $customization_spec = get_customization_spec
                                                  (Opts::get_option('filename'));
                   $config_spec = get_config_spec();
                   $clone_spec = VirtualMachineCloneSpec->new(
                                                       powerOn => 1,
                                                       template => 0,
                                                       location => $relocate_spec,
                                                       customization => $customization_spec,
                                                       config => $config_spec,
                                                       );
                }
                else {
                   $clone_spec = VirtualMachineCloneSpec->new(
                                                       powerOn => 1,
                                                       template => 0,
                                                       location => $relocate_spec,
                                                       );
                }
                Util::trace (0, "\nCloning virtual machine '" . $vm_name . "' ...\n");
    
    
    
                eval {
                   $_->CloneVM(folder => $_->parent,
                                  name => Opts::get_option('vmname_destination'),
                                  spec => $clone_spec);
                   Util::trace (0, "\nClone '$clone_name' of virtual machine"
                                 . " '$vm_name' successfully created.");
                };
    
    
    
                if ($@) {
                   if (ref($@) eq 'SoapFault') {
                      if (ref($@->detail) eq 'FileFault') {
                         Util::trace(0, "\nFailed to access the virtual "
                                        ." machine files\n");
                      }
                      elsif (ref($@->detail) eq 'InvalidState') {
                         Util::trace(0,"The operation is not allowed "
                                       ."in the current state.\n");
                      }
                      elsif (ref($@->detail) eq 'NotSupported') {
                         Util::trace(0," Operation is not supported by the "
                                       ."current agent \n");
                      }
                      elsif (ref($@->detail) eq 'VmConfigFault') {
                         Util::trace(0,
                         "Virtual machine is not compatible with the destination host.\n");
                      }
                      elsif (ref($@->detail) eq 'InvalidPowerState') {
                         Util::trace(0,
                         "The attempted operation cannot be performed "
                         ."in the current state.\n");
                      }
                      elsif (ref($@->detail) eq 'DuplicateName') {
                         Util::trace(0,
                         "The name '$clone_name' already exists\n");
                      }
                      elsif (ref($@->detail) eq 'NoDisksToCustomize') {
                         Util::trace(0, "\nThe virtual machine has no virtual disks that"
                                      . " are suitable for customization or no guest"
                                      . " is present on given virtual machine" . "\n");
                      }
                      elsif (ref($@->detail) eq 'HostNotConnected') {
                         Util::trace(0, "\nUnable to communicate with the remote host, "
                                        ."since it is disconnected" . "\n");
                      }
                      elsif (ref($@->detail) eq 'UncustomizableGuest') {
                         Util::trace(0, "\nCustomization is not supported "
                                        ."for the guest operating system" . "\n");
                      }
                      else {
                         Util::trace (0, "Fault" . $@ . ""   );
                      }
                   }
                   else {
                      Util::trace (0, "Fault" . $@ . ""   );
                   }
                }
             }
          }
       }
       else {
          Util::trace (0, "\nNo virtual machine found with name '$vm_name'\n");
       }
    }
    
    
    # It returns the customization spec as per the input XML file
    
    sub get_customization_spec {
       my ($filename) = @_;
       my $parser = XML::LibXML->new();
       my $tree = $parser->parse_file($filename);
       my $root = $tree->getDocumentElement;
       my @cspec = $root->findnodes('Customization-Spec');
    
    
    
       # Default Values
       my $computername = "compname";
       #my $timezone = 190;
       #my $userpassword;
       my $domain;
       my $ipAddress;
       my @gateway;
       my $subnetMask;
       my @dnsServerList;
       
      
       foreach (@cspec) {
          if ($_->findvalue('Virtual-Machine-Name')) {
             $computername = $_->findvalue('Virtual-Machine-Name');
          }
          if ($_->findvalue('Domain')) {
             $domain = $_->findvalue('Domain');
          }
          if ($_->findvalue('ipAddress')) {
             $ipAddress = $_->findvalue('ipAddress');
          }    
          if ($_->findvalue('gateway')) {
             @gateway = split (',',$_->findvalue('gateway'));
          }      
          if ($_->findvalue('subnetMask')) {
             $subnetMask = $_->findvalue('subnetMask');
          }     
          if ($_->findvalue('dnsServerList')) {
             @dnsServerList = split (',',$_->findvalue('dnsServerList'));
          }     
       }
      
       # globalIPSettings
       my @dnsSuffixList = [$domain];
       my $customization_global_settings = CustomizationGlobalIPSettings->new(dnsServerList => \@dnsServerList,
                                                                                dnsSuffixList =>@dnsSuffixList);
       my $customization_identity_settings = CustomizationIdentitySettings->new();
    
    
    
       # identity
       # my $password =
       #   CustomizationPassword->new(plainText=>"true", value=> $userpassword); $computername
          
       my $cust_fixname = CustomizationFixedName->new (name => $computername);
    
    
    
       my $cust_linuxprep =
          CustomizationLinuxPrep->new(domain => $domain,
                                    hostName => $cust_fixname,
                                    hwClockUTC =>"false",
                                    timeZone =>"Asia/Shanghai");
    
    
    
       # nicSettingMap
       my $customization_fixed_ip = CustomizationFixedIp->new(ipAddress => $ipAddress);
    
    
    
       my $cust_ip_settings =
          CustomizationIPSettings->new(ip => $customization_fixed_ip,
                                        dnsDomain => $domain,
                                        gateway => \@gateway,
                                        subnetMask => $subnetMask);
    
    
    
       my $cust_adapter_mapping =
          CustomizationAdapterMapping->new(adapter => $cust_ip_settings);
    
    
    
       my @cust_adapter_mapping_list = [$cust_adapter_mapping];
       
       # customization spec
       my $customization_spec =
          CustomizationSpec->new (identity=>$cust_linuxprep,
                                  globalIPSettings=>$customization_global_settings,
                                  nicSettingMap=>@cust_adapter_mapping_list);
        #                          options=>$CustomizationOptions);
       return $customization_spec;
    }
    
    
    
    #Gets the config_spec for customizing the memory, number of cpu's
    # and returns the spec
    sub get_config_spec() {
    
    
    
       my $parser = XML::LibXML->new();
       my $tree = $parser->parse_file(Opts::get_option('filename'));
       my $root = $tree->getDocumentElement;
       my @cspec = $root->findnodes('Virtual-Machine-Spec');
       my $vmname ;
       my $vmhost  ;
       my $guestid;
       my $datastore;
       my $disksize = 4096;  # in KB;
       my $memory = 256;  # in MB;
       my $num_cpus = 1;
       my $nic_network;
       my $nic_poweron = 1;
    
    
    
       foreach (@cspec) {
       
          if ($_->findvalue('Guest-Id')) {
             $guestid = $_->findvalue('Guest-Id');
          }
          if ($_->findvalue('Memory')) {
             $memory = $_->findvalue('Memory');
          }
          if ($_->findvalue('Number-of-CPUS')) {
             $num_cpus = $_->findvalue('Number-of-CPUS');
          }
          $vmname = Opts::get_option('vmname_destination');
       }
    
    
    
       my $vm_config_spec = VirtualMachineConfigSpec->new(
                                                      name => $vmname,
                                                      memoryMB => $memory,
                                                      numCPUs => $num_cpus,
                                                      guestId => $guestid );
       return $vm_config_spec;
    }
    
    
    
    sub get_disksize {
       my $disksize = -1;
       my $parser = XML::LibXML->new();
       
       eval {
          my $tree = $parser->parse_file(Opts::get_option('filename'));
          my $root = $tree->getDocumentElement;
          my @cspec = $root->findnodes('Virtual-Machine-Spec');
    
    
    
          foreach (@cspec) {
             $disksize = $_->findvalue('Disksize');
          }
       };
       return $disksize;
    }
    
    
    
    # check missing values of mandatory fields
    sub check_missing_value {
       my $valid= 1;
       my $filename = Opts::get_option('filename');
       my $parser = XML::LibXML->new();
       my $tree = $parser->parse_file($filename);
       my $root = $tree->getDocumentElement;
       my @cust_spec = $root->findnodes('Customization-Spec');
       my $total = @cust_spec;
    
    
    
       if (!$cust_spec[0]->findvalue('Virtual-Machine-Name')) {
          Util::trace(0,"\nERROR in '$filename':\n computername value missing ");
          $valid = 0;
       }
       if (!$cust_spec[0]->findvalue('Domain')) {
          Util::trace(0,"\nERROR in '$filename':\n domain value missing ");
          $valid = 0;
       }
       if (!$cust_spec[0]->findvalue('ipAddress')) {
          Util::trace(0,"\nERROR in '$filename':\n ipAddress value missing ");
          $valid = 0;
       }
       if (!$cust_spec[0]->findvalue('gateway')) {
          Util::trace(0,"\nERROR in '$filename':\n gateway value missing ");
          $valid = 0;
       }
       if (!$cust_spec[0]->findvalue('subnetMask')) {
          Util::trace(0,"\nERROR in '$filename':\n subnetMask value missing ");
          $valid = 0;
       }
       if (!$cust_spec[0]->findvalue('dnsServerList')) {
          Util::trace(0,"\nERROR in '$filename':\n dnsServerList value missing ");
          $valid = 0;
       }
       return $valid;
    }
    
    
    
    sub validate {
       my $valid= 1;
       if ((Opts::get_option('customize_vm') eq "yes")
                    || (Opts::get_option('customize_guest') eq "yes")) {
    
    
    
          $valid = XMLValidation::validate_format(Opts::get_option('filename'));
          if ($valid == 1) {
             $valid = XMLValidation::validate_schema(Opts::get_option('filename'),
                                                 Opts::get_option('schema'));
             if ($valid == 1) {
                $valid = check_missing_value();
             }
          }
       }
    
    
    
        if (Opts::option_is_set('customize_vm')) {
           if ((Opts::get_option('customize_vm') ne "yes")
                 && (Opts::get_option('customize_vm') ne "no")) {
              Util::trace(0,"\nMust specify 'yes' or 'no' for customize_vm option");
              $valid = 0;
           }
           
        }
        if (Opts::option_is_set('customize_guest')) {
           if ((Opts::get_option('customize_guest') ne "yes")
                 && (Opts::get_option('customize_guest') ne "no")) {
              Util::trace(0,"\nMust specify 'yes' or 'no' for customize_guest option");
              $valid = 0;
           }
        }
       return $valid;
    }
    
    
    
    __END__
    
     

    You get errors? I also recommend to check the customer that has been deployed, for linux guests, there is a log file of the customization specification and I want to say its somewhere in/var/log/vmware, but I don't remember the exact name of the file. You can see what happened in and if there is no error. Also, I assume that you have looked at the list of taken guestOSes supported for customization of comments?

  • Display drivers for linux

    I have Toshiba Satellite P20 and I would install debian or mandrake distribution, but there is a serious problem with display configuration. I can't set the correct screen resolution. Anyone know where I can get drivers for linux? Graphics chip is GeForce FX Go5200 with screen atypical resolution 1440:900 pixels.

    Hi MichalDyzma,

    Months ago I had the same problem with a toshiba laptop from a friend. He wants to also install a linux distribution and I found a page very good linux toshiba.
    Maybe your model is also listed as compatible with linux!

    Here is the link www.toshiba-tro.de then click on operating
    System and Unix-based systems.

    Goodbye Tom

  • 6u2 ESXi host nested on VMware Workstation for Linux referee v12

    Hello all, I have

    I have a lab environment virtual running in VMware Workstation for Linux v12, and my ESXi hosts do not work correctly on one of the virtual networks. All my troubleshooting suggests a problem with nested ESXi hosts that may be a bug, but I want to assure you that I did everything properly first. That's why I post here with the hope that if I made a mistake that maybe someone else can point out he me.

    Physical system

    8 core Intel Xeon 2.1 GHz CPU

    128 GB of RAM

    OS - kernel Linux 64 - bit w/3.19.0-32-generic Linux Mint 17.3 (fully updated from this announcement)

    VMware Workstation 12 Pro - 12.1.1. Build-3770994 (fully updated from this announcement)

    Nested ESXi host VM

    ESXi v6.0.0 (Build 3825889, completely updated from this announcement)

    4 cards 'physical' (only 3 used for now)

    -all use the e1000 NIC hardware virtual, but also tried vmxnet3 NIC with no difference

    -vSwitch0 use vmnic0 & 1 vmnet16 of virtual network in a pair of active / standby

    -vSwitch1 uses vmnic2 on network virtual vmnet18

    -vmk0 used for management on vSwitch0 and vmk1 for iSCSI on vSwitch1

    -"Promiscuous" mode and forged passes enabled on all Port vSwitch groups (activating or turning off these features makes no difference)

    Test performed until now

    I checked that all the IP addresses and network masks used are correct.

    With the help of vmkping I ping other nodes on the network vmnet16 with success.

    With the help of vmkping I tried to ping the other nodes in the network vmnet18, but that has failed.

    I have depolyed other non - ESXi VMs on the vmnet18 network, and they are able to ping each other, but are unable to ping or ping by the ESXI host.

    I tried various material virtual NIC as mentioned before, but without changes in the results.

    I tried to use only local network instead of the vmnet18 guest network segments with no change in results.

    When I find out the status of the network adapters on the ESXi host through vCenter or host incorporated client vmnic0 & 1 time display network information, but vmnic2 shows no networks. Yet, I know that there is a network with different VM communicate on it. Moreover, I was able to get all of this work on a Windows system running 10 Workstation (this is the laptop that my employer gives me with).

    Having built nested ESXi labs on different platforms as well as physical environments in the past, I'm very confused as to why I can't get this special configuration to work. At this point my gut tells me that this is probably a bug any with the nested themselves ESXi hosts. Since I can get all this work on vmnet16 including the management of ESXi hosts and the VCSA that I use, I am sure that my vSwitch configuration is correct (other than the IP address space and vmnic configurations is bascially the same). Because I can get other virtual machines to communicate over the network vmnet18 I don't see how can be a VMware Workstation for the issue physical Linux host. Is there something obvious I'm missing here? I read on the ESXi hosts nested under VMware Workstation after having known problems and bugs with networking. If anyone else has experienced this?

    Thanks for any help others can provide!

    Kind regards

    Patrick

    Well, the problem is now resolved. The problem was what covelli was trying to explain, but I couldn't because the physical host network adapters being mentioned.

    The problem on the Linux host, but it was a problem of permissions with the virtual Ethernet adapters. The following article has the fix:
    With the help of Ethernet virtual cards in Promiscuous Mode on a Linux host (287) | VMware KB

    Even if I launched the workstation under the root user I have yet met this problem and which still makes no sense to me, but change the permissions solve the problem. I was not getting an error message on my Linux Mint and Ubuntu system, but when I tried on a second box of Linux Mint that I just got the error has been generated, and the error message was the above link it contains.

    So, here's what I learned:

    (1) the question has nothing to with a VMware Workstation definition that you can configure.

    (2) the question has nothing to do with a physical network card.
    (3) the question has nothing to do with any vmnic on the nested ESXi host.

    (4) apparently virtual Ethernet adapters are not the correct permissions when created.

    All you have to do to fix this is:

    (1) open a terminal.

    (2) run the command ' sudo chmod a + rw/dev/vmnet * "(don't forget to run this each time that you create a new virtual network).

    You can also create a group, as shown in the link above and simply give this group the correct permissions. Personally, I think it's easier to just give everyone the rw permission.

    I appreciate the help that others have offered. I did not understand what was asked for in previous answers because of the terms that have been used.

  • Username or password for the guest OS

    Hello

    HostOS: Ubuntu 8.10

    GuestOS: Windows Server 2003

    I'll build a regression test environment and I need to be able to use the command line to start a virtual machine and discover its external IP address so that I can query a database that I have stored on it.  I am able to start my virtual machine to the command-line help:

    vmrun T - h server http://127.0.0.1:8222 / sdk runProgramInGuest u '[local] Integrated Testing VM/winnetstandard.vmx' C:\Windows\system32\ipconfig.exe

    fails with a ' error: username or password for the guest OS.

    I assure you that comments username and password I use are valid.  I tried with user domain\username, username, etc.  I installed the latest VM for the guest OS tools.  I tried connecting manually first guest OS, so that the VM tools to perform before I called vmrun. I know I can find the IP address of the guest OS through the section of the status of the web utility or by running the console OS comments; However, in my final project, users will only to have command line access.

    What I am doing wrong with my order of runProgramInGuest?  Or, better yet, is there a simpler way to get the IP address of the OS from the command line?

    I'm under VMServer 2.0 on Ubuntu 8.10 with a guest OS of Windows Server 2003.

    Thank you!

    I need to start a virtual machine and find the IP address signed by

    Check /var/log/vmware/hostd.log on the host

    Remember that if you use a format domainsername user then on Linux you need to escape the backslash so it would be the field
    username, if you have not indeed get you the error "invalid username or password for the operating system prompted". Similarly to the backslash characters in the path of the program to run in the comments and you must specify the full path.

    ---

    If you have found this device or any other answer useful please consider the use of buttons useful or Correct to award points.

  • When released the new version of Mozilla Firefox for Linux.

    Whenever I open the browser, it continues to display the message that is earlier than the version of my browser.

    But I cant Update since its not released yet for Linux.
    

    Do not wait for the new Version to be published
    Other than that, the browser is fast and easy to use

    You seem to have the provided version of Firefox 35.0.1 Ubuntu

    You can get the update of Firefox 39.0 of in on your distribution package manager or you can get Firefox from www.mozilla.org or www.mozilla.org/firefox/all

    If you choose to mozilla.org , sure it is 64-bit as 32 bits will not run unless you have the appropriate packages.

    Mozilla does not updates for versions of others, including the packages provided by Linux distributions.

    https://help.Ubuntu.com/community/InstallingSoftware
    https://support.Mozilla.org/en-us/KB/install-Firefox-Linux

  • Linux, Firefox 21.0 and the last flash for LINUX (11.2). I can't view youtube videos because firefox has disabled the plugin. Help!

    An hour ago, I watched with happiness of the videos from youtube on Linux using Firefox 20.0 and 11.2 flash. I've just updated firefox and it of now my blocking flash and invites me to update. The problem is I can't update because 11.2 is the LATEST version of the flash for firefox plugin, there is no other version.

    Is there a way to prevent the deactivation of my firefox plugin?

    The directory structure, at least for linux, seems to have changed for version 21. I have my distribution of firefox / opt/firefox /, and so far I keep the plugin flash in/opt/firefox/plugins /. Verse 21, the plugin directory should be/opt/firefox/browser/plugins/EC directory does not exist by default. You can create or mv just the old directory of plugin to the new location

    $ cd/opt/firefox / #(ou partout où votre firefox est installé)
    $ mv plugins / browser /.

    Icons / directory has also been moved to that subdirectory, that's why my office firefox button was not correctly displayed after the update.

    -The main thing that firefox really should do is to archive the previous version of firefox, whenever there is an update. It is ridiculous to have to deal with this kind of issue immediately after an update when you have important work to do on time! To do a simple option to temporarily return to the previous version of firefox. It would be trivial to implement and could be used when a new release breaks something.

  • For Linux - Qosmio F30-111 RAID drivers

    Hello

    I have a Qosmio F30-111 and I need the drivers for the Controller Raid for Linux. Can someone help me.
    I have RAID-0 and the laptop does not start. It displays the XP logo and restarts. So I need to boot from cd or USB key to access or repair the raid partition.

    Thank you
    Antonio Jose

    See also http://newsletter.toshiba-tro.de/main/

  • To a particular user (e.g. ADMINISTRATOR) account completely secret to other users (for example, GUEST) in a Window XP

    I have (Window XP) two user accounts administrator and other comments. I want to make the contents of the D drive (I have two drives C and D, even if the window to make the content of MY PAPER 'private' for a particular user, but not the content of the disk D :) completely hidden for the 'guest' user. How to do?

    You can't do that, instead, you can try hide and display options.

    http://www.ehow.com/how_2249033_hide-Windows-XP-Vista-folders.html

    http://www.ehow.com/how_2306681_unhide-folders-files-XP.html

  • Overview of VMware VIew Client for Linux

    Hey everybody

    Is there a table of software compatibility for VMware View Client and Linux Horizon? We would like to use the client on devices based on linux, but we do not know what linux operating systems are currently supported.

    Dou you have a formal link or are you aware of the compatibility?

    Best regards

    Documentation (https://www.vmware.com/pdf/horizon-view/horizon-client-linux-document.pdf):

    Operating systems: Horizon customer 3.2 supports the following operating systems.

    Operating system

    Version

    Ubuntu Linux 12.04 or 14.04
    Red Hat Enterprise Linux (RHEL) 6.5
    SUSE Linux Enterprise Desktop (SLED) 11 SP3
    CentOS 6.5

    IMPORTANT only 32-bit systems are supported.

    * Horizon customer 3.1: 32-bit Ubuntu Linux 12.04 or 14.04

    * Display Client 2.x: Linux 32 bit Ubuntu 12.04

    * View Client 1.6 and 1.7: 32-bit Ubuntu Linux 10.04 or 12.04

    * Display Client 1.5: 32-bit Ubuntu Linux 10.04 or 10.10

    VMware customer Horizon for Linux Release Notes

  • 9/10 on 8.1 windows workstation host no noise for kali guest vm

    Hello

    Recently, I have a new dell xps desktop computer and installed workstation 9 on it.  When I created my kali Linux guest virtual machine, I noticed that I have no sound output at all.  I did a lot of Googling to see if there is an obvious answer, but so far I have had no success to correct this problem.

    Characteristics of the host:

    Dell xps 8700 reference

    Intel i7 processor, 16 GB of ram

    NVIDIA video card

    map its Realtek 4850 (I think it's the right version).

    When I created windows xp and windows 7 guest VM I have sound, but not with linus vms.

    I checked my vm Linux of kali has the installed firmware-realtek and there are audio drivers loaded.

    I checked my setting of sound material of the virtual machine is audio digital and when I click on the test button I hear the sounds of the left and the right side of my usb headset but not the speakers when the headset is unplugged.

    I've upgraded to workstation 10 to see if this corrects the problem, but so far without success there either.

    Any suggestions would be greatly appreciated because I'm blind and need to sound to interact effectively with the gnome desktop.

    I finally thought to it.  I had connect the sound card on the virtual machine by using the menu remote devices, then I was able to use alsamixer for choosing the right card (es1371) instead of the default sound card. That allowed me to set the overall volume at an appropriate and then level level I used alsactl store to store the settings and rebooted. Here I got sound!

  • The purpose of VMware Tools in a Linux guest?

    There are benefits to install VMware tools in a Linux without head/command line only VM?  The only things I see it adding would share his IP address info.  Are there features that I miss out on by installing do not?

    Indeed, as the RPM and tar from the instructions in file ends with "Start X Windows", it seems that it is not designed for anything other than the GUI (for mouse tracking/display setting enhancements)?

    With VMware tools, you can make things easier. For example, you can do 'clean shutdown' of the machine virtual of ESXi, or synchronize the time between ESXi and VM. I'm not sure but I think that vmware balooning pilot would need tools to work correctly.

    But you can still live without vmware-tools and perform all of the above tasks (although not as easily). Personally, I don't use vmware-tools with linux-VM as modular kernel is not permitted in our society.

Maybe you are looking for