Tôi có thể tìm thấy VB không đầu của mình với sự kết hợp của các lệnh sau:
# Update arp table
for i in {1..254}; do ping -c 1 192.168.178.$i & done
# Find vm name
VBoxManage list runningvms
# Find MAC: subsitute vmname with your vm's name
VBoxManage showvminfo vmname
# Find IP: substitute vname-mac-addr with your vm's mac address in ':' notation
arp -a | grep vmname-mac-addr
Nhưng thậm chí còn dễ dàng hơn: trong linux, bạn có thể kết nối với VB:
# Default VirtualBox Listening Port: 3389
rdesktop -N hostingserver:3389
Lệnh này sẽ mở một cửa sổ shell và bạn sẽ có quyền truy cập trực tiếp vào VB không đầu, nơi bạn có thể truy xuất IP VB không đầu: ip addr của mình
VBoxManage --nologo guestcontrol yourVirtualMachineName --username yourUser --password yourPassword run -- /sbin/ifconfig -a