2013-07-21 115 views

回答

0
  1. 最佳網絡設置:

    橋聯網 連接到您的實際以太網接口

  2. 在VM驗證您的網絡設置

    使用ifconfig

如果錯誤,請在此編輯:/etc/resolv.con/etc/network/interfaces/etc/host*

  1. 使用IP來訪問虛擬機,如果主機名不從你的機器RESOLV
+0

大聲笑,這很容易。謝謝! – polyglot

+0

:D讓我猜測:默認的NAT或僅主機設置不起作用; P – DanFromGermany

0

,你可以在你的虛擬機還設置虛擬主機:


# edit the Apache config 
$ sudo nano /etc/apache2/apache2.conf

# in apache2.conf, add these virtual host settings below the files node NameVirtualHost *:80

<VirtualHost *:80> 
    DocumentRoot /var/www 
    ServerName www.ubuntu.vm 
    ServerAlias ubuntu.vm 
</VirtualHost> 

<VirtualHost *:80> 
    DocumentRoot /var/www/wordpress 
    ServerName www.wordpress.vm 
    ServerAlias wordpress.vm 
</VirtualHost> 

有關如何在虛擬Mac中設置LAMP開發環境的更多信息hine在我的博客文章中提供:http://jimfrenette.com/2013/11/virtual-machine-for-lamp-development/