Skip to main content

Posts

Showing posts from July, 2025

Ubuntu apt installation error as : E: Unable to correct problems, you have held broken packages.

  Error: E: Unable to correct problems, you have held broken packages. Solution: 1) Find the broken packages using:    root@test:~# apt-mark showhold     libcephfs2     libsqlite3-mod-ceph 2) Unhold the locked packages using below command:    root#test:~# apt-mark unhold libcephfs2 libsqlite3-mod-ceph

Enable MOB for vCenter version 9.0

Connect to your VCSA via SSH Backup the VPXD Configuration file # cp /etc/vmware-vpx/vpxd.cfg /var/core/vpxd.cfg_backup Edit the Configuration File: Open the vpxd.cfg file using a text editor (e.g., vi) # vi /etc/vmware-vpx/vpxd.cfg Identify the flag "enableDebugBrowse".If it's set to false or missing, change it or add it to true as shown below    <vpxd>    ...      <enableDebugBrowse>true</enableDebugBrowse>       ...    </vpxd> Save and close the file Restart the vCenter Server Service (vpxd) # service-control --stop vpxd # service-control --start vpxd