我遵循了以下教程:http : //davidtsadler.com/archives/2012/06/03/how-to-install-magento-on-ubuntu/
在某个时候,它告诉我执行以下命令:
sudo bash -c "cat >> /etc/apache2/sites-available/magento-store.com <<EOF
<VirtualHost *:80>
ServerName localhost.magento-store.com
ServerAlias www.localhost.magento-store.com
DocumentRoot /home/dev/public_html/magento-store.com/public
LogLevel warn
ErrorLog /home/dev/public_html/magento-store.com/log/error.log
CustomLog /home/dev/public_html/magento-store.com/log/access.log combined
</VirtualHost>
EOF"
这个命令做了什么,我该如何取消呢?
我重新启动了计算机,看来它仍在运行。我看了看.bashrc
和.profile
,但没有在里面找到它。