Skip to content

Latest commit

 

History

History
38 lines (25 loc) · 1.95 KB

File metadata and controls

38 lines (25 loc) · 1.95 KB

root@Debian-test-vmware:/tmp# ./Install_VMtools_v2.sh The /mnt/cdrom directory already exists. Command "check_mount_dir" completed successfully. The VMware Tools image is not mounted. Editing in progress... mount: /mnt/cdrom: no support found in /dev/sr0. Error executing command "mount /dev/cdrom /mnt/cdrom". Error code : 32

Error 32 : on your machine right click then click on Install VMware Tools ...

Error for :Setup is unable to find the "ifconfig" program on your machine. Please make sure it is installed. Do you want to specify the location of this program by hand? [yes]

What is the location of the "ifconfig" program on your machine?

It seems that you are encountering an issue while configuring VMware Tools, particularly with the "ifconfig" program on your Debian Linux machine. To proceed, you'll need to take the following steps:

  1. Install the 'net-tools' package: In Debian-based Linux distributions, 'ifconfig' is part of the 'net-tools' package. If it's not installed by default or if you're encountering this issue, you'll need to install it. Run the following command in your terminal:

    sudo apt update
    sudo apt install net-tools
  2. Locate the 'ifconfig' program: After installing the 'net-tools' package, the 'ifconfig' command should be available in your system. To find its location, use the following command:

    which ifconfig

    This command will display the path where 'ifconfig' is installed on your system. Usually, it's located at /sbin/ifconfig.

  3. Provide the location to VMware Tools: Once you have the location of 'ifconfig', when prompted by VMware Tools, input the location you found, such as /sbin/ifconfig.

By following these steps, you should be able to resolve the issue with VMware Tools not finding the 'ifconfig' program on your Debian machine. If you encounter any further issues or if you need additional assistance, feel free to ask!